using Mono.Data.Sqlite; using SabreTools.Helper; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Xml; namespace SabreTools { public partial class RombaSharp { #region Helper methods /// /// Initialize the Romba application from XML config /// private static void InitializeConfiguration() { // Get default values if they're not written int workers = 4, verbosity = 1, cores = 4, port = 4003; string logdir = "logs", tmpdir = "tmp", webdir = "web", baddir = "bad", dats = "dats", db = "db", connectionString = ""; Dictionary> depots = new Dictionary>(); // Get the XML text reader for the configuration file, if possible XmlReader xtr = FileTools.GetXmlTextReader(_config, _logger); // Now parse the XML file for settings if (xtr != null) { xtr.MoveToContent(); while (!xtr.EOF) { // We only want elements if (xtr.NodeType != XmlNodeType.Element) { xtr.Read(); continue; } switch (xtr.Name) { case "workers": workers = xtr.ReadElementContentAsInt(); break; case "logdir": logdir = xtr.ReadElementContentAsString(); break; case "tmpdir": tmpdir = xtr.ReadElementContentAsString(); break; case "webdir": webdir = xtr.ReadElementContentAsString(); break; case "baddir": baddir = xtr.ReadElementContentAsString(); break; case "verbosity": verbosity = xtr.ReadElementContentAsInt(); break; case "cores": cores = xtr.ReadElementContentAsInt(); break; case "dats": dats = xtr.ReadElementContentAsString(); break; case "db": db = xtr.ReadElementContentAsString(); break; case "depot": XmlReader subreader = xtr.ReadSubtree(); if (subreader != null) { string root = ""; long maxsize = -1; bool online = true; while (!subreader.EOF) { // We only want elements if (subreader.NodeType != XmlNodeType.Element) { subreader.Read(); continue; } switch (subreader.Name) { case "root": root = subreader.ReadElementContentAsString(); break; case "maxsize": maxsize = subreader.ReadElementContentAsLong(); break; case "online": online = subreader.ReadElementContentAsBoolean(); break; default: subreader.Read(); break; } } try { depots.Add(root, new Tuple(maxsize, online)); } catch { // Ignore add errors } } xtr.Skip(); break; case "port": port = xtr.ReadElementContentAsInt(); break; default: xtr.Read(); break; } } } // Now validate the values given if (workers < 1) { workers = 1; } if (workers > 8) { workers = 8; } if (!Directory.Exists(logdir)) { Directory.CreateDirectory(logdir); } if (!Directory.Exists(tmpdir)) { Directory.CreateDirectory(tmpdir); } if (!Directory.Exists(webdir)) { Directory.CreateDirectory(webdir); } if (!Directory.Exists(baddir)) { Directory.CreateDirectory(baddir); } if (verbosity < 0) { verbosity = 0; } if (verbosity > 3) { verbosity = 3; } if (cores < 1) { cores = 1; } if (cores > 16) { cores = 16; } if (!Directory.Exists(dats)) { Directory.CreateDirectory(dats); } db = Path.GetFileNameWithoutExtension(db) + ".sqlite"; connectionString = "Data Source=" + db + ";Version = 3;"; foreach (string key in depots.Keys) { if (!Directory.Exists(key)) { Directory.CreateDirectory(key); File.CreateText(Path.Combine(key, ".romba_size")); File.CreateText(Path.Combine(key, ".romba_size.backup")); } else { if (!File.Exists(Path.Combine(key, ".romba_size"))) { File.CreateText(Path.Combine(key, ".romba_size")); } if (!File.Exists(Path.Combine(key, ".romba_size.backup"))) { File.CreateText(Path.Combine(key, ".romba_size.backup")); } } } if (port < 0) { port = 0; } if (port > 65535) { port = 65535; } // Finally set all of the fields _workers = workers; _logdir = logdir; _tmpdir = tmpdir; _webdir = webdir; _baddir = baddir; _verbosity = verbosity; _cores = cores; _dats = dats; _db = db; _connectionString = connectionString; _depots = depots; _port = port; } /// /// Display the statistics in the database /// /// /// This list of stats should include: /// - Total uncompressed size of the files /// - Total number of files /// - Total number of files that exist /// - Total number of files that don't exist /// - Total number of files with CRC /// - Total number of files with MD5 /// - Total number of files with SHA-1 /// - Total number of unique DAT hashes /// private static void DisplayDBStats() { _logger.User("This feature is not yet implemented: dbstats"); } /// /// Display the current memory usage of the application /// private static void DisplayMemoryStats() { Process proc = Process.GetCurrentProcess(); _logger.User("Current Nonpaged Memory: " + Style.GetBytesReadable(proc.NonpagedSystemMemorySize64)); _logger.User("Current Paged Memory: " + Style.GetBytesReadable(proc.PagedMemorySize64)); _logger.User("Peak Paged Memory: " + Style.GetBytesReadable(proc.PeakPagedMemorySize64)); _logger.User("Peak Virtual Memory: " + Style.GetBytesReadable(proc.PeakVirtualMemorySize64)); _logger.User("Peak Working Memory: " + Style.GetBytesReadable(proc.PeakWorkingSet64)); _logger.User("Private Memory: " + Style.GetBytesReadable(proc.PrivateMemorySize64)); _logger.User("Virtual Memory: " + Style.GetBytesReadable(proc.VirtualMemorySize64)); _logger.User("Working Memory: " + Style.GetBytesReadable(proc.WorkingSet64)); _logger.User("Total Processor Time: " + proc.TotalProcessorTime); _logger.User("User Processor Time: " + proc.UserProcessorTime); } /// /// Moves DAT index entries for orphaned DATs to backup folder /// private static void PurgeBackup() { _logger.User("This feature is not yet implemented: purge-backup"); } /// /// Deletes DAT index entries for orphaned DATs /// private static void PurgeDelete() { _logger.User("This feature is not yet implemented: purge-delete"); } /// /// Populate or refresh the database information /// /// Each hash has the following attributes: size, crc, md5, sha-1, dathash, existss private static void RefreshDatabase() { // Make sure the db is set if (String.IsNullOrEmpty(_db)) { _db = "db.sqlite"; _connectionString = "Data Source=" + _db + ";Version = 3;"; } // Make sure the file exists if (!File.Exists(_db)) { DatabaseTools.EnsureDatabase(_dbSchema, _db, _connectionString); } // Make sure the dats dir is set if (String.IsNullOrEmpty(_dats)) { _dats = "dats"; } // Make sure the folder exists if (!Directory.Exists(_dats)) { Directory.CreateDirectory(_dats); } // Create a List of dat hashes in the database (SHA-1) List databaseDats = new List(); // Populate the List from the database string query = "SELECT UNIQUE value FROM data WHERE key=\"dat\""; SqliteConnection dbc = new SqliteConnection(_connectionString); SqliteCommand slc = new SqliteCommand(query, dbc); SqliteDataReader sldr = slc.ExecuteReader(); if (sldr.HasRows) { sldr.Read(); string hash = sldr.GetString(0); if (!databaseDats.Contains(hash)) { databaseDats.Add(hash); } } slc.Dispose(); sldr.Dispose(); // Now create a Dictionary of dats to parse from what's not in the database (SHA-1, Path) Dictionary toscan = new Dictionary(); // Loop through the datroot and add only needed files foreach (string file in Directory.EnumerateFiles(_dats, "*", SearchOption.AllDirectories)) { Rom dat = FileTools.GetSingleFileInfo(file, _logger); // If the Dat isn't in the database and isn't already accounted for in the DatRoot, add it if (!databaseDats.Contains(dat.SHA1) && !toscan.ContainsKey(dat.SHA1)) { toscan.Add(dat.SHA1, Path.GetFullPath(file)); } // If the Dat is in the database already, remove it to find stragglers else if (databaseDats.Contains(dat.SHA1)) { databaseDats.Remove(dat.SHA1); } } // Loop through the Dictionary and add all data foreach (string key in toscan.Keys) { // Parse the Dat if possible DatFile tempdat = new DatFile(); tempdat.Parse(toscan[key], 0, 0, _logger); // If the Dat wasn't empty, add the information if (tempdat.Files.Count != 0) { // Loop through the parsed entries foreach (string romkey in tempdat.Files.Keys) { foreach (Rom rom in tempdat.Files[romkey]) { query = "SELECT id FROM data WHERE key=\"size\" AND value=\"" + rom.Size + "\" AND (" + "(key=\"crc\" AND (value=\"" + rom.CRC + "\" OR value=\"null\"))" + "AND (key=\"md5\" AND value=\"" + rom.MD5 + "\" OR value=\"null\"))" + "AND (key=\"sha1\" AND value=\"" + rom.SHA1 + "\" OR value=\"null\")))"; slc = new SqliteCommand(query, dbc); sldr = slc.ExecuteReader(); // If the hash exists in the database, add the dat hash for that id if (sldr.HasRows) { sldr.Read(); string id = sldr.GetString(0); string squery = "INSERT INTO data (id, key, value) VALUES (\"" + id + "\", \"dat\", \"" + key + "\")"; SqliteCommand sslc = new SqliteCommand(squery, dbc); sslc.ExecuteNonQuery(); sslc.Dispose(); } // If it doesn't exist, add the hash and the dat hash for a new id else { string squery = "INSERT INTO data (key, value) VALUES (\"size\", \"" + rom.Size + "\")"; SqliteCommand sslc = new SqliteCommand(squery, dbc); sslc.ExecuteNonQuery(); long id = -1; squery = "SELECT last_insertConstants.Rowid()"; sslc = new SqliteCommand(squery, dbc); id = (long)sslc.ExecuteScalar(); squery = "INSERT INTO data (id, key, value) VALUES (\"" + id + "\", \"crc\", \"" + rom.CRC + "\")," + " (\"" + id + "\", \"md5\", \"" + rom.MD5 + "\")," + " (\"" + id + "\", \"sha1\", \"" + rom.SHA1 + "\")," + " (\"" + id + "\", \"dat\", \"" + key + "\")," + " (\"" + id + "\", \"exists\", \"false\")"; sslc = new SqliteCommand(squery, dbc); sslc.ExecuteNonQuery(); } } } } // Now loop through and remove all references to old Dats // TODO: Remove orphaned files as well foreach (string dathash in databaseDats) { query = "DELETE FROM data WHERE key=\"dat\" AND value=\"" + dathash + "\""; slc = new SqliteCommand(query, dbc); slc.ExecuteNonQuery(); slc.Dispose(); } } } /// /// Gets all valid DATs that match in the DAT root /// /// List of input strings to check for, presumably file names /// Dictionary of hash/full path for each of the valid DATs private static Dictionary GetValidDats(List inputs) { // Get a dictionary of filenames that actually exist in the DATRoot, logging which ones are not List datRootDats = Directory.EnumerateFiles(_dats, "*", SearchOption.AllDirectories).ToList().ConvertAll(i => i.ToLowerInvariant()); Dictionary foundDats = new Dictionary(); foreach (string input in inputs) { if (datRootDats.Contains(input.ToLowerInvariant())) { string fullpath = Path.GetFullPath(datRootDats[datRootDats.IndexOf(input.ToLowerInvariant())]); string sha1 = FileTools.GetSingleFileInfo(fullpath, _logger).SHA1; foundDats.Add(sha1, fullpath); } else { _logger.Warning("The file '" + input + "' could not be found in the DAT root"); } } return foundDats; } #endregion } }