Click here to Skip to main content
15,885,216 members
Articles / Desktop Programming / WPF

C.B.R.

Rate me:
Please Sign up or sign in to vote.
4.96/5 (52 votes)
22 Oct 2012GPL329 min read 124.1K   1.8K   132  
Comic and electronic publication reader with library management, extended file conversion, and devices support.
using System;
using System.IO;
using System.Reflection;
using System.Threading;
using System.Windows;
using System.Windows.Media.Imaging;
using System.Windows.Threading;
using SevenZip;
using BookReader.Common;

namespace BookReader
{
	internal class RarBook : BaseBook
	{
		#region -----------------constructors-----------------

		public RarBook(string filePath, bool makeCover) : base( filePath )
		{
			try
			{
                if (!_IsInitDone)
                {
                    _IsInitDone = true;
                    string sevenZip = Assembly.GetExecutingAssembly().Location.Replace("BookReader.exe", "Dependencies\\7z.dll");
                    SevenZipExtractor.SetLibraryPath(sevenZip);
                }
			}
			catch (SevenZipLibraryException err)
			{
				ExceptionManagement.Manage("RarBook:RarBook", err);
			}

			if (makeCover)
				GenerateCover();
		}
		#endregion

		#region -----------------properties-----------------

        private static bool _IsInitDone = false;

        internal SevenZipExtractor RarReader
        {
            get;
            set;
        }

		#endregion

		#region -----------------loading/unloading-----------------

		override public void Load()
		{
            RarReader = new SevenZipExtractor(base.FilePath);

            foreach (ArchiveFileInfo fil in RarReader.ArchiveFileData)
			{
                if (!fil.IsDirectory)
                {
                    if (Properties.Settings.Default.ImageFilter.Contains(new FileInfo(fil.FileName).Extension.ToUpper()))
                    {
                        RarPage item = new RarPage( fil.FileName, Pages.Count, this );
                        Pages.Add(item);
                    }
                }
			}

			base.Load();
		}

		override public void UnLoad()
		{
			base.UnLoad();
            RarReader.Dispose();
            RarReader = null;
		}
		#endregion

		#region -----------------generation of cover page-----------------

		private void GenerateCover()
		{
			Thread t = new Thread(new ParameterizedThreadStart(LoadCoverThread));
			t.IsBackground = true;
			t.Priority = ThreadPriority.Lowest;
			t.Start(base.FilePath);
		}

		private void LoadCoverThread(object o)
		{
            SevenZipExtractor temp = null;

            try
            {
                temp = new SevenZipExtractor((string)o);
				this.Size = temp.PackedSize / 1024 / 1024;
				this.NbPages = temp.ArchiveFileNames.Count;

                foreach (ArchiveFileInfo fil in temp.ArchiveFileData)
                {
                    if (!fil.IsDirectory && Properties.Settings.Default.ImageFilter.Contains(new FileInfo(fil.FileName).Extension.ToUpper()))
                    {
                        MemoryStream stream = new MemoryStream();
                        temp.ExtractFile(fil.FileName, stream);

                        MemoryStream stream2 = new MemoryStream();
                        stream.WriteTo(stream2);
                        stream.Flush();
                        stream.Close();
                        stream2.Position = 0;

                        Application.Current.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate
                        {
                            BitmapImage myImage = new BitmapImage();
                            myImage.BeginInit();
                            myImage.StreamSource = stream2;
                            myImage.DecodePixelWidth = 70;
                            myImage.EndInit();

                            base.Cover = myImage;
                        });

                        stream2 = null;
                        return;
                    }
                }
            }
            catch (Exception err)
            {
				Application.Current.Dispatcher.Invoke(DispatcherPriority.Normal, (ThreadStart)delegate
				{
					ExceptionManagement.Manage("RarBook:LoadCoverThread", err);
				});
            }
            finally
            {
				if (temp != null)
				{
					temp.Dispose();
					temp = null;
				}
            }
		}
		#endregion

		#region -----------------manage page images-----------------

		override public BitmapImage GetImageFromStream(string fileName)
		{
			return GetImageFromStream(RarReader, fileName, 0);
		}

		private BitmapImage GetImageFromStream(SevenZipExtractor zipFile, string fileName, int resize)
		{
			MemoryStream stream = new MemoryStream();
			zipFile.ExtractFile(fileName, stream);

			return StreamToImage.GetImageFromStreamBug(stream, resize);
		}

		#endregion

		#region -----------------cache management-----------------

		override public void ManageCache()
		{
            //clear old cache
			base.ManageCache();

            //load the 3 next pages
            BitmapImage tmpImage = null;
			IBookItem tmpPage = GetNextPage(CurrentPage);
            if (tmpPage != null) tmpImage= tmpPage.Image;

            tmpPage = GetNextPage(tmpPage);
            if (tmpPage != null) tmpImage = tmpPage.Image;

            tmpPage = GetNextPage(tmpPage);
            if (tmpPage != null) tmpImage = tmpPage.Image;
		}

		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect
France France
WPF and MVVM fan, I practice C # in all its forms from the beginning of the NET Framework without mentioning C ++ / MFC and other software packages such as databases, ASP, WCF, Web & Windows services, Application, and now Core and UWP.
In my wasted hours, I am guilty of having fathered C.B.R. and its cousins C.B.R. for WinRT and UWP on the Windows store.
But apart from that, I am a great handyman ... the house, a rocket stove to heat the jacuzzi and the last one: a wood oven for pizza, bread, and everything that goes inside

https://guillaumewaser.wordpress.com/
https://fouretcompagnie.wordpress.com/

Comments and Discussions