using Mono.Data.Sqlite; using SabreTools.Helper; using System; using System.Collections.Generic; using System.IO; namespace SabreTools { /// /// Entry class for the Deheader application /// public class Headerer { // Private instance variables private List _inputs; private bool _restore; private string _outdir; private Logger _logger; /// /// Create a new Headerer object /// /// Input file or folder names /// False if we're extracting headers (default), true if we're restoring them /// Output directory to write new files to, blank defaults to rom folder /// Logger object for file and console output public Headerer(List inputs, bool restore, string outdir, Logger logger) { _inputs = inputs; _restore = restore; _outdir = outdir; _logger = logger; } /// /// Extract and remove or replace headers /// /// True if it succeeded, false otherwise public bool Process() { if (_outdir != "" && !Directory.Exists(_outdir)) { Directory.CreateDirectory(_outdir); } bool success = true; foreach (string input in _inputs) { if (File.Exists(input)) { success &= ProcessHelper(input); } else if (Directory.Exists(input)) { foreach (string sub in Directory.EnumerateFiles(input, "*", SearchOption.AllDirectories)) { success &= ProcessHelper(sub); } } } return success; } /// /// Intermediary to route the input file to the correct method(s) /// /// Input file name /// True on success, false otherwise private bool ProcessHelper(string input) { if (_restore) { return RestoreHeader(input); } else { return DetectSkipperAndTransform(input); } } /// /// Detect header skipper compliance and create an output file /// /// Name of the file to be parsed /// True if the output file was created, false otherwise private bool DetectSkipperAndTransform(string file) { _logger.User("\nGetting skipper information for '" + file + "'"); // Then, if the file was headered, store it to the database int headerSize = -1; HeaderType type = Skippers.GetFileHeaderType(file, out headerSize, _logger); // If we have a valid HeaderType, remove the correct byte count _logger.User("File has header: " + (type != HeaderType.None)); if (type != HeaderType.None) { _logger.Log("Deteched header type: " + type); // Now take care of the header and new output file string hstr = string.Empty; using (BinaryReader br = new BinaryReader(File.OpenRead(file))) { // Extract the header as a string for the database byte[] hbin = br.ReadBytes(headerSize); for (int i = 0; i < headerSize; i++) { hstr += BitConverter.ToString(new byte[] { hbin[i] }); } } // Then find an apply the exact rule to the file SkipperRule rule = Skippers.MatchesSkipper(file, "", _logger); // If we have an empty rule, return false if (rule.Tests == null || rule.Tests.Count == 0) { return false; } // Otherwise, apply the rule to the file string newfile = (_outdir == "" ? Path.GetFullPath(file) + ".new" : Path.Combine(_outdir, Path.GetFileName(file))); Skippers.TransformFile(file, newfile, rule, _logger); // If the output file doesn't exist, return false if (!File.Exists(newfile)) { return false; } // Now add the information to the database if it's not already there Rom rom = FileTools.GetSingleFileInfo(newfile); AddHeaderToDatabase(hstr, rom.HashData.SHA1, type); } return true; } /// /// Add a header to the database /// /// String representing the header bytes /// SHA-1 of the deheadered file /// HeaderType representing the detected header private void AddHeaderToDatabase(string header, string SHA1, HeaderType type) { bool exists = false; string query = @"SELECT * FROM data WHERE sha1='" + SHA1 + "' AND header='" + header + "'"; using (SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString)) { dbc.Open(); using (SqliteCommand slc = new SqliteCommand(query, dbc)) { using (SqliteDataReader sldr = slc.ExecuteReader()) { exists = sldr.HasRows; } } } if (!exists) { query = @"INSERT INTO data (sha1, header, type) VALUES ('" + SHA1 + "', " + "'" + header + "', " + "'" + type.ToString() + "')"; using (SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString)) { dbc.Open(); using (SqliteCommand slc = new SqliteCommand(query, dbc)) { _logger.Log("Result of inserting header: " + slc.ExecuteNonQuery()); } } } } /// /// Detect and replace header(s) to the given file /// /// Name of the file to be parsed /// True if a header was found and appended, false otherwise private bool RestoreHeader(string file) { // First, get the SHA-1 hash of the file Rom rom = FileTools.GetSingleFileInfo(file); // Then try to pull the corresponding headers from the database string header = ""; string query = @"SELECT header, type FROM data WHERE sha1='" + rom.HashData.SHA1 + "'"; using (SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString)) { dbc.Open(); using (SqliteCommand slc = new SqliteCommand(query, dbc)) { using (SqliteDataReader sldr = slc.ExecuteReader()) { if (sldr.HasRows) { int sub = 0; while (sldr.Read()) { _logger.Log("Found match with rom type " + sldr.GetString(1)); header = sldr.GetString(0); _logger.User("Creating reheadered file: " + (_outdir == "" ? Path.GetFullPath(file) + ".new" : Path.Combine(_outdir, Path.GetFileName(file))) + sub); FileTools.AppendBytesToFile(file, (_outdir == "" ? Path.GetFullPath(file) + ".new" : Path.Combine(_outdir, Path.GetFileName(file))) + sub, header, string.Empty); _logger.User("Reheadered file created!"); } } else { _logger.Warning("No matching header could be found!"); return false; } } } } return true; } } }