Compare commits
No commits in common. "9d6b1385c8c3961380c2c1363e6a48e7db28dac1" and "f9cdac5f929ec4a9af8e0d2b8fbf974758f3a107" have entirely different histories.
9d6b1385c8
...
f9cdac5f92
@ -18,11 +18,9 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.8" />
|
||||
<PackageReference Include="MurmurHash.Net" Version="0.0.2" />
|
||||
<PackageReference Include="Serilog" Version="3.0.1" />
|
||||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
||||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||
<PackageReference Include="Standart.Hash.xxHash" Version="4.0.5" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -58,7 +58,6 @@ public class Program {
|
||||
static void PrintAvailableOptions() {
|
||||
String[] options = {
|
||||
"checksum",
|
||||
"compareDatabases",
|
||||
"compareChecksums",
|
||||
"createDB",
|
||||
"checkIfFileWasDeleted",
|
||||
|
@ -4,8 +4,6 @@ using System.Security.Cryptography;
|
||||
using Microsoft.Data.Sqlite;
|
||||
using Serilog;
|
||||
using Serilog.Events;
|
||||
using MurmurHash.Net;
|
||||
using Standart.Hash.xxHash;
|
||||
|
||||
namespace Chksum.Utils;
|
||||
public class ChksumUtils {
|
||||
@ -18,7 +16,7 @@ public class ChksumUtils {
|
||||
private int getTotalFileCount() {
|
||||
int totalFileCount = Directory.GetFiles(Directory.GetCurrentDirectory(), "*", SearchOption.AllDirectories).Length;
|
||||
logger.Debug("Total file count is {totalFileCount}", totalFileCount);
|
||||
return totalFileCount - 4; // Remove the program, datbase, log and library from the totalFileCount
|
||||
return totalFileCount - 3; // Remove the program, datbase and library from the totalFileCount
|
||||
}
|
||||
|
||||
private string[] indexFiles() {
|
||||
@ -109,104 +107,20 @@ public class ChksumUtils {
|
||||
return new Dictionary<string, string>(checksums);
|
||||
}
|
||||
|
||||
private Dictionary<string, uint> CalculateChecksumsWithMurmur(string[] filenames) {
|
||||
ConcurrentDictionary<string, uint> checksums = new ConcurrentDictionary<string, uint>();
|
||||
|
||||
Parallel.ForEach(filenames, (filename, state) => {
|
||||
using (var stream = File.OpenRead(filename)) {
|
||||
var hash = CalculateMurmurHash32(stream);
|
||||
lock (checksums) {
|
||||
checksums.TryAdd(filename, hash);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
logger.Debug("All files were checksummed");
|
||||
return new Dictionary<string, uint>(checksums);
|
||||
}
|
||||
|
||||
private uint CalculateMurmurHash32(Stream stream) {
|
||||
const int bufferSize = 4096;
|
||||
const uint seed = 123456U;
|
||||
|
||||
var buffer = new byte[bufferSize];
|
||||
uint hash = seed;
|
||||
|
||||
int bytesRead;
|
||||
ReadOnlySpan<byte> span = buffer;
|
||||
|
||||
while ((bytesRead = stream.Read(buffer, 0, bufferSize)) > 0) {
|
||||
hash = MurmurHash3.Hash32(bytes: span, seed: 123456U);
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
private Dictionary<string, ulong> CalculateChecksumsWithXxHash3(string[] filenames) {
|
||||
ConcurrentDictionary<string, ulong> checksums = new ConcurrentDictionary<string, ulong>();
|
||||
|
||||
Parallel.ForEach(filenames, (filename, state) => {
|
||||
using (var stream = File.OpenRead(filename)) {
|
||||
var hash = CalculateXxHash3(stream);
|
||||
checksums.TryAdd(filename, hash);
|
||||
}
|
||||
});
|
||||
|
||||
return new Dictionary<string, ulong>(checksums);
|
||||
}
|
||||
|
||||
private ulong CalculateXxHash3(Stream stream) {
|
||||
const int bufferSize = 4096;
|
||||
const ulong seed = 123456U;
|
||||
|
||||
var buffer = new byte[bufferSize];
|
||||
ulong hash = seed;
|
||||
|
||||
int bytesRead;
|
||||
|
||||
while ((bytesRead = stream.Read(buffer, 0, buffer.Length)) > 0) {
|
||||
hash = xxHash3.ComputeHash(buffer, buffer.Length);
|
||||
}
|
||||
|
||||
return hash;
|
||||
}
|
||||
|
||||
|
||||
public void doTheThing(string hashalgo, int bufferSize) {
|
||||
public void doTheThing() {
|
||||
using (var connection = new SqliteConnection("Data Source=" + DatabaseRoot + "chksum.db;Mode=ReadWrite")) {
|
||||
if (getTotalFileCount() < 1) {
|
||||
logger.Information("There were no files to checksum");
|
||||
return;
|
||||
}
|
||||
connection.Open();
|
||||
|
||||
Dictionary<string, object> fileHashes;
|
||||
Dictionary<string, ulong> fileHashesXxHash3;
|
||||
Dictionary<string, uint> fileHashesMurmur;
|
||||
Dictionary<string, string> fileHashesMD5;
|
||||
|
||||
switch (hashalgo) {
|
||||
case "MD5":
|
||||
fileHashesMD5 = CalculateChecksums(indexFiles());
|
||||
fileHashes = fileHashesMD5.ToDictionary(kv => kv.Key, kv => (object)kv.Value);
|
||||
break;
|
||||
case "Murmur":
|
||||
fileHashesMurmur = CalculateChecksumsWithMurmur(indexFiles());
|
||||
fileHashes = fileHashesMurmur.ToDictionary(kv => kv.Key, kv => (object)kv.Value);
|
||||
break;
|
||||
case "XxHash":
|
||||
fileHashesXxHash3 = CalculateChecksumsWithXxHash3(indexFiles());
|
||||
fileHashes = fileHashesXxHash3.ToDictionary(kv => kv.Key, kv => (object)kv.Value);
|
||||
break;
|
||||
default:
|
||||
logger.Error("No valid hash algorithm was selected");
|
||||
throw new Exception($"{hashalgo} is not a valid option. Valid options are MD5, Murmur and XxHash");
|
||||
}
|
||||
Dictionary<string, string> fileHashes = CalculateChecksums(indexFiles());
|
||||
|
||||
foreach (var file in fileHashes) {
|
||||
string absolutePathToFile = file.Key;
|
||||
string fileName = Path.GetFileName(absolutePathToFile);
|
||||
string pathToFile = Path.GetRelativePath(DatabaseRoot, absolutePathToFile);
|
||||
var fileHash = file.Value;
|
||||
string fileHash = file.Value;
|
||||
|
||||
if (checkIfFileMovedAndUpdatePathToFile(fileHash, fileName, pathToFile) == false && checkIfFileAlreadyExistsInDatabase(fileHash, fileName) == false) {
|
||||
var command = connection.CreateCommand();
|
||||
@ -226,7 +140,7 @@ public class ChksumUtils {
|
||||
}
|
||||
}
|
||||
|
||||
private bool checkIfFileAlreadyExistsInDatabase(object fileHash, string pathToFile) {
|
||||
private bool checkIfFileAlreadyExistsInDatabase(string fileHash, string pathToFile) {
|
||||
string filehash = string.Empty;
|
||||
string pathtofile = string.Empty;
|
||||
bool doesExist = false;
|
||||
@ -239,7 +153,7 @@ public class ChksumUtils {
|
||||
@"
|
||||
SELECT filehash, pathtofile FROM file WHERE filehash = $filehash
|
||||
";
|
||||
command.Parameters.AddWithValue("$filehash", fileHash.ToString());
|
||||
command.Parameters.AddWithValue("$filehash", fileHash);
|
||||
|
||||
using (var reader = command.ExecuteReader()) {
|
||||
while (reader.Read()) {
|
||||
@ -247,17 +161,17 @@ public class ChksumUtils {
|
||||
pathtofile = reader.GetString(1);
|
||||
}
|
||||
}
|
||||
logger.Verbose("{pathToFile} with the hash {fileHash} was successfully loaded", pathToFile, fileHash.ToString());
|
||||
logger.Verbose("{pathToFile} with the hash {fileHash} was successfully loaded", pathToFile, fileHash);
|
||||
}
|
||||
|
||||
if (fileHash.ToString() == filehash) {
|
||||
if (fileHash == filehash) {
|
||||
logger.Verbose("File with filehash {filehash} already exists in the database", filehash);
|
||||
doesExist = true;
|
||||
}
|
||||
return doesExist;
|
||||
}
|
||||
|
||||
private bool checkIfFileMovedAndUpdatePathToFile(object fileHash, string fileName, string pathToFile) {
|
||||
private bool checkIfFileMovedAndUpdatePathToFile(string fileHash, string fileName, string pathToFile) {
|
||||
string pathtofile = string.Empty;
|
||||
bool wasMoved = false;
|
||||
|
||||
@ -269,7 +183,7 @@ public class ChksumUtils {
|
||||
@"
|
||||
SELECT pathtofile FROM file WHERE filehash = $filehash
|
||||
";
|
||||
command.Parameters.AddWithValue("$filehash", fileHash.ToString());
|
||||
command.Parameters.AddWithValue("$filehash", fileHash);
|
||||
|
||||
using (var reader = command.ExecuteReader()) {
|
||||
while (reader.Read()) {
|
||||
@ -286,15 +200,15 @@ public class ChksumUtils {
|
||||
WHERE filehash = $filehash
|
||||
";
|
||||
command2.Parameters.AddWithValue("$newpathtofile", pathToFile);
|
||||
command2.Parameters.AddWithValue("$filehash", fileHash.ToString());
|
||||
command2.Parameters.AddWithValue("$filehash", fileHash);
|
||||
command2.ExecuteNonQuery();
|
||||
|
||||
//Console.WriteLine("File moved or is a duplicate:");
|
||||
//Console.WriteLine($"\tfrom\t{pathToFile}");
|
||||
//Console.WriteLine($"\tto \t{pathtofile}\n");
|
||||
Console.WriteLine("File moved or is a duplicate:");
|
||||
Console.WriteLine($"\tfrom\t{pathToFile}");
|
||||
Console.WriteLine($"\tto \t{pathtofile}\n");
|
||||
wasMoved = true;
|
||||
}
|
||||
logger.Verbose("{fileName} which is located at {pathToFile} relative to the database with the hash {fileHash} was successfully checked", fileName, pathToFile, fileHash.ToString());
|
||||
logger.Verbose("{fileName} which is located at {pathToFile} relative to the database with the hash {fileHash} was successfully checked", fileName, pathToFile, fileHash);
|
||||
}
|
||||
return wasMoved;
|
||||
}
|
||||
@ -328,9 +242,9 @@ public class ChksumUtils {
|
||||
deleteCommand.Parameters.AddWithValue("$pathtofile", pathToFile);
|
||||
deleteCommand.ExecuteNonQuery();
|
||||
|
||||
//Console.WriteLine("File deleted:");
|
||||
//Console.WriteLine($"\t{pathToFile}\n");
|
||||
logger.Information("File deleted: {pathToFile}", pathToFile);
|
||||
Console.WriteLine("File deleted:");
|
||||
Console.WriteLine($"\t{pathToFile}\n");
|
||||
logger.Verbose("File deleted: {pathToFile}", pathToFile);
|
||||
}
|
||||
}
|
||||
logger.Information("All deleted files were successfully removed from the database");
|
||||
@ -390,7 +304,7 @@ public class ChksumUtils {
|
||||
|
||||
Console.WriteLine("File not found in remote:");
|
||||
Console.WriteLine($"\t{filename}\n");
|
||||
logger.Information("{filename} could not be found in the remote database", filename);
|
||||
logger.Verbose("{filename} could not be found in the remote database", filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user