/// <summary>
 /// Filter the chapters according to the chapter and volume filter.
 /// </summary>
 /// <param name="Chapters">Each chapter.</param>
 /// <param name="Options">The collection of options.</param>
 public static IEnumerable<IChapter> Filter(this IEnumerable<IChapter> Chapters, Options Options)
 {
     // Iterate through each chapter.
     foreach (IChapter Chapter in Chapters) {
         // Check if the chapter number is valid.
         if (Chapter.Number != -1) {
             // Filter on negative chapter number values.
             if (Options.FilterOnChapter < 0 && Chapter.Number >= Math.Abs(Options.FilterOnChapter)) {
                 // Continue iteration.
                 continue;
             }
             // Filter on positive chapter number values.
             if (Options.FilterOnChapter > 0 && Chapter.Number <= Options.FilterOnChapter) {
                 // Continue iteration.
                 continue;
             }
         }
         // Check if the volume is valid.
         if (Chapter.Volume != -1) {
             // Filter on negative chapter volume values.
             if (Options.FilterOnVolume < 0 && Chapter.Volume >= Math.Abs(Options.FilterOnVolume)) {
                 // Continue iteration.
                 continue;
             }
             // Filter on positive chapter volume values.
             if (Options.FilterOnVolume > 0 && Chapter.Volume <= Options.FilterOnVolume) {
                 // Continue iteration.
                 continue;
             }
         }
         // Return the chapter.
         yield return Chapter;
     }
 }
Beispiel #2
0
 /// <summary>
 /// Run in batch processing mode.
 /// </summary>
 /// <param name="Options">The options.</param>
 public static void Batch(Options Options)
 {
     // Initialize the file name.
     string FileName = Options.SourceFile;
     // Check if the file does exist.
     if (File.Exists(FileName)) {
         // Initialize a new instance of the List class.
         List<KeyValuePair<Options, string>> WorkerItems = new List<KeyValuePair<Options, string>>();
         // Initialize a new instance of the FileStream class.
         using (FileStream FileStream = File.Open(FileName, FileMode.Open, FileAccess.Read, FileShare.Read)) {
             // Initialize a new instance of the StreamReader class.
             using (StreamReader StreamReader = new StreamReader(FileStream, Encoding.UTF8)) {
                 // Initialize the line.
                 string Line;
                 // Read all lines from the file stream.
                 while ((Line = StreamReader.ReadLine()) != null) {
                     // Initialize a new instance of the Options class.
                     Options LineOptions = new Options();
                     // Parse each command line argument into the options instance and check if an unique identifier is available.
                     if (Parser.Default.ParseArguments(Line.Split(' '), LineOptions) && LineOptions.UniqueIdentifiers.Count != 0) {
                         // Iterate through each unique identifier.
                         foreach (string UniqueIdentifier in LineOptions.UniqueIdentifiers) {
                             // Check if worker threads are not disabled.
                             if (!LineOptions.DisableWorkerThreads && !Options.DisableWorkerThreads) {
                                 // Add the unique identifier of the line to the worker item list.
                                 WorkerItems.Add(new KeyValuePair<Options, string>(LineOptions, UniqueIdentifier));
                             } else {
                                 // Run in single processing mode.
                                 Single(LineOptions, UniqueIdentifier);
                             }
                         }
                     }
                 }
             }
         }
         // Check if worker items are available.
         if (WorkerItems.Count != 0) {
             // Iterate through each worker item.
             UnsafeParallel.For(0, WorkerItems.Count, Options.MaximumParallelWorkerThreads, i => {
                 // Run in single processing mode.
                 Single(WorkerItems[i].Key, WorkerItems[i].Value);
             });
         }
     } else {
         Console.WriteLine("Could not open {0}", FileName);
     }
 }
 /// <summary>
 /// Run in batch processing mode.
 /// </summary>
 /// <param name="Options">The options.</param>
 public static void Batch(Options Options)
 {
     // Check if the batch-mode source file does exist.
     if (File.Exists(Options.SourceFile)) {
         // Initialize a new instance of the List class.
         List<KeyValuePair<Options, string>> WorkerItems = new List<KeyValuePair<Options, string>>();
         // Iterate through each line in the source file.
         foreach (string Line in File.ReadAllLines(Options.SourceFile)) {
             // Initialize a new instance of the Options class.
             Options LineOptions = new Options();
             // Parse each command line argument into the options instance and check if an unique identifier is available.
             if (Parser.Default.ParseArguments(Line.Split(' '), LineOptions) && LineOptions.UniqueIdentifiers.Count != 0) {
                 // Check if meta-information overwriting is enabled.
                 if (Options.EnableOverwriteMetaInformation) {
                     // Enable meta-information overwriting.
                     LineOptions.EnableOverwriteMetaInformation = true;
                 }
                 // Iterate through each unique identifier.
                 foreach (string UniqueIdentifier in LineOptions.UniqueIdentifiers) {
                     // Check if worker threads are not disabled.
                     if (LineOptions.MaximumParallelWorkerThreads > 1 && Options.MaximumParallelWorkerThreads > 1) {
                         // Add the unique identifier of the line to the worker item list.
                         WorkerItems.Add(new KeyValuePair<Options, string>(LineOptions, UniqueIdentifier));
                     } else {
                         // Run in single processing mode.
                         Single(LineOptions, UniqueIdentifier);
                     }
                 }
             }
         }
         // Check if worker items are available.
         if (WorkerItems.Count != 0) {
             // Iterate through each worker item.
             UnsafeParallel.For(0, WorkerItems.Count, Options.MaximumParallelWorkerThreads, i => {
                 // Run in single processing mode.
                 Single(WorkerItems[i].Key, WorkerItems[i].Value);
             });
         }
     }
 }
Beispiel #4
0
 /// <summary>
 /// Run in single processing mode for the unique identifier.
 /// </summary>
 /// <param name="Options">The collection of options.</param>
 /// <param name="UniqueIdentifier">The unique identifier.</param>
 public static void Single(Options Options, string UniqueIdentifier)
 {
     // Select the provider.
     IProvider Provider = _Providers.FirstOrDefault(x => x.Open(UniqueIdentifier) != null);
     // Check if the provider is valid.
     if (Provider != null) {
         // Initialize the series.
         using (ISeries Series = Provider.Open(UniqueIdentifier)) {
             // Populate the series.
             using (Series.Populate()) {
                 // Initialize the series title.
                 string Title = Series.Title.InvalidatePath();
                 // Iterate through each chapter using the chapter and volume filters.
                 foreach (IChapter Chapter in Series.Children.Filter(Options)) {
                     // Initialize the file path.
                     string FilePath = Path.Combine(Title, string.Format(Chapter.Volume == -1 ? "{0} #{2}.{3}" : "{0} V{1} #{2}.{3}", Title, Chapter.Volume.ToString("00"), Chapter.Number.ToString("000.####"), Options.FileExtension.InvalidatePath()));
                     // Check if the file should be synchronized.
                     if (Options.DisableDuplicationPrevention || !File.Exists(FilePath)) {
                         // Populate the chapter.
                         using (Chapter.Populate()) {
                             // Initialize a new instance of the Publisher class.
                             using (Publisher Publisher = new Publisher(FilePath, Options, Provider)) {
                                 // Initialize a new instance of the Synchronizer class.
                                 using (Synchronize Synchronizer = new Synchronize(Publisher, Series, Chapter)) {
                                     // Populate synchronously.
                                     Synchronizer.Populate();
                                 }
                             }
                         }
                     } else if (!Options.DisableRepairAndErrorTracking && File.Exists(string.Format("{0}.txt", FilePath))) {
                         // Populate the chapter.
                         using (Chapter.Populate()) {
                             // Initialize the comic information.
                             ComicInfo ComicInfo = null;
                             // Initialize whether there are broken pages.
                             bool HasBrokenPages = false;
                             // Initialize whether repairing has failed.
                             bool HasFailed = false;
                             // Initialize a new instance of the ZipFile class.
                             using (ZipFile ZipFile = new ZipFile(FilePath)) {
                                 // Find the comic information.
                                 ZipEntry ZipEntry = ZipFile.GetEntry("ComicInfo.xml");
                                 // Check if comic information is available.
                                 if (ZipEntry == null) {
                                     // Stop the function.
                                     return;
                                 } else {
                                     // Load the comic information.
                                     ComicInfo = ComicInfo.Load(ZipFile.GetInputStream(ZipEntry));
                                 }
                             }
                             // Initialize a new instance of the Publisher class.
                             using (Publisher Publisher = new Publisher(FilePath, Options, Provider, true)) {
                                 // Initialize a new instance of the Repair class.
                                 using (Repair Repair = new Repair(Publisher, Series, Chapter, ComicInfo, File.ReadAllLines(string.Format("{0}.txt", FilePath)))) {
                                     // Populate synchronously.
                                     Repair.Populate();
                                     // Set whether there are broken pages.
                                     HasBrokenPages = Publisher.HasBrokenPages;
                                     // Set whether repairing has failed.
                                     HasFailed = Publisher.HasFailed = Repair.HasFailed;
                                 }
                             }
                             // Check if there are no broken pages.
                             if (!HasBrokenPages) {
                                 // Delete the error file.
                                 File.Delete(string.Format("{0}.txt", FilePath));
                             }
                             // Check if repairing has failed.
                             if (HasFailed) {
                                 // Run in single processing mode for the unique identifier.
                                 Single(Options, UniqueIdentifier);
                             }
                         }
                     }
                 }
             }
         }
     }
 }
Beispiel #5
0
 /// <summary>
 /// Entry point of the application.
 /// </summary>
 /// <param name="Arguments">Each command line argument.</param>
 public static void Main(string[] Arguments)
 {
     // Initialize a new instance of the Options class.
     Options Options = new Options();
     // Occurs when an exception is not caught.
     AppDomain.CurrentDomain.UnhandledException += (sender, e) => {
         // Write the message.
         Console.WriteLine(e.ExceptionObject);
         // Check if the keep-alive behavior is not disabled.
         if (!Options.DisableKeepAliveBehavior) {
             // Write the message.
             Console.WriteLine("Press [ENTER] to exit.");
             // Prevent the console from closing.
             Console.ReadLine();
         }
         // Exit the application.
         Environment.Exit(0);
     };
     // Parse each command line argument into the options instance.
     if (Parser.Default.ParseArguments(Arguments, Options)) {
         // Initialize the begin time.
         long Time = DateTime.Now.Ticks;
         // Check if the maximum number of worker threads is invalid.
         if (Options.MaximumParallelWorkerThreads < 1) {
             // Set the maximum number of worker threads.
             Options.MaximumParallelWorkerThreads = 1;
         }
         // Check if no unique identifier is available.
         if (Options.UniqueIdentifiers.Count == 0) {
             // Run in batch processing mode.
             Batch(Options);
         } else {
             // Check if worker threads are not disabled.
             if (!Options.DisableWorkerThreads) {
                 // Iterate through each unique identifier.
                 UnsafeParallel.For(0, Options.UniqueIdentifiers.Count, Options.MaximumParallelWorkerThreads, i => {
                     // Run in single processing mode for the unique identifier.
                     Single(Options, Options.UniqueIdentifiers[i]);
                 });
             } else {
                 // Iterate through each unique identifier.
                 foreach (string UniqueIdentifier in Options.UniqueIdentifiers) {
                     // Run in single processing mode for the unique identifier.
                     Single(Options, UniqueIdentifier);
                 }
             }
         }
         // Check if the total elapsed time notification is not disabled.
         if (!Options.DisableTotalElapsedTime) {
             // Calculate the elapsed time.
             TimeSpan Elapsed = new TimeSpan(DateTime.Now.Ticks - Time);
             // Write the message.
             Console.WriteLine("Completed ({0}:{1}:{2})!", Elapsed.Hours.ToString("00"), Elapsed.Minutes.ToString("00"), Elapsed.Seconds.ToString("00"));
         }
         // Check if the keep-alive behavior is not disabled.
         if (!Options.DisableKeepAliveBehavior) {
             // Write the message.
             Console.WriteLine("Press [ENTER] to exit.");
             // Prevent the console from closing.
             Console.ReadLine();
         }
     }
 }
 /// <summary>
 /// Initialize a new instance of the Publisher class.
 /// </summary>
 /// <param name="FilePath">The file path.</param>
 /// <param name="Options">The collection of options.</param>
 /// <param name="Provider">The provider.</param>
 /// <param name="IsRepairing">Indicates whether the publisher is repairing.</param>
 public Publisher(string FilePath, Options Options, IProvider Provider, bool IsRepairing)
 {
     // Write the message.
     Console.WriteLine("{0} {1}", IsRepairing ? "Checking" : "Fetching", Path.GetFileName(FilePath));
     // Initialize properties.
     if (true) {
         // Set the begin time.
         _BeginTime = DateTime.Now.Ticks;
         // Set the file path.
         _FilePath = FilePath;
         // Set the file stream.
         _FileStream = File.Open(IsRepairing ? FilePath : Path.GetTempFileName(), FileMode.OpenOrCreate);
         // Set whether the publisher is repairing.
         _IsRepairing = IsRepairing;
         // Set the collection of options.
         _Options = Options;
         // Set the provider.
         _Provider = Provider;
         // Set the compressed file.
         _ZipFile = IsRepairing ? new ZipFile(_FileStream) : ZipFile.Create(_FileStream);
     }
 }
 /// <summary>
 /// Initialize a new instance of the Publisher class.
 /// </summary>
 /// <param name="FilePath">The file path.</param>
 /// <param name="Options">The collection of options.</param>
 /// <param name="Provider">The provider.</param>
 public Publisher(string FilePath, Options Options, IProvider Provider)
     : this(FilePath, Options, Provider, false)
 {
     // Stop the function.
     return;
 }
 /// <summary>
 /// Run in single processing mode for the unique identifier.
 /// </summary>
 /// <param name="Options">The collection of options.</param>
 /// <param name="UniqueIdentifier">The unique identifier.</param>
 public static void Single(Options Options, string UniqueIdentifier)
 {
     // Select the provider.
     IProvider Provider = _Providers.FirstOrDefault(x => x.Open(UniqueIdentifier) != null);
     // Check if the provider is valid.
     if (Provider != null) {
         // Initialize the series.
         using (ISeries Series = Provider.Open(UniqueIdentifier)) {
             // Populate the series.
             using (Series.Populate()) {
                 // Initialize the series title.
                 string Title = Series.Title.InvalidatePath();
                 // Initialize the persistence.
                 List<string> Persistence = new List<string>();
                 // Initialize the persistence file path.
                 string PersistencePath = Path.Combine(Title, ".mangarack-persist");
                 // Check if persistent synchronization tracking is enabled and a tracking file is available.
                 if (File.Exists(PersistencePath)) {
                     // Iterate through each line in the persistence file.
                     foreach (string Line in File.ReadAllLines(PersistencePath)) {
                         // Add the line to the persistence file names.
                         Persistence.Add(Line);
                     }
                 }
                 // Iterate through each chapter using the chapter and volume filters.
                 foreach (IChapter Chapter in Series.Children.Filter(Options)) {
                     // Initialize whether sychronization has failed.
                     bool HasFailed = false;
                     // Initialize the file name.
                     string FileName = string.Format(Chapter.Volume == -1 ? "{0} #{2}.{3}" : "{0} V{1} #{2}.{3}", Title, Chapter.Volume.ToString("00"), Chapter.Number.ToString("000.####"), Options.FileExtension.InvalidatePath());
                     // Initialize the file path.
                     string FilePath = Path.Combine(Title, FileName);
                     // Check if persistent synchronization tracking is enabled and the file name is persisted.
                     if (Persistence.Contains(FileName)) {
                         // Continue to the next chapter.
                         continue;
                     } else {
                         // Add the file name to the persistence file names.
                         Persistence.Add(FileName);
                     }
                     // Do the following code.
                     do {
                         // Check if the file should be synchronized.
                         if (Options.DisableDuplicationPrevention || !File.Exists(FilePath)) {
                             // Populate the chapter.
                             using (Chapter.Populate()) {
                                 // Initialize a new instance of the Publisher class.
                                 using (Publisher Publisher = new Publisher(FilePath, Options, Provider)) {
                                     // Initialize a new instance of the Synchronizer class.
                                     using (Synchronize Synchronizer = new Synchronize(Publisher, Series, Chapter)) {
                                         // Populate synchronously.
                                         Synchronizer.Populate();
                                         // Set whether synchronization has failed.
                                         HasFailed = false;
                                     }
                                 }
                             }
                         } else {
                             // Check if a meta-information overwrite should be performed.
                             if (Options.EnableOverwriteMetaInformation) {
                                 // Initialize the comic information.
                                 ComicInfo ComicInfo = new ComicInfo(), PreviousComicInfo = null;
                                 // Initialize a new instance of the ZipFile class.
                                 using (ZipFile ZipFile = new ZipFile(FilePath)) {
                                     // Find the comic information.
                                     ZipEntry ZipEntry = ZipFile.GetEntry("ComicInfo.xml");
                                     // Check if comic information is available.
                                     if (ZipEntry != null) {
                                         // Load the comic information.
                                         PreviousComicInfo = ComicInfo.Load(ZipFile.GetInputStream(ZipEntry));
                                         // Transcribe the series, chapter and pages information.
                                         ComicInfo.Transcribe(Series, Chapter, PreviousComicInfo.Pages);
                                         // Check if a current genre differs ...
                                         if (ComicInfo.Genre.Any(x => !PreviousComicInfo.Genre.Contains(x)) ||
                                             // ... or if a previous genre differs ...
                                             PreviousComicInfo.Genre.Any(x => !ComicInfo.Genre.Contains(x)) ||
                                             // ... or the manga specification differs ...
                                             ComicInfo.Manga != PreviousComicInfo.Manga ||
                                             // ... or the number differs ...
                                             ComicInfo.Number != PreviousComicInfo.Number ||
                                             // ... or if the page count differs ...
                                             ComicInfo.PageCount != PreviousComicInfo.PageCount ||
                                             // ... or if a current penciller difffers ...
                                             ComicInfo.Penciller.Any(x => !PreviousComicInfo.Penciller.Contains(x)) ||
                                             // ... or if a previous penciller difffers ...
                                             PreviousComicInfo.Penciller.Any(x => !ComicInfo.Penciller.Contains(x)) ||
                                             // ... or if the series differs ...
                                             ComicInfo.Series != PreviousComicInfo.Series ||
                                             // ... or if the summary differs ...
                                             ComicInfo.Summary != PreviousComicInfo.Summary ||
                                             // ... or if the title differs ...
                                             ComicInfo.Title != PreviousComicInfo.Title ||
                                             // ... or if the volume differs ...
                                             ComicInfo.Volume != PreviousComicInfo.Volume ||
                                             // ... or if a current writer differs.
                                             ComicInfo.Writer.Any(x => !PreviousComicInfo.Writer.Contains(x)) ||
                                             // ... or if a previous writer differs.
                                             PreviousComicInfo.Writer.Any(x => !ComicInfo.Writer.Contains(x))) {
                                             // Initialize a new instance of the MemoryStream class.
                                             using (MemoryStream MemoryStream = new MemoryStream()) {
                                                 // Save the comic information.
                                                 ComicInfo.Save(MemoryStream);
                                                 // Rewind the stream.
                                                 MemoryStream.Position = 0;
                                                 // Begin updating the compressed file.
                                                 ZipFile.BeginUpdate();
                                                 // Add the file.
                                                 ZipFile.Add(new DataSource(MemoryStream), "ComicInfo.xml");
                                                 // End updating the compressed file.
                                                 ZipFile.CommitUpdate();
                                                 // Write a message.
                                                 Console.WriteLine("Modified {0}", FileName);
                                             }
                                         }
                                     }
                                 }
                             }
                             // Check if a repair should be performed.
                             if (!Options.DisableRepairAndErrorTracking && File.Exists(string.Format("{0}.txt", FilePath))) {
                                 // Populate the chapter.
                                 using (Chapter.Populate()) {
                                     // Initialize the comic information.
                                     ComicInfo ComicInfo = null;
                                     // Initialize whether there are broken pages.
                                     bool HasBrokenPages = false;
                                     // Initialize a new instance of the ZipFile class.
                                     using (ZipFile ZipFile = new ZipFile(FilePath)) {
                                         // Find the comic information.
                                         ZipEntry ZipEntry = ZipFile.GetEntry("ComicInfo.xml");
                                         // Check if comic information is available.
                                         if (ZipEntry == null) {
                                             // Stop the function.
                                             return;
                                         } else {
                                             // Load the comic information.
                                             ComicInfo = ComicInfo.Load(ZipFile.GetInputStream(ZipEntry));
                                         }
                                     }
                                     // Initialize a new instance of the Publisher class.
                                     using (Publisher Publisher = new Publisher(FilePath, Options, Provider, true)) {
                                         // Initialize a new instance of the Repair class.
                                         using (Repair Repair = new Repair(Publisher, Series, Chapter, ComicInfo, File.ReadAllLines(string.Format("{0}.txt", FilePath)))) {
                                             // Populate synchronously.
                                             Repair.Populate();
                                             // Set whether there are broken pages.
                                             HasBrokenPages = Publisher.HasBrokenPages;
                                             // Set whether synchronization has failed.
                                             HasFailed = Publisher.HasFailed = Repair.HasFailed;
                                         }
                                     }
                                     // Check if there are no broken pages.
                                     if (!HasBrokenPages && File.Exists(string.Format("{0}.txt", FilePath))) {
                                         // Delete the error file.
                                         File.Delete(string.Format("{0}.txt", FilePath));
                                     }
                                 }
                             }
                         }
                     } while (HasFailed);
                     // Check if persistent synchronization tracking is enabled.
                     if (Options.EnablePersistentSynchronization) {
                         // Write each line to the persistence file path.
                         File.WriteAllLines(PersistencePath, Persistence.ToArray());
                     }
                 }
             }
         }
     }
 }