mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Headerer, FileTools] Wrap Headerer into FileTools
This commit is contained in:
@@ -1,229 +0,0 @@
|
|||||||
using Mono.Data.Sqlite;
|
|
||||||
using SabreTools.Helper;
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
namespace SabreTools
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Entry class for the Deheader application
|
|
||||||
/// </summary>
|
|
||||||
public class Headerer
|
|
||||||
{
|
|
||||||
// Private instance variables
|
|
||||||
private List<string> _inputs;
|
|
||||||
private bool _restore;
|
|
||||||
private string _outDir;
|
|
||||||
private Logger _logger;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a new Headerer object
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="inputs">Input file or folder names</param>
|
|
||||||
/// <param name="restore">False if we're extracting headers (default), true if we're restoring them</param>
|
|
||||||
/// <param name="outDir">Output directory to write new files to, blank defaults to rom folder</param>
|
|
||||||
/// <param name="logger">Logger object for file and console output</param>
|
|
||||||
public Headerer(List<string> inputs, bool restore, string outDir, Logger logger)
|
|
||||||
{
|
|
||||||
_inputs = inputs;
|
|
||||||
_restore = restore;
|
|
||||||
_outDir = outDir;
|
|
||||||
_logger = logger;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Extract and remove or replace headers
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>True if it succeeded, false otherwise</returns>
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Intermediary to route the input file to the correct method(s)
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="input">Input file name</param>
|
|
||||||
/// <returns>True on success, false otherwise</returns>
|
|
||||||
private bool ProcessHelper(string input)
|
|
||||||
{
|
|
||||||
if (_restore)
|
|
||||||
{
|
|
||||||
return RestoreHeader(input);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return DetectSkipperAndTransform(input);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Detect header skipper compliance and create an output file
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="file">Name of the file to be parsed</param>
|
|
||||||
/// <returns>True if the output file was created, false otherwise</returns>
|
|
||||||
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;
|
|
||||||
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] });
|
|
||||||
}
|
|
||||||
|
|
||||||
br.Dispose();
|
|
||||||
|
|
||||||
// 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.SHA1, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Add a header to the database
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="header">String representing the header bytes</param>
|
|
||||||
/// <param name="SHA1">SHA-1 of the deheadered file</param>
|
|
||||||
/// <param name="type">HeaderType representing the detected header</param>
|
|
||||||
private void AddHeaderToDatabase(string header, string SHA1, HeaderType type)
|
|
||||||
{
|
|
||||||
bool exists = false;
|
|
||||||
|
|
||||||
// Open the database connection
|
|
||||||
SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString);
|
|
||||||
dbc.Open();
|
|
||||||
|
|
||||||
string query = @"SELECT * FROM data WHERE sha1='" + SHA1 + "' AND header='" + header + "'";
|
|
||||||
SqliteCommand slc = new SqliteCommand(query, dbc);
|
|
||||||
SqliteDataReader sldr = slc.ExecuteReader();
|
|
||||||
exists = sldr.HasRows;
|
|
||||||
|
|
||||||
if (!exists)
|
|
||||||
{
|
|
||||||
query = @"INSERT INTO data (sha1, header, type) VALUES ('" +
|
|
||||||
SHA1 + "', " +
|
|
||||||
"'" + header + "', " +
|
|
||||||
"'" + type.ToString() + "')";
|
|
||||||
slc = new SqliteCommand(query, dbc);
|
|
||||||
_logger.Log("Result of inserting header: " + slc.ExecuteNonQuery());
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dispose of database objects
|
|
||||||
slc.Dispose();
|
|
||||||
sldr.Dispose();
|
|
||||||
dbc.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Detect and replace header(s) to the given file
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="file">Name of the file to be parsed</param>
|
|
||||||
/// <returns>True if a header was found and appended, false otherwise</returns>
|
|
||||||
private bool RestoreHeader(string file)
|
|
||||||
{
|
|
||||||
bool success = true;
|
|
||||||
|
|
||||||
// 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 = "";
|
|
||||||
|
|
||||||
// Open the database connection
|
|
||||||
SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString);
|
|
||||||
dbc.Open();
|
|
||||||
|
|
||||||
string query = @"SELECT header, type FROM data WHERE sha1='" + rom.SHA1 + "'";
|
|
||||||
SqliteCommand slc = new SqliteCommand(query, dbc);
|
|
||||||
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!");
|
|
||||||
success = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Dispose of database objects
|
|
||||||
slc.Dispose();
|
|
||||||
sldr.Dispose();
|
|
||||||
dbc.Dispose();
|
|
||||||
|
|
||||||
return success;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -107,7 +107,6 @@
|
|||||||
<Compile Include="Objects\Dat\Disk.cs" />
|
<Compile Include="Objects\Dat\Disk.cs" />
|
||||||
<Compile Include="Objects\Dat\Release.cs" />
|
<Compile Include="Objects\Dat\Release.cs" />
|
||||||
<Compile Include="Objects\Dat\Sample.cs" />
|
<Compile Include="Objects\Dat\Sample.cs" />
|
||||||
<Compile Include="Objects\Headerer.cs" />
|
|
||||||
<Compile Include="Objects\Dat\Rom.cs" />
|
<Compile Include="Objects\Dat\Rom.cs" />
|
||||||
<Compile Include="Objects\SimpleSort.cs" />
|
<Compile Include="Objects\SimpleSort.cs" />
|
||||||
<Compile Include="Objects\Archive\ZipFileEntry.cs" />
|
<Compile Include="Objects\Archive\ZipFileEntry.cs" />
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using OCRC;
|
using Mono.Data.Sqlite;
|
||||||
|
using OCRC;
|
||||||
using SharpCompress.Archive;
|
using SharpCompress.Archive;
|
||||||
using SharpCompress.Archive.SevenZip;
|
using SharpCompress.Archive.SevenZip;
|
||||||
using SharpCompress.Common;
|
using SharpCompress.Common;
|
||||||
@@ -1227,6 +1228,169 @@ namespace SabreTools.Helper
|
|||||||
fsw.Dispose();
|
fsw.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Detect header skipper compliance and create an output file
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="file">Name of the file to be parsed</param>
|
||||||
|
/// <param name="outDir">Output directory to write the file to, empty means the same directory as the input file</param>
|
||||||
|
/// <param name="logger">Logger object for console and file output</param>
|
||||||
|
/// <returns>True if the output file was created, false otherwise</returns>
|
||||||
|
public static bool DetectSkipperAndTransform(string file, string outDir, Logger logger)
|
||||||
|
{
|
||||||
|
// Create the output directory if it doesn't exist
|
||||||
|
if (outDir != "" && !Directory.Exists(outDir))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(outDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
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] });
|
||||||
|
}
|
||||||
|
|
||||||
|
br.Dispose();
|
||||||
|
|
||||||
|
// 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 = GetSingleFileInfo(newfile);
|
||||||
|
AddHeaderToDatabase(hstr, rom.SHA1, type, logger);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Add a header to the database
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="header">String representing the header bytes</param>
|
||||||
|
/// <param name="SHA1">SHA-1 of the deheadered file</param>
|
||||||
|
/// <param name="type">HeaderType representing the detected header</param>
|
||||||
|
/// <param name="logger">Logger object for console and file output</param>
|
||||||
|
private static void AddHeaderToDatabase(string header, string SHA1, HeaderType type, Logger logger)
|
||||||
|
{
|
||||||
|
bool exists = false;
|
||||||
|
|
||||||
|
// Open the database connection
|
||||||
|
SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString);
|
||||||
|
dbc.Open();
|
||||||
|
|
||||||
|
string query = @"SELECT * FROM data WHERE sha1='" + SHA1 + "' AND header='" + header + "'";
|
||||||
|
SqliteCommand slc = new SqliteCommand(query, dbc);
|
||||||
|
SqliteDataReader sldr = slc.ExecuteReader();
|
||||||
|
exists = sldr.HasRows;
|
||||||
|
|
||||||
|
if (!exists)
|
||||||
|
{
|
||||||
|
query = @"INSERT INTO data (sha1, header, type) VALUES ('" +
|
||||||
|
SHA1 + "', " +
|
||||||
|
"'" + header + "', " +
|
||||||
|
"'" + type.ToString() + "')";
|
||||||
|
slc = new SqliteCommand(query, dbc);
|
||||||
|
logger.Log("Result of inserting header: " + slc.ExecuteNonQuery());
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dispose of database objects
|
||||||
|
slc.Dispose();
|
||||||
|
sldr.Dispose();
|
||||||
|
dbc.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Detect and replace header(s) to the given file
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="file">Name of the file to be parsed</param>
|
||||||
|
/// <param name="outDir">Output directory to write the file to, empty means the same directory as the input file</param>
|
||||||
|
/// <param name="logger">Logger object for console and file output</param>
|
||||||
|
/// <returns>True if a header was found and appended, false otherwise</returns>
|
||||||
|
public static bool RestoreHeader(string file, string outDir, Logger logger)
|
||||||
|
{
|
||||||
|
// Create the output directory if it doesn't exist
|
||||||
|
if (outDir != "" && !Directory.Exists(outDir))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(outDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool success = true;
|
||||||
|
|
||||||
|
// First, get the SHA-1 hash of the file
|
||||||
|
Rom rom = GetSingleFileInfo(file);
|
||||||
|
|
||||||
|
// Then try to pull the corresponding headers from the database
|
||||||
|
string header = "";
|
||||||
|
|
||||||
|
// Open the database connection
|
||||||
|
SqliteConnection dbc = new SqliteConnection(Constants.HeadererConnectionString);
|
||||||
|
dbc.Open();
|
||||||
|
|
||||||
|
string query = @"SELECT header, type FROM data WHERE sha1='" + rom.SHA1 + "'";
|
||||||
|
SqliteCommand slc = new SqliteCommand(query, dbc);
|
||||||
|
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!");
|
||||||
|
success = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Dispose of database objects
|
||||||
|
slc.Dispose();
|
||||||
|
sldr.Dispose();
|
||||||
|
dbc.Dispose();
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Copy a file to a new location, creating directories as needed
|
/// Copy a file to a new location, creating directories as needed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -216,8 +216,34 @@ namespace SabreTools
|
|||||||
/// <param name="logger">Logger object for file and console output</param>
|
/// <param name="logger">Logger object for file and console output</param>
|
||||||
private static void InitHeaderer(List<string> inputs, bool restore, string outDir, Logger logger)
|
private static void InitHeaderer(List<string> inputs, bool restore, string outDir, Logger logger)
|
||||||
{
|
{
|
||||||
Headerer headerer = new Headerer(inputs, restore, outDir, logger);
|
foreach (string input in inputs)
|
||||||
headerer.Process();
|
{
|
||||||
|
if (File.Exists(input))
|
||||||
|
{
|
||||||
|
if (restore)
|
||||||
|
{
|
||||||
|
FileTools.RestoreHeader(input, outDir, logger);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FileTools.DetectSkipperAndTransform(input, outDir, logger);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (Directory.Exists(input))
|
||||||
|
{
|
||||||
|
foreach (string sub in Directory.EnumerateFiles(input, "*", SearchOption.AllDirectories))
|
||||||
|
{
|
||||||
|
if (restore)
|
||||||
|
{
|
||||||
|
FileTools.RestoreHeader(sub, outDir, logger);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FileTools.DetectSkipperAndTransform(sub, outDir, logger);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user