Commit to using the DB approach for merging

This commit is contained in:
Matt Nadareski
2016-04-27 20:37:28 -07:00
parent ba5581af63
commit d8864084d1

View File

@@ -69,10 +69,6 @@ namespace SabreTools
/// Combine DATs, optionally diffing and deduping them /// Combine DATs, optionally diffing and deduping them
/// </summary> /// </summary>
/// <returns>True if the DATs merged correctly, false otherwise</returns> /// <returns>True if the DATs merged correctly, false otherwise</returns>
/// <remarks>
/// TODO: @tractivo -for the A and B and AB output you could let this be determined by comparing the hashes.
/// when a hash is present in both dats then this entry goes to AB, if its only in A then it stay in A if in B then in B.
/// </remarks>
public bool Process() public bool Process()
{ {
// Check if there are enough inputs // Check if there are enough inputs
@@ -104,71 +100,18 @@ namespace SabreTools
_author = "SabreTools"; _author = "SabreTools";
} }
List<RomData> A = new List<RomData>(); // Create the database of ROMs from the input DATs
SqliteConnection dbc = DBTools.InMemoryDb(); SqliteConnection dbc = DBTools.InMemoryDb();
foreach (string input in _inputs) foreach (string input in _inputs)
{ {
_logger.Log("Adding DAT: " + input); _logger.Log("Adding DAT: " + input);
RomManipulation.Parse2(input, 0, 0, _dedup, dbc, _logger); RomManipulation.Parse2(input, 0, 0, _dedup, dbc, _logger);
/*
List<RomData> B = RomManipulation.Parse(input, 0, 0, _logger);
if (_diff)
{
A = RomManipulation.Diff(A, B);
}
else
{
A.AddRange(B);
}
*/
} }
// Until I find a way to output the roms from the db, here's just a count of the items in it // Output all DATs specified by user inputs
using (SqliteCommand slc = new SqliteCommand("SELECT count(*) FROM roms", dbc)) Output.WriteToDatFromDb(_name, _desc, _version, _date, _cat, _author, _forceunpack, _old, _diff, _ad, "", dbc, _logger);
{
_logger.Log("Total number of lines in database: " + slc.ExecuteScalar());
}
Output.WriteToDatFromDb(_name + "-db", _desc + "-db", _version, _date, _cat, _author, _forceunpack, _old, _diff, _ad, "", dbc, _logger);
dbc.Close(); dbc.Close();
/*
// If we're in Alldiff mode, we can only use the first 2 inputs
if (_ad)
{
List<RomData> AB1 = RomManipulation.Parse(_inputs[0], 0, 0, _logger);
List<RomData> AB2 = RomManipulation.Parse(_inputs[1], 0, 0, _logger);
List<RomData> OnlyA = RomManipulation.DiffOnlyInA(AB1, AB2);
List<RomData> OnlyB = RomManipulation.DiffOnlyInA(AB2, AB1);
List<RomData> BothAB = RomManipulation.DiffInAB(AB1, AB2);
string input0 = Path.GetFileNameWithoutExtension(_inputs[0]);
string input1 = Path.GetFileNameWithoutExtension(_inputs[1]);
Output.WriteToDat(_name + "-" + input0 + "-only", _desc + "-" + input0 + "-only", _version, _date, _cat, _author, _forceunpack, _old, "", OnlyA, _logger);
Output.WriteToDat(_name + "-" + input1 + "-only", _desc + "-" + input1 + "-only", _version, _date, _cat, _author, _forceunpack, _old, "", OnlyB, _logger);
Output.WriteToDat(_name + "-inboth", _desc + "-inboth", _version, _date, _cat, _author, _forceunpack, _old, "", BothAB, _logger);
}
*/
/*
// If we want a merged list, send it for merging before outputting
if (_dedup)
{
A = RomManipulation.Merge(A);
}
// Sort the file by names for ease
RomManipulation.Sort(A, true);
// Now write the file out
Output.WriteToDat(_name, _desc, _version, _date, _cat, _author, _forceunpack, _old, "", A, _logger);
*/
return true; return true;
} }
} }