Exemplo n.º 1
0
		public override void Exit()
		{
			CheckDisposed();

			m_exporter.Dispose();
			m_exporter = null;
			m_book = null;
			m_Philemon = null;

			base.Exit();
		}
Exemplo n.º 2
0
		/// <summary>
		/// Executes in two distinct scenarios.
		///
		/// 1. If disposing is true, the method has been called directly
		/// or indirectly by a user's code via the Dispose method.
		/// Both managed and unmanaged resources can be disposed.
		///
		/// 2. If disposing is false, the method has been called by the
		/// runtime from inside the finalizer and you should not reference (access)
		/// other managed objects, as they already have been garbage collected.
		/// Only unmanaged resources can be disposed.
		/// </summary>
		/// <param name="disposing"></param>
		/// <remarks>
		/// If any exceptions are thrown, that is fine.
		/// If the method is being done in a finalizer, it will be ignored.
		/// If it is thrown by client code calling Dispose,
		/// it needs to be handled by fixing the bug.
		///
		/// If subclasses override this method, they should call the base implementation.
		/// </remarks>
		protected override void Dispose(bool disposing)
		{
			//Debug.WriteLineIf(!disposing, "****************** " + GetType().Name + " 'disposing' is false. ******************");
			// Must not be run more than once.
			if (IsDisposed)
				return;

			if (disposing)
			{
				// Dispose managed resources here.
				if (m_exporter != null)
					m_exporter.Dispose();
			}

			// Dispose unmanaged resources here, whether disposing is true or false.
			m_exporter = null;
			m_book = null;
			m_Philemon = null;

			base.Dispose(disposing);
		}
Exemplo n.º 3
0
		public override void Initialize()
		{
			CheckDisposed();
			base.Initialize();

			m_scrInMemoryCache.InitializeAnnotationDefs();
			m_scrInMemoryCache.InitializeWritingSystemEncodings();

			ILangProject lp = Cache.LangProject;

			m_wsSpanish = InMemoryFdoCache.s_wsHvos.Es;
			m_wsGerman = InMemoryFdoCache.s_wsHvos.De;
			m_wsEnglish = InMemoryFdoCache.s_wsHvos.En;

			// Our export test comparisons will assume the WS's are NOT in this order:
			List<int> currentAnalWS = new List<int>(lp.CurAnalysisWssRS.HvoArray);
			Assert.AreEqual("en", (new LgWritingSystem(Cache, currentAnalWS[0])).ICULocale);
			Assert.AreEqual("de", (new LgWritingSystem(Cache, currentAnalWS[1])).ICULocale);
			Assert.AreEqual("es", (new LgWritingSystem(Cache, currentAnalWS[2])).ICULocale);

			// save the default vernacular ws
			m_wsVern = Cache.DefaultVernWs;

			// Create the book of Genesis in the database
			m_book = m_scrInMemoryCache.AddBookToMockedScripture(1, "Genesis");
			m_scrInMemoryCache.AddTitleToMockedBook(m_book.Hvo, "Genesis");

			// Create the book of Philemon in the database
			m_Philemon = m_scrInMemoryCache.AddBookToMockedScripture(57, "Philemon");
			m_scrInMemoryCache.AddTitleToMockedBook(m_Philemon.Hvo, "Philemon");

			// initialize the exporter class
			m_exporter = new DummyExportUsfm(Cache);
			m_exporter.SetContext(m_book);
		}