using System; using System.IO; using System.Text; using SabreTools.Hashing; using SabreTools.IO.Extensions; using SabreTools.Serialization; using SabreTools.Serialization.Wrappers; namespace InfoPrint { public static class Program { public static void Main(string[] args) { // Get the options from the arguments var options = Options.ParseOptions(args); // If we have an invalid state if (options == null) { Options.DisplayHelp(); return; } // Loop through the input paths foreach (string inputPath in options.InputPaths) { PrintPathInfo(inputPath, options); } } /// /// Wrapper to print information for a single path /// /// File or directory path /// User-defined options private static void PrintPathInfo(string path, Options options) { Console.WriteLine($"Checking possible path: {path}"); // Check if the file or directory exists if (File.Exists(path)) { PrintFileInfo(path, options); } else if (Directory.Exists(path)) { foreach (string file in IOExtensions.SafeEnumerateFiles(path, "*", SearchOption.AllDirectories)) { PrintFileInfo(file, options); } } else { Console.WriteLine($"{path} does not exist, skipping..."); } } /// /// Print information for a single file, if possible /// /// File path /// User-defined options private static void PrintFileInfo(string file, Options options) { Console.WriteLine($"Attempting to print info for {file}"); // Get the base info output name string filenameBase = $"info-{DateTime.Now:yyyy-MM-dd_HHmmss.ffff}"; // If we have the hash flag if (options.Hash) { var hashBuilder = PrintHashInfo(file, options.Debug); if (hashBuilder != null) { // Create the output data string hashData = hashBuilder.ToString(); // Write the output data using var hsw = new StreamWriter(File.OpenWrite($"{filenameBase}.hashes")); hsw.WriteLine(hashData); hsw.Flush(); } } try { using Stream stream = File.Open(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); // Read the first 8 bytes byte[]? magic = stream.ReadBytes(8); stream.Seek(0, SeekOrigin.Begin); // Get the file type string extension = Path.GetExtension(file).TrimStart('.'); WrapperType ft = WrapperFactory.GetFileType(magic ?? [], extension); // Print out the file format Console.WriteLine($"File format found: {ft}"); // Setup the wrapper to print var wrapper = WrapperFactory.CreateWrapper(ft, stream); // If we don't have a wrapper if (wrapper == null) { Console.WriteLine($"Either {ft} is not supported or something went wrong during parsing!"); Console.WriteLine(); return; } #if NETCOREAPP // If we have the JSON flag if (options.Json) { // Create the output data string serializedData = wrapper.ExportJSON(); // Write the output data using var jsw = new StreamWriter(File.OpenWrite($"{filenameBase}.json")); jsw.WriteLine(serializedData); jsw.Flush(); } #endif // Create the output data var builder = wrapper.ExportStringBuilder(); if (builder == null) { Console.WriteLine("No item information could be generated"); return; } // Only print to console if enabled if (!options.FileOnly) Console.WriteLine(builder); using var sw = new StreamWriter(File.OpenWrite($"{filenameBase}.txt")); sw.WriteLine(builder.ToString()); sw.Flush(); } catch (Exception ex) { Console.WriteLine(options.Debug ? ex : "[Exception opening file, please try again]"); Console.WriteLine(); } } /// /// Print hash information for a single file, if possible /// /// File path /// Enable debug output /// StringBuilder representing the hash information, if possible private static StringBuilder? PrintHashInfo(string file, bool debug) { // Ignore missing files if (!File.Exists(file)) return null; Console.WriteLine($"Attempting to hash {file}, this may take a while..."); try { // Get all file hashes for flexibility var hashes = HashTool.GetFileHashes(file); if (hashes == null) { if (debug) Console.WriteLine($"Hashes for {file} could not be retrieved"); return null; } // Output subset of available hashes var builder = new StringBuilder(); if (hashes.TryGetValue(HashType.CRC16, out string? crc16) && crc16 != null) builder.AppendLine($"CRC-16 checksum: {crc16}"); if (hashes.TryGetValue(HashType.CRC32, out string? crc32) && crc32 != null) builder.AppendLine($"CRC-32 checksum: {crc32}"); if (hashes.TryGetValue(HashType.MD2, out string? md2) && md2 != null) builder.AppendLine($"MD2 hash: {md2}"); if (hashes.TryGetValue(HashType.MD4, out string? md4) && md4 != null) builder.AppendLine($"MD4 hash: {md4}"); if (hashes.TryGetValue(HashType.MD5, out string? md5) && md5 != null) builder.AppendLine($"MD5 hash: {md5}"); if (hashes.TryGetValue(HashType.RIPEMD128, out string? ripemd128) && ripemd128 != null) builder.AppendLine($"RIPEMD-128 hash: {ripemd128}"); if (hashes.TryGetValue(HashType.RIPEMD160, out string? ripemd160) && ripemd160 != null) builder.AppendLine($"RIPEMD-160 hash: {ripemd160}"); if (hashes.TryGetValue(HashType.SHA1, out string? sha1) && sha1 != null) builder.AppendLine($"SHA-1 hash: {sha1}"); if (hashes.TryGetValue(HashType.SHA256, out string? sha256) && sha256 != null) builder.AppendLine($"SHA-256 hash: {sha256}"); if (hashes.TryGetValue(HashType.SHA384, out string? sha384) && sha384 != null) builder.AppendLine($"SHA-384 hash: {sha384}"); if (hashes.TryGetValue(HashType.SHA512, out string? sha512) && sha512 != null) builder.AppendLine($"SHA-512 hash: {sha512}"); return builder; } catch (Exception ex) { Console.WriteLine(debug ? ex : "[Exception opening file, please try again]"); return null; } } } }