Ready to test
This commit is contained in:
parent
4a3e24236f
commit
36592ea319
4
.vscode/launch.json
vendored
4
.vscode/launch.json
vendored
@ -11,8 +11,8 @@
|
|||||||
"preLaunchTask": "build",
|
"preLaunchTask": "build",
|
||||||
// If you have changed target frameworks, make sure to update the program path.
|
// If you have changed target frameworks, make sure to update the program path.
|
||||||
"programC": "${workspaceFolder}/Compare/bin/Debug/net6.0/win-x64/Compare.dll",
|
"programC": "${workspaceFolder}/Compare/bin/Debug/net6.0/win-x64/Compare.dll",
|
||||||
"program": "${workspaceFolder}/Date-Group/bin/Debug/net6.0/win-x64/Date-Group.dll",
|
"programD": "${workspaceFolder}/Date-Group/bin/Debug/net6.0/win-x64/Date-Group.dll",
|
||||||
"programI": "${workspaceFolder}/Instance/bin/Debug/net6.0/win-x64/Instance.dll",
|
"program": "${workspaceFolder}/Instance/bin/Debug/net6.0/win-x64/Instance.dll",
|
||||||
"programN": "${workspaceFolder}/Not-Copy-Copy/bin/Debug/net6.0/win-x64/Not-Copy-Copy.dll",
|
"programN": "${workspaceFolder}/Not-Copy-Copy/bin/Debug/net6.0/win-x64/Not-Copy-Copy.dll",
|
||||||
"programP": "${workspaceFolder}/PrepareForOld/bin/Debug/net6.0/win-x64/PrepareForOld.dll",
|
"programP": "${workspaceFolder}/PrepareForOld/bin/Debug/net6.0/win-x64/PrepareForOld.dll",
|
||||||
"args": [],
|
"args": [],
|
||||||
|
13
.vscode/settings.json
vendored
13
.vscode/settings.json
vendored
@ -1,11 +1,22 @@
|
|||||||
{
|
{
|
||||||
"cSpell.words": [
|
"cSpell.words": [
|
||||||
|
"ASPNETCORE",
|
||||||
"Barrick",
|
"Barrick",
|
||||||
|
"bcdfghjklmnpqrstvwxyz",
|
||||||
"Beichler",
|
"Beichler",
|
||||||
"Bohdi",
|
"Bohdi",
|
||||||
|
"CUDA",
|
||||||
"Dlib",
|
"Dlib",
|
||||||
|
"Exif",
|
||||||
|
"Getα",
|
||||||
|
"mmod",
|
||||||
|
"nosj",
|
||||||
"Phares",
|
"Phares",
|
||||||
|
"resnet",
|
||||||
"Serilog",
|
"Serilog",
|
||||||
|
"Subfile",
|
||||||
|
"Subfiles",
|
||||||
"Vericruz"
|
"Vericruz"
|
||||||
]
|
],
|
||||||
|
"cSpell.enabled": true
|
||||||
}
|
}
|
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
@ -7,7 +7,7 @@
|
|||||||
"type": "process",
|
"type": "process",
|
||||||
"args": [
|
"args": [
|
||||||
"build",
|
"build",
|
||||||
"${workspaceFolder}/Console.sln",
|
"${workspaceFolder}/View-by-Distance-MKLink-Console.sln",
|
||||||
"/property:GenerateFullPaths=true",
|
"/property:GenerateFullPaths=true",
|
||||||
"/consoleloggerparameters:NoSummary"
|
"/consoleloggerparameters:NoSummary"
|
||||||
],
|
],
|
||||||
|
@ -14,8 +14,6 @@ public class Compare
|
|||||||
|
|
||||||
private readonly Serilog.ILogger? _Log;
|
private readonly Serilog.ILogger? _Log;
|
||||||
private readonly AppSettings _AppSettings;
|
private readonly AppSettings _AppSettings;
|
||||||
private readonly List<string> _Exceptions;
|
|
||||||
private readonly string[] _VerifyToSeason;
|
|
||||||
private readonly IsEnvironment _IsEnvironment;
|
private readonly IsEnvironment _IsEnvironment;
|
||||||
private readonly Models.Configuration _Configuration;
|
private readonly Models.Configuration _Configuration;
|
||||||
private readonly List<KeyValuePair<string, string>> _FileKeyValuePairs;
|
private readonly List<KeyValuePair<string, string>> _FileKeyValuePairs;
|
||||||
@ -42,20 +40,20 @@ public class Compare
|
|||||||
_RenameCFindReplace = new();
|
_RenameCFindReplace = new();
|
||||||
_SpellingFindReplace = new();
|
_SpellingFindReplace = new();
|
||||||
_IsEnvironment = isEnvironment;
|
_IsEnvironment = isEnvironment;
|
||||||
_Exceptions = new List<string>();
|
|
||||||
_Log = Serilog.Log.ForContext<Compare>();
|
_Log = Serilog.Log.ForContext<Compare>();
|
||||||
_FileKeyValuePairs = new List<KeyValuePair<string, string>>();
|
_FileKeyValuePairs = new List<KeyValuePair<string, string>>();
|
||||||
_FilePropertiesKeyValuePairs = new Dictionary<string, List<Tuple<string, A_Property>>>();
|
_FilePropertiesKeyValuePairs = new Dictionary<string, List<Tuple<string, A_Property>>>();
|
||||||
string message;
|
|
||||||
string searchPattern = "*";
|
string searchPattern = "*";
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
List<string> topDirectories = new();
|
List<string> topDirectories = new();
|
||||||
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection;
|
||||||
Property.Models.Configuration propertyConfiguration = Property.Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory);
|
Property.Models.Configuration propertyConfiguration = Property.Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory);
|
||||||
Property.Models.Configuration.Verify(propertyConfiguration);
|
Property.Models.Configuration.Verify(propertyConfiguration);
|
||||||
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
||||||
Verify(configuration);
|
Verify(configuration);
|
||||||
if (propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
bool reverse = false;
|
||||||
throw new Exception($"{nameof(propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
string modelName = nameof(modelName);
|
||||||
|
string predictorModelName = nameof(predictorModelName);
|
||||||
if (propertyConfiguration.PopulatePropertyId is null)
|
if (propertyConfiguration.PopulatePropertyId is null)
|
||||||
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
||||||
foreach (string spelling in configuration.Spelling)
|
foreach (string spelling in configuration.Spelling)
|
||||||
@ -105,11 +103,11 @@ public class Compare
|
|||||||
throw new Exception("Change configuration!");
|
throw new Exception("Change configuration!");
|
||||||
_RenameCFindReplace.Add(new(renameFrom, renameTo));
|
_RenameCFindReplace.Add(new(renameFrom, renameTo));
|
||||||
}
|
}
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
_Log.Information($"{nameof(Property.Models.Stateless.A_Property.GetGroupCollection)} has finished");
|
_Log.Information($"{nameof(Property.Models.Stateless.A_Property.GetGroupCollection)} has finished");
|
||||||
_VerifyToSeason = propertyConfiguration.VerifyToSeason.Select(l => Path.Combine(propertyConfiguration.RootDirectory, l)).ToArray();
|
_Configuration = configuration;
|
||||||
List<string> missingVerifyToSeasonCollection = GetMissingVerifyToSeasonCollection(topDirectories, groupCollection);
|
List<string> missingVerifyToSeasonCollection = GetMissingVerifyToSeasonCollection(topDirectories, groupCollection);
|
||||||
if (missingVerifyToSeasonCollection.Any())
|
if (missingVerifyToSeasonCollection.Any())
|
||||||
throw new Exception($"Update configuration with the following {Environment.NewLine} {string.Join(Environment.NewLine, missingVerifyToSeasonCollection)}");
|
throw new Exception($"Update configuration with the following {Environment.NewLine} {string.Join(Environment.NewLine, missingVerifyToSeasonCollection)}");
|
||||||
@ -117,7 +115,7 @@ public class Compare
|
|||||||
{
|
{
|
||||||
topDirectories.Clear();
|
topDirectories.Clear();
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
}
|
}
|
||||||
@ -126,7 +124,7 @@ public class Compare
|
|||||||
{
|
{
|
||||||
topDirectories.Clear();
|
topDirectories.Clear();
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
}
|
}
|
||||||
@ -135,7 +133,7 @@ public class Compare
|
|||||||
{
|
{
|
||||||
topDirectories.Clear();
|
topDirectories.Clear();
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
}
|
}
|
||||||
@ -144,7 +142,7 @@ public class Compare
|
|||||||
{
|
{
|
||||||
topDirectories.Clear();
|
topDirectories.Clear();
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
}
|
}
|
||||||
@ -157,20 +155,14 @@ public class Compare
|
|||||||
{
|
{
|
||||||
topDirectories.Clear();
|
topDirectories.Clear();
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, reverse: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
}
|
}
|
||||||
PropertyLogic propertyLogic = GetPropertyLogic();
|
PropertyLogic propertyLogic = GetPropertyLogic();
|
||||||
if (_IsEnvironment.Development && propertyConfiguration.PopulatePropertyId.Value && !propertyLogic.IndicesFromOld.Any())
|
if (_IsEnvironment.Development && propertyConfiguration.PopulatePropertyId.Value && !propertyLogic.IndicesFromOld.Any())
|
||||||
throw new Exception("Copy keyValuePairs-####.json file");
|
throw new Exception("Copy keyValuePairs-####.json file");
|
||||||
_Exceptions.AddRange(propertyLogic.DoWork(propertyConfiguration, topDirectories, groupCollection, firstPass: true));
|
List<PropertyHolder[]> propertyHolderCollections = Property.Models.Stateless.A_Property.Get(propertyConfiguration, reverse, modelName, predictorModelName, propertyLogic);
|
||||||
message = $"There were {_Exceptions.Count} exception(s) thrown! {Environment.NewLine}{string.Join(Environment.NewLine, _Exceptions)}";
|
|
||||||
_Log.Information(message);
|
|
||||||
if (_Exceptions.Count != 0)
|
|
||||||
throw new Exception(message);
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.DoWork));
|
|
||||||
if (!isSilent)
|
if (!isSilent)
|
||||||
{
|
{
|
||||||
_Log.Information("First pass completed");
|
_Log.Information("First pass completed");
|
||||||
@ -182,10 +174,9 @@ public class Compare
|
|||||||
}
|
}
|
||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
}
|
}
|
||||||
string aPropertySingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(propertyConfiguration, nameof(A_Property), "{}");
|
|
||||||
string aPropertyContentCollectionDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(propertyConfiguration, nameof(A_Property), "[()]");
|
|
||||||
if (!isSilent)
|
if (!isSilent)
|
||||||
{
|
{
|
||||||
|
string aPropertySingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(propertyConfiguration, nameof(A_Property), "{}");
|
||||||
if (Directory.Exists(aPropertySingletonDirectory))
|
if (Directory.Exists(aPropertySingletonDirectory))
|
||||||
{
|
{
|
||||||
ConsoleKey? consoleKey = null;
|
ConsoleKey? consoleKey = null;
|
||||||
@ -199,37 +190,8 @@ public class Compare
|
|||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
if (consoleKey == ConsoleKey.Y)
|
if (consoleKey == ConsoleKey.Y)
|
||||||
ChangeExtensionFromDeleteToJson(aPropertySingletonDirectory);
|
ChangeExtensionFromDeleteToJson(aPropertySingletonDirectory);
|
||||||
for (int y = 0; y < int.MaxValue; y++)
|
|
||||||
{
|
|
||||||
_Log.Information($"Execute {nameof(Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull)} \"Y(es)\" or \"N(o)\"?");
|
|
||||||
consoleKey = Console.ReadKey().Key;
|
|
||||||
if (consoleKey is ConsoleKey.Y or ConsoleKey.N)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
_Log.Information(". . .");
|
|
||||||
if (consoleKey == ConsoleKey.Y)
|
|
||||||
{
|
|
||||||
Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull(propertyConfiguration.RootDirectory, aPropertySingletonDirectory, onlyJson: false);
|
|
||||||
for (int y = 0; y < int.MaxValue; y++)
|
|
||||||
{
|
|
||||||
_Log.Information($"Execute {nameof(Property.Models.Stateless.IPath.DeleteEmptyDirectories)} \"Y(es)\" or \"N(o)\"?");
|
|
||||||
consoleKey = Console.ReadKey().Key;
|
|
||||||
if (consoleKey is ConsoleKey.Y or ConsoleKey.N)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
_Log.Information(". . .");
|
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(aPropertySingletonDirectory);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
topDirectories.Clear();
|
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
|
||||||
_Exceptions.AddRange(propertyLogic.DoWork(propertyConfiguration, topDirectories, groupCollection, firstPass: false));
|
|
||||||
message = $"There were {_Exceptions.Count} exception(s) thrown! {Environment.NewLine}{string.Join(Environment.NewLine, _Exceptions)}";
|
|
||||||
_Log.Information(message);
|
|
||||||
if (_Exceptions.Count != 0)
|
|
||||||
throw new Exception(message);
|
|
||||||
if (!isSilent)
|
if (!isSilent)
|
||||||
{
|
{
|
||||||
_Log.Information("Second pass completed");
|
_Log.Information("Second pass completed");
|
||||||
@ -241,7 +203,8 @@ public class Compare
|
|||||||
}
|
}
|
||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
}
|
}
|
||||||
ThirdPassToMove(propertyLogic, propertyConfiguration, aPropertyContentCollectionDirectory, topDirectories, groupCollection);
|
string aPropertyContentCollectionDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(propertyConfiguration, nameof(A_Property), "[()]");
|
||||||
|
ThirdPassToMove(propertyConfiguration, modelName, predictorModelName, propertyLogic, propertyHolderCollections, aPropertyContentCollectionDirectory);
|
||||||
if (!isSilent)
|
if (!isSilent)
|
||||||
{
|
{
|
||||||
_Log.Information("Third pass completed");
|
_Log.Information("Third pass completed");
|
||||||
@ -253,7 +216,7 @@ public class Compare
|
|||||||
}
|
}
|
||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
}
|
}
|
||||||
FourthPassCreateWindowsShortcuts(propertyLogic, propertyConfiguration, topDirectories, groupCollection, saveToCollection: false, keepAll: false);
|
FourthPassCreateWindowsShortcuts(propertyConfiguration, modelName, predictorModelName, propertyLogic, propertyHolderCollections, saveToCollection: false, keepAll: false);
|
||||||
if (!isSilent)
|
if (!isSilent)
|
||||||
{
|
{
|
||||||
_Log.Information("Fourth pass completed");
|
_Log.Information("Fourth pass completed");
|
||||||
@ -269,7 +232,6 @@ public class Compare
|
|||||||
string currentYearDirectory = Path.Combine(propertyConfiguration.RootDirectory, $". {DateTime.Now:yyyy}");
|
string currentYearDirectory = Path.Combine(propertyConfiguration.RootDirectory, $". {DateTime.Now:yyyy}");
|
||||||
if (!Directory.Exists(currentYearDirectory))
|
if (!Directory.Exists(currentYearDirectory))
|
||||||
_ = Directory.CreateDirectory(currentYearDirectory);
|
_ = Directory.CreateDirectory(currentYearDirectory);
|
||||||
_Configuration = configuration;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetRename(string renameA)
|
private string GetRename(string renameA)
|
||||||
@ -430,16 +392,16 @@ public class Compare
|
|||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration, _VerifyToSeason);
|
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration);
|
||||||
string fromPerpareForOld = "34720-637858334555170379.tsv";
|
string fromPrepareForOld = "34720-637858334555170379.tsv";
|
||||||
string fromPerpareForOldFile = Path.Combine(_Configuration.PropertyConfiguration.RootDirectory, fromPerpareForOld);
|
string fromPrepareForOldFile = Path.Combine(_Configuration.PropertyConfiguration.RootDirectory, fromPrepareForOld);
|
||||||
if (File.Exists(fromPerpareForOldFile))
|
if (File.Exists(fromPrepareForOldFile))
|
||||||
{
|
{
|
||||||
string[] lines;
|
string[] lines;
|
||||||
string[] columns;
|
string[] columns;
|
||||||
List<string> debug = new();
|
List<string> debug = new();
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
lines = File.ReadAllLines(fromPerpareForOldFile);
|
lines = File.ReadAllLines(fromPrepareForOldFile);
|
||||||
string resultsDirectory = $"{_Configuration.PropertyConfiguration.RootDirectory} - Results";
|
string resultsDirectory = $"{_Configuration.PropertyConfiguration.RootDirectory} - Results";
|
||||||
int[]? zeros = (from l in result.IndicesFromNew where l.Value.Any() select l.Value[0]).ToArray();
|
int[]? zeros = (from l in result.IndicesFromNew where l.Value.Any() select l.Value[0]).ToArray();
|
||||||
lines = (from l in result.IndicesFromNew select string.Concat(l.Key, '\t', string.Join('\t', l.Value))).ToArray();
|
lines = (from l in result.IndicesFromNew select string.Concat(l.Key, '\t', string.Join('\t', l.Value))).ToArray();
|
||||||
@ -461,7 +423,7 @@ public class Compare
|
|||||||
else
|
else
|
||||||
debug.Add(propertyId.ToString());
|
debug.Add(propertyId.ToString());
|
||||||
}
|
}
|
||||||
File.WriteAllLines(Path.Combine(resultsDirectory, $"{ticks}-{fromPerpareForOld}"), debug);
|
File.WriteAllLines(Path.Combine(resultsDirectory, $"{ticks}-{fromPrepareForOld}"), debug);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -551,7 +513,8 @@ public class Compare
|
|||||||
string searchPattern = "*.delete";
|
string searchPattern = "*.delete";
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
List<string> topDirectories = new();
|
List<string> topDirectories = new();
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(aPropertySingletonDirectory, searchPattern, topDirectories);
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection;
|
||||||
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(aPropertySingletonDirectory, searchPattern, topDirectories);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
||||||
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
||||||
@ -786,7 +749,7 @@ public class Compare
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ThirdPassToMove(PropertyLogic propertyLogic, Property.Models.Configuration configuration, string aPropertyContentCollectionDirectory, List<string> topDirectories, List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection)
|
private void ThirdPassToMove(Property.Models.Configuration configuration, string modelName, string predictorModelName, PropertyLogic propertyLogic, List<PropertyHolder[]> propertyHolderCollections, string aPropertyContentCollectionDirectory)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -798,14 +761,17 @@ public class Compare
|
|||||||
A_Property? property;
|
A_Property? property;
|
||||||
string? directoryName;
|
string? directoryName;
|
||||||
ConsoleKey? consoleKey = null;
|
ConsoleKey? consoleKey = null;
|
||||||
DateTime dateTime = DateTime.Now;
|
long ticks = DateTime.Now.Ticks;
|
||||||
string filteredSourceDirectoryFile;
|
string filteredSourceDirectoryFile;
|
||||||
List<string> fileStayCollection = new();
|
List<string> fileStayCollection = new();
|
||||||
List<string> fileMoveCollection = new();
|
List<string> fileMoveCollection = new();
|
||||||
List<string> distinctDirectories = new();
|
List<string> distinctDirectories = new();
|
||||||
List<KeyValuePair<int, int[]>> valueCollection = new();
|
List<KeyValuePair<int, int[]>> valueCollection = new();
|
||||||
List<Group> groupResultsCollection = propertyLogic.GetParallelWork(configuration, topDirectories, groupCollection, firstPass: false, filterOnFirstPass: false);
|
List<Property.Models.DirectoryInfo> directoryInfoCollection = new();
|
||||||
foreach (Group group in groupResultsCollection)
|
propertyLogic.ParallelWork(configuration, modelName, predictorModelName, ticks, propertyHolderCollections, firstPass: false);
|
||||||
|
if (propertyLogic.ExceptionsDirectories.Any())
|
||||||
|
throw new Exception();
|
||||||
|
foreach (Property.Models.DirectoryInfo group in directoryInfoCollection)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < group.PropertyCollection.Length; i++)
|
for (int i = 0; i < group.PropertyCollection.Length; i++)
|
||||||
{
|
{
|
||||||
@ -823,9 +789,9 @@ public class Compare
|
|||||||
string[] lines = (from l in valueCollection select string.Concat(l.Key, '\t', string.Join('\t', l.Value))).ToArray();
|
string[] lines = (from l in valueCollection select string.Concat(l.Key, '\t', string.Join('\t', l.Value))).ToArray();
|
||||||
if (!Directory.Exists(aPropertyContentCollectionDirectory))
|
if (!Directory.Exists(aPropertyContentCollectionDirectory))
|
||||||
_ = Directory.CreateDirectory(aPropertyContentCollectionDirectory);
|
_ = Directory.CreateDirectory(aPropertyContentCollectionDirectory);
|
||||||
File.WriteAllLines(Path.Combine(aPropertyContentCollectionDirectory, $"{dateTime.Ticks}.tsv"), lines);
|
File.WriteAllLines(Path.Combine(aPropertyContentCollectionDirectory, $"{ticks}.tsv"), lines);
|
||||||
string json = JsonSerializer.Serialize(valueCollection, new JsonSerializerOptions { WriteIndented = true });
|
string json = JsonSerializer.Serialize(valueCollection, new JsonSerializerOptions { WriteIndented = true });
|
||||||
File.WriteAllText(Path.Combine(aPropertyContentCollectionDirectory, $"{dateTime.Ticks}.json"), json);
|
File.WriteAllText(Path.Combine(aPropertyContentCollectionDirectory, $"{ticks}.json"), json);
|
||||||
foreach (string fileMove in fileMoveCollection)
|
foreach (string fileMove in fileMoveCollection)
|
||||||
{
|
{
|
||||||
directoryName = Path.GetDirectoryName(string.Concat(_Configuration.PropertyConfiguration.RootDirectory, id, fileMove[_Configuration.PropertyConfiguration.RootDirectory.Length..]));
|
directoryName = Path.GetDirectoryName(string.Concat(_Configuration.PropertyConfiguration.RootDirectory, id, fileMove[_Configuration.PropertyConfiguration.RootDirectory.Length..]));
|
||||||
@ -861,19 +827,23 @@ public class Compare
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void FourthPassCreateWindowsShortcuts(PropertyLogic propertyLogic, Property.Models.Configuration configuration, List<string> topDirectories, List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection, bool saveToCollection, bool keepAll)
|
private void FourthPassCreateWindowsShortcuts(Property.Models.Configuration configuration, string modelName, string predictorModelName, PropertyLogic propertyLogic, List<PropertyHolder[]> propertyHolderCollections, bool saveToCollection, bool keepAll)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
int stay = 0;
|
int stay = 0;
|
||||||
A_Property? property;
|
A_Property? property;
|
||||||
ConsoleKey? consoleKey = null;
|
ConsoleKey? consoleKey = null;
|
||||||
|
long ticks = DateTime.Now.Ticks;
|
||||||
string filteredSourceDirectoryFile;
|
string filteredSourceDirectoryFile;
|
||||||
List<string> fileMoveCollection = new();
|
List<string> fileMoveCollection = new();
|
||||||
List<KeyValuePair<int, int[]>> valueCollection = new();
|
List<KeyValuePair<int, int[]>> valueCollection = new();
|
||||||
(long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)[] collection;
|
(long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)[] collection;
|
||||||
List<Group> groupResultsCollection = propertyLogic.GetParallelWork(configuration, topDirectories, groupCollection, firstPass: false, filterOnFirstPass: false);
|
List<Property.Models.DirectoryInfo> directoryInfoCollection = new();
|
||||||
foreach (Group group in groupResultsCollection)
|
propertyLogic.ParallelWork(configuration, modelName, predictorModelName, ticks, propertyHolderCollections, firstPass: false);
|
||||||
|
if (propertyLogic.ExceptionsDirectories.Any())
|
||||||
|
throw new Exception();
|
||||||
|
foreach (Property.Models.DirectoryInfo group in directoryInfoCollection)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < group.PropertyCollection.Length; i++)
|
for (int i = 0; i < group.PropertyCollection.Length; i++)
|
||||||
{
|
{
|
||||||
@ -888,7 +858,7 @@ public class Compare
|
|||||||
fileMoveCollection.Add(filteredSourceDirectoryFile);
|
fileMoveCollection.Add(filteredSourceDirectoryFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
collection = propertyLogic.GetPropertyIds(configuration, groupResultsCollection, saveToCollection);
|
collection = propertyLogic.GetPropertyIds(configuration, modelName, predictorModelName, directoryInfoCollection, saveToCollection);
|
||||||
_Log.Information($"{stay} file(s) are staying and {fileMoveCollection.Count} file(s) will be moved");
|
_Log.Information($"{stay} file(s) are staying and {fileMoveCollection.Count} file(s) will be moved");
|
||||||
for (int x = 0; x < int.MaxValue; x++)
|
for (int x = 0; x < int.MaxValue; x++)
|
||||||
{
|
{
|
||||||
|
@ -36,7 +36,7 @@ public class Configuration
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(Property.Models.Configuration propertyConfiguration) => _PropertyConfiguration = propertyConfiguration;
|
public void Set(Property.Models.Configuration configuration) => _PropertyConfiguration = configuration;
|
||||||
|
|
||||||
public void Update() => _PropertyConfiguration?.Update();
|
public void Update() => _PropertyConfiguration?.Update();
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@
|
|||||||
"/zzz Phares Slides/Slides 2015-06-10/Magazine 01"
|
"/zzz Phares Slides/Slides 2015-06-10/Magazine 01"
|
||||||
],
|
],
|
||||||
"Configuration": {
|
"Configuration": {
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"DiffPropertyDirectory": "",
|
"DiffPropertyDirectory": "",
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
@ -87,20 +87,20 @@
|
|||||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||||
"PopulatePropertyId": true,
|
"PopulatePropertyId": true,
|
||||||
"PropertiesChangedForProperty": false,
|
"PropertiesChangedForProperty": false,
|
||||||
"RootDirectory": "C:/Tmp/Phares/Compare/Images 2022-04-17 - fa60aa45ebb55fe3ee0ce4da8a64e40611e7d5ce - III",
|
"RootDirectory": "C:/Tmp/Phares/Compare/Images 2022-07-24 - 1539b2f974f07b6b5cbda8450faf0eec85d02eda - III",
|
||||||
"WriteBitmapDataBytes": false,
|
"WriteBitmapDataBytes": false,
|
||||||
"IgnoreExtensions": [
|
"IgnoreExtensions": [
|
||||||
".gif",
|
".gif",
|
||||||
".GIF"
|
".GIF"
|
||||||
],
|
],
|
||||||
"PropertyContentCollectionFiles": [
|
"PropertyContentCollectionFiles": [
|
||||||
"/Images 2022-04-17 - fa60aa45ebb55fe3ee0ce4da8a64e40611e7d5ce - III - Results/A) Property/2022-04-07/[()]/637869381676042455.json",
|
"/Images 2022-07-24 - 1539b2f974f07b6b5cbda8450faf0eec85d02eda - III - Results/A) Property/2022-07-24/[()]/637869381676042455.json",
|
||||||
"/Not-Copy-Copy/Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869733124119330.json",
|
"/Not-Copy-Copy/Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869733124119330.json",
|
||||||
"/Not-Copy-Copy/Images 2018-12-25 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869734240700328.json",
|
"/Not-Copy-Copy/Images 2018-12-25 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869734240700328.json",
|
||||||
"/Not-Copy-Copy/Images 2018-05-12 - b01d4763d8853b6d6057a3870b2723449726da75 - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869734970730630.json",
|
"/Not-Copy-Copy/Images 2018-05-12 - b01d4763d8853b6d6057a3870b2723449726da75 - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869734970730630.json",
|
||||||
"/Not-Copy-Copy/Images 2013-12-15 - d02c8791fa0b130c0bce2d39ee684e50f7ee7a97 - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869743752078399.json",
|
"/Not-Copy-Copy/Images 2013-12-15 - d02c8791fa0b130c0bce2d39ee684e50f7ee7a97 - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869743752078399.json",
|
||||||
"/Not-Copy-Copy - Delta/Amazon Drive - Results/A) Property/2022-04-07/[()]/637869744751177715.json",
|
"/Not-Copy-Copy - Delta/Amazon Drive - Results/A) Property/2022-07-24/[()]/637869744751177715.json",
|
||||||
"/Not-Copy-Copy - Delta/Blackberry - Results/A) Property/2022-04-07/[()]/637869745134124462.json"
|
"/Not-Copy-Copy - Delta/Blackberry - Results/A) Property/2022-07-24/[()]/637869745134124462.json"
|
||||||
],
|
],
|
||||||
"ValidImageFormatExtensions": [
|
"ValidImageFormatExtensions": [
|
||||||
".bmp",
|
".bmp",
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
"WorkingDirectoryName": "PharesApps",
|
"WorkingDirectoryName": "PharesApps",
|
||||||
"Windows": {
|
"Windows": {
|
||||||
"Configuration": {
|
"Configuration": {
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"DiffPropertyDirectory": "",
|
"DiffPropertyDirectory": "",
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
@ -94,13 +94,13 @@
|
|||||||
".GIF"
|
".GIF"
|
||||||
],
|
],
|
||||||
"PropertyContentCollectionFiles": [
|
"PropertyContentCollectionFiles": [
|
||||||
"/Images 2022-04-17 - fa60aa45ebb55fe3ee0ce4da8a64e40611e7d5ce - III - Results/A) Property/2022-04-07/[()]/637869381676042455.json",
|
"/Images 2022-07-24 - 1539b2f974f07b6b5cbda8450faf0eec85d02eda - III - Results/A) Property/2022-07-24/[()]/637869381676042455.json",
|
||||||
"/Not-Copy-Copy/Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869733124119330.json",
|
"/Not-Copy-Copy/Images 2019-06-08 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869733124119330.json",
|
||||||
"/Not-Copy-Copy/Images 2018-12-25 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869734240700328.json",
|
"/Not-Copy-Copy/Images 2018-12-25 - 34a9240ac28b52da97428d7725153a80a757ee6b - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869734240700328.json",
|
||||||
"/Not-Copy-Copy/Images 2018-05-12 - b01d4763d8853b6d6057a3870b2723449726da75 - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869734970730630.json",
|
"/Not-Copy-Copy/Images 2018-05-12 - b01d4763d8853b6d6057a3870b2723449726da75 - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869734970730630.json",
|
||||||
"/Not-Copy-Copy/Images 2013-12-15 - d02c8791fa0b130c0bce2d39ee684e50f7ee7a97 - Not-Copy-Copy - Results/A) Property/2022-04-07/[()]/637869743752078399.json",
|
"/Not-Copy-Copy/Images 2013-12-15 - d02c8791fa0b130c0bce2d39ee684e50f7ee7a97 - Not-Copy-Copy - Results/A) Property/2022-07-24/[()]/637869743752078399.json",
|
||||||
"/Not-Copy-Copy - Delta/Amazon Drive - Results/A) Property/2022-04-07/[()]/637869744751177715.json",
|
"/Not-Copy-Copy - Delta/Amazon Drive - Results/A) Property/2022-07-24/[()]/637869744751177715.json",
|
||||||
"/Not-Copy-Copy - Delta/Blackberry - Results/A) Property/2022-04-07/[()]/637869745134124462.json"
|
"/Not-Copy-Copy - Delta/Blackberry - Results/A) Property/2022-07-24/[()]/637869745134124462.json"
|
||||||
],
|
],
|
||||||
"ValidImageFormatExtensions": [
|
"ValidImageFormatExtensions": [
|
||||||
".bmp",
|
".bmp",
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||||
<PackageReference Include="Serilog" Version="2.10.0" />
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
||||||
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
|
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
|
||||||
|
<PackageReference Include="WindowsShortcutFactory" Version="1.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
|
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
|
||||||
|
@ -5,6 +5,7 @@ using System.Text;
|
|||||||
using View_by_Distance.Date.Group.Models;
|
using View_by_Distance.Date.Group.Models;
|
||||||
using View_by_Distance.Property.Models;
|
using View_by_Distance.Property.Models;
|
||||||
using View_by_Distance.Shared.Models.Methods;
|
using View_by_Distance.Shared.Models.Methods;
|
||||||
|
using WindowsShortcutFactory;
|
||||||
|
|
||||||
namespace View_by_Distance.Date.Group;
|
namespace View_by_Distance.Date.Group;
|
||||||
|
|
||||||
@ -39,50 +40,60 @@ public class DateGroup
|
|||||||
Property.Models.Configuration.Verify(propertyConfiguration);
|
Property.Models.Configuration.Verify(propertyConfiguration);
|
||||||
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
||||||
Verify(configuration);
|
Verify(configuration);
|
||||||
|
bool reverse = false;
|
||||||
|
string modelName = nameof(modelName);
|
||||||
|
string predictorModelName = nameof(predictorModelName);
|
||||||
_Configuration = configuration;
|
_Configuration = configuration;
|
||||||
if (configuration.ByHash is null)
|
if (configuration.ByHash is null)
|
||||||
throw new Exception($"{nameof(configuration.ByHash)} is null!");
|
throw new Exception($"{nameof(configuration.ByHash)} is null!");
|
||||||
if (propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
if (configuration.ByCreateDateShortcut is null)
|
||||||
throw new Exception($"{nameof(propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
throw new Exception($"{nameof(configuration.ByCreateDateShortcut)} is null!");
|
||||||
if (propertyConfiguration.PopulatePropertyId is null)
|
if (propertyConfiguration.PopulatePropertyId is null)
|
||||||
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
||||||
if (!_IsEnvironment.Development)
|
if (!_IsEnvironment.Development)
|
||||||
throw new Exception("This program only allows development environments!");
|
throw new Exception("This program only allows development environments!");
|
||||||
string searchPattern = "*";
|
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
List<string> topDirectories = new();
|
|
||||||
PropertyLogic propertyLogic = GetPropertyLogic();
|
PropertyLogic propertyLogic = GetPropertyLogic();
|
||||||
string[] dbFiles = Directory.GetFiles(propertyConfiguration.RootDirectory, "*.db", SearchOption.AllDirectories);
|
string[] dbFiles = Directory.GetFiles(propertyConfiguration.RootDirectory, "*.db", SearchOption.AllDirectories);
|
||||||
foreach (string dbFile in dbFiles)
|
foreach (string dbFile in dbFiles)
|
||||||
File.Delete(dbFile);
|
File.Delete(dbFile);
|
||||||
|
if (true || appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
|
ticks = LogDelta(ticks, nameof(File.Delete));
|
||||||
for (int i = 1; i < 10; i++)
|
for (int i = 1; i < 10; i++)
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(propertyConfiguration.RootDirectory);
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
if (true || appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.IPath.DeleteEmptyDirectories));
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
List<PropertyHolder[]> propertyHolderCollections = Property.Models.Stateless.A_Property.Get(propertyConfiguration, reverse, modelName, predictorModelName, propertyLogic);
|
||||||
List<Property.Models.Group> groupResultsCollection = new();
|
if (configuration.ByCreateDateShortcut.HasValue && configuration.ByCreateDateShortcut.Value)
|
||||||
if (!propertyConfiguration.PopulatePropertyId.Value || !configuration.ByHash.Value)
|
CreateDateShortcut(propertyConfiguration, propertyHolderCollections);
|
||||||
groupResultsCollection = propertyLogic.GetParallelWork(propertyConfiguration, topDirectories, groupCollection, firstPass: true, filterOnFirstPass: true);
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_Exceptions.AddRange(propertyLogic.DoWork(propertyConfiguration, topDirectories, groupCollection, firstPass: true));
|
List<string> topDirectories = new();
|
||||||
string message = $"There were {_Exceptions.Count} exception(s) thrown! {Environment.NewLine}{string.Join(Environment.NewLine, _Exceptions)}";
|
List<Property.Models.DirectoryInfo> directoryInfoCollection = new();
|
||||||
_Log.Information(message);
|
propertyLogic.ParallelWork(propertyConfiguration, modelName, predictorModelName, ticks, propertyHolderCollections, firstPass: true);
|
||||||
if (_Exceptions.Count != 0)
|
|
||||||
throw new Exception(message);
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.DoWork));
|
ticks = LogDelta(ticks, nameof(PropertyLogic.ParallelWork));
|
||||||
topDirectories.Clear();
|
if (propertyLogic.ExceptionsDirectories.Any())
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(propertyConfiguration.RootDirectory, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
throw new Exception();
|
||||||
|
if (propertyConfiguration.PopulatePropertyId.Value && (configuration.ByCreateDateShortcut.Value || configuration.ByHash.Value))
|
||||||
|
{
|
||||||
|
if (Property.Models.Stateless.A_Property.Any(propertyHolderCollections))
|
||||||
|
propertyLogic.ParallelWork(propertyConfiguration, modelName, predictorModelName, ticks, propertyHolderCollections, firstPass: false);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
ticks = LogDelta(ticks, nameof(PropertyLogic.ParallelWork));
|
||||||
groupResultsCollection = propertyLogic.GetParallelWork(propertyConfiguration, topDirectories, groupCollection, firstPass: false, filterOnFirstPass: true);
|
if (propertyLogic.ExceptionsDirectories.Any())
|
||||||
|
throw new Exception();
|
||||||
|
}
|
||||||
|
if ((from l in directoryInfoCollection where l.Moved.Any(a => a) select true).Any())
|
||||||
|
throw new Exception();
|
||||||
|
MoveFiles(topDirectories, directoryInfoCollection);
|
||||||
}
|
}
|
||||||
MoveFiles(topDirectories, groupResultsCollection);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void Verify(Models.Configuration configuration)
|
private static void Verify(Models.Configuration configuration)
|
||||||
{
|
{
|
||||||
|
if (configuration.ByCreateDateShortcut is null)
|
||||||
|
throw new Exception($"{nameof(configuration.ByCreateDateShortcut)} is null!");
|
||||||
if (configuration.ByDay is null)
|
if (configuration.ByDay is null)
|
||||||
throw new Exception($"{nameof(configuration.ByDay)} is null!");
|
throw new Exception($"{nameof(configuration.ByDay)} is null!");
|
||||||
if (configuration.ByHash is null)
|
if (configuration.ByHash is null)
|
||||||
@ -91,17 +102,17 @@ public class DateGroup
|
|||||||
throw new Exception($"{nameof(configuration.BySeason)} is null!");
|
throw new Exception($"{nameof(configuration.BySeason)} is null!");
|
||||||
if (configuration.ByWeek is null)
|
if (configuration.ByWeek is null)
|
||||||
throw new Exception($"{nameof(configuration.ByWeek)} is null!");
|
throw new Exception($"{nameof(configuration.ByWeek)} is null!");
|
||||||
if (!configuration.ByDay.Value && !configuration.ByWeek.Value && !configuration.BySeason.Value && !configuration.ByHash.Value)
|
if (!configuration.ByCreateDateShortcut.Value && !configuration.ByDay.Value && !configuration.ByWeek.Value && !configuration.BySeason.Value && !configuration.ByHash.Value)
|
||||||
throw new Exception("Change configuration!");
|
throw new Exception("Change configuration!");
|
||||||
if (configuration.KeepFullPath is null)
|
if (configuration.KeepFullPath is null)
|
||||||
throw new Exception($"{nameof(configuration.KeepFullPath)} is null!");
|
throw new Exception($"{nameof(configuration.KeepFullPath)} is null!");
|
||||||
if (configuration?.PropertyConfiguration?.PopulatePropertyId is null)
|
if (configuration?.PropertyConfiguration?.PopulatePropertyId is null)
|
||||||
throw new Exception($"{nameof(configuration.PropertyConfiguration.PopulatePropertyId)} must be set!");
|
throw new Exception($"{nameof(configuration.PropertyConfiguration.PopulatePropertyId)} must be set!");
|
||||||
if (configuration.PropertyConfiguration.PopulatePropertyId.Value && !configuration.ByHash.Value)
|
if (configuration.PropertyConfiguration.PopulatePropertyId.Value && !configuration.ByCreateDateShortcut.Value && !configuration.ByHash.Value)
|
||||||
throw new Exception("Change configuration!");
|
throw new Exception("Change configuration!");
|
||||||
if (!configuration.PropertyConfiguration.PopulatePropertyId.Value && configuration.ByHash.Value)
|
if (!configuration.PropertyConfiguration.PopulatePropertyId.Value && configuration.ByHash.Value)
|
||||||
throw new Exception("Change configuration!");
|
throw new Exception("Change configuration!");
|
||||||
if (configuration.ByDay.Value && configuration.ByWeek.Value && configuration.BySeason.Value && configuration.ByHash.Value)
|
if (configuration.ByCreateDateShortcut.Value && configuration.ByDay.Value && configuration.ByWeek.Value && configuration.BySeason.Value && configuration.ByHash.Value)
|
||||||
throw new Exception("Change configuration!");
|
throw new Exception("Change configuration!");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -148,9 +159,11 @@ public class DateGroup
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<(string Source, string[] Destination)> GetMoveFileCollection(string destinationDirectory, string topDirectory, Property.Models.Group group)
|
private List<(string Source, string[] Destination)> GetMoveFileCollection(string destinationDirectory, string topDirectory, Property.Models.DirectoryInfo group)
|
||||||
{
|
{
|
||||||
List<(string Source, string[] Destination)> results = new();
|
List<(string Source, string[] Destination)> results = new();
|
||||||
|
if (_Configuration.ByCreateDateShortcut is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.ByCreateDateShortcut)} is null!");
|
||||||
if (_Configuration.ByDay is null)
|
if (_Configuration.ByDay is null)
|
||||||
throw new Exception($"{nameof(_Configuration.ByDay)} is null!");
|
throw new Exception($"{nameof(_Configuration.ByDay)} is null!");
|
||||||
if (_Configuration.ByHash is null)
|
if (_Configuration.ByHash is null)
|
||||||
@ -181,8 +194,8 @@ public class DateGroup
|
|||||||
string[] directorySegments;
|
string[] directorySegments;
|
||||||
DateTime? minimumDateTime = null;
|
DateTime? minimumDateTime = null;
|
||||||
List<string> destinationCollection;
|
List<string> destinationCollection;
|
||||||
string filteredSourceDirectoryFile;
|
|
||||||
List<string> directoryNames = new();
|
List<string> directoryNames = new();
|
||||||
|
FileInfo filteredSourceDirectoryFileInfo;
|
||||||
List<string> topDirectorySegments = new();
|
List<string> topDirectorySegments = new();
|
||||||
StringBuilder destinationDirectoryName = new();
|
StringBuilder destinationDirectoryName = new();
|
||||||
Calendar calendar = new CultureInfo("en-US").Calendar;
|
Calendar calendar = new CultureInfo("en-US").Calendar;
|
||||||
@ -219,7 +232,7 @@ public class DateGroup
|
|||||||
}
|
}
|
||||||
if (matches is null)
|
if (matches is null)
|
||||||
matches = Array.Empty<string>();
|
matches = Array.Empty<string>();
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
for (int i = 0; i < group.SourceDirectoryFileInfoCollection.Length; i++)
|
||||||
{
|
{
|
||||||
destinationCollection = new();
|
destinationCollection = new();
|
||||||
directoryNames.Clear();
|
directoryNames.Clear();
|
||||||
@ -227,14 +240,14 @@ public class DateGroup
|
|||||||
property = group.PropertyCollection[i];
|
property = group.PropertyCollection[i];
|
||||||
if (property is null)
|
if (property is null)
|
||||||
continue;
|
continue;
|
||||||
filteredSourceDirectoryFile = group.FilteredSourceDirectoryFiles[i];
|
filteredSourceDirectoryFileInfo = group.SourceDirectoryFileInfoCollection[i];
|
||||||
minimumDateTime = Property.Models.Stateless.A_Property.GetMinimumDateTime(property);
|
minimumDateTime = Property.Models.Stateless.A_Property.GetMinimumDateTime(property);
|
||||||
directory = Path.GetDirectoryName(filteredSourceDirectoryFile);
|
directory = filteredSourceDirectoryFileInfo.DirectoryName;
|
||||||
if (string.IsNullOrEmpty(directory))
|
if (string.IsNullOrEmpty(directory))
|
||||||
continue;
|
continue;
|
||||||
day = minimumDateTime.Value.ToString("MM-dd");
|
day = minimumDateTime.Value.ToString("MM-dd");
|
||||||
month = minimumDateTime.Value.ToString("MMMM");
|
month = minimumDateTime.Value.ToString("MMMM");
|
||||||
(propertyWrongYear, _) = property.IsWrongYear(filteredSourceDirectoryFile, minimumDateTime);
|
(propertyWrongYear, _) = property.IsWrongYear(filteredSourceDirectoryFileInfo.FullName, minimumDateTime);
|
||||||
if (propertyWrongYear is null)
|
if (propertyWrongYear is null)
|
||||||
flag = '#';
|
flag = '#';
|
||||||
else
|
else
|
||||||
@ -303,13 +316,13 @@ public class DateGroup
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!_Configuration.ByHash.Value || property.Id is null)
|
if (!_Configuration.ByHash.Value || property.Id is null)
|
||||||
fileName = Path.GetFileName(filteredSourceDirectoryFile);
|
fileName = filteredSourceDirectoryFileInfo.Name;
|
||||||
else
|
else
|
||||||
fileName = $"{property.Id.Value}{Path.GetExtension(filteredSourceDirectoryFile).ToLower()}";
|
fileName = $"{property.Id.Value}{filteredSourceDirectoryFileInfo.Extension.ToLower()}";
|
||||||
destinationCollection.Add(destinationDirectory);
|
destinationCollection.Add(destinationDirectory);
|
||||||
destinationCollection.AddRange(directoryNames);
|
destinationCollection.AddRange(directoryNames);
|
||||||
destinationCollection.Add(fileName);
|
destinationCollection.Add(fileName);
|
||||||
results.Add(new(filteredSourceDirectoryFile, destinationCollection.ToArray()));
|
results.Add(new(filteredSourceDirectoryFileInfo.FullName, destinationCollection.ToArray()));
|
||||||
}
|
}
|
||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
@ -317,18 +330,15 @@ public class DateGroup
|
|||||||
private PropertyLogic GetPropertyLogic()
|
private PropertyLogic GetPropertyLogic()
|
||||||
{
|
{
|
||||||
PropertyLogic result;
|
PropertyLogic result;
|
||||||
|
|
||||||
string[] verifyToSeason = Array.Empty<string>();
|
|
||||||
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration, verifyToSeason);
|
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<(string Source, string[] Destination)> GetFileMoveCollectionAll(List<string> topDirectories, List<Property.Models.Group> groupCollection)
|
private List<(string Source, string[] Destination)> GetFileMoveCollectionAll(List<string> topDirectories, List<Property.Models.DirectoryInfo> groupCollection)
|
||||||
{
|
{
|
||||||
List<(string Source, string[] Destination)> results = new();
|
List<(string Source, string[] Destination)> results = new();
|
||||||
if (_Configuration.KeepFullPath is null)
|
if (_Configuration.KeepFullPath is null)
|
||||||
@ -341,7 +351,7 @@ public class DateGroup
|
|||||||
string destinationDirectory;
|
string destinationDirectory;
|
||||||
string destinationRoot = Property.Models.Stateless.IResult.GetResultsGroupDirectory(_Configuration.PropertyConfiguration, "Z) Moved");
|
string destinationRoot = Property.Models.Stateless.IResult.GetResultsGroupDirectory(_Configuration.PropertyConfiguration, "Z) Moved");
|
||||||
List<(string Source, string[] Destination)> fileMoveCollectionDirectory;
|
List<(string Source, string[] Destination)> fileMoveCollectionDirectory;
|
||||||
foreach (Property.Models.Group group in groupCollection)
|
foreach (Property.Models.DirectoryInfo group in groupCollection)
|
||||||
{
|
{
|
||||||
sourceDirectory = group.SourceDirectory;
|
sourceDirectory = group.SourceDirectory;
|
||||||
if (!_Configuration.KeepFullPath.Value)
|
if (!_Configuration.KeepFullPath.Value)
|
||||||
@ -366,7 +376,7 @@ public class DateGroup
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MoveFiles(List<string> topDirectories, List<Property.Models.Group> groupCollection)
|
private void MoveFiles(List<string> topDirectories, List<Property.Models.DirectoryInfo> groupCollection)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -423,4 +433,57 @@ public class DateGroup
|
|||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(_Configuration.PropertyConfiguration.RootDirectory);
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(_Configuration.PropertyConfiguration.RootDirectory);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void CreateDateShortcut(Property.Models.Configuration configuration, List<PropertyHolder[]> propertyHolderCollections)
|
||||||
|
{
|
||||||
|
string path;
|
||||||
|
string fileName;
|
||||||
|
string directory;
|
||||||
|
int selectedTotal;
|
||||||
|
const int minimum = 3;
|
||||||
|
List<DateTime> dateTimes;
|
||||||
|
const int maximumHours = 24;
|
||||||
|
string? relativePathDirectory;
|
||||||
|
WindowsShortcut windowsShortcut;
|
||||||
|
TimeSpan threeStandardDeviationHigh;
|
||||||
|
List<PropertyHolder> selectedPropertyHolderCollection;
|
||||||
|
string aPropertyContentDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(A_Property), "()");
|
||||||
|
foreach (PropertyHolder[] propertyHolderCollection in propertyHolderCollections)
|
||||||
|
{
|
||||||
|
if (!propertyHolderCollection.Any())
|
||||||
|
continue;
|
||||||
|
selectedTotal = 0;
|
||||||
|
threeStandardDeviationHigh = Property.Models.Stateless.A_Property.GetThreeStandardDeviationHigh(minimum, propertyHolderCollection);
|
||||||
|
if (threeStandardDeviationHigh.TotalHours > maximumHours)
|
||||||
|
threeStandardDeviationHigh = new(maximumHours, 0, 0);
|
||||||
|
for (int i = 0; i < propertyHolderCollection.Length; i++)
|
||||||
|
{
|
||||||
|
(i, dateTimes, selectedPropertyHolderCollection) = Property.Models.Stateless.A_Property.Get(propertyHolderCollection, threeStandardDeviationHigh, i);
|
||||||
|
selectedTotal += selectedPropertyHolderCollection.Count;
|
||||||
|
foreach (PropertyHolder propertyHolder in selectedPropertyHolderCollection)
|
||||||
|
{
|
||||||
|
if (propertyHolder.Property is null || propertyHolder.MinimumDateTime is null)
|
||||||
|
continue;
|
||||||
|
relativePathDirectory = Path.GetDirectoryName(propertyHolder.RelativePath);
|
||||||
|
if (string.IsNullOrEmpty(relativePathDirectory))
|
||||||
|
continue;
|
||||||
|
path = Path.GetFullPath($"{configuration.RootDirectory}{propertyHolder.RelativePath[..^5]}");
|
||||||
|
directory = Path.Combine($"{aPropertyContentDirectory}{relativePathDirectory}", $"{dateTimes.Min():yyyy-MM-dd_HH-mm-ss}---{dateTimes.Max():yyyy-MM-dd_HH-mm-ss}");
|
||||||
|
if (!Directory.Exists(directory))
|
||||||
|
_ = Directory.CreateDirectory(directory);
|
||||||
|
fileName = Path.Combine(directory, $"{Path.GetFileName(propertyHolder.RelativePath[..^5])}.lnk");
|
||||||
|
if (File.Exists(fileName))
|
||||||
|
continue;
|
||||||
|
windowsShortcut = new() { Path = path };
|
||||||
|
windowsShortcut.Save(fileName);
|
||||||
|
windowsShortcut.Dispose();
|
||||||
|
if (!File.Exists(fileName))
|
||||||
|
continue;
|
||||||
|
File.SetLastWriteTime(fileName, propertyHolder.MinimumDateTime.Value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (selectedTotal < propertyHolderCollection.Length && selectedTotal < (from l in propertyHolderCollection where l.Property is not null && l.MinimumDateTime.HasValue select true).Count())
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -5,6 +5,7 @@ namespace View_by_Distance.Date.Group.Models.Binder;
|
|||||||
|
|
||||||
public class Configuration
|
public class Configuration
|
||||||
{
|
{
|
||||||
|
[Display(Name = "By Create Date Shortcut"), Required] public bool? ByCreateDateShortcut { get; set; }
|
||||||
[Display(Name = "By Date"), Required] public bool? ByDay { get; set; }
|
[Display(Name = "By Date"), Required] public bool? ByDay { get; set; }
|
||||||
[Display(Name = "By Hash"), Required] public bool? ByHash { get; set; }
|
[Display(Name = "By Hash"), Required] public bool? ByHash { get; set; }
|
||||||
[Display(Name = "By Season"), Required] public bool? BySeason { get; set; }
|
[Display(Name = "By Season"), Required] public bool? BySeason { get; set; }
|
||||||
@ -15,6 +16,7 @@ public class Configuration
|
|||||||
public Configuration()
|
public Configuration()
|
||||||
{
|
{
|
||||||
ByDay = null;
|
ByDay = null;
|
||||||
|
ByCreateDateShortcut = null;
|
||||||
ByHash = null;
|
ByHash = null;
|
||||||
BySeason = null;
|
BySeason = null;
|
||||||
ByWeek = null;
|
ByWeek = null;
|
||||||
|
@ -6,12 +6,14 @@ namespace View_by_Distance.Date.Group.Models;
|
|||||||
public class Configuration
|
public class Configuration
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected readonly bool? _ByCreateDateShortcut;
|
||||||
protected readonly bool? _ByDay;
|
protected readonly bool? _ByDay;
|
||||||
protected readonly bool? _ByHash;
|
protected readonly bool? _ByHash;
|
||||||
protected readonly bool? _BySeason;
|
protected readonly bool? _BySeason;
|
||||||
protected readonly bool? _ByWeek;
|
protected readonly bool? _ByWeek;
|
||||||
protected readonly bool? _KeepFullPath;
|
protected readonly bool? _KeepFullPath;
|
||||||
protected Property.Models.Configuration? _PropertyConfiguration;
|
protected Property.Models.Configuration? _PropertyConfiguration;
|
||||||
|
public bool? ByCreateDateShortcut => _ByCreateDateShortcut;
|
||||||
public bool? ByDay => _ByDay;
|
public bool? ByDay => _ByDay;
|
||||||
public bool? ByHash => _ByHash;
|
public bool? ByHash => _ByHash;
|
||||||
public bool? BySeason => _BySeason;
|
public bool? BySeason => _BySeason;
|
||||||
@ -20,8 +22,9 @@ public class Configuration
|
|||||||
public Property.Models.Configuration? PropertyConfiguration => _PropertyConfiguration;
|
public Property.Models.Configuration? PropertyConfiguration => _PropertyConfiguration;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Configuration(bool? byDay, bool? byHash, bool? bySeason, bool? byWeek, bool? keepFullPath, Property.Models.Configuration? propertyConfiguration)
|
public Configuration(bool? byCreateDateShortcut, bool? byDay, bool? byHash, bool? bySeason, bool? byWeek, bool? keepFullPath, Property.Models.Configuration? propertyConfiguration)
|
||||||
{
|
{
|
||||||
|
_ByCreateDateShortcut = byCreateDateShortcut;
|
||||||
_ByDay = byDay;
|
_ByDay = byDay;
|
||||||
_ByHash = byHash;
|
_ByHash = byHash;
|
||||||
_BySeason = bySeason;
|
_BySeason = bySeason;
|
||||||
@ -36,7 +39,7 @@ public class Configuration
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(Property.Models.Configuration propertyConfiguration) => _PropertyConfiguration = propertyConfiguration;
|
public void Set(Property.Models.Configuration configuration) => _PropertyConfiguration = configuration;
|
||||||
|
|
||||||
public void Update() => _PropertyConfiguration?.Update();
|
public void Update() => _PropertyConfiguration?.Update();
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"Microsoft.Hosting.Lifetime": "Information"
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"MaxDegreeOfParallelism": 1,
|
"MaxDegreeOfParallelism": 6,
|
||||||
"Serilog": {
|
"Serilog": {
|
||||||
"Using": [
|
"Using": [
|
||||||
"Serilog.Sinks.Console",
|
"Serilog.Sinks.Console",
|
||||||
@ -50,19 +50,20 @@
|
|||||||
"WorkingDirectoryName": "PharesApps",
|
"WorkingDirectoryName": "PharesApps",
|
||||||
"Windows": {
|
"Windows": {
|
||||||
"Configuration": {
|
"Configuration": {
|
||||||
|
"ByCreateDateShortcut": true,
|
||||||
"ByDay": false,
|
"ByDay": false,
|
||||||
"ByHash": false,
|
"ByHash": false,
|
||||||
"BySeason": true,
|
"BySeason": false,
|
||||||
"ByWeek": false,
|
"ByWeek": false,
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
"KeepFullPath": false,
|
"KeepFullPath": false,
|
||||||
"MaxImagesInDirectoryForTopLevelFirstPass": 50,
|
"MaxImagesInDirectoryForTopLevelFirstPass": 50,
|
||||||
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
"Pattern": "[^ABCDEFGHIJKLMNOPQRSTUVWXYZbcdfghjklmnpqrstvwxyz0-9]",
|
||||||
"PopulatePropertyId": false,
|
"PopulatePropertyId": true,
|
||||||
"PropertiesChangedForProperty": false,
|
"PropertiesChangedForProperty": false,
|
||||||
"RootDirectory": "C:/Tmp/Phares/- Device Videos 2_0_0_3 - Current/_",
|
"RootDirectory": "C:/Tmp/Phares/Compare/Images 2022-07-24 - 1539b2f974f07b6b5cbda8450faf0eec85d02eda - III",
|
||||||
"WriteBitmapDataBytes": false,
|
"WriteBitmapDataBytes": false,
|
||||||
"IgnoreExtensions": [
|
"IgnoreExtensions": [
|
||||||
".gif",
|
".gif",
|
||||||
|
@ -8,6 +8,7 @@ using View_by_Distance.Instance.Models;
|
|||||||
using View_by_Distance.Metadata.Models;
|
using View_by_Distance.Metadata.Models;
|
||||||
using View_by_Distance.Property.Models;
|
using View_by_Distance.Property.Models;
|
||||||
using View_by_Distance.Resize.Models;
|
using View_by_Distance.Resize.Models;
|
||||||
|
using View_by_Distance.Shared.Models;
|
||||||
using View_by_Distance.Shared.Models.Methods;
|
using View_by_Distance.Shared.Models.Methods;
|
||||||
|
|
||||||
namespace View_by_Distance.Instance;
|
namespace View_by_Distance.Instance;
|
||||||
@ -36,6 +37,7 @@ public class DlibDotNet
|
|||||||
public DlibDotNet(List<string> args, IsEnvironment isEnvironment, IConfigurationRoot configurationRoot, AppSettings appSettings, string workingDirectory, bool isSilent, IConsole console)
|
public DlibDotNet(List<string> args, IsEnvironment isEnvironment, IConfigurationRoot configurationRoot, AppSettings appSettings, string workingDirectory, bool isSilent, IConsole console)
|
||||||
{
|
{
|
||||||
string argZero;
|
string argZero;
|
||||||
|
Person[] people;
|
||||||
_AppSettings = appSettings;
|
_AppSettings = appSettings;
|
||||||
if (appSettings.MaxDegreeOfParallelism is null)
|
if (appSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(appSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(appSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
@ -49,8 +51,6 @@ public class DlibDotNet
|
|||||||
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
||||||
Verify(configuration);
|
Verify(configuration);
|
||||||
(Model model, PredictorModel predictorModel) = GetTuple(args, propertyConfiguration, configuration);
|
(Model model, PredictorModel predictorModel) = GetTuple(args, propertyConfiguration, configuration);
|
||||||
if (configuration.SearchForAbandonedFilesFull is null)
|
|
||||||
throw new Exception($"{nameof(configuration.SearchForAbandonedFilesFull)} is null!");
|
|
||||||
_Configuration = configuration;
|
_Configuration = configuration;
|
||||||
_Index = new G_Index(configuration);
|
_Index = new G_Index(configuration);
|
||||||
_Random = new F_Random(configuration);
|
_Random = new F_Random(configuration);
|
||||||
@ -72,6 +72,8 @@ public class DlibDotNet
|
|||||||
throw new Exception($"{nameof(configuration.PropertiesChangedForMetadata)} is null!");
|
throw new Exception($"{nameof(configuration.PropertiesChangedForMetadata)} is null!");
|
||||||
if (configuration.PropertiesChangedForResize is null)
|
if (configuration.PropertiesChangedForResize is null)
|
||||||
throw new Exception($"{nameof(configuration.PropertiesChangedForResize)} is null!");
|
throw new Exception($"{nameof(configuration.PropertiesChangedForResize)} is null!");
|
||||||
|
if (configuration.Reverse is null)
|
||||||
|
throw new Exception($"{nameof(configuration.Reverse)} is null!");
|
||||||
_Metadata = new(configuration.ForceMetadataLastWriteTimeToCreationTime.Value, configuration.PropertiesChangedForMetadata.Value);
|
_Metadata = new(configuration.ForceMetadataLastWriteTimeToCreationTime.Value, configuration.PropertiesChangedForMetadata.Value);
|
||||||
if (args.Count > 0)
|
if (args.Count > 0)
|
||||||
argZero = Path.GetFullPath(args[0]);
|
argZero = Path.GetFullPath(args[0]);
|
||||||
@ -90,44 +92,21 @@ public class DlibDotNet
|
|||||||
_Faces = new D_Face(configuration, argZero, model, modelParameter, predictorModel);
|
_Faces = new D_Face(configuration, argZero, model, modelParameter, predictorModel);
|
||||||
if (configuration.SkipSearch is null)
|
if (configuration.SkipSearch is null)
|
||||||
throw new Exception($"{nameof(configuration.SkipSearch)} is null!");
|
throw new Exception($"{nameof(configuration.SkipSearch)} is null!");
|
||||||
if (_ArgZeroIsConfigurationRootDirectory)
|
if (!_ArgZeroIsConfigurationRootDirectory)
|
||||||
_ = _People.GetPeople(propertyConfiguration);
|
people = Array.Empty<Person>();
|
||||||
|
else
|
||||||
|
people = _People.GetPeople(propertyConfiguration);
|
||||||
if (!isSilent && configuration.TestDistanceResults.HasValue && configuration.TestDistanceResults.Value)
|
if (!isSilent && configuration.TestDistanceResults.HasValue && configuration.TestDistanceResults.Value)
|
||||||
{
|
{
|
||||||
E2_Navigate e2Navigate = new(console, configuration, argZero);
|
E2_Navigate e2Navigate = new(console, configuration, argZero);
|
||||||
e2Navigate.Navigate(propertyConfiguration, configuration.OutputResolutions[0]);
|
e2Navigate.Navigate(propertyConfiguration, model, predictorModel, configuration.OutputResolutions[0]);
|
||||||
}
|
|
||||||
if (_ArgZeroIsConfigurationRootDirectory)
|
|
||||||
{
|
|
||||||
long ticks = DateTime.Now.Ticks;
|
|
||||||
string[] directories = Property.Models.Stateless.A_Property.GetDirectoryRenameCollection(propertyConfiguration, configuration.OutputResolutions[0], nameof(B_Metadata), nameof(C_Resize));
|
|
||||||
foreach (string directory in directories)
|
|
||||||
{
|
|
||||||
if (!Directory.Exists(directory))
|
|
||||||
continue;
|
|
||||||
Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull(argZero, directory, onlyJson: false);
|
|
||||||
}
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull));
|
|
||||||
}
|
}
|
||||||
if (!configuration.SkipSearch.Value)
|
if (!configuration.SkipSearch.Value)
|
||||||
Search(argZero);
|
Search(propertyConfiguration, configuration.JuliePhares, configuration.Reverse.Value, model, predictorModel, argZero, people);
|
||||||
if (_Exceptions.Count == 0 && _ArgZeroIsConfigurationRootDirectory)
|
if (_Exceptions.Count == 0 && _ArgZeroIsConfigurationRootDirectory)
|
||||||
{
|
{
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
if (configuration.SearchForAbandonedFilesFull.Value)
|
List<string[]> directoryCollections = _Rename.GetDirectoryRenameCollections(propertyConfiguration, model, predictorModel, relativePath: string.Empty, newDirectoryName: string.Empty, jsonFiles4InfoAny: false);
|
||||||
{
|
|
||||||
string[] directories = _Rename.GetDirectoryRenameCollection(propertyConfiguration, relativePath: string.Empty, newDirectoryName: string.Empty, jsonFiles4InfoAny: false);
|
|
||||||
foreach (string directory in directories)
|
|
||||||
{
|
|
||||||
if (!Directory.Exists(directory))
|
|
||||||
continue;
|
|
||||||
Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull(argZero, directory, onlyJson: true);
|
|
||||||
}
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.SearchForAbandonedFilesFull));
|
|
||||||
}
|
|
||||||
List<string[]> directoryCollections = _Rename.GetDirectoryRenameCollections(propertyConfiguration, relativePath: string.Empty, newDirectoryName: string.Empty, jsonFiles4InfoAny: false);
|
|
||||||
foreach (string[] directoryCollection in directoryCollections)
|
foreach (string[] directoryCollection in directoryCollections)
|
||||||
{
|
{
|
||||||
_Log.Information(string.Concat("Cleaning <", directoryCollection[0], ">"));
|
_Log.Information(string.Concat("Cleaning <", directoryCollection[0], ">"));
|
||||||
@ -149,7 +128,7 @@ public class DlibDotNet
|
|||||||
{
|
{
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
foreach (string outputResolution in configuration.OutputResolutions)
|
foreach (string outputResolution in configuration.OutputResolutions)
|
||||||
_Distance.LoadOrCreateThenSaveDirectoryDistanceResults(propertyConfiguration, outputResolution);
|
_Distance.LoadOrCreateThenSaveDirectoryDistanceResults(propertyConfiguration, model, predictorModel, outputResolution);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(E_Distance.LoadOrCreateThenSaveDirectoryDistanceResults));
|
ticks = LogDelta(ticks, nameof(E_Distance.LoadOrCreateThenSaveDirectoryDistanceResults));
|
||||||
}
|
}
|
||||||
@ -300,8 +279,6 @@ public class DlibDotNet
|
|||||||
throw new Exception($"{nameof(configuration.SaveFullYearOfRandomFiles)} must be set!");
|
throw new Exception($"{nameof(configuration.SaveFullYearOfRandomFiles)} must be set!");
|
||||||
if (configuration.SaveResizedSubfiles is null)
|
if (configuration.SaveResizedSubfiles is null)
|
||||||
throw new Exception($"{nameof(configuration.SaveResizedSubfiles)} must be set!");
|
throw new Exception($"{nameof(configuration.SaveResizedSubfiles)} must be set!");
|
||||||
if (configuration.SearchForAbandonedFilesFull is null)
|
|
||||||
throw new Exception($"{nameof(configuration.SearchForAbandonedFilesFull)} must be set!");
|
|
||||||
if (configuration.SkipSearch is null)
|
if (configuration.SkipSearch is null)
|
||||||
throw new Exception($"{nameof(configuration.SkipSearch)} must be set!");
|
throw new Exception($"{nameof(configuration.SkipSearch)} must be set!");
|
||||||
if (configuration.TestDistanceResults is null)
|
if (configuration.TestDistanceResults is null)
|
||||||
@ -320,51 +297,10 @@ public class DlibDotNet
|
|||||||
throw new Exception($"{nameof(configuration.DistanceFactor)} and {nameof(configuration.LocationConfidenceFactor)} must add up to 10!");
|
throw new Exception($"{nameof(configuration.DistanceFactor)} and {nameof(configuration.LocationConfidenceFactor)} must add up to 10!");
|
||||||
}
|
}
|
||||||
|
|
||||||
private int FullParallelWork(object @lock, long ticks, PropertyLogic propertyLogic, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, List<FileInfo?> propertyFileInfoCollection, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollection, List<Dictionary<string, int[]>> resizeKeyValuePairs, List<List<D_Face>> faceCollections, int g, string sourceDirectory, int r, string[] filteredSourceDirectoryFiles, int count)
|
private void FullParallelForWork(PropertyLogic propertyLogic, object @lock, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, List<FileInfo?> propertyFileInfoCollection, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollections, List<Dictionary<string, int[]>> resizeKeyValuePairs, List<List<D_Face>> imageFaceCollections, string sourceDirectory, int index, PropertyHolder propertyHolder)
|
||||||
{
|
|
||||||
int result = 0;
|
|
||||||
if (_Log is null)
|
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
|
||||||
throw new Exception($"{nameof(AppSettings.MaxDegreeOfParallelism)} is null!");
|
|
||||||
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _AppSettings.MaxDegreeOfParallelism.Value };
|
|
||||||
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
|
||||||
if (faceCollections.Count != filteredSourceDirectoryFiles.Length || metadataCollection.Count != filteredSourceDirectoryFiles.Length || resizeKeyValuePairs.Count != filteredSourceDirectoryFiles.Length || propertyCollection.Count != filteredSourceDirectoryFiles.Length)
|
|
||||||
{
|
|
||||||
for (int i = 0; i < filteredSourceDirectoryFiles.Length; i++)
|
|
||||||
{
|
|
||||||
faceCollections.Add(new());
|
|
||||||
metadataCollection.Add(new());
|
|
||||||
resizeKeyValuePairs.Add(new());
|
|
||||||
propertyCollection.Add(new());
|
|
||||||
propertyFileInfoCollection.Add(null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
int totalSeconds = (int)Math.Floor(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
|
||||||
using (ProgressBar progressBar = new(filteredSourceDirectoryFiles.Length, $"{g}) {r + 1:000} / {count:000} - {outputResolution} - {sourceDirectory} - {filteredSourceDirectoryFiles.Length} file(s) - {totalSeconds} total second(s)", options))
|
|
||||||
{
|
|
||||||
_ = Parallel.For(0, filteredSourceDirectoryFiles.Length, parallelOptions, i =>
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
FullParallelForWork(propertyLogic, @lock, outputResolution, sourceDirectoryChanges, propertyFileInfoCollection, propertyCollection, metadataCollection, resizeKeyValuePairs, faceCollections, sourceDirectory, index: i, filteredSourceDirectoryFiles[i]);
|
|
||||||
if (sourceDirectoryChanges.Any())
|
|
||||||
progressBar.Tick();
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
result += 1;
|
|
||||||
_Log.Error(string.Concat(sourceDirectory, Environment.NewLine, ex.Message, Environment.NewLine, ex.StackTrace), ex);
|
|
||||||
if (result == filteredSourceDirectoryFiles.Length)
|
|
||||||
throw new Exception(string.Concat("All in [", sourceDirectory, "]failed!"));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void FullParallelForWork(PropertyLogic propertyLogic, object @lock, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, List<FileInfo?> propertyFileInfoCollection, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollections, List<Dictionary<string, int[]>> resizeKeyValuePairs, List<List<D_Face>> imageFaceCollections, string sourceDirectory, int index, string filteredSourceDirectoryFile)
|
|
||||||
{
|
{
|
||||||
|
if (propertyHolder.FileInfo is null)
|
||||||
|
throw new Exception($"{nameof(propertyHolder.FileInfo)} is null!");
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration.SaveResizedSubfiles is null)
|
if (_Configuration.SaveResizedSubfiles is null)
|
||||||
@ -373,6 +309,7 @@ public class DlibDotNet
|
|||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
if (_Configuration.PropertyConfiguration.WriteBitmapDataBytes is null)
|
if (_Configuration.PropertyConfiguration.WriteBitmapDataBytes is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.WriteBitmapDataBytes)} is null!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.WriteBitmapDataBytes)} is null!");
|
||||||
|
A_Property property;
|
||||||
List<D_Face> faceCollection;
|
List<D_Face> faceCollection;
|
||||||
string original = "Original";
|
string original = "Original";
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
@ -381,29 +318,36 @@ public class DlibDotNet
|
|||||||
Dictionary<string, int[]> imageResizeKeyValuePairs;
|
Dictionary<string, int[]> imageResizeKeyValuePairs;
|
||||||
List<Tuple<string, DateTime>> subFileTuples = new();
|
List<Tuple<string, DateTime>> subFileTuples = new();
|
||||||
List<KeyValuePair<string, string>> metadataCollection;
|
List<KeyValuePair<string, string>> metadataCollection;
|
||||||
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(filteredSourceDirectoryFile);
|
if (propertyHolder.Property is null)
|
||||||
string relativePath = Property.Models.Stateless.IPath.GetRelativePath(filteredSourceDirectoryFile, _Configuration.PropertyConfiguration.RootDirectory.Length);
|
{
|
||||||
FileInfo propertyFileInfo = new(Path.Combine(propertyLogic.AngleBracketCollection[0].Replace("<>", "{}"), string.Concat(fileNameWithoutExtension, ".json")));
|
sourceDirectoryChanges.Add(new Tuple<string, DateTime>(nameof(A_Property), propertyHolder.FileInfo.LastWriteTime));
|
||||||
A_Property property = propertyLogic.GetProperty(propertyLogic.AngleBracketCollection[0], sourceDirectory, filteredSourceDirectoryFile, subFileTuples, parseExceptions, propertyFileInfo);
|
property = propertyLogic.GetProperty(propertyLogic.AngleBracketCollection[0], sourceDirectory, propertyHolder.FileInfo.FullName, subFileTuples, parseExceptions, propertyHolder.FileInfo);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
}
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.GetProperty));
|
else
|
||||||
(int metadataGroups, metadataCollection) = _Metadata.GetMetadataCollection(subFileTuples, parseExceptions, filteredSourceDirectoryFile, relativePath, fileNameWithoutExtension);
|
{
|
||||||
|
property = propertyHolder.Property;
|
||||||
|
if (propertyHolder.Changed.HasValue && propertyHolder.Changed.Value)
|
||||||
|
sourceDirectoryChanges.Add(new Tuple<string, DateTime>(nameof(A_Property), propertyHolder.FileInfo.LastWriteTime));
|
||||||
|
}
|
||||||
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(propertyHolder.FileInfo.FullName);
|
||||||
|
(int metadataGroups, metadataCollection) = _Metadata.GetMetadataCollection(subFileTuples, parseExceptions, propertyHolder.FileInfo.FullName, propertyHolder.RelativePath, fileNameWithoutExtension);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(B_Metadata.GetMetadataCollection));
|
ticks = LogDelta(ticks, nameof(B_Metadata.GetMetadataCollection));
|
||||||
FileInfo resizedFileInfo = new(Path.Combine(_Resize.AngleBracketCollection[0].Replace("<>", "()"), Path.GetFileName(filteredSourceDirectoryFile)));
|
FileInfo resizedFileInfo = new(Path.Combine(_Resize.AngleBracketCollection[0].Replace("<>", "()"), Path.GetFileName(propertyHolder.FileInfo.FullName)));
|
||||||
imageResizeKeyValuePairs = _Resize.GetResizeKeyValuePairs(subFileTuples, parseExceptions, original, metadataCollection, property, filteredSourceDirectoryFile, relativePath, fileNameWithoutExtension);
|
propertyHolder.SetResizedFileInfo(resizedFileInfo);
|
||||||
|
imageResizeKeyValuePairs = _Resize.GetResizeKeyValuePairs(subFileTuples, parseExceptions, original, metadataCollection, property, propertyHolder.FileInfo.FullName, propertyHolder.RelativePath, fileNameWithoutExtension);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(C_Resize.GetResizeKeyValuePairs));
|
ticks = LogDelta(ticks, nameof(C_Resize.GetResizeKeyValuePairs));
|
||||||
if (_Configuration.SaveResizedSubfiles.Value)
|
if (_Configuration.SaveResizedSubfiles.Value)
|
||||||
{
|
{
|
||||||
_Resize.SaveResizedSubfile(outputResolution, subFileTuples, filteredSourceDirectoryFile, original, property, imageResizeKeyValuePairs, resizedFileInfo);
|
_Resize.SaveResizedSubfile(outputResolution, subFileTuples, propertyHolder.FileInfo.FullName, original, property, imageResizeKeyValuePairs, resizedFileInfo);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(C_Resize.SaveResizedSubfile));
|
ticks = LogDelta(ticks, nameof(C_Resize.SaveResizedSubfile));
|
||||||
resizedFileInfo.Refresh();
|
resizedFileInfo.Refresh();
|
||||||
}
|
}
|
||||||
else if (outputResolution == _Configuration.OutputResolutions[0] && false)
|
else if (outputResolution == _Configuration.OutputResolutions[0] && false)
|
||||||
{
|
{
|
||||||
byte[] bytes = _Resize.GetResizedBytes(outputResolution, subFileTuples, filteredSourceDirectoryFile, property, imageResizeKeyValuePairs);
|
byte[] bytes = _Resize.GetResizedBytes(outputResolution, subFileTuples, propertyHolder.FileInfo.FullName, property, imageResizeKeyValuePairs);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(C_Resize.GetResizedBytes));
|
ticks = LogDelta(ticks, nameof(C_Resize.GetResizedBytes));
|
||||||
string path = Path.Combine(resizedFileInfo.DirectoryName, Path.GetFileNameWithoutExtension(resizedFileInfo.Name));
|
string path = Path.Combine(resizedFileInfo.DirectoryName, Path.GetFileNameWithoutExtension(resizedFileInfo.Name));
|
||||||
@ -417,15 +361,15 @@ public class DlibDotNet
|
|||||||
int outputResolutionWidth = outputResolutionCollection[0];
|
int outputResolutionWidth = outputResolutionCollection[0];
|
||||||
int outputResolutionHeight = outputResolutionCollection[1];
|
int outputResolutionHeight = outputResolutionCollection[1];
|
||||||
int outputResolutionOrientation = outputResolutionCollection[2];
|
int outputResolutionOrientation = outputResolutionCollection[2];
|
||||||
faceCollection = _Faces.GetFaces(_Configuration.PropertyConfiguration, outputResolution, subFileTuples, parseExceptions, relativePath, fileNameWithoutExtension, property, resizedFileInfo, outputResolutionWidth, outputResolutionHeight, outputResolutionOrientation);
|
faceCollection = _Faces.GetFaces(_Configuration.PropertyConfiguration, outputResolution, subFileTuples, parseExceptions, propertyHolder.RelativePath, fileNameWithoutExtension, property, resizedFileInfo, outputResolutionWidth, outputResolutionHeight, outputResolutionOrientation);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(D_Face.GetFaces));
|
ticks = LogDelta(ticks, nameof(D_Face.GetFaces));
|
||||||
_Faces.SaveFaces(_Configuration.PropertyConfiguration, subFileTuples, parseExceptions, relativePath, fileNameWithoutExtension, resizedFileInfo, faceCollection);
|
_Faces.SaveFaces(_Configuration.PropertyConfiguration, subFileTuples, parseExceptions, propertyHolder.RelativePath, fileNameWithoutExtension, resizedFileInfo, faceCollection);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(D_Face.SaveFaces));
|
ticks = LogDelta(ticks, nameof(D_Face.SaveFaces));
|
||||||
if (_Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
if (_Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
||||||
{
|
{
|
||||||
_FaceLandmarks.SaveFaceLandmarkImages(subFileTuples, parseExceptions, relativePath, fileNameWithoutExtension, resizedFileInfo, faceCollection);
|
_FaceLandmarks.SaveFaceLandmarkImages(subFileTuples, parseExceptions, propertyHolder.RelativePath, fileNameWithoutExtension, resizedFileInfo, faceCollection);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
||||||
ticks = LogDelta(ticks, nameof(D2_FaceLandmarks.SaveFaceLandmarkImages));
|
ticks = LogDelta(ticks, nameof(D2_FaceLandmarks.SaveFaceLandmarkImages));
|
||||||
}
|
}
|
||||||
@ -435,12 +379,55 @@ public class DlibDotNet
|
|||||||
propertyCollection[index] = property;
|
propertyCollection[index] = property;
|
||||||
imageFaceCollections[index] = faceCollection;
|
imageFaceCollections[index] = faceCollection;
|
||||||
metadataCollections[index] = metadataCollection;
|
metadataCollections[index] = metadataCollection;
|
||||||
propertyFileInfoCollection[index] = propertyFileInfo;
|
|
||||||
resizeKeyValuePairs[index] = imageResizeKeyValuePairs;
|
resizeKeyValuePairs[index] = imageResizeKeyValuePairs;
|
||||||
|
propertyFileInfoCollection[index] = propertyHolder.FileInfo;
|
||||||
sourceDirectoryChanges.AddRange(from l in subFileTuples where l.Item2 > dateTime select l);
|
sourceDirectoryChanges.AddRange(from l in subFileTuples where l.Item2 > dateTime select l);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int FullParallelWork(object @lock, long ticks, PropertyLogic propertyLogic, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, List<FileInfo?> propertyFileInfoCollection, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollection, List<Dictionary<string, int[]>> resizeKeyValuePairs, List<List<D_Face>> faceCollections, int propertyHolderCollectionsCount, int g, string sourceDirectory, int r, PropertyHolder[] filteredPropertyHolderCollection)
|
||||||
|
{
|
||||||
|
int result = 0;
|
||||||
|
if (_Log is null)
|
||||||
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
|
throw new Exception($"{nameof(AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
|
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _AppSettings.MaxDegreeOfParallelism.Value };
|
||||||
|
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
||||||
|
if (faceCollections.Count != filteredPropertyHolderCollection.Length || metadataCollection.Count != filteredPropertyHolderCollection.Length || resizeKeyValuePairs.Count != filteredPropertyHolderCollection.Length || propertyCollection.Count != filteredPropertyHolderCollection.Length)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
|
{
|
||||||
|
faceCollections.Add(new());
|
||||||
|
metadataCollection.Add(new());
|
||||||
|
resizeKeyValuePairs.Add(new());
|
||||||
|
propertyCollection.Add(new());
|
||||||
|
propertyFileInfoCollection.Add(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int totalSeconds = (int)Math.Floor(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
||||||
|
using (ProgressBar progressBar = new(filteredPropertyHolderCollection.Length, $"{r + 1:000}.{g} / {propertyHolderCollectionsCount:000}) {filteredPropertyHolderCollection.Length:000} file(s) - {totalSeconds} total second(s) - {outputResolution} - {sourceDirectory}", options))
|
||||||
|
{
|
||||||
|
_ = Parallel.For(0, filteredPropertyHolderCollection.Length, parallelOptions, i =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
FullParallelForWork(propertyLogic, @lock, outputResolution, sourceDirectoryChanges, propertyFileInfoCollection, propertyCollection, metadataCollection, resizeKeyValuePairs, faceCollections, sourceDirectory, index: i, filteredPropertyHolderCollection[i]);
|
||||||
|
if (sourceDirectoryChanges.Any())
|
||||||
|
progressBar.Tick();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
result += 1;
|
||||||
|
_Log.Error(string.Concat(sourceDirectory, Environment.NewLine, ex.Message, Environment.NewLine, ex.StackTrace), ex);
|
||||||
|
if (result == filteredPropertyHolderCollection.Length)
|
||||||
|
throw new Exception(string.Concat("All in [", sourceDirectory, "] failed!"));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
private static void WriteTab(string checkDirectory, List<(string Id, string Line)> metadataIdLines, string fileName)
|
private static void WriteTab(string checkDirectory, List<(string Id, string Line)> metadataIdLines, string fileName)
|
||||||
{
|
{
|
||||||
string text;
|
string text;
|
||||||
@ -476,14 +463,12 @@ public class DlibDotNet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WriteGroup(PropertyLogic propertyLogic, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollection, List<List<D_Face>> faceCollections, List<Dictionary<string, int[]>> resizeKeyValuePairs, string sourceDirectory, string[] filteredSourceDirectoryFiles)
|
private void WriteGroup(Property.Models.Configuration configuration, PropertyLogic propertyLogic, List<A_Property> propertyCollection, List<List<KeyValuePair<string, string>>> metadataCollection, List<List<D_Face>> faceCollections, List<Dictionary<string, int[]>> resizeKeyValuePairs, string sourceDirectory, PropertyHolder[] filteredPropertyHolderCollection)
|
||||||
{
|
{
|
||||||
if (_Configuration.PropertiesChangedForMetadata is null)
|
if (_Configuration.PropertiesChangedForMetadata is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertiesChangedForMetadata)} is null!");
|
throw new Exception($"{nameof(_Configuration.PropertiesChangedForMetadata)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (configuration.PropertiesChangedForProperty is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(configuration.PropertiesChangedForProperty)} is null!");
|
||||||
if (_Configuration.PropertyConfiguration.PropertiesChangedForProperty is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.PropertiesChangedForProperty)} is null!");
|
|
||||||
if (_Configuration.PropertiesChangedForResize is null)
|
if (_Configuration.PropertiesChangedForResize is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertiesChangedForResize)} is null!");
|
throw new Exception($"{nameof(_Configuration.PropertiesChangedForResize)} is null!");
|
||||||
if (_Configuration.PropertiesChangedForFaces is null)
|
if (_Configuration.PropertiesChangedForFaces is null)
|
||||||
@ -491,8 +476,10 @@ public class DlibDotNet
|
|||||||
string key;
|
string key;
|
||||||
string json;
|
string json;
|
||||||
string checkFile;
|
string checkFile;
|
||||||
|
PropertyHolder propertyHolder;
|
||||||
int sourceDirectoryLength = sourceDirectory.Length;
|
int sourceDirectoryLength = sourceDirectory.Length;
|
||||||
int rootDirectoryLength = _Configuration.PropertyConfiguration.RootDirectory.Length;
|
int rootDirectoryLength = configuration.RootDirectory.Length;
|
||||||
|
_FilePropertiesKeyValuePairs.Add(sourceDirectory, new List<Tuple<string, A_Property>>());
|
||||||
JsonSerializerOptions writeIndentedJsonSerializerOptions = new() { WriteIndented = false };
|
JsonSerializerOptions writeIndentedJsonSerializerOptions = new() { WriteIndented = false };
|
||||||
if (!(from l in propertyCollection where l?.Width is null select true).Any())
|
if (!(from l in propertyCollection where l?.Width is null select true).Any())
|
||||||
{
|
{
|
||||||
@ -501,11 +488,18 @@ public class DlibDotNet
|
|||||||
List<KeyValuePair<string, A_Property>> propertyCollectionKeyValuePairs = new();
|
List<KeyValuePair<string, A_Property>> propertyCollectionKeyValuePairs = new();
|
||||||
List<KeyValuePair<string, Dictionary<string, int[]>>> resizeKeyValuePairsCollections = new();
|
List<KeyValuePair<string, Dictionary<string, int[]>>> resizeKeyValuePairsCollections = new();
|
||||||
List<KeyValuePair<string, List<KeyValuePair<string, string>>>> metadataCollectionKeyValuePairs = new();
|
List<KeyValuePair<string, List<KeyValuePair<string, string>>>> metadataCollectionKeyValuePairs = new();
|
||||||
(int level, List<string> directories) = Property.Models.Stateless.IPath.Get(_Configuration.PropertyConfiguration.RootDirectory, sourceDirectory);
|
(int level, List<string> directories) = Property.Models.Stateless.IPath.Get(configuration.RootDirectory, sourceDirectory);
|
||||||
string fileName = string.Concat(string.Join(_Configuration.PropertyConfiguration.FileNameDirectorySeparator, directories), ".json");
|
string fileName = string.Concat(string.Join(configuration.FileNameDirectorySeparator, directories), ".json");
|
||||||
for (int i = 0; i < filteredSourceDirectoryFiles.Length; i++)
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
{
|
{
|
||||||
key = Property.Models.Stateless.IPath.GetRelativePath(filteredSourceDirectoryFiles[i], sourceDirectoryLength);
|
propertyHolder = filteredPropertyHolderCollection[i];
|
||||||
|
if (propertyHolder.Property is null)
|
||||||
|
continue;
|
||||||
|
if (propertyHolder.FileInfo is null)
|
||||||
|
continue;
|
||||||
|
key = Property.Models.Stateless.IPath.GetRelativePath(propertyHolder.FileInfo.FullName, sourceDirectoryLength);
|
||||||
|
_FileKeyValuePairs.Add(new KeyValuePair<string, string>(sourceDirectory, key));
|
||||||
|
_FilePropertiesKeyValuePairs[sourceDirectory].Add(new Tuple<string, A_Property>(key, propertyCollection[i]));
|
||||||
faceCollectionsKeyValuePairs.Add(new KeyValuePair<string, List<D_Face>>(key, faceCollections[i]));
|
faceCollectionsKeyValuePairs.Add(new KeyValuePair<string, List<D_Face>>(key, faceCollections[i]));
|
||||||
propertyCollectionKeyValuePairs.Add(new KeyValuePair<string, A_Property>(key, propertyCollection[i]));
|
propertyCollectionKeyValuePairs.Add(new KeyValuePair<string, A_Property>(key, propertyCollection[i]));
|
||||||
resizeKeyValuePairsCollections.Add(new KeyValuePair<string, Dictionary<string, int[]>>(key, resizeKeyValuePairs[i]));
|
resizeKeyValuePairsCollections.Add(new KeyValuePair<string, Dictionary<string, int[]>>(key, resizeKeyValuePairs[i]));
|
||||||
@ -554,59 +548,65 @@ public class DlibDotNet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void FullDoWork(List<string> topDirectories, List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection)
|
private void FullDoWork(Property.Models.Configuration configuration, string[] juliePhares, Model model, PredictorModel predictorModel, string argZero, Person[] people, PropertyLogic propertyLogic, List<PropertyHolder[]> propertyHolderCollections)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
|
||||||
if (_Configuration.PropertyConfiguration.ForcePropertyLastWriteTimeToCreationTime is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.ForcePropertyLastWriteTimeToCreationTime)} is null!");
|
|
||||||
if (_Configuration.LoadOrCreateThenSaveImageFacesResults is null)
|
if (_Configuration.LoadOrCreateThenSaveImageFacesResults is null)
|
||||||
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveImageFacesResults)} is null!");
|
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveImageFacesResults)} is null!");
|
||||||
if (_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults is null)
|
if (_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults is null)
|
||||||
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults)} is null!");
|
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults)} is null!");
|
||||||
if (_Configuration.LoadOrCreateThenSaveDistanceResults is null)
|
if (_Configuration.LoadOrCreateThenSaveDistanceResults is null)
|
||||||
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveDistanceResults)} is null!");
|
throw new Exception($"{nameof(_Configuration.LoadOrCreateThenSaveDistanceResults)} is null!");
|
||||||
if (_Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
int g;
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
int r;
|
||||||
if (_Configuration.PropertyConfiguration.PopulatePropertyId is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.PopulatePropertyId)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.PropertiesChangedForProperty is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.PropertiesChangedForProperty)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.WriteBitmapDataBytes is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.WriteBitmapDataBytes)} is null!");
|
|
||||||
int exceptionCount;
|
int exceptionCount;
|
||||||
object @lock = new();
|
object @lock = new();
|
||||||
|
string sourceDirectory;
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
string[] filteredSourceDirectoryFiles;
|
string modelName = model.ToString();
|
||||||
List<List<D_Face>> faceCollections = new();
|
List<List<D_Face>> faceCollections = new();
|
||||||
List<A_Property> propertyCollection = new();
|
List<A_Property> propertyCollection = new();
|
||||||
PropertyLogic propertyLogic = GetPropertyLogic();
|
PropertyHolder[] filteredPropertyHolderCollection;
|
||||||
List<FileInfo?> propertyFileInfoCollection = new();
|
List<FileInfo?> propertyFileInfoCollection = new();
|
||||||
|
string predictorModelName = predictorModel.ToString();
|
||||||
List<Dictionary<string, int[]>> resizeKeyValuePairs = new();
|
List<Dictionary<string, int[]>> resizeKeyValuePairs = new();
|
||||||
List<Tuple<string, DateTime>> sourceDirectoryChanges = new();
|
List<Tuple<string, DateTime>> sourceDirectoryChanges = new();
|
||||||
string propertyRoot = Property.Models.Stateless.IResult.GetResultsGroupDirectory(_Configuration.PropertyConfiguration, nameof(A_Property));
|
|
||||||
List<List<KeyValuePair<string, string>>> metadataCollection = new();
|
List<List<KeyValuePair<string, string>>> metadataCollection = new();
|
||||||
|
string aPropertySingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(A_Property), "{}");
|
||||||
|
string propertyRoot = Property.Models.Stateless.IResult.GetResultsGroupDirectory(configuration, nameof(A_Property));
|
||||||
foreach (string outputResolution in _Configuration.OutputResolutions)
|
foreach (string outputResolution in _Configuration.OutputResolutions)
|
||||||
{
|
{
|
||||||
_FileKeyValuePairs.Clear();
|
_FileKeyValuePairs.Clear();
|
||||||
_FilePropertiesKeyValuePairs.Clear();
|
_FilePropertiesKeyValuePairs.Clear();
|
||||||
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
foreach (PropertyHolder[] propertyHolderCollection in propertyHolderCollections)
|
||||||
{
|
{
|
||||||
if (!topDirectories.Any())
|
if (!propertyHolderCollection.Any())
|
||||||
continue;
|
continue;
|
||||||
|
if (!_ArgZeroIsConfigurationRootDirectory && !propertyHolderCollection[0].SourceDirectory.StartsWith(argZero))
|
||||||
|
continue;
|
||||||
|
filteredPropertyHolderCollection = (from l in propertyHolderCollection where l.FileInfo is not null && l.Property is not null && l.ValidImageFormatExtension.HasValue && l.ValidImageFormatExtension.Value && !_Configuration.IgnoreExtensions.Contains(l.FileInfo.Extension) select l).ToArray();
|
||||||
|
if (!filteredPropertyHolderCollection.Any())
|
||||||
|
continue;
|
||||||
|
faceCollections.Clear();
|
||||||
|
metadataCollection.Clear();
|
||||||
|
propertyCollection.Clear();
|
||||||
|
resizeKeyValuePairs.Clear();
|
||||||
|
sourceDirectoryChanges.Clear();
|
||||||
|
propertyFileInfoCollection.Clear();
|
||||||
_Faces.AngleBracketCollection.Clear();
|
_Faces.AngleBracketCollection.Clear();
|
||||||
_Resize.AngleBracketCollection.Clear();
|
_Resize.AngleBracketCollection.Clear();
|
||||||
_Metadata.AngleBracketCollection.Clear();
|
_Metadata.AngleBracketCollection.Clear();
|
||||||
|
g = filteredPropertyHolderCollection[0].G;
|
||||||
|
r = filteredPropertyHolderCollection[0].R;
|
||||||
propertyLogic.AngleBracketCollection.Clear();
|
propertyLogic.AngleBracketCollection.Clear();
|
||||||
_FaceLandmarks.AngleBracketCollection.Clear();
|
_FaceLandmarks.AngleBracketCollection.Clear();
|
||||||
filteredSourceDirectoryFiles = (from l in sourceDirectoryFiles where !_Configuration.IgnoreExtensions.Contains(Path.GetExtension(l)) select l).ToArray();
|
sourceDirectory = filteredPropertyHolderCollection[0].SourceDirectory;
|
||||||
if (!filteredSourceDirectoryFiles.Any())
|
propertyLogic.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
continue;
|
modelName,
|
||||||
propertyLogic.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(_Configuration.PropertyConfiguration,
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(A_Property),
|
nameof(A_Property),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -616,7 +616,9 @@ public class DlibDotNet
|
|||||||
contentDescription: string.Empty,
|
contentDescription: string.Empty,
|
||||||
singletonDescription: "Properties for each image",
|
singletonDescription: "Properties for each image",
|
||||||
collectionDescription: string.Empty));
|
collectionDescription: string.Empty));
|
||||||
_Metadata.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(_Configuration.PropertyConfiguration,
|
_Metadata.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
modelName,
|
||||||
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(B_Metadata),
|
nameof(B_Metadata),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -626,7 +628,9 @@ public class DlibDotNet
|
|||||||
contentDescription: string.Empty,
|
contentDescription: string.Empty,
|
||||||
singletonDescription: "Metadata as key value pairs",
|
singletonDescription: "Metadata as key value pairs",
|
||||||
collectionDescription: string.Empty));
|
collectionDescription: string.Empty));
|
||||||
_Resize.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(_Configuration.PropertyConfiguration,
|
_Resize.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
modelName,
|
||||||
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(C_Resize),
|
nameof(C_Resize),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -634,10 +638,12 @@ public class DlibDotNet
|
|||||||
includeModel: false,
|
includeModel: false,
|
||||||
includePredictorModel: false,
|
includePredictorModel: false,
|
||||||
contentDescription: "Resized image",
|
contentDescription: "Resized image",
|
||||||
singletonDescription: "Resize deminsions for each resolution",
|
singletonDescription: "Resize dimensions for each resolution",
|
||||||
collectionDescription: string.Empty));
|
collectionDescription: string.Empty));
|
||||||
if (_Configuration.LoadOrCreateThenSaveImageFacesResults.HasValue && _Configuration.LoadOrCreateThenSaveImageFacesResults.Value)
|
if (_Configuration.LoadOrCreateThenSaveImageFacesResults.HasValue && _Configuration.LoadOrCreateThenSaveImageFacesResults.Value)
|
||||||
_Faces.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(_Configuration.PropertyConfiguration,
|
_Faces.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
modelName,
|
||||||
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(D_Face),
|
nameof(D_Face),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -648,7 +654,9 @@ public class DlibDotNet
|
|||||||
singletonDescription: string.Empty,
|
singletonDescription: string.Empty,
|
||||||
collectionDescription: "For each image a json file with all faces found"));
|
collectionDescription: "For each image a json file with all faces found"));
|
||||||
if (_Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
if (_Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
||||||
_FaceLandmarks.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(_Configuration.PropertyConfiguration,
|
_FaceLandmarks.AngleBracketCollection.AddRange(Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
modelName,
|
||||||
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(D2_FaceLandmarks),
|
nameof(D2_FaceLandmarks),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -658,27 +666,17 @@ public class DlibDotNet
|
|||||||
contentDescription: "n x 2 png file(s) for each face found",
|
contentDescription: "n x 2 png file(s) for each face found",
|
||||||
singletonDescription: string.Empty,
|
singletonDescription: string.Empty,
|
||||||
collectionDescription: string.Empty));
|
collectionDescription: string.Empty));
|
||||||
exceptionCount = FullParallelWork(@lock, ticks, propertyLogic, outputResolution, sourceDirectoryChanges, propertyFileInfoCollection, propertyCollection, metadataCollection, resizeKeyValuePairs, faceCollections, g, sourceDirectory, r, filteredSourceDirectoryFiles, groupCollection.Count);
|
exceptionCount = FullParallelWork(@lock, ticks, propertyLogic, outputResolution, sourceDirectoryChanges, propertyFileInfoCollection, propertyCollection, metadataCollection, resizeKeyValuePairs, faceCollections, propertyHolderCollections.Count, g, sourceDirectory, r, filteredPropertyHolderCollection);
|
||||||
if (metadataCollection.Count != filteredSourceDirectoryFiles.Length || propertyCollection.Count != filteredSourceDirectoryFiles.Length || resizeKeyValuePairs.Count != filteredSourceDirectoryFiles.Length || faceCollections.Count != filteredSourceDirectoryFiles.Length)
|
if (metadataCollection.Count != filteredPropertyHolderCollection.Length || propertyCollection.Count != filteredPropertyHolderCollection.Length || resizeKeyValuePairs.Count != filteredPropertyHolderCollection.Length || faceCollections.Count != filteredPropertyHolderCollection.Length)
|
||||||
throw new Exception("Counts don't match!");
|
throw new Exception("Counts don't match!");
|
||||||
if (exceptionCount != 0)
|
if (exceptionCount != 0)
|
||||||
_Exceptions.Add(sourceDirectory);
|
_Exceptions.Add(sourceDirectory);
|
||||||
else
|
|
||||||
{
|
|
||||||
string key;
|
|
||||||
int rootDirectoryLength = _Configuration.PropertyConfiguration.RootDirectory.Length;
|
|
||||||
_FilePropertiesKeyValuePairs.Add(sourceDirectory, new List<Tuple<string, A_Property>>());
|
|
||||||
for (int i = 0; i < filteredSourceDirectoryFiles.Length; i++)
|
|
||||||
{
|
|
||||||
key = Property.Models.Stateless.IPath.GetRelativePath(filteredSourceDirectoryFiles[i], rootDirectoryLength);
|
|
||||||
_FileKeyValuePairs.Add(new KeyValuePair<string, string>(sourceDirectory, key));
|
|
||||||
_FilePropertiesKeyValuePairs[sourceDirectory].Add(new Tuple<string, A_Property>(key, propertyCollection[i]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (exceptionCount == 0 && _ArgZeroIsConfigurationRootDirectory)
|
if (exceptionCount == 0 && _ArgZeroIsConfigurationRootDirectory)
|
||||||
WriteGroup(propertyLogic, propertyCollection, metadataCollection, faceCollections, resizeKeyValuePairs, sourceDirectory, filteredSourceDirectoryFiles);
|
WriteGroup(configuration, propertyLogic, propertyCollection, metadataCollection, faceCollections, resizeKeyValuePairs, sourceDirectory, filteredPropertyHolderCollection);
|
||||||
|
if (exceptionCount == 0 && _Configuration.LoadOrCreateThenSaveImageFacesResults.Value && _Configuration.SaveShortcuts.HasValue && _Configuration.SaveShortcuts.Value)
|
||||||
|
_Faces.SaveShortcuts(configuration, juliePhares, model, predictorModel, people, propertyLogic, outputResolution, filteredPropertyHolderCollection, propertyCollection, faceCollections);
|
||||||
if (exceptionCount == 0 && _Configuration.LoadOrCreateThenSaveDistanceResults.HasValue && _Configuration.LoadOrCreateThenSaveDistanceResults.Value)
|
if (exceptionCount == 0 && _Configuration.LoadOrCreateThenSaveDistanceResults.HasValue && _Configuration.LoadOrCreateThenSaveDistanceResults.Value)
|
||||||
_Distance.LoadOrCreateThenSaveDistanceResults(_Configuration.PropertyConfiguration, sourceDirectory, outputResolution, sourceDirectoryChanges, filteredSourceDirectoryFiles, faceCollections);
|
_Distance.LoadOrCreateThenSaveDistanceResults(configuration, model, predictorModel, sourceDirectory, outputResolution, sourceDirectoryChanges, filteredPropertyHolderCollection, faceCollections);
|
||||||
if (_Resize.AngleBracketCollection.Any())
|
if (_Resize.AngleBracketCollection.Any())
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(_Resize.AngleBracketCollection[0].Replace("<>", "()"));
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(_Resize.AngleBracketCollection[0].Replace("<>", "()"));
|
||||||
if (_Faces.AngleBracketCollection.Any())
|
if (_Faces.AngleBracketCollection.Any())
|
||||||
@ -690,7 +688,7 @@ public class DlibDotNet
|
|||||||
for (int y = 0; y < int.MaxValue; y++)
|
for (int y = 0; y < int.MaxValue; y++)
|
||||||
{
|
{
|
||||||
_Log.Information("Press \"Y\" key when ready to continue or close console");
|
_Log.Information("Press \"Y\" key when ready to continue or close console");
|
||||||
if (Console.ReadKey().Key == ConsoleKey.Y)
|
if (System.Console.ReadKey().Key == ConsoleKey.Y)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
@ -698,31 +696,20 @@ public class DlibDotNet
|
|||||||
}
|
}
|
||||||
if (_ArgZeroIsConfigurationRootDirectory && outputResolution == _Configuration.OutputResolutions[0])
|
if (_ArgZeroIsConfigurationRootDirectory && outputResolution == _Configuration.OutputResolutions[0])
|
||||||
{
|
{
|
||||||
int loadLessThan = 7;
|
|
||||||
string aPropertySingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(_Configuration.PropertyConfiguration, nameof(A_Property), "{}");
|
|
||||||
PropertyCompare.Models.PropertyCompareLogic propertyCompareLogic = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration);
|
|
||||||
PropertyCompare.Models.PropertyCompare[] propertyCompares = propertyCompareLogic.Get(aPropertySingletonDirectory, loadLessThan);
|
|
||||||
{
|
|
||||||
string[] lines = (from l in propertyCompares select l.GetSelect()).ToArray();
|
|
||||||
string aPropertyCollectionDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(_Configuration.PropertyConfiguration, nameof(A_Property), "[{}]");
|
|
||||||
File.WriteAllLines(Path.Join(aPropertyCollectionDirectory, $". . . Ids - {ticks}.txt"), lines);
|
|
||||||
string json = JsonSerializer.Serialize(propertyCompares, new JsonSerializerOptions { WriteIndented = true });
|
|
||||||
File.WriteAllText(Path.Join(aPropertyCollectionDirectory, $". . . Ids - {ticks}.nosj"), json);
|
|
||||||
}
|
|
||||||
if (!_Configuration.LoadOrCreateThenSaveImageFacesResults.Value && !_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults.Value && !_Configuration.LoadOrCreateThenSaveDistanceResults.Value)
|
if (!_Configuration.LoadOrCreateThenSaveImageFacesResults.Value && !_Configuration.LoadOrCreateThenSaveDirectoryDistanceResults.Value && !_Configuration.LoadOrCreateThenSaveDistanceResults.Value)
|
||||||
break;
|
break;
|
||||||
if (_Exceptions.Count == 0)
|
if (_Exceptions.Count == 0)
|
||||||
{
|
{
|
||||||
if (_FileKeyValuePairs.Any())
|
if (_FileKeyValuePairs.Any())
|
||||||
_Random.Random(_Configuration.PropertyConfiguration, _Configuration.OutputResolutions[0], _FileKeyValuePairs);
|
_Random.Random(configuration, _Configuration.OutputResolutions[0], _FileKeyValuePairs);
|
||||||
if (_IsEnvironment.Development)
|
if (_IsEnvironment.Development)
|
||||||
continue;
|
continue;
|
||||||
G2_Identify identify = new(_Configuration);
|
G2_Identify identify = new(_Configuration);
|
||||||
List<G2_Identify> identifiedCollection = identify.GetIdentifiedCollection(_Configuration.PropertyConfiguration, _IsEnvironment, _People);
|
List<G2_Identify> identifiedCollection = identify.GetIdentifiedCollection(configuration, _IsEnvironment, _People);
|
||||||
_People.WriteAllText(_Configuration.PropertyConfiguration, _Configuration.OutputResolutions[0], identifiedCollection);
|
_People.WriteAllText(configuration, _Configuration.OutputResolutions[0], identifiedCollection);
|
||||||
identify.WriteAllText(_Configuration.PropertyConfiguration, _Configuration.OutputResolutions[0], identifiedCollection);
|
identify.WriteAllText(configuration, _Configuration.OutputResolutions[0], identifiedCollection);
|
||||||
if (_Configuration.LoadOrCreateThenSaveIndex.HasValue && _Configuration.LoadOrCreateThenSaveIndex.Value && _FilePropertiesKeyValuePairs.Any())
|
if (_Configuration.LoadOrCreateThenSaveIndex.HasValue && _Configuration.LoadOrCreateThenSaveIndex.Value && _FilePropertiesKeyValuePairs.Any())
|
||||||
_Index.SetIndex(_Configuration.PropertyConfiguration, _Configuration.OutputResolutions[0], _FilePropertiesKeyValuePairs);
|
_Index.SetIndex(configuration, model, predictorModel, _Configuration.OutputResolutions[0], _FilePropertiesKeyValuePairs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -731,66 +718,21 @@ public class DlibDotNet
|
|||||||
private PropertyLogic GetPropertyLogic()
|
private PropertyLogic GetPropertyLogic()
|
||||||
{
|
{
|
||||||
PropertyLogic result;
|
PropertyLogic result;
|
||||||
|
|
||||||
|
|
||||||
string[] verifyToSeason = Array.Empty<string>();
|
|
||||||
|
|
||||||
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration, verifyToSeason);
|
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Search(string argZero)
|
private void Search(Property.Models.Configuration configuration, string[] juliePhares, bool reverse, Model model, PredictorModel predictorModel, string argZero, Person[] people)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
|
||||||
if (_Configuration.PropertyConfiguration.ForcePropertyLastWriteTimeToCreationTime is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.ForcePropertyLastWriteTimeToCreationTime)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.IgnoreExtensions is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.IgnoreExtensions)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.PopulatePropertyId is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.PopulatePropertyId)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.PropertiesChangedForProperty is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.PropertiesChangedForProperty)} is null!");
|
|
||||||
if (_Configuration.Reverse is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.Reverse)} is null!");
|
|
||||||
if (_Configuration.PropertyConfiguration.WriteBitmapDataBytes is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration.WriteBitmapDataBytes)} is null!");
|
|
||||||
string searchPattern = "*";
|
|
||||||
long ticks = DateTime.Now.Ticks;
|
|
||||||
List<string> topDirectories = new();
|
|
||||||
PropertyLogic propertyLogic = GetPropertyLogic();
|
PropertyLogic propertyLogic = GetPropertyLogic();
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(argZero, searchPattern, topDirectories, _Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, _Configuration.Reverse.Value);
|
List<PropertyHolder[]> propertyHolderCollections = Property.Models.Stateless.A_Property.Get(configuration, reverse, model.ToString(), predictorModel.ToString(), propertyLogic);
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
FullDoWork(configuration, juliePhares, model, predictorModel, argZero, people, propertyLogic, propertyHolderCollections);
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
|
||||||
_Exceptions.AddRange(propertyLogic.DoWork(_Configuration.PropertyConfiguration, topDirectories, groupCollection, firstPass: true));
|
|
||||||
string message = $"There were {_Exceptions.Count} exception(s) thrown! {Environment.NewLine}{string.Join(Environment.NewLine, _Exceptions)}";
|
|
||||||
_Log.Information(message);
|
|
||||||
if (_Exceptions.Count != 0)
|
|
||||||
throw new Exception(message);
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(argZero, searchPattern, topDirectories, _Configuration.PropertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, _Configuration.Reverse.Value);
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
|
||||||
FullDoWork(topDirectories, groupCollection);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void RenameQueue()
|
internal void RenameQueue(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel) => _Rename.RenameQueue(configuration, model, predictorModel);
|
||||||
{
|
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
|
||||||
_Rename.RenameQueue(_Configuration.PropertyConfiguration);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
@ -50,6 +50,7 @@
|
|||||||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||||
<PackageReference Include="Serilog" Version="2.10.0" />
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
||||||
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
|
<PackageReference Include="ShellProgressBar" Version="5.1.0" />
|
||||||
|
<PackageReference Include="WindowsShortcutFactory" Version="1.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="DlibDotNet" Version="19.21.0.20210302" />
|
<PackageReference Include="DlibDotNet" Version="19.21.0.20210302" />
|
||||||
|
@ -13,7 +13,8 @@ public class Configuration
|
|||||||
[Display(Name = "Force Resize Last Write Time to Creation Time"), Required] public bool? ForceResizeLastWriteTimeToCreationTime { get; set; }
|
[Display(Name = "Force Resize Last Write Time to Creation Time"), Required] public bool? ForceResizeLastWriteTimeToCreationTime { get; set; }
|
||||||
[Display(Name = "Ignore Extensions"), Required] public string[] IgnoreExtensions { get; set; }
|
[Display(Name = "Ignore Extensions"), Required] public string[] IgnoreExtensions { get; set; }
|
||||||
[Display(Name = "Ignore Relative Paths"), Required] public string[] IgnoreRelativePaths { get; set; }
|
[Display(Name = "Ignore Relative Paths"), Required] public string[] IgnoreRelativePaths { get; set; }
|
||||||
[Display(Name = "Load Or Create Then Save Directroy Distance Results"), Required] public bool? LoadOrCreateThenSaveDirectoryDistanceResults { get; set; }
|
[Display(Name = "Julie Phares Copy Birthdays"), Required] public string[] JuliePhares { get; set; }
|
||||||
|
[Display(Name = "Load Or Create Then Save Directory Distance Results"), Required] public bool? LoadOrCreateThenSaveDirectoryDistanceResults { get; set; }
|
||||||
[Display(Name = "Load Or Create Then Save Distance Results"), Required] public bool? LoadOrCreateThenSaveDistanceResults { get; set; }
|
[Display(Name = "Load Or Create Then Save Distance Results"), Required] public bool? LoadOrCreateThenSaveDistanceResults { get; set; }
|
||||||
[Display(Name = "Load Or Create Then Save Image Faces Results"), Required] public bool? LoadOrCreateThenSaveImageFacesResults { get; set; }
|
[Display(Name = "Load Or Create Then Save Image Faces Results"), Required] public bool? LoadOrCreateThenSaveImageFacesResults { get; set; }
|
||||||
[Display(Name = "Load Or Create Then Save Index"), Required] public bool? LoadOrCreateThenSaveIndex { get; set; }
|
[Display(Name = "Load Or Create Then Save Index"), Required] public bool? LoadOrCreateThenSaveIndex { get; set; }
|
||||||
@ -42,7 +43,7 @@ public class Configuration
|
|||||||
[Display(Name = "Save Face Landmark For Output Resolutions"), Required] public string[] SaveFaceLandmarkForOutputResolutions { get; set; }
|
[Display(Name = "Save Face Landmark For Output Resolutions"), Required] public string[] SaveFaceLandmarkForOutputResolutions { get; set; }
|
||||||
[Display(Name = "Save Full Year Of Random Files"), Required] public bool? SaveFullYearOfRandomFiles { get; set; }
|
[Display(Name = "Save Full Year Of Random Files"), Required] public bool? SaveFullYearOfRandomFiles { get; set; }
|
||||||
[Display(Name = "Save Resized Subfiles"), Required] public bool? SaveResizedSubfiles { get; set; }
|
[Display(Name = "Save Resized Subfiles"), Required] public bool? SaveResizedSubfiles { get; set; }
|
||||||
[Display(Name = "Search for Abandoned Files"), Required] public bool? SearchForAbandonedFilesFull { get; set; }
|
[Display(Name = "Save Shortcuts"), Required] public bool? SaveShortcuts { get; set; }
|
||||||
[Display(Name = "Skip Search"), Required] public bool? SkipSearch { get; set; }
|
[Display(Name = "Skip Search"), Required] public bool? SkipSearch { get; set; }
|
||||||
[Display(Name = "Test Distance Results"), Required] public bool? TestDistanceResults { get; set; }
|
[Display(Name = "Test Distance Results"), Required] public bool? TestDistanceResults { get; set; }
|
||||||
[Display(Name = "Valid Resolutions"), Required] public string[] ValidResolutions { get; set; }
|
[Display(Name = "Valid Resolutions"), Required] public string[] ValidResolutions { get; set; }
|
||||||
@ -56,6 +57,7 @@ public class Configuration
|
|||||||
ForceResizeLastWriteTimeToCreationTime = null;
|
ForceResizeLastWriteTimeToCreationTime = null;
|
||||||
IgnoreExtensions = Array.Empty<string>();
|
IgnoreExtensions = Array.Empty<string>();
|
||||||
IgnoreRelativePaths = Array.Empty<string>();
|
IgnoreRelativePaths = Array.Empty<string>();
|
||||||
|
JuliePhares = Array.Empty<string>();
|
||||||
LoadOrCreateThenSaveDirectoryDistanceResults = null;
|
LoadOrCreateThenSaveDirectoryDistanceResults = null;
|
||||||
LoadOrCreateThenSaveDistanceResults = null;
|
LoadOrCreateThenSaveDistanceResults = null;
|
||||||
LoadOrCreateThenSaveImageFacesResults = null;
|
LoadOrCreateThenSaveImageFacesResults = null;
|
||||||
@ -84,7 +86,7 @@ public class Configuration
|
|||||||
SaveFaceLandmarkForOutputResolutions = Array.Empty<string>();
|
SaveFaceLandmarkForOutputResolutions = Array.Empty<string>();
|
||||||
SaveFullYearOfRandomFiles = null;
|
SaveFullYearOfRandomFiles = null;
|
||||||
SaveResizedSubfiles = null;
|
SaveResizedSubfiles = null;
|
||||||
SearchForAbandonedFilesFull = null;
|
SaveShortcuts = null;
|
||||||
SkipSearch = null;
|
SkipSearch = null;
|
||||||
TestDistanceResults = null;
|
TestDistanceResults = null;
|
||||||
ValidResolutions = Array.Empty<string>();
|
ValidResolutions = Array.Empty<string>();
|
||||||
|
@ -13,6 +13,7 @@ public class Configuration
|
|||||||
protected readonly bool? _ForceResizeLastWriteTimeToCreationTime;
|
protected readonly bool? _ForceResizeLastWriteTimeToCreationTime;
|
||||||
protected readonly string[] _IgnoreExtensions;
|
protected readonly string[] _IgnoreExtensions;
|
||||||
protected readonly string[] _IgnoreRelativePaths;
|
protected readonly string[] _IgnoreRelativePaths;
|
||||||
|
protected readonly string[] _JuliePhares;
|
||||||
protected readonly bool? _LoadOrCreateThenSaveDirectoryDistanceResults;
|
protected readonly bool? _LoadOrCreateThenSaveDirectoryDistanceResults;
|
||||||
protected readonly bool? _LoadOrCreateThenSaveDistanceResults;
|
protected readonly bool? _LoadOrCreateThenSaveDistanceResults;
|
||||||
protected readonly bool? _LoadOrCreateThenSaveImageFacesResults;
|
protected readonly bool? _LoadOrCreateThenSaveImageFacesResults;
|
||||||
@ -42,7 +43,7 @@ public class Configuration
|
|||||||
protected readonly string[] _SaveFaceLandmarkForOutputResolutions;
|
protected readonly string[] _SaveFaceLandmarkForOutputResolutions;
|
||||||
protected readonly bool? _SaveFullYearOfRandomFiles;
|
protected readonly bool? _SaveFullYearOfRandomFiles;
|
||||||
protected readonly bool? _SaveResizedSubfiles;
|
protected readonly bool? _SaveResizedSubfiles;
|
||||||
protected readonly bool? _SearchForAbandonedFiles;
|
protected readonly bool? _SaveShortcuts;
|
||||||
protected readonly bool? _SkipSearch;
|
protected readonly bool? _SkipSearch;
|
||||||
protected readonly bool? _TestDistanceResults;
|
protected readonly bool? _TestDistanceResults;
|
||||||
protected readonly string[] _ValidResolutions;
|
protected readonly string[] _ValidResolutions;
|
||||||
@ -53,6 +54,7 @@ public class Configuration
|
|||||||
public bool? ForceResizeLastWriteTimeToCreationTime => _ForceResizeLastWriteTimeToCreationTime;
|
public bool? ForceResizeLastWriteTimeToCreationTime => _ForceResizeLastWriteTimeToCreationTime;
|
||||||
public string[] IgnoreExtensions => _IgnoreExtensions;
|
public string[] IgnoreExtensions => _IgnoreExtensions;
|
||||||
public string[] IgnoreRelativePaths => _IgnoreRelativePaths;
|
public string[] IgnoreRelativePaths => _IgnoreRelativePaths;
|
||||||
|
public string[] JuliePhares => _JuliePhares;
|
||||||
public bool? LoadOrCreateThenSaveDirectoryDistanceResults => _LoadOrCreateThenSaveDirectoryDistanceResults;
|
public bool? LoadOrCreateThenSaveDirectoryDistanceResults => _LoadOrCreateThenSaveDirectoryDistanceResults;
|
||||||
public bool? LoadOrCreateThenSaveDistanceResults => _LoadOrCreateThenSaveDistanceResults;
|
public bool? LoadOrCreateThenSaveDistanceResults => _LoadOrCreateThenSaveDistanceResults;
|
||||||
public bool? LoadOrCreateThenSaveImageFacesResults => _LoadOrCreateThenSaveImageFacesResults;
|
public bool? LoadOrCreateThenSaveImageFacesResults => _LoadOrCreateThenSaveImageFacesResults;
|
||||||
@ -82,13 +84,13 @@ public class Configuration
|
|||||||
public string[] SaveFaceLandmarkForOutputResolutions => _SaveFaceLandmarkForOutputResolutions;
|
public string[] SaveFaceLandmarkForOutputResolutions => _SaveFaceLandmarkForOutputResolutions;
|
||||||
public bool? SaveFullYearOfRandomFiles => _SaveFullYearOfRandomFiles;
|
public bool? SaveFullYearOfRandomFiles => _SaveFullYearOfRandomFiles;
|
||||||
public bool? SaveResizedSubfiles => _SaveResizedSubfiles;
|
public bool? SaveResizedSubfiles => _SaveResizedSubfiles;
|
||||||
public bool? SearchForAbandonedFilesFull => _SearchForAbandonedFiles;
|
public bool? SaveShortcuts => _SaveShortcuts;
|
||||||
public bool? SkipSearch => _SkipSearch;
|
public bool? SkipSearch => _SkipSearch;
|
||||||
public bool? TestDistanceResults => _TestDistanceResults;
|
public bool? TestDistanceResults => _TestDistanceResults;
|
||||||
public string[] ValidResolutions => _ValidResolutions;
|
public string[] ValidResolutions => _ValidResolutions;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Configuration(bool? checkJsonForDistanceResults, int? crossDirectoryMaxItemsInDistanceCollection, int? distanceFactor, bool? forceMetadataLastWriteTimeToCreationTime, bool? forceResizeLastWriteTimeToCreationTime, string[] ignoreExtensions, string[] ignoreRelativePaths, bool? loadOrCreateThenSaveDirectoryDistanceResults, bool? loadOrCreateThenSaveDistanceResults, bool? loadOrCreateThenSaveImageFacesResults, bool? loadOrCreateThenSaveIndex, int? locationConfidenceFactor, int? mappedMaxIndex, int? maxItemsInDistanceCollection, string[] mixedYearRelativePaths, string modelDirectory, string modelName, int? numJitters, string outputExtension, int? outputQuality, string[] outputResolutions, bool? overrideForFaceImages, bool? overrideForFaceLandmarkImages, bool? overrideForResizeImages, int? paddingLoops, string predictorModelName, bool? propertiesChangedForDistance, bool? propertiesChangedForFaces, bool? propertiesChangedForIndex, bool? propertiesChangedForMetadata, bool? propertiesChangedForResize, Property.Models.Configuration? propertyConfiguration, bool? reverse, string[] saveFaceLandmarkForOutputResolutions, bool? saveFullYearOfRandomFiles, bool? saveResizedSubfiles, bool? searchForAbandonedFilesFull, bool? skipSearch, bool? testDistanceResults, string[] validResolutions)
|
public Configuration(bool? checkJsonForDistanceResults, int? crossDirectoryMaxItemsInDistanceCollection, int? distanceFactor, bool? forceMetadataLastWriteTimeToCreationTime, bool? forceResizeLastWriteTimeToCreationTime, string[] ignoreExtensions, string[] ignoreRelativePaths, string[] juliePhares, bool? loadOrCreateThenSaveDirectoryDistanceResults, bool? loadOrCreateThenSaveDistanceResults, bool? loadOrCreateThenSaveImageFacesResults, bool? loadOrCreateThenSaveIndex, int? locationConfidenceFactor, int? mappedMaxIndex, int? maxItemsInDistanceCollection, string[] mixedYearRelativePaths, string modelDirectory, string modelName, int? numJitters, string outputExtension, int? outputQuality, string[] outputResolutions, bool? overrideForFaceImages, bool? overrideForFaceLandmarkImages, bool? overrideForResizeImages, int? paddingLoops, string predictorModelName, bool? propertiesChangedForDistance, bool? propertiesChangedForFaces, bool? propertiesChangedForIndex, bool? propertiesChangedForMetadata, bool? propertiesChangedForResize, Property.Models.Configuration? propertyConfiguration, bool? reverse, string[] saveFaceLandmarkForOutputResolutions, bool? saveFullYearOfRandomFiles, bool? saveResizedSubfiles, bool? saveShortcuts, bool? skipSearch, bool? testDistanceResults, string[] validResolutions)
|
||||||
{
|
{
|
||||||
_CheckJsonForDistanceResults = checkJsonForDistanceResults;
|
_CheckJsonForDistanceResults = checkJsonForDistanceResults;
|
||||||
_CrossDirectoryMaxItemsInDistanceCollection = crossDirectoryMaxItemsInDistanceCollection;
|
_CrossDirectoryMaxItemsInDistanceCollection = crossDirectoryMaxItemsInDistanceCollection;
|
||||||
@ -97,6 +99,7 @@ public class Configuration
|
|||||||
_ForceResizeLastWriteTimeToCreationTime = forceResizeLastWriteTimeToCreationTime;
|
_ForceResizeLastWriteTimeToCreationTime = forceResizeLastWriteTimeToCreationTime;
|
||||||
_IgnoreExtensions = ignoreExtensions;
|
_IgnoreExtensions = ignoreExtensions;
|
||||||
_IgnoreRelativePaths = ignoreRelativePaths;
|
_IgnoreRelativePaths = ignoreRelativePaths;
|
||||||
|
_JuliePhares = juliePhares;
|
||||||
_LoadOrCreateThenSaveDirectoryDistanceResults = loadOrCreateThenSaveDirectoryDistanceResults;
|
_LoadOrCreateThenSaveDirectoryDistanceResults = loadOrCreateThenSaveDirectoryDistanceResults;
|
||||||
_LoadOrCreateThenSaveDistanceResults = loadOrCreateThenSaveDistanceResults;
|
_LoadOrCreateThenSaveDistanceResults = loadOrCreateThenSaveDistanceResults;
|
||||||
_LoadOrCreateThenSaveImageFacesResults = loadOrCreateThenSaveImageFacesResults;
|
_LoadOrCreateThenSaveImageFacesResults = loadOrCreateThenSaveImageFacesResults;
|
||||||
@ -126,7 +129,7 @@ public class Configuration
|
|||||||
_SaveFaceLandmarkForOutputResolutions = saveFaceLandmarkForOutputResolutions;
|
_SaveFaceLandmarkForOutputResolutions = saveFaceLandmarkForOutputResolutions;
|
||||||
_SaveFullYearOfRandomFiles = saveFullYearOfRandomFiles;
|
_SaveFullYearOfRandomFiles = saveFullYearOfRandomFiles;
|
||||||
_SaveResizedSubfiles = saveResizedSubfiles;
|
_SaveResizedSubfiles = saveResizedSubfiles;
|
||||||
_SearchForAbandonedFiles = searchForAbandonedFilesFull;
|
_SaveShortcuts = saveShortcuts;
|
||||||
_SkipSearch = skipSearch;
|
_SkipSearch = skipSearch;
|
||||||
_TestDistanceResults = testDistanceResults;
|
_TestDistanceResults = testDistanceResults;
|
||||||
_ValidResolutions = validResolutions;
|
_ValidResolutions = validResolutions;
|
||||||
@ -138,7 +141,7 @@ public class Configuration
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(Property.Models.Configuration propertyConfiguration) => _PropertyConfiguration = propertyConfiguration;
|
public void Set(Property.Models.Configuration configuration) => _PropertyConfiguration = configuration;
|
||||||
|
|
||||||
public void Update() => _PropertyConfiguration?.Update();
|
public void Update() => _PropertyConfiguration?.Update();
|
||||||
|
|
||||||
|
@ -3,11 +3,13 @@ using System.Drawing;
|
|||||||
using System.Drawing.Drawing2D;
|
using System.Drawing.Drawing2D;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
using View_by_Distance.Metadata.Models;
|
using View_by_Distance.Metadata.Models;
|
||||||
using View_by_Distance.Property.Models;
|
using View_by_Distance.Property.Models;
|
||||||
using View_by_Distance.Resize.Models;
|
using View_by_Distance.Resize.Models;
|
||||||
using View_by_Distance.Shared.Models;
|
using View_by_Distance.Shared.Models;
|
||||||
using View_by_Distance.Shared.Models.Methods;
|
using View_by_Distance.Shared.Models.Methods;
|
||||||
|
using WindowsShortcutFactory;
|
||||||
|
|
||||||
namespace View_by_Distance.Instance.Models;
|
namespace View_by_Distance.Instance.Models;
|
||||||
|
|
||||||
@ -47,6 +49,7 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
public string RelativePath => _RelativePath;
|
public string RelativePath => _RelativePath;
|
||||||
|
|
||||||
#nullable disable
|
#nullable disable
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public D_Face(double? α, DateTime dateTime, Shared.Models.FaceEncoding faceEncoding, Dictionary<string, Shared.Models.FacePoint[]> faceLandmarks, Shared.Models.Location location, int? locationIndex, OutputResolution outputResolution, bool populated, string relativePath)
|
public D_Face(double? α, DateTime dateTime, Shared.Models.FaceEncoding faceEncoding, Dictionary<string, Shared.Models.FacePoint[]> faceLandmarks, Shared.Models.Location location, int? locationIndex, OutputResolution outputResolution, bool populated, string relativePath)
|
||||||
{
|
{
|
||||||
@ -125,22 +128,24 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
_RelativePath = face.RelativePath;
|
_RelativePath = face.RelativePath;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void GetPointBounds(PointF[] points, out float xmin, out float xmax, out float ymin, out float ymax)
|
#nullable restore
|
||||||
|
|
||||||
|
private static void GetPointBounds(PointF[] points, out float xMinimum, out float xMaximum, out float yMinimum, out float yMaximum)
|
||||||
{
|
{
|
||||||
xmin = points[0].X;
|
xMinimum = points[0].X;
|
||||||
xmax = xmin;
|
xMaximum = xMinimum;
|
||||||
ymin = points[0].Y;
|
yMinimum = points[0].Y;
|
||||||
ymax = ymin;
|
yMaximum = yMinimum;
|
||||||
foreach (PointF point in points)
|
foreach (PointF point in points)
|
||||||
{
|
{
|
||||||
if (xmin > point.X)
|
if (xMinimum > point.X)
|
||||||
xmin = point.X;
|
xMinimum = point.X;
|
||||||
if (xmax < point.X)
|
if (xMaximum < point.X)
|
||||||
xmax = point.X;
|
xMaximum = point.X;
|
||||||
if (ymin > point.Y)
|
if (yMinimum > point.Y)
|
||||||
ymin = point.Y;
|
yMinimum = point.Y;
|
||||||
if (ymax < point.Y)
|
if (yMaximum < point.Y)
|
||||||
ymax = point.Y;
|
yMaximum = point.Y;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,12 +180,12 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
new PointF(0, bitmap.Height),
|
new PointF(0, bitmap.Height),
|
||||||
};
|
};
|
||||||
rotate_at_origin.TransformPoints(points);
|
rotate_at_origin.TransformPoints(points);
|
||||||
float xmin, xmax, ymin, ymax;
|
float xMinimum, xMaximum, yMinimum, yMaximum;
|
||||||
GetPointBounds(points, out xmin, out xmax, out ymin, out ymax);
|
GetPointBounds(points, out xMinimum, out xMaximum, out yMinimum, out yMaximum);
|
||||||
|
|
||||||
// Make a bitmap to hold the rotated result.
|
// Make a bitmap to hold the rotated result.
|
||||||
int wid = (int)Math.Round(xmax - xmin);
|
int wid = (int)Math.Round(xMaximum - xMinimum);
|
||||||
int hgt = (int)Math.Round(ymax - ymin);
|
int hgt = (int)Math.Round(yMaximum - yMinimum);
|
||||||
result = new Bitmap(wid, hgt);
|
result = new Bitmap(wid, hgt);
|
||||||
|
|
||||||
// Create the real rotation transformation.
|
// Create the real rotation transformation.
|
||||||
@ -251,7 +256,8 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
if (_Configuration.NumJitters is null)
|
if (_Configuration.NumJitters is null)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
FaceRecognitionDotNet.Location[] locations;
|
FaceRecognitionDotNet.Location[] locations;
|
||||||
FaceRecognitionDotNet.Image unknownImage = null;
|
const int numberOfTimesToUpSample = 1;
|
||||||
|
FaceRecognitionDotNet.Image? unknownImage = null;
|
||||||
if (resizedFileInfo.Exists)
|
if (resizedFileInfo.Exists)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
@ -263,7 +269,7 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
FaceRecognition faceRecognition = FaceRecognition.Create(_ModelParameter);
|
FaceRecognition faceRecognition = FaceRecognition.Create(_ModelParameter);
|
||||||
locations = faceRecognition.FaceLocations(unknownImage, numberOfTimesToUpsample: 1, _Model).ToArray();
|
locations = faceRecognition.FaceLocations(unknownImage, numberOfTimesToUpSample, _Model).ToArray();
|
||||||
if (!locations.Any())
|
if (!locations.Any())
|
||||||
results.Add(new D_Face(property, outputResolutionWidth, outputResolutionHeight, outputResolutionOrientation, relativePath, i: null, location: null));
|
results.Add(new D_Face(property, outputResolutionWidth, outputResolutionHeight, outputResolutionOrientation, relativePath, i: null, location: null));
|
||||||
else
|
else
|
||||||
@ -276,19 +282,19 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
int leftEyeY;
|
int leftEyeY;
|
||||||
int rightEyeX;
|
int rightEyeX;
|
||||||
int rightEyeY;
|
int rightEyeY;
|
||||||
|
Bitmap rotated;
|
||||||
string faceFile;
|
string faceFile;
|
||||||
|
Bitmap preRotated;
|
||||||
Graphics graphics;
|
Graphics graphics;
|
||||||
D_Face face = null;
|
D_Face? face = null;
|
||||||
Rectangle rectangle;
|
Rectangle rectangle;
|
||||||
double[] rawEncoding;
|
double[] rawEncoding;
|
||||||
Bitmap rotated;
|
|
||||||
Bitmap preRotated;
|
|
||||||
FaceRecognitionDotNet.Image knownImage;
|
|
||||||
FaceRecognitionDotNet.Image rotatedImage;
|
|
||||||
Shared.Models.Location location;
|
Shared.Models.Location location;
|
||||||
|
FaceRecognitionDotNet.Image knownImage;
|
||||||
|
Shared.Models.FaceEncoding faceEncoding;
|
||||||
|
FaceRecognitionDotNet.Image rotatedImage;
|
||||||
FaceRecognitionDotNet.FaceEncoding[] faceEncodings;
|
FaceRecognitionDotNet.FaceEncoding[] faceEncodings;
|
||||||
IEnumerable<FaceRecognitionDotNet.FacePoint> facePoints;
|
IEnumerable<FaceRecognitionDotNet.FacePoint> facePoints;
|
||||||
Shared.Models.FaceEncoding faceEncoding;
|
|
||||||
IDictionary<FacePart, IEnumerable<FaceRecognitionDotNet.FacePoint>>[] faceLandmarks;
|
IDictionary<FacePart, IEnumerable<FaceRecognitionDotNet.FacePoint>>[] faceLandmarks;
|
||||||
using Bitmap source = unknownImage.ToBitmap();
|
using Bitmap source = unknownImage.ToBitmap();
|
||||||
padding = (int)((source.Width + source.Height) / 2 * .01);
|
padding = (int)((source.Width + source.Height) / 2 * .01);
|
||||||
@ -380,7 +386,7 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
|
|
||||||
internal List<D_Face> GetFaces(Property.Models.Configuration configuration, string outputResolution, List<Tuple<string, DateTime>> subFileTuples, List<string> parseExceptions, string relativePath, string fileNameWithoutExtension, A_Property property, FileInfo resizedFileInfo, int outputResolutionWidth, int outputResolutionHeight, int outputResolutionOrientation)
|
internal List<D_Face> GetFaces(Property.Models.Configuration configuration, string outputResolution, List<Tuple<string, DateTime>> subFileTuples, List<string> parseExceptions, string relativePath, string fileNameWithoutExtension, A_Property property, FileInfo resizedFileInfo, int outputResolutionWidth, int outputResolutionHeight, int outputResolutionOrientation)
|
||||||
{
|
{
|
||||||
List<D_Face> results;
|
List<D_Face>? results;
|
||||||
if (_Configuration.PropertiesChangedForFaces is null)
|
if (_Configuration.PropertiesChangedForFaces is null)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
string json;
|
string json;
|
||||||
@ -412,6 +418,8 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
results = JsonSerializer.Deserialize<List<D_Face>>(json);
|
results = JsonSerializer.Deserialize<List<D_Face>>(json);
|
||||||
|
if (results is null)
|
||||||
|
throw new Exception($"{nameof(results)} is null");
|
||||||
for (int i = 0; i < results.Count; i++)
|
for (int i = 0; i < results.Count; i++)
|
||||||
{
|
{
|
||||||
face = results[i];
|
face = results[i];
|
||||||
@ -487,6 +495,106 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
SaveFaces(faceCollection, resizedFileInfo, imageFiles);
|
SaveFaces(faceCollection, resizedFileInfo, imageFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void SaveShortcuts(Property.Models.Configuration configuration, string[] juliePhares, Model model, PredictorModel predictorModel, Person[] people, PropertyLogic propertyLogic, string outputResolution, PropertyHolder[] filteredPropertyHolderCollection, List<A_Property> propertyCollection, List<List<D_Face>> faceCollections)
|
||||||
|
{
|
||||||
|
int oldIndex;
|
||||||
|
string[] keys;
|
||||||
|
string fileName;
|
||||||
|
string fullName;
|
||||||
|
string personKey;
|
||||||
|
string directory;
|
||||||
|
FileInfo fileInfo;
|
||||||
|
string copyDirectory;
|
||||||
|
string? relativePath;
|
||||||
|
List<D_Face> faceCollection;
|
||||||
|
PropertyHolder propertyHolder;
|
||||||
|
WindowsShortcut windowsShortcut;
|
||||||
|
const string pattern = @"[\\,\/,\:,\*,\?,\"",\<,\>,\|]";
|
||||||
|
Dictionary<string, List<Person>> peopleCollection = new();
|
||||||
|
foreach (Person person in people)
|
||||||
|
{
|
||||||
|
personKey = Shared.Models.Stateless.Methods.IPersonBirthday.GetFormatted(person.Birthday);
|
||||||
|
if (!peopleCollection.ContainsKey(personKey))
|
||||||
|
peopleCollection.Add(personKey, new List<Person>());
|
||||||
|
peopleCollection[personKey].Add(person);
|
||||||
|
}
|
||||||
|
string dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, model.ToString(), predictorModel.ToString(), nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "(_)");
|
||||||
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
|
{
|
||||||
|
personKey = string.Empty;
|
||||||
|
copyDirectory = string.Empty;
|
||||||
|
propertyHolder = filteredPropertyHolderCollection[i];
|
||||||
|
if (propertyHolder.FileInfo is null)
|
||||||
|
continue;
|
||||||
|
fileInfo = propertyHolder.FileInfo;
|
||||||
|
relativePath = Path.GetDirectoryName($"C:{propertyHolder.RelativePath}");
|
||||||
|
if (string.IsNullOrEmpty(relativePath) || relativePath.Length < 3)
|
||||||
|
continue;
|
||||||
|
if (propertyHolder.Property?.Id is null || propertyHolder.MinimumDateTime is null || propertyHolder.ResizedFileInfo is null)
|
||||||
|
continue;
|
||||||
|
if (propertyHolder.Property.Indices.Length < 2)
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, $"New{relativePath[2..]}");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
oldIndex = propertyHolder.Property.Indices[1];
|
||||||
|
if (!propertyLogic.NamedFaceInfo.ContainsKey(oldIndex))
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, $"Unnamed{relativePath[2..]}");
|
||||||
|
else
|
||||||
|
{
|
||||||
|
faceCollection = faceCollections[i];
|
||||||
|
keys = propertyLogic.NamedFaceInfo[oldIndex];
|
||||||
|
if (!faceCollection.Any())
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, $"None{relativePath[2..]}");
|
||||||
|
else if (keys.Length != 1)
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, $"Not Supported{relativePath[2..]}");
|
||||||
|
else if (faceCollection.Count == 1)
|
||||||
|
{
|
||||||
|
personKey = keys[0];
|
||||||
|
if (juliePhares.Contains(personKey))
|
||||||
|
copyDirectory = Path.Combine(dFacesContentDirectory, "Named Images");
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, "Named Shortcuts", personKey);
|
||||||
|
}
|
||||||
|
else if ((from l in faceCollection where HasLeftAndRight(l.FaceLandmarks) select true).Count() == 1)
|
||||||
|
{
|
||||||
|
personKey = keys[0];
|
||||||
|
if (juliePhares.Contains(personKey))
|
||||||
|
copyDirectory = Path.Combine(dFacesContentDirectory, "Named Images^");
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, "Named Shortcuts", $"{personKey}^");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
directory = Path.Combine(dFacesContentDirectory, $"Many{relativePath[2..]}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!Directory.Exists(directory))
|
||||||
|
{
|
||||||
|
_ = Directory.CreateDirectory(directory);
|
||||||
|
if (!string.IsNullOrEmpty(personKey) && peopleCollection.ContainsKey(personKey))
|
||||||
|
{
|
||||||
|
Person person = peopleCollection[personKey][0];
|
||||||
|
fullName = Regex.Replace($"{Shared.Models.Stateless.Methods.IPersonName.GetFullName(person.Name)}.txt", pattern, string.Empty);
|
||||||
|
File.WriteAllText(Path.Combine(directory, fullName), string.Empty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrEmpty(copyDirectory))
|
||||||
|
{
|
||||||
|
if (!Directory.Exists(copyDirectory))
|
||||||
|
_ = Directory.CreateDirectory(copyDirectory);
|
||||||
|
fileName = Path.Combine(copyDirectory, $"{propertyHolder.Property.Id.Value}{propertyHolder.ResizedFileInfo.Extension}");
|
||||||
|
if (!File.Exists(fileName))
|
||||||
|
File.Copy(propertyHolder.ResizedFileInfo.FullName, fileName);
|
||||||
|
}
|
||||||
|
fileName = Path.Combine(directory, $"{propertyHolder.Property.Id.Value}.lnk");
|
||||||
|
if (File.Exists(fileName))
|
||||||
|
continue;
|
||||||
|
windowsShortcut = new() { Path = fileInfo.FullName };
|
||||||
|
windowsShortcut.Save(fileName);
|
||||||
|
windowsShortcut.Dispose();
|
||||||
|
if (!File.Exists(fileName))
|
||||||
|
continue;
|
||||||
|
File.SetLastWriteTime(fileName, propertyHolder.MinimumDateTime.Value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
double Shared.Models.Stateless.Methods.IFace.TestStatic_Getα(int x1, int x2, int y1, int y2) => throw new NotImplementedException();
|
double Shared.Models.Stateless.Methods.IFace.TestStatic_Getα(int x1, int x2, int y1, int y2) => throw new NotImplementedException();
|
||||||
|
|
||||||
string Shared.Models.Stateless.Methods.IFace.TestStatic_GetJson(string jsonFileFullName) => throw new NotImplementedException();
|
string Shared.Models.Stateless.Methods.IFace.TestStatic_GetJson(string jsonFileFullName) => throw new NotImplementedException();
|
||||||
@ -495,4 +603,18 @@ public class D_Face : Shared.Models.Properties.IFace, IFace
|
|||||||
|
|
||||||
Face[] Shared.Models.Stateless.Methods.IFace.TestStatic_GetFaces(string jsonFileFullName) => throw new NotImplementedException();
|
Face[] Shared.Models.Stateless.Methods.IFace.TestStatic_GetFaces(string jsonFileFullName) => throw new NotImplementedException();
|
||||||
|
|
||||||
|
private static bool HasLeftAndRight(Dictionary<string, Shared.Models.FacePoint[]> faceLandmarks)
|
||||||
|
{
|
||||||
|
bool result = true;
|
||||||
|
if (!faceLandmarks.ContainsKey(FacePart.LeftEye.ToString()))
|
||||||
|
result = false;
|
||||||
|
else if (!faceLandmarks.ContainsKey(FacePart.RightEye.ToString()))
|
||||||
|
result = false;
|
||||||
|
else if (!faceLandmarks.ContainsKey(FacePart.LeftEyebrow.ToString()))
|
||||||
|
result = false;
|
||||||
|
else if (!faceLandmarks.ContainsKey(FacePart.RightEyebrow.ToString()))
|
||||||
|
result = false;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -1,3 +1,4 @@
|
|||||||
|
using FaceRecognitionDotNet;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using View_by_Distance.Instance.Models.Stateless;
|
using View_by_Distance.Instance.Models.Stateless;
|
||||||
using View_by_Distance.Metadata.Models;
|
using View_by_Distance.Metadata.Models;
|
||||||
@ -34,7 +35,7 @@ internal class E2_Navigate
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DisplayTags(Property.Models.Configuration configuration, string outputResolution, string[] directories, Dictionary<ConsoleKey, int> directoryKeyValuePairs, string[] files, Dictionary<ConsoleKey, int> fileKeyValuePairs)
|
private void DisplayTags(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, string[] directories, Dictionary<ConsoleKey, int> directoryKeyValuePairs, string[] files, Dictionary<ConsoleKey, int> fileKeyValuePairs)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -44,10 +45,12 @@ internal class E2_Navigate
|
|||||||
string? rootResultsDirectory = Path.GetDirectoryName(Property.Models.Stateless.IResult.GetResultsGroupDirectory(configuration, nameof(B_Metadata)));
|
string? rootResultsDirectory = Path.GetDirectoryName(Property.Models.Stateless.IResult.GetResultsGroupDirectory(configuration, nameof(B_Metadata)));
|
||||||
if (string.IsNullOrEmpty(rootResultsDirectory))
|
if (string.IsNullOrEmpty(rootResultsDirectory))
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
|
string modelName = model.ToString();
|
||||||
|
string predictorModelName = predictorModel.ToString();
|
||||||
string rootResultsDirectoryAbsoluteUri = new Uri(rootResultsDirectory).AbsoluteUri;
|
string rootResultsDirectoryAbsoluteUri = new Uri(rootResultsDirectory).AbsoluteUri;
|
||||||
string dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
string dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
string cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
string cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
||||||
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) tuple = new(rootResultsDirectoryAbsoluteUri, cResizeContentDirectory, dFacesContentDirectory, eDistanceCollectionDirectory);
|
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) tuple = new(rootResultsDirectoryAbsoluteUri, cResizeContentDirectory, dFacesContentDirectory, eDistanceCollectionDirectory);
|
||||||
List<FileSystem> fileSystemCollection = Shared.Models.Stateless.Methods.IFileSystem.GetFileSystemCollection(requestPath, tuple, directories, files, all);
|
List<FileSystem> fileSystemCollection = Shared.Models.Stateless.Methods.IFileSystem.GetFileSystemCollection(requestPath, tuple, directories, files, all);
|
||||||
Queue<FileSystem> queue = new(fileSystemCollection);
|
Queue<FileSystem> queue = new(fileSystemCollection);
|
||||||
@ -67,7 +70,7 @@ internal class E2_Navigate
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DisplayFaces(Property.Models.Configuration configuration, string outputResolution, string selectedFileFullName)
|
private void DisplayFaces(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, string selectedFileFullName)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -75,10 +78,12 @@ internal class E2_Navigate
|
|||||||
string? rootResultsDirectory = Path.GetDirectoryName(Property.Models.Stateless.IResult.GetResultsGroupDirectory(configuration, nameof(B_Metadata)));
|
string? rootResultsDirectory = Path.GetDirectoryName(Property.Models.Stateless.IResult.GetResultsGroupDirectory(configuration, nameof(B_Metadata)));
|
||||||
if (string.IsNullOrEmpty(rootResultsDirectory))
|
if (string.IsNullOrEmpty(rootResultsDirectory))
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
|
string modelName = model.ToString();
|
||||||
|
string predictorModelName = predictorModel.ToString();
|
||||||
string rootResultsDirectoryAbsoluteUri = new Uri(rootResultsDirectory).AbsoluteUri;
|
string rootResultsDirectoryAbsoluteUri = new Uri(rootResultsDirectory).AbsoluteUri;
|
||||||
string dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
string dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
string cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
string cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
||||||
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) tuple = new(rootResultsDirectoryAbsoluteUri, cResizeContentDirectory, dFacesContentDirectory, eDistanceCollectionDirectory);
|
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) tuple = new(rootResultsDirectoryAbsoluteUri, cResizeContentDirectory, dFacesContentDirectory, eDistanceCollectionDirectory);
|
||||||
FaceFileSystem[] faceFileSystemCollection = Shared.Models.Stateless.Methods.IFaceFileSystem.GetFaceFileSystemCollection(requestPath, tuple, selectedFileFullName);
|
FaceFileSystem[] faceFileSystemCollection = Shared.Models.Stateless.Methods.IFaceFileSystem.GetFaceFileSystemCollection(requestPath, tuple, selectedFileFullName);
|
||||||
for (int i = 0; i < faceFileSystemCollection.Length; i++)
|
for (int i = 0; i < faceFileSystemCollection.Length; i++)
|
||||||
@ -90,7 +95,7 @@ internal class E2_Navigate
|
|||||||
// }
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
private string Rename(Property.Models.Configuration configuration, string subSourceDirectory)
|
private string Rename(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string subSourceDirectory)
|
||||||
{
|
{
|
||||||
string result;
|
string result;
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
@ -109,7 +114,7 @@ internal class E2_Navigate
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, model.ToString(), predictorModel.ToString(), nameof(E_Distance), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
string relativePath = Property.Models.Stateless.IPath.GetRelativePath(subSourceDirectory, eDistanceCollectionDirectory.Length);
|
string relativePath = Property.Models.Stateless.IPath.GetRelativePath(subSourceDirectory, eDistanceCollectionDirectory.Length);
|
||||||
if (relativePath.Length == 1)
|
if (relativePath.Length == 1)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
@ -120,7 +125,7 @@ internal class E2_Navigate
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
_Rename.DirectoryRename(configuration, relativePath, newDirectoryName);
|
_Rename.DirectoryRename(configuration, model, predictorModel, relativePath, newDirectoryName);
|
||||||
_Log.Warn("Renamed...");
|
_Log.Warn("Renamed...");
|
||||||
string? directoryName = Path.GetDirectoryName(subSourceDirectory);
|
string? directoryName = Path.GetDirectoryName(subSourceDirectory);
|
||||||
if (string.IsNullOrEmpty(directoryName))
|
if (string.IsNullOrEmpty(directoryName))
|
||||||
@ -131,7 +136,7 @@ internal class E2_Navigate
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void Navigate(Property.Models.Configuration configuration, string outputResolution)
|
internal void Navigate(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -143,7 +148,7 @@ internal class E2_Navigate
|
|||||||
string? subSourceDirectory = string.Empty;
|
string? subSourceDirectory = string.Empty;
|
||||||
Dictionary<ConsoleKey, int> fileKeyValuePairs = new();
|
Dictionary<ConsoleKey, int> fileKeyValuePairs = new();
|
||||||
Dictionary<ConsoleKey, int> directoryKeyValuePairs = new();
|
Dictionary<ConsoleKey, int> directoryKeyValuePairs = new();
|
||||||
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), _Configuration.OutputResolutions[0], includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
string eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, model.ToString(), predictorModel.ToString(), nameof(E_Distance), _Configuration.OutputResolutions[0], includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
if (!Directory.Exists(eDistanceCollectionDirectory))
|
if (!Directory.Exists(eDistanceCollectionDirectory))
|
||||||
_ = Directory.CreateDirectory(eDistanceCollectionDirectory);
|
_ = Directory.CreateDirectory(eDistanceCollectionDirectory);
|
||||||
for (int z = 0; z < int.MaxValue; z++)
|
for (int z = 0; z < int.MaxValue; z++)
|
||||||
@ -161,8 +166,10 @@ internal class E2_Navigate
|
|||||||
fileKeyValuePairs.Clear();
|
fileKeyValuePairs.Clear();
|
||||||
for (int i = (int)ConsoleKey.A + subDirectories.Length; i < (subFiles.Length + (int)ConsoleKey.A + subDirectories.Length) && i <= (int)ConsoleKey.RightWindows; i++)
|
for (int i = (int)ConsoleKey.A + subDirectories.Length; i < (subFiles.Length + (int)ConsoleKey.A + subDirectories.Length) && i <= (int)ConsoleKey.RightWindows; i++)
|
||||||
fileKeyValuePairs.Add((ConsoleKey)i, i - (int)ConsoleKey.A);
|
fileKeyValuePairs.Add((ConsoleKey)i, i - (int)ConsoleKey.A);
|
||||||
|
if (!directoryKeyValuePairs.Any() && !fileKeyValuePairs.Any())
|
||||||
|
break;
|
||||||
_Log.Warn("");
|
_Log.Warn("");
|
||||||
DisplayTags(configuration, outputResolution, subDirectories, directoryKeyValuePairs, subFiles, fileKeyValuePairs);
|
DisplayTags(configuration, model, predictorModel, outputResolution, subDirectories, directoryKeyValuePairs, subFiles, fileKeyValuePairs);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
@ -180,7 +187,7 @@ internal class E2_Navigate
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
subSourceDirectory = Rename(configuration, subSourceDirectory);
|
subSourceDirectory = Rename(configuration, model, predictorModel, subSourceDirectory);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -212,7 +219,7 @@ internal class E2_Navigate
|
|||||||
{
|
{
|
||||||
selectedFileFullName = subFiles[fileKeyValuePairs[consoleKey]];
|
selectedFileFullName = subFiles[fileKeyValuePairs[consoleKey]];
|
||||||
_Log.Warn(string.Concat(">>> [", Path.GetFileName(selectedFileFullName), "]<", selectedFileFullName, ">?"));
|
_Log.Warn(string.Concat(">>> [", Path.GetFileName(selectedFileFullName), "]<", selectedFileFullName, ">?"));
|
||||||
DisplayFaces(configuration, outputResolution, selectedFileFullName);
|
DisplayFaces(configuration, model, predictorModel, outputResolution, selectedFileFullName);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
_Log.Warn(string.Empty);
|
_Log.Warn(string.Empty);
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
using FaceRecognitionDotNet;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using View_by_Distance.Metadata.Models;
|
using View_by_Distance.Metadata.Models;
|
||||||
using View_by_Distance.Property.Models;
|
using View_by_Distance.Property.Models;
|
||||||
@ -28,7 +29,7 @@ internal class E3_Rename
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal string[] GetDirectoryRenameCollection(Property.Models.Configuration configuration, string relativePath, string newDirectoryName, bool jsonFiles4InfoAny)
|
internal string[] GetDirectoryRenameCollection(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string relativePath, string newDirectoryName, bool jsonFiles4InfoAny)
|
||||||
{
|
{
|
||||||
List<string> results = new();
|
List<string> results = new();
|
||||||
bool add;
|
bool add;
|
||||||
@ -41,9 +42,11 @@ internal class E3_Rename
|
|||||||
string aPropertySingletonDirectory;
|
string aPropertySingletonDirectory;
|
||||||
string bMetadataSingletonDirectory;
|
string bMetadataSingletonDirectory;
|
||||||
string eDistanceCollectionDirectory;
|
string eDistanceCollectionDirectory;
|
||||||
|
string modelName = model.ToString();
|
||||||
string g2IdentifyCollectionDirectory;
|
string g2IdentifyCollectionDirectory;
|
||||||
string d2FaceLandmarksContentDirectory;
|
string d2FaceLandmarksContentDirectory;
|
||||||
add = Directory.Exists(string.Concat(Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()"), relativePath));
|
string predictorModelName = predictorModel.ToString();
|
||||||
|
add = Directory.Exists(string.Concat(Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()"), relativePath));
|
||||||
bMetadataSingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(B_Metadata), "{}");
|
bMetadataSingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(B_Metadata), "{}");
|
||||||
if (Directory.Exists(bMetadataSingletonDirectory))
|
if (Directory.Exists(bMetadataSingletonDirectory))
|
||||||
{
|
{
|
||||||
@ -56,7 +59,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(aPropertySingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(aPropertySingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), _Configuration.ValidResolutions[0], includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
||||||
if (Directory.Exists(cResizeContentDirectory))
|
if (Directory.Exists(cResizeContentDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(cResizeContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(cResizeContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
@ -64,37 +67,37 @@ internal class E3_Rename
|
|||||||
}
|
}
|
||||||
foreach (string outputResolution in _Configuration.ValidResolutions)
|
foreach (string outputResolution in _Configuration.ValidResolutions)
|
||||||
{
|
{
|
||||||
cResizeSingletonDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "{}");
|
cResizeSingletonDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "{}");
|
||||||
if (Directory.Exists(cResizeSingletonDirectory))
|
if (Directory.Exists(cResizeSingletonDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(cResizeSingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(cResizeSingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
if (Directory.Exists(dFacesContentDirectory))
|
if (Directory.Exists(dFacesContentDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(dFacesContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(dFacesContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
if (Directory.Exists(dFacesCollectionDirectory))
|
if (Directory.Exists(dFacesCollectionDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(dFacesCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(dFacesCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
d2FaceLandmarksContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D2_FaceLandmarks), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
d2FaceLandmarksContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D2_FaceLandmarks), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
if (add && _Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution) && Directory.Exists(d2FaceLandmarksContentDirectory))
|
if (add && _Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution) && Directory.Exists(d2FaceLandmarksContentDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(d2FaceLandmarksContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(d2FaceLandmarksContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
eDistanceContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
eDistanceContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
if (Directory.Exists(eDistanceContentDirectory))
|
if (Directory.Exists(eDistanceContentDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(eDistanceContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(eDistanceContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(to);
|
results.Add(to);
|
||||||
}
|
}
|
||||||
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
if (Directory.Exists(eDistanceCollectionDirectory))
|
if (Directory.Exists(eDistanceCollectionDirectory))
|
||||||
{
|
{
|
||||||
to = Path.Combine(string.Concat(eDistanceCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(eDistanceCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
@ -110,7 +113,7 @@ internal class E3_Rename
|
|||||||
return results.ToArray();
|
return results.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal List<string[]> GetDirectoryRenameCollections(Property.Models.Configuration configuration, string relativePath, string newDirectoryName, bool jsonFiles4InfoAny)
|
internal List<string[]> GetDirectoryRenameCollections(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string relativePath, string newDirectoryName, bool jsonFiles4InfoAny)
|
||||||
{
|
{
|
||||||
List<string[]> results = new();
|
List<string[]> results = new();
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
@ -126,9 +129,11 @@ internal class E3_Rename
|
|||||||
string eDistanceContentDirectory;
|
string eDistanceContentDirectory;
|
||||||
string bMetadataSingletonDirectory;
|
string bMetadataSingletonDirectory;
|
||||||
string aPropertySingletonDirectory;
|
string aPropertySingletonDirectory;
|
||||||
|
string modelName = model.ToString();
|
||||||
string eDistanceCollectionDirectory;
|
string eDistanceCollectionDirectory;
|
||||||
string g2IdentifyCollectionDirectory;
|
string g2IdentifyCollectionDirectory;
|
||||||
string d2FaceLandmarksContentDirectory;
|
string d2FaceLandmarksContentDirectory;
|
||||||
|
string predictorModelName = predictorModel.ToString();
|
||||||
if (!string.IsNullOrEmpty(relativePath))
|
if (!string.IsNullOrEmpty(relativePath))
|
||||||
{
|
{
|
||||||
from = string.Concat(_Configuration.PropertyConfiguration.RootDirectory, relativePath);
|
from = string.Concat(_Configuration.PropertyConfiguration.RootDirectory, relativePath);
|
||||||
@ -137,7 +142,7 @@ internal class E3_Rename
|
|||||||
}
|
}
|
||||||
foreach (string outputResolution in _Configuration.ValidResolutions)
|
foreach (string outputResolution in _Configuration.ValidResolutions)
|
||||||
{
|
{
|
||||||
add = Directory.Exists(string.Concat(Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()"), relativePath));
|
add = Directory.Exists(string.Concat(Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()"), relativePath));
|
||||||
bMetadataSingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(B_Metadata), "{}");
|
bMetadataSingletonDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(B_Metadata), "{}");
|
||||||
from = string.Concat(bMetadataSingletonDirectory, relativePath);
|
from = string.Concat(bMetadataSingletonDirectory, relativePath);
|
||||||
exists = Directory.Exists(bMetadataSingletonDirectory);
|
exists = Directory.Exists(bMetadataSingletonDirectory);
|
||||||
@ -154,7 +159,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(aPropertySingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(aPropertySingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
cResizeContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
||||||
from = string.Concat(cResizeContentDirectory, relativePath);
|
from = string.Concat(cResizeContentDirectory, relativePath);
|
||||||
exists = Directory.Exists(cResizeContentDirectory);
|
exists = Directory.Exists(cResizeContentDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -162,7 +167,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(cResizeContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(cResizeContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
cResizeSingletonDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "{}");
|
cResizeSingletonDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(C_Resize), outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "{}");
|
||||||
from = string.Concat(cResizeSingletonDirectory, relativePath);
|
from = string.Concat(cResizeSingletonDirectory, relativePath);
|
||||||
exists = Directory.Exists(cResizeSingletonDirectory);
|
exists = Directory.Exists(cResizeSingletonDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -170,7 +175,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(cResizeSingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(cResizeSingletonDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
dFacesContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
from = string.Concat(dFacesContentDirectory, relativePath);
|
from = string.Concat(dFacesContentDirectory, relativePath);
|
||||||
exists = Directory.Exists(dFacesContentDirectory);
|
exists = Directory.Exists(dFacesContentDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -178,7 +183,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(dFacesContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(dFacesContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
from = string.Concat(dFacesCollectionDirectory, relativePath);
|
from = string.Concat(dFacesCollectionDirectory, relativePath);
|
||||||
exists = Directory.Exists(dFacesCollectionDirectory);
|
exists = Directory.Exists(dFacesCollectionDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -186,7 +191,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(dFacesCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(dFacesCollectionDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
d2FaceLandmarksContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D2_FaceLandmarks), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
d2FaceLandmarksContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(D2_FaceLandmarks), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
from = string.Concat(d2FaceLandmarksContentDirectory, relativePath);
|
from = string.Concat(d2FaceLandmarksContentDirectory, relativePath);
|
||||||
exists = Directory.Exists(d2FaceLandmarksContentDirectory);
|
exists = Directory.Exists(d2FaceLandmarksContentDirectory);
|
||||||
if (!exists && add && _Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
if (!exists && add && _Configuration.SaveFaceLandmarkForOutputResolutions.Contains(outputResolution))
|
||||||
@ -196,7 +201,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(d2FaceLandmarksContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(d2FaceLandmarksContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
eDistanceContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
eDistanceContentDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "()");
|
||||||
from = string.Concat(eDistanceContentDirectory, relativePath);
|
from = string.Concat(eDistanceContentDirectory, relativePath);
|
||||||
exists = Directory.Exists(eDistanceContentDirectory);
|
exists = Directory.Exists(eDistanceContentDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -204,7 +209,7 @@ internal class E3_Rename
|
|||||||
to = Path.Combine(string.Concat(eDistanceContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
to = Path.Combine(string.Concat(eDistanceContentDirectory, Path.GetDirectoryName(relativePath)), newDirectoryName);
|
||||||
results.Add(new string[] { from, to });
|
results.Add(new string[] { from, to });
|
||||||
}
|
}
|
||||||
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
from = string.Concat(eDistanceCollectionDirectory, relativePath);
|
from = string.Concat(eDistanceCollectionDirectory, relativePath);
|
||||||
exists = Directory.Exists(eDistanceCollectionDirectory);
|
exists = Directory.Exists(eDistanceCollectionDirectory);
|
||||||
if (exists)
|
if (exists)
|
||||||
@ -226,7 +231,7 @@ internal class E3_Rename
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void DirectoryRename(Property.Models.Configuration configuration, string relativePath, string newDirectoryName)
|
internal void DirectoryRename(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string relativePath, string newDirectoryName)
|
||||||
{
|
{
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
@ -236,7 +241,7 @@ internal class E3_Rename
|
|||||||
string error = "Error";
|
string error = "Error";
|
||||||
string target = "Target";
|
string target = "Target";
|
||||||
string pending = "Pending";
|
string pending = "Pending";
|
||||||
DirectoryInfo directoryInfo;
|
System.IO.DirectoryInfo directoryInfo;
|
||||||
IEnumerator<FileInfo> fileInfoCollection;
|
IEnumerator<FileInfo> fileInfoCollection;
|
||||||
string oldValue = string.Concat("\"", relativePath);
|
string oldValue = string.Concat("\"", relativePath);
|
||||||
string oldDirectoryName = Path.GetFileName(relativePath);
|
string oldDirectoryName = Path.GetFileName(relativePath);
|
||||||
@ -248,7 +253,7 @@ internal class E3_Rename
|
|||||||
string newValue = string.Concat("\"", Path.Combine(relativePathParent, newDirectoryName));
|
string newValue = string.Concat("\"", Path.Combine(relativePathParent, newDirectoryName));
|
||||||
string e3RenameContentDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(E3_Rename), "()");
|
string e3RenameContentDirectory = Property.Models.Stateless.IResult.GetResultsDateGroupDirectory(configuration, nameof(E3_Rename), "()");
|
||||||
string jsonRootDirectory = Path.Combine(string.Concat(_Configuration.PropertyConfiguration.RootDirectory, " - Copied"), string.Concat(directoryName, " - 4) Info"), _Configuration.PropertyConfiguration.DateGroup, "[]");
|
string jsonRootDirectory = Path.Combine(string.Concat(_Configuration.PropertyConfiguration.RootDirectory, " - Copied"), string.Concat(directoryName, " - 4) Info"), _Configuration.PropertyConfiguration.DateGroup, "[]");
|
||||||
directoryInfo = new DirectoryInfo(jsonRootDirectory);
|
directoryInfo = new System.IO.DirectoryInfo(jsonRootDirectory);
|
||||||
if (!directoryInfo.Exists)
|
if (!directoryInfo.Exists)
|
||||||
directoryInfo.Create();
|
directoryInfo.Create();
|
||||||
IEnumerator<FileInfo> fileInfoCollection4 = directoryInfo.EnumerateFiles("*.json", SearchOption.AllDirectories).GetEnumerator();
|
IEnumerator<FileInfo> fileInfoCollection4 = directoryInfo.EnumerateFiles("*.json", SearchOption.AllDirectories).GetEnumerator();
|
||||||
@ -257,7 +262,7 @@ internal class E3_Rename
|
|||||||
current = new(string.Empty);
|
current = new(string.Empty);
|
||||||
else
|
else
|
||||||
current = fileInfoCollection4.Current;
|
current = fileInfoCollection4.Current;
|
||||||
List<string[]> directoryCollections = GetDirectoryRenameCollections(configuration, relativePath, newDirectoryName, fileInfoCollection4MoveNext);
|
List<string[]> directoryCollections = GetDirectoryRenameCollections(configuration, model, predictorModel, relativePath, newDirectoryName, fileInfoCollection4MoveNext);
|
||||||
if ((from l in directoryCollections where l.Length != 2 select true).Any())
|
if ((from l in directoryCollections where l.Length != 2 select true).Any())
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
if (!Directory.Exists(e3RenameContentDirectory))
|
if (!Directory.Exists(e3RenameContentDirectory))
|
||||||
@ -277,7 +282,7 @@ internal class E3_Rename
|
|||||||
{
|
{
|
||||||
foreach (string[] directoryCollection in directoryCollections)
|
foreach (string[] directoryCollection in directoryCollections)
|
||||||
{
|
{
|
||||||
directoryInfo = new DirectoryInfo(directoryCollection[0]);
|
directoryInfo = new System.IO.DirectoryInfo(directoryCollection[0]);
|
||||||
if (!directoryInfo.Exists)
|
if (!directoryInfo.Exists)
|
||||||
continue;
|
continue;
|
||||||
fileInfoCollection = directoryInfo.EnumerateFiles("*.json", SearchOption.AllDirectories).GetEnumerator();
|
fileInfoCollection = directoryInfo.EnumerateFiles("*.json", SearchOption.AllDirectories).GetEnumerator();
|
||||||
@ -314,7 +319,7 @@ internal class E3_Rename
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void RenameQueue(Property.Models.Configuration configuration)
|
internal void RenameQueue(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel)
|
||||||
{
|
{
|
||||||
string[] lines;
|
string[] lines;
|
||||||
string[] segments;
|
string[] segments;
|
||||||
@ -330,7 +335,7 @@ internal class E3_Rename
|
|||||||
segments = line.Split('\t');
|
segments = line.Split('\t');
|
||||||
if (segments.Length != 2)
|
if (segments.Length != 2)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
DirectoryRename(configuration, segments[0], segments[1]);
|
DirectoryRename(configuration, model, predictorModel, segments[0], segments[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,11 @@ internal class E_Distance
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void LoadFaceEncodingCollections(string[] subFiles, List<List<D_Face>> faceCollections, List<int[]> locationIndicesCollection, List<FaceEncoding> faceEncodingCollection, List<List<FaceEncoding>> faceEncodingCollections)
|
private static void LoadFaceEncodingCollections(PropertyHolder[] filteredPropertyHolderCollection, List<List<D_Face>> faceCollections, List<int[]> locationIndicesCollection, List<FaceEncoding> faceEncodingCollection, List<List<FaceEncoding>> faceEncodingCollections)
|
||||||
{
|
{
|
||||||
List<D_Face> faceCollection;
|
List<D_Face> faceCollection;
|
||||||
FaceEncoding faceEncoding;
|
FaceEncoding faceEncoding;
|
||||||
for (int i = 0; i < subFiles.Length; i++)
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
{
|
{
|
||||||
faceCollection = faceCollections[i];
|
faceCollection = faceCollections[i];
|
||||||
if (!faceCollection.Any())
|
if (!faceCollection.Any())
|
||||||
@ -169,41 +169,49 @@ internal class E_Distance
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void LoadOrCreateThenSaveDistanceResults(Property.Models.Configuration configuration, string[] subFiles, List<List<D_Face>> faceCollections, List<string[]> directories)
|
private void LoadOrCreateThenSaveDistanceResults(Property.Models.Configuration configuration, PropertyHolder[] filteredPropertyHolderCollection, List<List<D_Face>> faceCollections, List<string[]> directories)
|
||||||
{
|
{
|
||||||
|
FileInfo? fileInfo;
|
||||||
string fileNameWithoutExtension;
|
string fileNameWithoutExtension;
|
||||||
List<int[]> locationIndicesCollection = new();
|
List<int[]> locationIndicesCollection = new();
|
||||||
List<Tuple<string, DateTime>> subFileTuples = new();
|
List<Tuple<string, DateTime>> subFileTuples = new();
|
||||||
List<FaceEncoding> faceEncodingCollection = new();
|
List<FaceEncoding> faceEncodingCollection = new();
|
||||||
List<List<FaceEncoding>> faceEncodingCollections = new();
|
List<List<FaceEncoding>> faceEncodingCollections = new();
|
||||||
LoadFaceEncodingCollections(subFiles, faceCollections, locationIndicesCollection, faceEncodingCollection, faceEncodingCollections);
|
LoadFaceEncodingCollections(filteredPropertyHolderCollection, faceCollections, locationIndicesCollection, faceEncodingCollection, faceEncodingCollections);
|
||||||
if (faceEncodingCollections.Count != faceCollections.Count)
|
if (faceEncodingCollections.Count != faceCollections.Count)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
if (locationIndicesCollection.Count != faceEncodingCollection.Count)
|
if (locationIndicesCollection.Count != faceEncodingCollection.Count)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
for (int i = 0; i < subFiles.Length; i++)
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
{
|
{
|
||||||
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(subFiles[i]);
|
fileInfo = filteredPropertyHolderCollection[i].FileInfo;
|
||||||
LoadOrCreateThenSaveDistanceResultsLoop(configuration, faceCollections, subFiles.Length, i, faceCollections[i], locationIndicesCollection, subFileTuples, faceEncodingCollection, faceEncodingCollections[i], fileNameWithoutExtension, directories[i][0], directories[i][1]);
|
if (fileInfo is null)
|
||||||
|
continue;
|
||||||
|
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileInfo.FullName);
|
||||||
|
LoadOrCreateThenSaveDistanceResultsLoop(configuration, faceCollections, filteredPropertyHolderCollection.Length, i, faceCollections[i], locationIndicesCollection, subFileTuples, faceEncodingCollection, faceEncodingCollections[i], fileNameWithoutExtension, directories[i][0], directories[i][1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void LoadOrCreateThenSaveDistanceResults(Property.Models.Configuration configuration, string sourceDirectory, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, string[] subFiles, List<List<D_Face>> faceCollections)
|
internal void LoadOrCreateThenSaveDistanceResults(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string sourceDirectory, string outputResolution, List<Tuple<string, DateTime>> sourceDirectoryChanges, PropertyHolder[] filteredPropertyHolderCollection, List<List<D_Face>> faceCollections)
|
||||||
{
|
{
|
||||||
if (_Configuration.CheckJsonForDistanceResults is null)
|
if (_Configuration.CheckJsonForDistanceResults is null)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
if (_Configuration.PropertiesChangedForDistance is null)
|
if (_Configuration.PropertiesChangedForDistance is null)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
string json;
|
string json;
|
||||||
|
FileInfo? fileInfo;
|
||||||
bool check = false;
|
bool check = false;
|
||||||
string parentCheck;
|
string parentCheck;
|
||||||
DirectoryInfo directoryInfo;
|
FileInfo[] fileInfoCollection;
|
||||||
DirectoryInfo tvsDirectoryInfo;
|
System.IO.DirectoryInfo directoryInfo;
|
||||||
|
System.IO.DirectoryInfo tvsDirectoryInfo;
|
||||||
string fileNameWithoutExtension;
|
string fileNameWithoutExtension;
|
||||||
List<string[]> directories = new();
|
List<string[]> directories = new();
|
||||||
string[] changesFrom = new string[] { nameof(A_Property), nameof(B_Metadata), nameof(C_Resize), nameof(D_Face) };
|
string[] changesFrom = new string[] { nameof(A_Property), nameof(B_Metadata), nameof(C_Resize), nameof(D_Face) };
|
||||||
List<DateTime> dateTimes = (from l in sourceDirectoryChanges where changesFrom.Contains(l.Item1) select l.Item2).ToList();
|
List<DateTime> dateTimes = (from l in sourceDirectoryChanges where changesFrom.Contains(l.Item1) select l.Item2).ToList();
|
||||||
List<string> directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
List<string> directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
model.ToString(),
|
||||||
|
predictorModel.ToString(),
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(E_Distance),
|
nameof(E_Distance),
|
||||||
outputResolution,
|
outputResolution,
|
||||||
@ -213,10 +221,13 @@ internal class E_Distance
|
|||||||
contentDescription: ".tvs File",
|
contentDescription: ".tvs File",
|
||||||
singletonDescription: string.Empty,
|
singletonDescription: string.Empty,
|
||||||
collectionDescription: "n json file(s) for each face found (one to many)");
|
collectionDescription: "n json file(s) for each face found (one to many)");
|
||||||
for (int i = 0; i < subFiles.Length; i++)
|
for (int i = 0; i < filteredPropertyHolderCollection.Length; i++)
|
||||||
{
|
{
|
||||||
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(subFiles[i]);
|
fileInfo = filteredPropertyHolderCollection[i].FileInfo;
|
||||||
directoryInfo = new DirectoryInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "[]"), fileNameWithoutExtension));
|
if (fileInfo is null)
|
||||||
|
continue;
|
||||||
|
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileInfo.FullName);
|
||||||
|
directoryInfo = new System.IO.DirectoryInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "[]"), fileNameWithoutExtension));
|
||||||
if (!directoryInfo.Exists)
|
if (!directoryInfo.Exists)
|
||||||
{
|
{
|
||||||
if (directoryInfo.Parent?.Parent is null)
|
if (directoryInfo.Parent?.Parent is null)
|
||||||
@ -229,14 +240,15 @@ internal class E_Distance
|
|||||||
Directory.Delete(parentCheck);
|
Directory.Delete(parentCheck);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tvsDirectoryInfo = new DirectoryInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "()"), fileNameWithoutExtension));
|
tvsDirectoryInfo = new System.IO.DirectoryInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "()"), fileNameWithoutExtension));
|
||||||
directories.Add(new string[] { directoryInfo.FullName, tvsDirectoryInfo.FullName });
|
directories.Add(new string[] { directoryInfo.FullName, tvsDirectoryInfo.FullName });
|
||||||
if (_Configuration.CheckJsonForDistanceResults.Value && directoryInfo.Exists)
|
if (_Configuration.CheckJsonForDistanceResults.Value && directoryInfo.Exists)
|
||||||
{
|
{
|
||||||
foreach (FileInfo fileInfo in directoryInfo.GetFiles("*.json", SearchOption.AllDirectories))
|
fileInfoCollection = directoryInfo.GetFiles("*.json", SearchOption.AllDirectories);
|
||||||
|
for (int j = 0; j < fileInfoCollection.Length; j++)
|
||||||
{
|
{
|
||||||
json = Shared.Models.Stateless.Methods.IIndex.GetJson(fileInfo.FullName, fileInfo);
|
json = Shared.Models.Stateless.Methods.IIndex.GetJson(fileInfoCollection[j].FullName, fileInfoCollection[j]);
|
||||||
if (!_Configuration.PropertiesChangedForDistance.Value && Shared.Models.Stateless.Methods.IFace.GetFace(fileInfo.FullName) is null)
|
if (!_Configuration.PropertiesChangedForDistance.Value && Shared.Models.Stateless.Methods.IFace.GetFace(fileInfoCollection[j].FullName) is null)
|
||||||
check = true;
|
check = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -252,16 +264,16 @@ internal class E_Distance
|
|||||||
check = true;
|
check = true;
|
||||||
}
|
}
|
||||||
if (check)
|
if (check)
|
||||||
LoadOrCreateThenSaveDistanceResults(configuration, subFiles, faceCollections, directories);
|
LoadOrCreateThenSaveDistanceResults(configuration, filteredPropertyHolderCollection, faceCollections, directories);
|
||||||
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(directoryInfoCollection[0].Replace("<>", "()"));
|
_ = Property.Models.Stateless.IPath.DeleteEmptyDirectories(directoryInfoCollection[0].Replace("<>", "()"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> GetFiles(Property.Models.Configuration configuration, string outputResolution)
|
private List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> GetFiles(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution)
|
||||||
{
|
{
|
||||||
string json;
|
string json;
|
||||||
List<KeyValuePair<string, Shared.Models.Face[]>>? facesKeyValuePairCollection;
|
List<KeyValuePair<string, Shared.Models.Face[]>>? facesKeyValuePairCollection;
|
||||||
List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> results = new();
|
List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> results = new();
|
||||||
string dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[[]]");
|
string dFacesCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, model.ToString(), predictorModel.ToString(), nameof(D_Face), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[[]]");
|
||||||
string[] dFacesCollectionFiles = Directory.GetFiles(dFacesCollectionDirectory, "*.json", SearchOption.TopDirectoryOnly);
|
string[] dFacesCollectionFiles = Directory.GetFiles(dFacesCollectionDirectory, "*.json", SearchOption.TopDirectoryOnly);
|
||||||
foreach (string dFacesCollectionFile in dFacesCollectionFiles)
|
foreach (string dFacesCollectionFile in dFacesCollectionFiles)
|
||||||
{
|
{
|
||||||
@ -311,10 +323,10 @@ internal class E_Distance
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Save(Property.Models.Configuration configuration, string outputResolution, string eDistanceCollectionDirectory, int k, string relativePath, Shared.Models.Face face, List<Tuple<Shared.Models.Face, string>> faceAndFaceDistanceCollection)
|
private void Save(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, string eDistanceCollectionDirectory, int k, string relativePath, Shared.Models.Face face, List<Tuple<Shared.Models.Face, string>> faceAndFaceDistanceCollection)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(eDistanceCollectionDirectory))
|
if (string.IsNullOrEmpty(eDistanceCollectionDirectory))
|
||||||
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
eDistanceCollectionDirectory = Path.Combine(Property.Models.Stateless.IResult.GetResultsFullGroupDirectory(configuration, model.ToString(), predictorModel.ToString(), nameof(E_Distance), outputResolution, includeResizeGroup: true, includeModel: true, includePredictorModel: true), "[]");
|
||||||
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(face.RelativePath);
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(face.RelativePath);
|
||||||
string jsonDirectory = string.Concat(eDistanceCollectionDirectory, Path.Combine(relativePath, fileNameWithoutExtension));
|
string jsonDirectory = string.Concat(eDistanceCollectionDirectory, Path.Combine(relativePath, fileNameWithoutExtension));
|
||||||
if (!Directory.Exists(jsonDirectory))
|
if (!Directory.Exists(jsonDirectory))
|
||||||
@ -333,7 +345,7 @@ internal class E_Distance
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void LoadOrCreateThenSaveDirectoryDistanceResults(Property.Models.Configuration configuration, string outputResolution)
|
internal void LoadOrCreateThenSaveDirectoryDistanceResults(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution)
|
||||||
{
|
{
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
@ -344,7 +356,7 @@ internal class E_Distance
|
|||||||
string eDistanceCollectionDirectory = string.Empty;
|
string eDistanceCollectionDirectory = string.Empty;
|
||||||
Tuple<Shared.Models.Face, double> faceAndFaceDistance;
|
Tuple<Shared.Models.Face, double> faceAndFaceDistance;
|
||||||
List<Tuple<Shared.Models.Face, string>> faceAndFaceDistanceCollection;
|
List<Tuple<Shared.Models.Face, string>> faceAndFaceDistanceCollection;
|
||||||
List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> files = GetFiles(configuration, outputResolution);
|
List<(string, List<KeyValuePair<string, Shared.Models.Face[]>>)> files = GetFiles(configuration, model, predictorModel, outputResolution);
|
||||||
List<(string, List<Shared.Models.Face>, List<FaceEncoding>)> matches = GetMatches(files);
|
List<(string, List<Shared.Models.Face>, List<FaceEncoding>)> matches = GetMatches(files);
|
||||||
if (files.Count != matches.Count)
|
if (files.Count != matches.Count)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
@ -380,7 +392,7 @@ internal class E_Distance
|
|||||||
if (faceAndFaceDistanceCollection.Any())
|
if (faceAndFaceDistanceCollection.Any())
|
||||||
{
|
{
|
||||||
faceAndFaceDistanceCollection = (from l in faceAndFaceDistanceCollection orderby l.Item2 select l).Take(_Configuration.CrossDirectoryMaxItemsInDistanceCollection.Value).ToList();
|
faceAndFaceDistanceCollection = (from l in faceAndFaceDistanceCollection orderby l.Item2 select l).Take(_Configuration.CrossDirectoryMaxItemsInDistanceCollection.Value).ToList();
|
||||||
Save(configuration, outputResolution, eDistanceCollectionDirectory, k, relativePath, face, faceAndFaceDistanceCollection);
|
Save(configuration, model, predictorModel, outputResolution, eDistanceCollectionDirectory, k, relativePath, face, faceAndFaceDistanceCollection);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -90,11 +90,11 @@ public class G2_Identify : Shared.Models.Properties.IIdentify, IIdentify
|
|||||||
json = File.ReadAllText(named.FullName);
|
json = File.ReadAllText(named.FullName);
|
||||||
Person[] people = a2People.GetPeople(configuration);
|
Person[] people = a2People.GetPeople(configuration);
|
||||||
Dictionary<string, string[]> resultKeyValuePairs = new();
|
Dictionary<string, string[]> resultKeyValuePairs = new();
|
||||||
string[] peopleBirthdates = (from l in people select Shared.Models.Stateless.Methods.IPersonBirthday.GetFormated(l.Birthday)).ToArray();
|
string[] peopleBirthDates = (from l in people select Shared.Models.Stateless.Methods.IPersonBirthday.GetFormatted(l.Birthday)).ToArray();
|
||||||
Dictionary<string, string[]> sourceKeyValuePairs = JsonSerializer.Deserialize<Dictionary<string, string[]>>(json);
|
Dictionary<string, string[]> sourceKeyValuePairs = JsonSerializer.Deserialize<Dictionary<string, string[]>>(json);
|
||||||
foreach (KeyValuePair<string, string[]> keyValuePair in sourceKeyValuePairs)
|
foreach (KeyValuePair<string, string[]> keyValuePair in sourceKeyValuePairs)
|
||||||
{
|
{
|
||||||
if (!(from l in keyValuePair.Value where peopleBirthdates.Contains(l) select false).Any())
|
if (!(from l in keyValuePair.Value where peopleBirthDates.Contains(l) select false).Any())
|
||||||
continue;
|
continue;
|
||||||
resultKeyValuePairs.Add(keyValuePair.Key, keyValuePair.Value);
|
resultKeyValuePairs.Add(keyValuePair.Key, keyValuePair.Value);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
using FaceRecognitionDotNet;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
using View_by_Distance.Property.Models;
|
using View_by_Distance.Property.Models;
|
||||||
@ -103,7 +104,7 @@ public class G_Index : Shared.Models.Properties.IIndex, IIndex
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WriteGroup(Property.Models.Configuration configuration, string outputResolution, List<Tuple<string, Dictionary<int, G_Index>>> indexInfoTuples)
|
private void WriteGroup(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, List<Tuple<string, Dictionary<int, G_Index>>> indexInfoTuples)
|
||||||
{
|
{
|
||||||
string json;
|
string json;
|
||||||
G_Index[] indices;
|
G_Index[] indices;
|
||||||
@ -111,14 +112,14 @@ public class G_Index : Shared.Models.Properties.IIndex, IIndex
|
|||||||
foreach (Tuple<string, Dictionary<int, G_Index>> tuple in indexInfoTuples)
|
foreach (Tuple<string, Dictionary<int, G_Index>> tuple in indexInfoTuples)
|
||||||
{
|
{
|
||||||
indices = (from l in tuple.Item2 select l.Value).ToArray();
|
indices = (from l in tuple.Item2 select l.Value).ToArray();
|
||||||
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, tuple.Item1, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: string.Empty, collectionDescription: "Unknown A");
|
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, model.ToString(), predictorModel.ToString(), tuple.Item1, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: string.Empty, collectionDescription: "Unknown A");
|
||||||
json = JsonSerializer.Serialize(indices, _WriteIndentedJsonSerializerOptions);
|
json = JsonSerializer.Serialize(indices, _WriteIndentedJsonSerializerOptions);
|
||||||
if (!Property.Models.Stateless.IPath.WriteAllText(string.Concat(directoryInfoCollection[0].Replace("<>", "[]"), ".json"), json, compareBeforeWrite: true))
|
if (!Property.Models.Stateless.IPath.WriteAllText(string.Concat(directoryInfoCollection[0].Replace("<>", "[]"), ".json"), json, compareBeforeWrite: true))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AppendTSV(Property.Models.Configuration configuration, string outputResolution, Dictionary<string, List<Tuple<string, A_Property>>> filePropertiesKeyValuePairs)
|
private void AppendTSV(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, Dictionary<string, List<Tuple<string, A_Property>>> filePropertiesKeyValuePairs)
|
||||||
{
|
{
|
||||||
A_Property property;
|
A_Property property;
|
||||||
DateTime?[] dateTimes;
|
DateTime?[] dateTimes;
|
||||||
@ -137,11 +138,11 @@ public class G_Index : Shared.Models.Properties.IIndex, IIndex
|
|||||||
maximumDateTime = (from l in dateTimes where l.HasValue select l.Value).Max();
|
maximumDateTime = (from l in dateTimes where l.HasValue select l.Value).Max();
|
||||||
minimumDateTime = (from l in dateTimes where l.HasValue select l.Value).Min();
|
minimumDateTime = (from l in dateTimes where l.HasValue select l.Value).Min();
|
||||||
}
|
}
|
||||||
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, tuples.Key, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: "Unkown B", collectionDescription: string.Empty);
|
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, model.ToString(), predictorModel.ToString(), tuples.Key, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: "Unkown B", collectionDescription: string.Empty);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void SetIndex(Property.Models.Configuration configuration, string outputResolution, Dictionary<string, List<Tuple<string, A_Property>>> filePropertiesKeyValuePairs)
|
internal void SetIndex(Property.Models.Configuration configuration, Model model, PredictorModel predictorModel, string outputResolution, Dictionary<string, List<Tuple<string, A_Property>>> filePropertiesKeyValuePairs)
|
||||||
{
|
{
|
||||||
if (_Configuration.PropertiesChangedForIndex is null)
|
if (_Configuration.PropertiesChangedForIndex is null)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
@ -168,7 +169,7 @@ public class G_Index : Shared.Models.Properties.IIndex, IIndex
|
|||||||
foreach (KeyValuePair<string, List<Tuple<string, A_Property>>> tuples in filePropertiesKeyValuePairs)
|
foreach (KeyValuePair<string, List<Tuple<string, A_Property>>> tuples in filePropertiesKeyValuePairs)
|
||||||
{
|
{
|
||||||
valuePairs = new Dictionary<int, G_Index>();
|
valuePairs = new Dictionary<int, G_Index>();
|
||||||
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, tuples.Key, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: "Unknown C", collectionDescription: string.Empty);
|
directoryInfoCollection = Property.Models.Stateless.IResult.GetDirectoryInfoCollection(configuration, model.ToString(), predictorModel.ToString(), tuples.Key, nameof(G_Index), outputResolution, includeResizeGroup: false, includeModel: false, includePredictorModel: false, contentDescription: string.Empty, singletonDescription: "Unknown C", collectionDescription: string.Empty);
|
||||||
foreach (Tuple<string, A_Property> tuple in tuples.Value)
|
foreach (Tuple<string, A_Property> tuple in tuples.Value)
|
||||||
{
|
{
|
||||||
fileInfo = new FileInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "{}"), string.Concat(Path.GetFileNameWithoutExtension(tuple.Item1), ".json")));
|
fileInfo = new FileInfo(Path.Combine(directoryInfoCollection[0].Replace("<>", "{}"), string.Concat(Path.GetFileNameWithoutExtension(tuple.Item1), ".json")));
|
||||||
@ -204,8 +205,8 @@ public class G_Index : Shared.Models.Properties.IIndex, IIndex
|
|||||||
throw new Exception(string.Join(Environment.NewLine, parseExceptions));
|
throw new Exception(string.Join(Environment.NewLine, parseExceptions));
|
||||||
if (neededTuples.Any())
|
if (neededTuples.Any())
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
WriteGroup(configuration, outputResolution, indexInfoTuples);
|
WriteGroup(configuration, model, predictorModel, outputResolution, indexInfoTuples);
|
||||||
AppendTSV(configuration, outputResolution, filePropertiesKeyValuePairs);
|
AppendTSV(configuration, model, predictorModel, outputResolution, filePropertiesKeyValuePairs);
|
||||||
}
|
}
|
||||||
|
|
||||||
string Shared.Models.Stateless.Methods.IIndex.TestStatic_GetJson(string jsonFileFullName, FileInfo fileInfo) => throw new NotImplementedException();
|
string Shared.Models.Stateless.Methods.IIndex.TestStatic_GetJson(string jsonFileFullName, FileInfo fileInfo) => throw new NotImplementedException();
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"Microsoft.Hosting.Lifetime": "Information"
|
"Microsoft.Hosting.Lifetime": "Information"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"MaxDegreeOfParallelism": 6,
|
"MaxDegreeOfParallelism": 1,
|
||||||
"Serilog": {
|
"Serilog": {
|
||||||
"Using": [
|
"Using": [
|
||||||
"Serilog.Sinks.Console",
|
"Serilog.Sinks.Console",
|
||||||
@ -52,14 +52,14 @@
|
|||||||
"Configuration": {
|
"Configuration": {
|
||||||
"CheckJsonForDistanceResults": true,
|
"CheckJsonForDistanceResults": true,
|
||||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"DistanceFactor": 8,
|
"DistanceFactor": 8,
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
"ForceResizeLastWriteTimeToCreationTime": false,
|
"ForceResizeLastWriteTimeToCreationTime": false,
|
||||||
"LoadOrCreateThenSaveDirectoryDistanceResults": true,
|
"LoadOrCreateThenSaveDirectoryDistanceResults": false,
|
||||||
"LoadOrCreateThenSaveDistanceResults": true,
|
"LoadOrCreateThenSaveDistanceResults": false,
|
||||||
"LoadOrCreateThenSaveImageFacesResults": true,
|
"LoadOrCreateThenSaveImageFacesResults": true,
|
||||||
"LoadOrCreateThenSaveIndex": false,
|
"LoadOrCreateThenSaveIndex": false,
|
||||||
"LocationConfidenceFactor": 2,
|
"LocationConfidenceFactor": 2,
|
||||||
@ -85,10 +85,11 @@
|
|||||||
"PropertiesChangedForProperty": false,
|
"PropertiesChangedForProperty": false,
|
||||||
"PropertiesChangedForResize": false,
|
"PropertiesChangedForResize": false,
|
||||||
"Reverse": false,
|
"Reverse": false,
|
||||||
"RootDirectory": "C:/Tmp/phares/Pictures",
|
"xRootDirectory": "C:/Tmp/phares/Pictures",
|
||||||
|
"RootDirectory": "F:/Tmp/Phares/Compare/Images 2022-07-24 - 1539b2f974f07b6b5cbda8450faf0eec85d02eda - III",
|
||||||
"SaveFullYearOfRandomFiles": true,
|
"SaveFullYearOfRandomFiles": true,
|
||||||
"SaveResizedSubFiles": true,
|
"SaveResizedSubFiles": true,
|
||||||
"SearchForAbandonedFilesFull": true,
|
"SaveShortcuts": true,
|
||||||
"SkipSearch": false,
|
"SkipSearch": false,
|
||||||
"TestDistanceResults": true,
|
"TestDistanceResults": true,
|
||||||
"WriteBitmapDataBytes": false,
|
"WriteBitmapDataBytes": false,
|
||||||
@ -96,12 +97,73 @@
|
|||||||
".gif",
|
".gif",
|
||||||
".GIF"
|
".GIF"
|
||||||
],
|
],
|
||||||
"OutputResolutions": [
|
"JuliePhares": [
|
||||||
|
"1500-01-16_00",
|
||||||
|
"1500-01-19_00",
|
||||||
|
"1500-01-20_00",
|
||||||
|
"1500-01-21_00",
|
||||||
|
"1500-01-25_00",
|
||||||
|
"1500-01-26_00",
|
||||||
|
"1500-01-27_00",
|
||||||
|
"1500-02-13_00",
|
||||||
|
"1500-02-17_00",
|
||||||
|
"1500-02-24_00",
|
||||||
|
"1500-02-25_00",
|
||||||
|
"1500-04-03_00",
|
||||||
|
"1500-04-06_00",
|
||||||
|
"1500-04-19_00",
|
||||||
|
"1500-05-03_00",
|
||||||
|
"1500-05-18_00",
|
||||||
|
"1500-05-28_00",
|
||||||
|
"1500-06-16_00",
|
||||||
|
"1500-06-26_00",
|
||||||
|
"1500-06-27_00",
|
||||||
|
"1500-07-07_00",
|
||||||
|
"1500-07-16_00",
|
||||||
|
"1720-09-30_05",
|
||||||
|
"1500-07-26_00",
|
||||||
|
"1500-08-03_00",
|
||||||
|
"1500-08-23_00",
|
||||||
|
"1500-08-24_00",
|
||||||
|
"1500-09-16_00",
|
||||||
|
"1500-09-21_00",
|
||||||
|
"1500-09-28_00",
|
||||||
|
"1500-10-14_00",
|
||||||
|
"1500-11-07_00",
|
||||||
|
"1500-11-09_00",
|
||||||
|
"1720-09-28_20",
|
||||||
|
"1501-01-08_00",
|
||||||
|
"1501-01-12_00",
|
||||||
|
"1501-01-13_00",
|
||||||
|
"1501-01-30_00",
|
||||||
|
"1501-03-09_00",
|
||||||
|
"1501-03-14_00",
|
||||||
|
"1501-03-22_00",
|
||||||
|
"1501-04-07_00",
|
||||||
|
"1501-04-10_00",
|
||||||
|
"1501-04-19_00",
|
||||||
|
"1501-05-06_00",
|
||||||
|
"1956-09-19_00",
|
||||||
|
"2012-09-17_00",
|
||||||
|
"1998-05-21_00",
|
||||||
|
"1960-03-01_00",
|
||||||
|
"1976-03-08_00",
|
||||||
|
"2007-09-07_00",
|
||||||
|
"2000-04-07_00",
|
||||||
|
"1980-01-17_00",
|
||||||
|
"1958-01-30_00",
|
||||||
|
"1976-01-05_00",
|
||||||
|
"1982-05-02_00"
|
||||||
|
],
|
||||||
|
"xOutputResolutions": [
|
||||||
"176 x 176",
|
"176 x 176",
|
||||||
"256 x 256",
|
"256 x 256",
|
||||||
"353 x 353",
|
"353 x 353",
|
||||||
"1024 x 768"
|
"1024 x 768"
|
||||||
],
|
],
|
||||||
|
"OutputResolutions": [
|
||||||
|
"1376 x 768"
|
||||||
|
],
|
||||||
"PropertyContentCollectionFiles": [],
|
"PropertyContentCollectionFiles": [],
|
||||||
"SaveFaceLandmarkForOutputResolutions": [
|
"SaveFaceLandmarkForOutputResolutions": [
|
||||||
"176 x 176",
|
"176 x 176",
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
"Configuration": {
|
"Configuration": {
|
||||||
"CheckJsonForDistanceResults": true,
|
"CheckJsonForDistanceResults": true,
|
||||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"DistanceFactor": 8,
|
"DistanceFactor": 8,
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||||
@ -88,7 +88,7 @@
|
|||||||
"RootDirectory": "E:/Images",
|
"RootDirectory": "E:/Images",
|
||||||
"SaveFullYearOfRandomFiles": true,
|
"SaveFullYearOfRandomFiles": true,
|
||||||
"SaveResizedSubFiles": true,
|
"SaveResizedSubFiles": true,
|
||||||
"SearchForAbandonedFilesFull": false,
|
"SaveShortcuts": true,
|
||||||
"SkipSearch": false,
|
"SkipSearch": false,
|
||||||
"TestDistanceResults": true,
|
"TestDistanceResults": true,
|
||||||
"WriteBitmapDataBytes": false,
|
"WriteBitmapDataBytes": false,
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
"Configuration": {
|
"Configuration": {
|
||||||
"CheckJsonForDistanceResults": true,
|
"CheckJsonForDistanceResults": true,
|
||||||
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
"CrossDirectoryMaxItemsInDistanceCollection": 7,
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"DistanceFactor": 8,
|
"DistanceFactor": 8,
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForceMetadataLastWriteTimeToCreationTime": false,
|
"ForceMetadataLastWriteTimeToCreationTime": false,
|
||||||
@ -88,7 +88,7 @@
|
|||||||
"RootDirectory": "D:/Images",
|
"RootDirectory": "D:/Images",
|
||||||
"SaveFullYearOfRandomFiles": true,
|
"SaveFullYearOfRandomFiles": true,
|
||||||
"SaveResizedSubFiles": true,
|
"SaveResizedSubFiles": true,
|
||||||
"SearchForAbandonedFilesFull": false,
|
"SaveShortcuts": true,
|
||||||
"SkipSearch": false,
|
"SkipSearch": false,
|
||||||
"TestDistanceResults": true,
|
"TestDistanceResults": true,
|
||||||
"WriteBitmapDataBytes": false,
|
"WriteBitmapDataBytes": false,
|
||||||
|
@ -30,7 +30,7 @@ public class Configuration
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(Property.Models.Configuration propertyConfiguration) => _PropertyConfiguration = propertyConfiguration;
|
public void Set(Property.Models.Configuration configuration) => _PropertyConfiguration = configuration;
|
||||||
|
|
||||||
public void Update()
|
public void Update()
|
||||||
{
|
{
|
||||||
|
@ -37,35 +37,25 @@ public class NotCopyCopy
|
|||||||
Property.Models.Configuration.Verify(propertyConfiguration);
|
Property.Models.Configuration.Verify(propertyConfiguration);
|
||||||
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
||||||
Verify(configuration);
|
Verify(configuration);
|
||||||
|
bool reverse = false;
|
||||||
|
string modelName = nameof(modelName);
|
||||||
|
string predictorModelName = nameof(predictorModelName);
|
||||||
_Configuration = configuration;
|
_Configuration = configuration;
|
||||||
if (propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
|
||||||
throw new Exception($"{nameof(propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
|
||||||
if (propertyConfiguration.PopulatePropertyId is null)
|
if (propertyConfiguration.PopulatePropertyId is null)
|
||||||
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
throw new Exception($"{nameof(propertyConfiguration.PopulatePropertyId)} is null!");
|
||||||
if (!_IsEnvironment.Development)
|
if (!_IsEnvironment.Development)
|
||||||
throw new Exception("This program only allows development environments!");
|
throw new Exception("This program only allows development environments!");
|
||||||
string searchPattern = "*";
|
|
||||||
long ticks = DateTime.Now.Ticks;
|
|
||||||
List<string> topDirectories = new();
|
|
||||||
List<Group> compareSourceGroupCollection;
|
|
||||||
List<Group> selectedSourceGroupCollection;
|
|
||||||
PropertyLogic propertyLogic = GetPropertyLogic();
|
PropertyLogic propertyLogic = GetPropertyLogic();
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection;
|
propertyConfiguration.ChangeRootDirectory(configuration.CompareSource);
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(_Configuration.CompareSource, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
List<PropertyHolder[]> comparePropertyHolderCollections = Property.Models.Stateless.A_Property.Get(propertyConfiguration, reverse, modelName, predictorModelName, propertyLogic);
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
propertyConfiguration.ChangeRootDirectory(configuration.SelectedSource);
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
List<PropertyHolder[]> selectedPropertyHolderCollections = Property.Models.Stateless.A_Property.Get(propertyConfiguration, reverse, modelName, predictorModelName, propertyLogic);
|
||||||
compareSourceGroupCollection = propertyLogic.GetParallelWork(propertyConfiguration, topDirectories, groupCollection, firstPass: true, filterOnFirstPass: true);
|
if (comparePropertyHolderCollections.Count == selectedPropertyHolderCollections.Count)
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
throw new Exception();
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.GetParallelWork));
|
|
||||||
topDirectories.Clear();
|
|
||||||
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(configuration.SelectedSource, searchPattern, topDirectories, propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse: false);
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(Property.Models.Stateless.A_Property.GetGroupCollection));
|
|
||||||
selectedSourceGroupCollection = propertyLogic.GetParallelWork(propertyConfiguration, topDirectories, groupCollection, firstPass: true, filterOnFirstPass: true);
|
|
||||||
if (appSettings.MaxDegreeOfParallelism.Value < 2)
|
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.GetParallelWork));
|
|
||||||
string directoryName;
|
string directoryName;
|
||||||
List<string> distinct = new();
|
List<string> distinct = new();
|
||||||
|
List<Property.Models.DirectoryInfo> compareSourceGroupCollection = new();
|
||||||
|
List<Property.Models.DirectoryInfo> selectedSourceGroupCollection = new();
|
||||||
List<(string Source, string[] Destination)> copyCollection = GetCopyCollection(compareSourceGroupCollection, selectedSourceGroupCollection);
|
List<(string Source, string[] Destination)> copyCollection = GetCopyCollection(compareSourceGroupCollection, selectedSourceGroupCollection);
|
||||||
foreach ((string source, string[] destination) in copyCollection)
|
foreach ((string source, string[] destination) in copyCollection)
|
||||||
{
|
{
|
||||||
@ -134,20 +124,19 @@ public class NotCopyCopy
|
|||||||
private PropertyLogic GetPropertyLogic()
|
private PropertyLogic GetPropertyLogic()
|
||||||
{
|
{
|
||||||
PropertyLogic result;
|
PropertyLogic result;
|
||||||
|
|
||||||
string[] verifyToSeason = Array.Empty<string>();
|
|
||||||
|
|
||||||
if (_AppSettings.MaxDegreeOfParallelism is null)
|
if (_AppSettings.MaxDegreeOfParallelism is null)
|
||||||
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
throw new Exception($"{nameof(_AppSettings.MaxDegreeOfParallelism)} is null!");
|
||||||
if (_Configuration?.PropertyConfiguration is null)
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration, verifyToSeason);
|
result = new(_AppSettings.MaxDegreeOfParallelism.Value, _Configuration.PropertyConfiguration);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<(string Source, string[] Destination)> GetCopyCollection(List<Group> compareSourceGroupCollection, List<Group> selectedSourceGroupCollection)
|
private List<(string Source, string[] Destination)> GetCopyCollection(List<Property.Models.DirectoryInfo> compareSourceGroupCollection, List<Property.Models.DirectoryInfo> selectedSourceGroupCollection)
|
||||||
{
|
{
|
||||||
List<(string Source, string[] Destination)> results = new();
|
List<(string Source, string[] Destination)> results = new();
|
||||||
|
if (_Configuration?.PropertyConfiguration is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.PropertyConfiguration)} must be set!");
|
||||||
string key;
|
string key;
|
||||||
string fileName;
|
string fileName;
|
||||||
A_Property? property;
|
A_Property? property;
|
||||||
@ -156,9 +145,9 @@ public class NotCopyCopy
|
|||||||
List<string> destinationCollection;
|
List<string> destinationCollection;
|
||||||
string filteredSourceDirectoryFile;
|
string filteredSourceDirectoryFile;
|
||||||
Dictionary<string, A_Property> keyValuePairs = new();
|
Dictionary<string, A_Property> keyValuePairs = new();
|
||||||
foreach (Group group in compareSourceGroupCollection)
|
foreach (Property.Models.DirectoryInfo group in compareSourceGroupCollection)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
for (int i = 0; i < group.SourceDirectoryFileInfoCollection.Length; i++)
|
||||||
{
|
{
|
||||||
property = group.PropertyCollection[i];
|
property = group.PropertyCollection[i];
|
||||||
if (property is null)
|
if (property is null)
|
||||||
@ -167,9 +156,9 @@ public class NotCopyCopy
|
|||||||
keyValuePairs.Add(key, property);
|
keyValuePairs.Add(key, property);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
foreach (Group group in selectedSourceGroupCollection)
|
foreach (Property.Models.DirectoryInfo group in selectedSourceGroupCollection)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
for (int i = 0; i < group.SourceDirectoryFileInfoCollection.Length; i++)
|
||||||
{
|
{
|
||||||
destinationCollection = new();
|
destinationCollection = new();
|
||||||
property = group.PropertyCollection[i];
|
property = group.PropertyCollection[i];
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
"WorkingDirectoryName": "PharesApps",
|
"WorkingDirectoryName": "PharesApps",
|
||||||
"Windows": {
|
"Windows": {
|
||||||
"Configuration": {
|
"Configuration": {
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
"MaxImagesInDirectoryForTopLevelFirstPass": 50,
|
"MaxImagesInDirectoryForTopLevelFirstPass": 50,
|
||||||
|
@ -24,7 +24,7 @@ public class Configuration
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Set(Property.Models.Configuration propertyConfiguration) => _PropertyConfiguration = propertyConfiguration;
|
public void Set(Property.Models.Configuration configuration) => _PropertyConfiguration = configuration;
|
||||||
|
|
||||||
public void Update() => _PropertyConfiguration?.Update();
|
public void Update() => _PropertyConfiguration?.Update();
|
||||||
|
|
||||||
|
@ -41,10 +41,10 @@ public class PrepareForOld
|
|||||||
Property.Models.Configuration.Verify(propertyConfiguration);
|
Property.Models.Configuration.Verify(propertyConfiguration);
|
||||||
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
Models.Configuration configuration = Models.Stateless.Configuration.Get(isEnvironment, configurationRoot, workingDirectory, propertyConfiguration);
|
||||||
Verify(configuration);
|
Verify(configuration);
|
||||||
|
string modelName = nameof(modelName);
|
||||||
|
string predictorModelName = nameof(predictorModelName);
|
||||||
if (propertyConfiguration.IgnoreExtensions is null)
|
if (propertyConfiguration.IgnoreExtensions is null)
|
||||||
throw new Exception($"{nameof(propertyConfiguration.IgnoreExtensions)} is null!");
|
throw new Exception($"{nameof(propertyConfiguration.IgnoreExtensions)} is null!");
|
||||||
if (propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
|
||||||
throw new Exception($"{nameof(propertyConfiguration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
|
||||||
for (int i = 0; i < configuration.Spelling.Length; i++)
|
for (int i = 0; i < configuration.Spelling.Length; i++)
|
||||||
{
|
{
|
||||||
spellingA = configuration.Spelling[i];
|
spellingA = configuration.Spelling[i];
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
"WorkingDirectoryName": "PharesApps",
|
"WorkingDirectoryName": "PharesApps",
|
||||||
"Windows": {
|
"Windows": {
|
||||||
"Configuration": {
|
"Configuration": {
|
||||||
"DateGroup": "2022-04-07",
|
"DateGroup": "2022-07-24",
|
||||||
"FileNameDirectorySeparator": ".Z.",
|
"FileNameDirectorySeparator": ".Z.",
|
||||||
"ForcePropertyLastWriteTimeToCreationTime": false,
|
"ForcePropertyLastWriteTimeToCreationTime": false,
|
||||||
"KeepFullPath": false,
|
"KeepFullPath": false,
|
||||||
|
@ -271,10 +271,10 @@ public class PropertyCompareLogic
|
|||||||
string[] filteredSourceDirectoryFiles;
|
string[] filteredSourceDirectoryFiles;
|
||||||
List<PropertyCompare> collection = new();
|
List<PropertyCompare> collection = new();
|
||||||
bool isArg = aPropertySingletonDirectory.Contains(_Configuration.RootDirectory);
|
bool isArg = aPropertySingletonDirectory.Contains(_Configuration.RootDirectory);
|
||||||
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection;
|
||||||
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _MaxDegreeOfParallelism };
|
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _MaxDegreeOfParallelism };
|
||||||
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
||||||
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(aPropertySingletonDirectory, searchPattern, topDirectories);
|
groupCollection = Property.Models.Stateless.A_Property.GetGroupCollection(aPropertySingletonDirectory, searchPattern, topDirectories);
|
||||||
int count = groupCollection.Count;
|
|
||||||
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
||||||
{
|
{
|
||||||
if (!topDirectories.Any())
|
if (!topDirectories.Any())
|
||||||
@ -294,7 +294,7 @@ public class PropertyCompareLogic
|
|||||||
if (!filteredSourceDirectoryFiles.Any())
|
if (!filteredSourceDirectoryFiles.Any())
|
||||||
continue;
|
continue;
|
||||||
totalSeconds = (int)Math.Floor(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
totalSeconds = (int)Math.Floor(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
||||||
using ProgressBar progressBar = new(filteredSourceDirectoryFiles.Length, $"{g}) {r + 1:000} / {count:000} - {sourceDirectory} - {filteredSourceDirectoryFiles.Length} file(s) - {totalSeconds} total second(s)", options);
|
using ProgressBar progressBar = new(filteredSourceDirectoryFiles.Length, $"{r + 1:000}.{g} / {groupCollection.Count:000}) {filteredSourceDirectoryFiles.Length:000} file(s) - {totalSeconds} total second(s) - {sourceDirectory}", options);
|
||||||
_ = Parallel.For(0, filteredSourceDirectoryFiles.Length, parallelOptions, i =>
|
_ = Parallel.For(0, filteredSourceDirectoryFiles.Length, parallelOptions, i =>
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
@ -103,8 +103,8 @@ public class A_Property : Shared.Models.Properties.IProperty, IProperty
|
|||||||
year = minimumDateTime.Value.ToString("yyyy");
|
year = minimumDateTime.Value.ToString("yyyy");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
List<DateTime> datetimes = GetDateTimes();
|
List<DateTime> dateTimes = GetDateTimes();
|
||||||
year = datetimes.Min().ToString("yyyy");
|
year = dateTimes.Min().ToString("yyyy");
|
||||||
}
|
}
|
||||||
for (int i = 0; i < int.MaxValue; i++)
|
for (int i = 0; i < int.MaxValue; i++)
|
||||||
{
|
{
|
||||||
|
@ -98,4 +98,6 @@ public class Configuration
|
|||||||
throw new Exception($"{nameof(propertyConfiguration.RootDirectory)} must have a value and exits!");
|
throw new Exception($"{nameof(propertyConfiguration.RootDirectory)} must have a value and exits!");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void ChangeRootDirectory(string rootDirectory) => _RootDirectory = rootDirectory;
|
||||||
|
|
||||||
}
|
}
|
46
Property/Models/DirectoryInfo.cs
Normal file
46
Property/Models/DirectoryInfo.cs
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
namespace View_by_Distance.Property.Models;
|
||||||
|
|
||||||
|
public class DirectoryInfo
|
||||||
|
{
|
||||||
|
|
||||||
|
protected readonly FileInfo[] _SourceDirectoryFileInfoCollection;
|
||||||
|
protected readonly string[] _FilteredSourceDirectoryFiles;
|
||||||
|
protected readonly int _G;
|
||||||
|
protected readonly bool[] _Moved;
|
||||||
|
protected readonly bool?[] _Changed;
|
||||||
|
protected readonly A_Property?[] _PropertyCollection;
|
||||||
|
protected readonly FileInfo?[] _PropertyFileInfoCollection;
|
||||||
|
protected readonly int _R;
|
||||||
|
protected readonly string _SourceDirectory;
|
||||||
|
protected readonly bool[] _ValidImageFormatExtensionCollection;
|
||||||
|
protected readonly bool[] _WrongYear;
|
||||||
|
public FileInfo[] SourceDirectoryFileInfoCollection => _SourceDirectoryFileInfoCollection;
|
||||||
|
[Obsolete($"Use {nameof(SourceDirectoryFileInfoCollection)}")]
|
||||||
|
public string[] FilteredSourceDirectoryFiles => _FilteredSourceDirectoryFiles;
|
||||||
|
public int G => _G;
|
||||||
|
public bool[] Moved => _Moved;
|
||||||
|
public bool?[] Changed => _Changed;
|
||||||
|
public A_Property?[] PropertyCollection => _PropertyCollection;
|
||||||
|
public FileInfo?[] PropertyFileInfoCollection => _PropertyFileInfoCollection;
|
||||||
|
public int R => _R;
|
||||||
|
public string SourceDirectory => _SourceDirectory;
|
||||||
|
public bool[] ValidImageFormatExtensionCollection => _ValidImageFormatExtensionCollection;
|
||||||
|
public bool[] WrongYear => _WrongYear;
|
||||||
|
|
||||||
|
public DirectoryInfo(int g, string sourceDirectory, string[] filteredSourceDirectoryFiles, int r)
|
||||||
|
{
|
||||||
|
int length = filteredSourceDirectoryFiles.Length;
|
||||||
|
_G = g;
|
||||||
|
_R = r;
|
||||||
|
_Changed = Array.Empty<bool?>();
|
||||||
|
_SourceDirectory = sourceDirectory;
|
||||||
|
_Moved = Enumerable.Repeat(false, length).ToArray();
|
||||||
|
_WrongYear = Enumerable.Repeat(false, length).ToArray();
|
||||||
|
_FilteredSourceDirectoryFiles = filteredSourceDirectoryFiles;
|
||||||
|
_PropertyCollection = Enumerable.Repeat<A_Property?>(null, length).ToArray();
|
||||||
|
_ValidImageFormatExtensionCollection = Enumerable.Repeat(false, length).ToArray();
|
||||||
|
_PropertyFileInfoCollection = Enumerable.Repeat<FileInfo?>(null, length).ToArray();
|
||||||
|
_SourceDirectoryFileInfoCollection = (from l in filteredSourceDirectoryFiles select new FileInfo(l)).ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,32 +0,0 @@
|
|||||||
namespace View_by_Distance.Property.Models;
|
|
||||||
|
|
||||||
public class Group
|
|
||||||
{
|
|
||||||
|
|
||||||
protected readonly int _G;
|
|
||||||
protected readonly string _SourceDirectory;
|
|
||||||
protected readonly string[] _FilteredSourceDirectoryFiles;
|
|
||||||
protected readonly int _R;
|
|
||||||
protected readonly bool[] _ValidImageFormatExtentionCollection;
|
|
||||||
protected readonly FileInfo?[] _PropertyFileInfoCollection;
|
|
||||||
protected readonly A_Property?[] _PropertyCollection;
|
|
||||||
public int G => _G;
|
|
||||||
public string SourceDirectory => _SourceDirectory;
|
|
||||||
public string[] FilteredSourceDirectoryFiles => _FilteredSourceDirectoryFiles;
|
|
||||||
public int R => _R;
|
|
||||||
public bool[] ValidImageFormatExtentionCollection => _ValidImageFormatExtentionCollection;
|
|
||||||
public FileInfo?[] PropertyFileInfoCollection => _PropertyFileInfoCollection;
|
|
||||||
public A_Property?[] PropertyCollection => _PropertyCollection;
|
|
||||||
|
|
||||||
public Group(int g, string sourceDirectory, string[] filteredSourceDirectoryFiles, int r)
|
|
||||||
{
|
|
||||||
_G = g;
|
|
||||||
_SourceDirectory = sourceDirectory;
|
|
||||||
_FilteredSourceDirectoryFiles = filteredSourceDirectoryFiles;
|
|
||||||
_R = r;
|
|
||||||
_ValidImageFormatExtentionCollection = Enumerable.Repeat(false, filteredSourceDirectoryFiles.Length).ToArray();
|
|
||||||
_PropertyFileInfoCollection = Enumerable.Repeat<FileInfo?>(null, filteredSourceDirectoryFiles.Length).ToArray();
|
|
||||||
_PropertyCollection = Enumerable.Repeat<A_Property?>(null, filteredSourceDirectoryFiles.Length).ToArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
83
Property/Models/PropertyHolder.cs
Normal file
83
Property/Models/PropertyHolder.cs
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace View_by_Distance.Property.Models;
|
||||||
|
|
||||||
|
public class PropertyHolder
|
||||||
|
{
|
||||||
|
|
||||||
|
protected readonly bool? _Abandoned;
|
||||||
|
protected readonly bool? _Changed;
|
||||||
|
protected FileInfo? _FileInfo;
|
||||||
|
protected readonly int _G;
|
||||||
|
protected DateTime? _MinimumDateTime;
|
||||||
|
protected bool? _Moved;
|
||||||
|
protected readonly bool? _NoJson;
|
||||||
|
protected A_Property? _Property;
|
||||||
|
protected readonly int _R;
|
||||||
|
protected readonly string _RelativePath;
|
||||||
|
protected FileInfo? _ResizedFileInfo;
|
||||||
|
protected readonly string _SourceDirectory;
|
||||||
|
protected readonly string _SourceDirectoryFile;
|
||||||
|
protected bool? _ValidImageFormatExtension;
|
||||||
|
protected bool? _WrongYear;
|
||||||
|
public bool? Abandoned => _Abandoned;
|
||||||
|
public bool? Changed => _Changed;
|
||||||
|
public FileInfo? FileInfo => _FileInfo;
|
||||||
|
public int G => _G;
|
||||||
|
public DateTime? MinimumDateTime => _MinimumDateTime;
|
||||||
|
public bool? Moved => _Moved;
|
||||||
|
public bool? NoJson => _NoJson;
|
||||||
|
public A_Property? Property => _Property;
|
||||||
|
public int R => _R;
|
||||||
|
public string RelativePath => _RelativePath;
|
||||||
|
public FileInfo? ResizedFileInfo => _ResizedFileInfo;
|
||||||
|
public string SourceDirectory => _SourceDirectory;
|
||||||
|
public string SourceDirectoryFile => _SourceDirectoryFile;
|
||||||
|
public bool? ValidImageFormatExtension => _ValidImageFormatExtension;
|
||||||
|
public bool? WrongYear => _WrongYear;
|
||||||
|
|
||||||
|
public PropertyHolder()
|
||||||
|
{
|
||||||
|
_G = -1;
|
||||||
|
_SourceDirectory = string.Empty;
|
||||||
|
_SourceDirectoryFile = string.Empty;
|
||||||
|
_RelativePath = string.Empty;
|
||||||
|
_R = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
[JsonConstructor]
|
||||||
|
public PropertyHolder(int g, string sourceDirectory, string sourceDirectoryFile, string relativePath, int r, FileInfo? fileInfo, A_Property? property, bool? abandoned, bool? changed, bool? moved, bool? validImageFormatExtension, bool? wrongYear)
|
||||||
|
{
|
||||||
|
_Abandoned = abandoned;
|
||||||
|
_Changed = changed;
|
||||||
|
_FileInfo = fileInfo;
|
||||||
|
_G = g;
|
||||||
|
_Moved = moved;
|
||||||
|
_NoJson = abandoned is null;
|
||||||
|
_Property = property;
|
||||||
|
_R = r;
|
||||||
|
_RelativePath = relativePath;
|
||||||
|
_SourceDirectory = sourceDirectory;
|
||||||
|
_SourceDirectoryFile = sourceDirectoryFile;
|
||||||
|
_ValidImageFormatExtension = validImageFormatExtension;
|
||||||
|
_WrongYear = wrongYear;
|
||||||
|
_MinimumDateTime = Stateless.A_Property.GetMinimumDateTime(property);
|
||||||
|
}
|
||||||
|
|
||||||
|
internal void SetValidImageFormatExtension(bool isValidImageFormatExtension) => _ValidImageFormatExtension = isValidImageFormatExtension;
|
||||||
|
|
||||||
|
internal void SetWrongYear(bool wrongYear) => _WrongYear = wrongYear;
|
||||||
|
|
||||||
|
internal void SetMoved(bool moved) => _Moved = moved;
|
||||||
|
|
||||||
|
public void SetResizedFileInfo(FileInfo fileInfo) => _ResizedFileInfo = fileInfo;
|
||||||
|
|
||||||
|
internal void Update(FileInfo fileInfo, A_Property property)
|
||||||
|
{
|
||||||
|
_Property = property;
|
||||||
|
_FileInfo = fileInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool Any() => (_Abandoned.HasValue && _Abandoned.Value) || (_Changed.HasValue && _Changed.Value) || (_Moved.HasValue && _Moved.Value) || (_NoJson.HasValue && _NoJson.Value);
|
||||||
|
|
||||||
|
}
|
@ -14,47 +14,62 @@ namespace View_by_Distance.Property.Models;
|
|||||||
public class PropertyLogic
|
public class PropertyLogic
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected readonly List<string> _ExceptionsDirectories;
|
||||||
protected readonly Dictionary<int, int[]> _IndicesFromNew;
|
protected readonly Dictionary<int, int[]> _IndicesFromNew;
|
||||||
protected readonly Dictionary<int, int[]> _IndicesFromOld;
|
protected readonly Dictionary<int, int[]> _IndicesFromOld;
|
||||||
|
protected readonly Dictionary<int, string[]> _NamedFaceInfo;
|
||||||
|
|
||||||
public List<string> AngleBracketCollection { get; }
|
public List<string> AngleBracketCollection { get; }
|
||||||
public Dictionary<int, int[]> IndicesFromNew => _IndicesFromNew;
|
public Dictionary<int, int[]> IndicesFromNew => _IndicesFromNew;
|
||||||
public Dictionary<int, int[]> IndicesFromOld => _IndicesFromOld;
|
public Dictionary<int, int[]> IndicesFromOld => _IndicesFromOld;
|
||||||
|
public Dictionary<int, string[]> NamedFaceInfo => _NamedFaceInfo;
|
||||||
|
public List<string> ExceptionsDirectories => _ExceptionsDirectories;
|
||||||
|
|
||||||
private readonly Serilog.ILogger? _Log;
|
private readonly Serilog.ILogger? _Log;
|
||||||
private readonly string[] _VerifyToSeason;
|
private readonly string[] _VerifyToSeason;
|
||||||
private readonly int _MaxDegreeOfParallelism;
|
private readonly int _MaxDegreeOfParallelism;
|
||||||
private readonly ASCIIEncoding _ASCIIEncoding;
|
private readonly ASCIIEncoding _ASCIIEncoding;
|
||||||
private readonly Configuration _Configuration;
|
private readonly Configuration _Configuration;
|
||||||
private readonly List<string> _ExceptionsDirectories;
|
|
||||||
private readonly JsonSerializerOptions _WriteIndentedJsonSerializerOptions;
|
private readonly JsonSerializerOptions _WriteIndentedJsonSerializerOptions;
|
||||||
|
|
||||||
public PropertyLogic(int maxDegreeOfParallelism, Configuration configuration, string[] verifyToSeason)
|
public PropertyLogic(int maxDegreeOfParallelism, Configuration configuration)
|
||||||
{
|
{
|
||||||
_Configuration = configuration;
|
_Configuration = configuration;
|
||||||
_ExceptionsDirectories = new();
|
_ExceptionsDirectories = new();
|
||||||
_VerifyToSeason = verifyToSeason;
|
|
||||||
_ASCIIEncoding = new ASCIIEncoding();
|
_ASCIIEncoding = new ASCIIEncoding();
|
||||||
AngleBracketCollection = new List<string>();
|
AngleBracketCollection = new List<string>();
|
||||||
_Log = Serilog.Log.ForContext<A_Property>();
|
_Log = Serilog.Log.ForContext<A_Property>();
|
||||||
_MaxDegreeOfParallelism = maxDegreeOfParallelism;
|
_MaxDegreeOfParallelism = maxDegreeOfParallelism;
|
||||||
_WriteIndentedJsonSerializerOptions = new JsonSerializerOptions { WriteIndented = true };
|
_WriteIndentedJsonSerializerOptions = new JsonSerializerOptions { WriteIndented = true };
|
||||||
if (verifyToSeason is null)
|
if (configuration.VerifyToSeason is null || !configuration.VerifyToSeason.Any())
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
|
_VerifyToSeason = configuration.VerifyToSeason.Select(l => Path.Combine(configuration.RootDirectory, l)).ToArray();
|
||||||
string json;
|
string json;
|
||||||
|
string[] files;
|
||||||
string fullPath;
|
string fullPath;
|
||||||
Dictionary<int, int[]>? indicesFromOld;
|
Dictionary<int, int[]>? indicesFromOld;
|
||||||
|
Dictionary<int, string[]>? namedFaceInfo;
|
||||||
List<KeyValuePair<int, int[]>>? collection;
|
List<KeyValuePair<int, int[]>>? collection;
|
||||||
Dictionary<int, int[]> indicesFromNew = new();
|
Dictionary<int, int[]> indicesFromNew = new();
|
||||||
string? rootDirectoryParent = Path.GetDirectoryName(configuration.RootDirectory);
|
string? rootDirectoryParent = Path.GetDirectoryName(configuration.RootDirectory);
|
||||||
if (string.IsNullOrEmpty(rootDirectoryParent))
|
if (string.IsNullOrEmpty(rootDirectoryParent))
|
||||||
throw new Exception($"{nameof(rootDirectoryParent)} is null!");
|
throw new Exception($"{nameof(rootDirectoryParent)} is null!");
|
||||||
string keyValuePairsJsonFile = Path.Combine(rootDirectoryParent, "keyValuePairs-637864726339738801.json");
|
files = Directory.GetFiles(rootDirectoryParent, "*Named*.json", SearchOption.TopDirectoryOnly);
|
||||||
if (!File.Exists(keyValuePairsJsonFile))
|
if (files.Length != 1)
|
||||||
|
namedFaceInfo = new();
|
||||||
|
else
|
||||||
|
{
|
||||||
|
json = File.ReadAllText(files[0]);
|
||||||
|
namedFaceInfo = JsonSerializer.Deserialize<Dictionary<int, string[]>>(json);
|
||||||
|
if (namedFaceInfo is null)
|
||||||
|
throw new Exception($"{nameof(namedFaceInfo)} is null!");
|
||||||
|
}
|
||||||
|
files = Directory.GetFiles(rootDirectoryParent, "*keyValuePairs*.json", SearchOption.TopDirectoryOnly);
|
||||||
|
if (files.Length != 1)
|
||||||
indicesFromOld = new();
|
indicesFromOld = new();
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
json = File.ReadAllText(keyValuePairsJsonFile);
|
json = File.ReadAllText(files[0]);
|
||||||
indicesFromOld = JsonSerializer.Deserialize<Dictionary<int, int[]>>(json);
|
indicesFromOld = JsonSerializer.Deserialize<Dictionary<int, int[]>>(json);
|
||||||
if (indicesFromOld is null)
|
if (indicesFromOld is null)
|
||||||
throw new Exception($"{nameof(indicesFromOld)} is null!");
|
throw new Exception($"{nameof(indicesFromOld)} is null!");
|
||||||
@ -77,6 +92,7 @@ public class PropertyLogic
|
|||||||
indicesFromNew.Add(keyValuePair.Key, keyValuePair.Value);
|
indicesFromNew.Add(keyValuePair.Key, keyValuePair.Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
_NamedFaceInfo = namedFaceInfo;
|
||||||
_IndicesFromNew = indicesFromNew;
|
_IndicesFromNew = indicesFromNew;
|
||||||
_IndicesFromOld = indicesFromOld;
|
_IndicesFromOld = indicesFromOld;
|
||||||
}
|
}
|
||||||
@ -124,9 +140,15 @@ public class PropertyLogic
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static List<DateTime> GetMetadataDateTimesByPattern(string dateTimeFormat, FileInfo filteredSourceDirectoryFileInfo)
|
||||||
|
{
|
||||||
|
List<DateTime> results = GetMetadataDateTimesByPattern(dateTimeFormat, filteredSourceDirectoryFileInfo.FullName);
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
#pragma warning disable CA1416
|
#pragma warning disable CA1416
|
||||||
|
|
||||||
private A_Property GetImageProperty(string angleBracket, string filteredSourceDirectoryFile, bool populateId, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions, int? id, List<int> indices)
|
private A_Property GetImageProperty(string angleBracket, string filteredSourceDirectoryFile, bool populateId, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions, int? id, List<int> indices, long fileInfoLength, DateTime creationTime, DateTime lastWriteTime)
|
||||||
{
|
{
|
||||||
A_Property result;
|
A_Property result;
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
@ -149,11 +171,7 @@ public class PropertyLogic
|
|||||||
DateTime? dateTimeOriginal = null;
|
DateTime? dateTimeOriginal = null;
|
||||||
string orientation = string.Empty;
|
string orientation = string.Empty;
|
||||||
DateTime? dateTimeDigitized = null;
|
DateTime? dateTimeDigitized = null;
|
||||||
FileInfo fileInfo = new(filteredSourceDirectoryFile);
|
if (!isValidImageFormatExtension && isValidMetadataExtensions)
|
||||||
long fileInfoLength = fileInfo.Length;
|
|
||||||
DateTime creationTime = fileInfo.CreationTime;
|
|
||||||
DateTime lastWriteTime = fileInfo.LastWriteTime;
|
|
||||||
if (isValidMetadataExtensions)
|
|
||||||
{
|
{
|
||||||
dateTimeFormat = "ddd MMM dd HH:mm:ss yyyy";
|
dateTimeFormat = "ddd MMM dd HH:mm:ss yyyy";
|
||||||
List<DateTime> dateTimes = GetMetadataDateTimesByPattern(dateTimeFormat, filteredSourceDirectoryFile);
|
List<DateTime> dateTimes = GetMetadataDateTimesByPattern(dateTimeFormat, filteredSourceDirectoryFile);
|
||||||
@ -294,9 +312,173 @@ public class PropertyLogic
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private A_Property GetImagePropertyB(string angleBracket, FileInfo filteredSourceDirectoryFileInfo, bool populateId, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions, int? id, List<int> indices)
|
||||||
|
{
|
||||||
|
A_Property result;
|
||||||
|
if (_Log is null)
|
||||||
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
|
if (_Configuration.WriteBitmapDataBytes is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.WriteBitmapDataBytes)} is null!");
|
||||||
|
long ticks;
|
||||||
|
byte[] bytes;
|
||||||
|
string value;
|
||||||
|
int encodingHash;
|
||||||
|
int? width = null;
|
||||||
|
int? height = null;
|
||||||
|
string dateTimeFormat;
|
||||||
|
DateTime checkDateTime;
|
||||||
|
DateTime? dateTime = null;
|
||||||
|
PropertyItem? propertyItem;
|
||||||
|
string make = string.Empty;
|
||||||
|
string model = string.Empty;
|
||||||
|
DateTime? gpsDateStamp = null;
|
||||||
|
DateTime? dateTimeOriginal = null;
|
||||||
|
string orientation = string.Empty;
|
||||||
|
DateTime? dateTimeDigitized = null;
|
||||||
|
if (!isValidImageFormatExtension && isValidMetadataExtensions)
|
||||||
|
{
|
||||||
|
dateTimeFormat = "ddd MMM dd HH:mm:ss yyyy";
|
||||||
|
List<DateTime> dateTimes = GetMetadataDateTimesByPattern(dateTimeFormat, filteredSourceDirectoryFileInfo);
|
||||||
|
if (dateTimes.Any())
|
||||||
|
dateTimeOriginal = dateTimes.Min();
|
||||||
|
}
|
||||||
|
else if (!isIgnoreExtension && isValidImageFormatExtension)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using Image image = Image.FromFile(filteredSourceDirectoryFileInfo.FullName);
|
||||||
|
if (populateId && (id is null || !indices.Any()))
|
||||||
|
{
|
||||||
|
using Bitmap bitmap = new(image);
|
||||||
|
Rectangle rectangle = new(0, 0, image.Width, image.Height);
|
||||||
|
BitmapData bitmapData = bitmap.LockBits(rectangle, ImageLockMode.ReadOnly, bitmap.PixelFormat);
|
||||||
|
IntPtr intPtr = bitmapData.Scan0;
|
||||||
|
int length = bitmapData.Stride * bitmap.Height;
|
||||||
|
bytes = new byte[length];
|
||||||
|
Marshal.Copy(intPtr, bytes, 0, length);
|
||||||
|
bitmap.UnlockBits(bitmapData);
|
||||||
|
if (id is null)
|
||||||
|
{
|
||||||
|
ticks = DateTime.Now.Ticks;
|
||||||
|
id = Stateless.A_Property.GetDeterministicHashCode(bytes);
|
||||||
|
if (_MaxDegreeOfParallelism < 2)
|
||||||
|
ticks = LogDelta(ticks, nameof(Stateless.A_Property.GetDeterministicHashCode));
|
||||||
|
}
|
||||||
|
if (_Configuration.WriteBitmapDataBytes.Value)
|
||||||
|
{
|
||||||
|
FileInfo contentFileInfo = new(Path.Combine(angleBracket.Replace("<>", "()"), filteredSourceDirectoryFileInfo.Name));
|
||||||
|
File.WriteAllBytes(Path.ChangeExtension(contentFileInfo.FullName, string.Empty), bytes);
|
||||||
|
}
|
||||||
|
if (_IndicesFromNew.ContainsKey(id.Value) && _IndicesFromNew[id.Value].Any())
|
||||||
|
indices.AddRange(_IndicesFromNew[id.Value]);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ticks = DateTime.Now.Ticks;
|
||||||
|
string encoding = Encoding.Default.GetString(bytes);
|
||||||
|
if (_MaxDegreeOfParallelism < 2)
|
||||||
|
ticks = LogDelta(ticks, nameof(Encoding.Default.GetString));
|
||||||
|
encodingHash = Stateless.A_Property.GetDeterministicHashCode(encoding);
|
||||||
|
if (_MaxDegreeOfParallelism < 2)
|
||||||
|
ticks = LogDelta(ticks, nameof(Stateless.A_Property.GetDeterministicHashCode));
|
||||||
|
if (!_IndicesFromOld.ContainsKey(encodingHash))
|
||||||
|
indices.Add(encodingHash);
|
||||||
|
else
|
||||||
|
indices.AddRange(_IndicesFromOld[encodingHash]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
width = image.Width;
|
||||||
|
height = image.Height;
|
||||||
|
dateTimeFormat = Stateless.A_Property.DateTimeFormat();
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.DateTime))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.DateTime);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
if (value.Length > dateTimeFormat.Length)
|
||||||
|
value = value[..dateTimeFormat.Length];
|
||||||
|
if (value.Length == dateTimeFormat.Length && DateTime.TryParseExact(value, dateTimeFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out checkDateTime))
|
||||||
|
dateTime = checkDateTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.DateTimeDigitized))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.DateTimeDigitized);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
if (value.Length > dateTimeFormat.Length)
|
||||||
|
value = value[..dateTimeFormat.Length];
|
||||||
|
if (value.Length == dateTimeFormat.Length && DateTime.TryParseExact(value, dateTimeFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out checkDateTime))
|
||||||
|
dateTimeDigitized = checkDateTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.DateTimeOriginal))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.DateTimeOriginal);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
if (value.Length > dateTimeFormat.Length)
|
||||||
|
value = value[..dateTimeFormat.Length];
|
||||||
|
if (value.Length == dateTimeFormat.Length && DateTime.TryParseExact(value, dateTimeFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out checkDateTime))
|
||||||
|
dateTimeOriginal = checkDateTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.GPSDateStamp))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.GPSDateStamp);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
if (value.Length > dateTimeFormat.Length)
|
||||||
|
value = value[..dateTimeFormat.Length];
|
||||||
|
if (value.Length == dateTimeFormat.Length && DateTime.TryParseExact(value, dateTimeFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out checkDateTime))
|
||||||
|
gpsDateStamp = checkDateTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.Make))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.Make);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
make = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.Model))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.Model);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = _ASCIIEncoding.GetString(propertyItem.Value, 0, propertyItem.Len - 1);
|
||||||
|
model = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (image.PropertyIdList.Contains((int)IExif.Tags.Orientation))
|
||||||
|
{
|
||||||
|
propertyItem = image.GetPropertyItem((int)IExif.Tags.Orientation);
|
||||||
|
if (propertyItem?.Value is not null)
|
||||||
|
{
|
||||||
|
value = BitConverter.ToInt16(propertyItem.Value, 0).ToString();
|
||||||
|
orientation = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
_Log.Info(string.Concat(new StackFrame().GetMethod()?.Name, " <", filteredSourceDirectoryFileInfo.Name, ">"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
dateTimeOriginal = null;
|
||||||
|
result = new(filteredSourceDirectoryFileInfo.CreationTime, dateTime, dateTimeDigitized, dateTimeOriginal, filteredSourceDirectoryFileInfo.Length, gpsDateStamp, height, id, indices.ToArray(), filteredSourceDirectoryFileInfo.LastWriteTime, make, model, orientation, width);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
#pragma warning restore CA1416
|
#pragma warning restore CA1416
|
||||||
|
|
||||||
private A_Property GetProperty(List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, List<string> parseExceptions, bool firstPass, string angleBracket, string filteredSourceDirectoryFile, FileInfo fileInfo, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions)
|
private A_Property GetPropertyA(List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, List<string> parseExceptions, bool firstPass, string angleBracket, FileInfo filteredSourceDirectoryFileInfo, FileInfo fileInfo, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions)
|
||||||
{
|
{
|
||||||
A_Property? result;
|
A_Property? result;
|
||||||
if (_Configuration.ForcePropertyLastWriteTimeToCreationTime is null)
|
if (_Configuration.ForcePropertyLastWriteTimeToCreationTime is null)
|
||||||
@ -309,7 +491,7 @@ public class PropertyLogic
|
|||||||
int? id = null;
|
int? id = null;
|
||||||
List<int> indices = new();
|
List<int> indices = new();
|
||||||
bool hasWrongYearProperty = false;
|
bool hasWrongYearProperty = false;
|
||||||
string[] changesFrom = new string[] { "B_Metadata" };
|
string[] changesFrom = Array.Empty<string>();
|
||||||
bool populateId = !firstPass && _Configuration.PopulatePropertyId.Value;
|
bool populateId = !firstPass && _Configuration.PopulatePropertyId.Value;
|
||||||
List<DateTime> dateTimes = (from l in filteredSourceDirectoryFileTuples where changesFrom.Contains(l.Item1) select l.Item2).ToList();
|
List<DateTime> dateTimes = (from l in filteredSourceDirectoryFileTuples where changesFrom.Contains(l.Item1) select l.Item2).ToList();
|
||||||
if (!fileInfo.Exists)
|
if (!fileInfo.Exists)
|
||||||
@ -352,7 +534,7 @@ public class PropertyLogic
|
|||||||
id = property?.Id;
|
id = property?.Id;
|
||||||
if (property is not null && property.Indices.Any())
|
if (property is not null && property.Indices.Any())
|
||||||
indices = property.Indices.ToList();
|
indices = property.Indices.ToList();
|
||||||
property = GetImageProperty(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
}
|
}
|
||||||
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && !property.Indices.Any())
|
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && !property.Indices.Any())
|
||||||
{
|
{
|
||||||
@ -360,25 +542,32 @@ public class PropertyLogic
|
|||||||
id = property?.Id;
|
id = property?.Id;
|
||||||
if (property is not null && property.Indices.Any())
|
if (property is not null && property.Indices.Any())
|
||||||
indices = property.Indices.ToList();
|
indices = property.Indices.ToList();
|
||||||
property = GetImageProperty(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
}
|
}
|
||||||
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && property.LastWriteTime != new FileInfo(filteredSourceDirectoryFile).LastWriteTime)
|
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && property.LastWriteTime != filteredSourceDirectoryFileInfo.LastWriteTime)
|
||||||
{
|
{
|
||||||
check = false;
|
check = false;
|
||||||
id = null;
|
id = null;
|
||||||
indices.Clear();
|
indices.Clear();
|
||||||
property = GetImageProperty(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
}
|
}
|
||||||
if (!isIgnoreExtension && isValidImageFormatExtension && property?.Width is not null && property?.Height is not null && property.Width.Value == property.Height.Value && File.Exists(filteredSourceDirectoryFile))
|
if (!isIgnoreExtension && isValidImageFormatExtension && property?.Width is not null && property?.Height is not null && property.Width.Value == property.Height.Value && filteredSourceDirectoryFileInfo.Exists)
|
||||||
{
|
{
|
||||||
check = false;
|
check = false;
|
||||||
id = property?.Id;
|
id = property?.Id;
|
||||||
if (property is not null && property.Indices.Any())
|
if (property is not null && property.Indices.Any())
|
||||||
indices = property.Indices.ToList();
|
indices = property.Indices.ToList();
|
||||||
property = GetImageProperty(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
if (property?.Width is not null && property?.Height is not null && property.Width.Value != property.Height.Value)
|
if (property?.Width is not null && property?.Height is not null && property.Width.Value != property.Height.Value)
|
||||||
throw new Exception("Was square!");
|
throw new Exception("Was square!");
|
||||||
}
|
}
|
||||||
|
// if (filteredSourceDirectoryFileFileInfo.CreationTime != property?.CreationTime || filteredSourceDirectoryFileFileInfo.LastWriteTime != property?.LastWriteTime)
|
||||||
|
// {
|
||||||
|
// check = false;
|
||||||
|
// id = null;
|
||||||
|
// indices.Clear();
|
||||||
|
// property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
// }
|
||||||
if (json.Contains("WrongYear"))
|
if (json.Contains("WrongYear"))
|
||||||
{
|
{
|
||||||
id = property?.Id;
|
id = property?.Id;
|
||||||
@ -402,7 +591,7 @@ public class PropertyLogic
|
|||||||
}
|
}
|
||||||
if (result is null)
|
if (result is null)
|
||||||
{
|
{
|
||||||
result = GetImageProperty(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
result = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
json = JsonSerializer.Serialize(result, _WriteIndentedJsonSerializerOptions);
|
json = JsonSerializer.Serialize(result, _WriteIndentedJsonSerializerOptions);
|
||||||
if (populateId && IPath.WriteAllText(fileInfo.FullName, json, compareBeforeWrite: true))
|
if (populateId && IPath.WriteAllText(fileInfo.FullName, json, compareBeforeWrite: true))
|
||||||
{
|
{
|
||||||
@ -429,7 +618,145 @@ public class PropertyLogic
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool AnyFilesMoved(Group group)
|
private A_Property GetPropertyB(List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, List<string> parseExceptions, bool firstPass, string angleBracket, FileInfo filteredSourceDirectoryFileInfo, A_Property? property, FileInfo fileInfo, bool isIgnoreExtension, bool isValidImageFormatExtension, bool isValidMetadataExtensions)
|
||||||
|
{
|
||||||
|
A_Property? result;
|
||||||
|
if (_Configuration.ForcePropertyLastWriteTimeToCreationTime is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.ForcePropertyLastWriteTimeToCreationTime)} is null!");
|
||||||
|
if (_Configuration.PopulatePropertyId is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.PopulatePropertyId)} is null!");
|
||||||
|
if (_Configuration.PropertiesChangedForProperty is null)
|
||||||
|
throw new Exception($"{nameof(_Configuration.PropertiesChangedForProperty)} is null!");
|
||||||
|
string json;
|
||||||
|
int? id = null;
|
||||||
|
List<int> indices = new();
|
||||||
|
bool hasWrongYearProperty = false;
|
||||||
|
string[] changesFrom = Array.Empty<string>();
|
||||||
|
bool populateId = !firstPass && _Configuration.PopulatePropertyId.Value;
|
||||||
|
List<DateTime> dateTimes = (from l in filteredSourceDirectoryFileTuples where changesFrom.Contains(l.Item1) select l.Item2).ToList();
|
||||||
|
if (!fileInfo.Exists)
|
||||||
|
{
|
||||||
|
if (fileInfo.Directory?.Parent is null)
|
||||||
|
throw new Exception();
|
||||||
|
string parentCheck = Path.Combine(fileInfo.Directory.Parent.FullName, fileInfo.Name);
|
||||||
|
if (File.Exists(parentCheck))
|
||||||
|
{
|
||||||
|
File.Move(parentCheck, fileInfo.FullName);
|
||||||
|
fileInfo.Refresh();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (_Configuration.ForcePropertyLastWriteTimeToCreationTime.Value && !fileInfo.Exists && File.Exists(Path.ChangeExtension(fileInfo.FullName, ".delete")))
|
||||||
|
{
|
||||||
|
File.Move(Path.ChangeExtension(fileInfo.FullName, ".delete"), fileInfo.FullName);
|
||||||
|
fileInfo.Refresh();
|
||||||
|
}
|
||||||
|
if (_Configuration.ForcePropertyLastWriteTimeToCreationTime.Value && fileInfo.Exists && fileInfo.LastWriteTime != fileInfo.CreationTime)
|
||||||
|
{
|
||||||
|
File.SetLastWriteTime(fileInfo.FullName, fileInfo.CreationTime);
|
||||||
|
fileInfo.Refresh();
|
||||||
|
}
|
||||||
|
if (_Configuration.PropertiesChangedForProperty.Value)
|
||||||
|
result = null;
|
||||||
|
else if (!fileInfo.Exists)
|
||||||
|
result = null;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
json = File.ReadAllText(fileInfo.FullName);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
bool check = true;
|
||||||
|
property = JsonSerializer.Deserialize<A_Property>(json);
|
||||||
|
if (!isIgnoreExtension && isValidImageFormatExtension && ((populateId && property?.Id is null) || property?.Width is null || property?.Height is null))
|
||||||
|
{
|
||||||
|
check = false;
|
||||||
|
id = property?.Id;
|
||||||
|
if (property is not null && property.Indices.Any())
|
||||||
|
indices = property.Indices.ToList();
|
||||||
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
}
|
||||||
|
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && !property.Indices.Any())
|
||||||
|
{
|
||||||
|
check = false;
|
||||||
|
id = property?.Id;
|
||||||
|
if (property is not null && property.Indices.Any())
|
||||||
|
indices = property.Indices.ToList();
|
||||||
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
}
|
||||||
|
if (!isIgnoreExtension && isValidImageFormatExtension && populateId && property is not null && property.LastWriteTime != filteredSourceDirectoryFileInfo.LastWriteTime)
|
||||||
|
{
|
||||||
|
check = false;
|
||||||
|
id = null;
|
||||||
|
indices.Clear();
|
||||||
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
}
|
||||||
|
if (!isIgnoreExtension && isValidImageFormatExtension && property?.Width is not null && property?.Height is not null && property.Width.Value == property.Height.Value && filteredSourceDirectoryFileInfo.Exists)
|
||||||
|
{
|
||||||
|
check = false;
|
||||||
|
id = property?.Id;
|
||||||
|
if (property is not null && property.Indices.Any())
|
||||||
|
indices = property.Indices.ToList();
|
||||||
|
property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
if (property?.Width is not null && property?.Height is not null && property.Width.Value != property.Height.Value)
|
||||||
|
throw new Exception("Was square!");
|
||||||
|
}
|
||||||
|
// if (filteredSourceDirectoryFileFileInfo.CreationTime != property?.CreationTime || filteredSourceDirectoryFileFileInfo.LastWriteTime != property?.LastWriteTime)
|
||||||
|
// {
|
||||||
|
// check = false;
|
||||||
|
// id = null;
|
||||||
|
// indices.Clear();
|
||||||
|
// property = GetImagePropertyB(angleBracket, filteredSourceDirectoryFile, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
// }
|
||||||
|
if (json.Contains("WrongYear"))
|
||||||
|
{
|
||||||
|
id = property?.Id;
|
||||||
|
hasWrongYearProperty = true;
|
||||||
|
}
|
||||||
|
if (property is null)
|
||||||
|
throw new Exception();
|
||||||
|
if (!check)
|
||||||
|
result = null;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = property;
|
||||||
|
filteredSourceDirectoryFileTuples.Add(new Tuple<string, DateTime>(nameof(A_Property), fileInfo.LastWriteTime));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
result = null;
|
||||||
|
parseExceptions.Add(nameof(A_Property));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (result is null)
|
||||||
|
{
|
||||||
|
result = GetImagePropertyB(angleBracket, filteredSourceDirectoryFileInfo, populateId, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions, id, indices);
|
||||||
|
json = JsonSerializer.Serialize(result, _WriteIndentedJsonSerializerOptions);
|
||||||
|
if (populateId && IPath.WriteAllText(fileInfo.FullName, json, compareBeforeWrite: true))
|
||||||
|
{
|
||||||
|
if (!_Configuration.ForcePropertyLastWriteTimeToCreationTime.Value && (!fileInfo.Exists || fileInfo.LastWriteTime == fileInfo.CreationTime))
|
||||||
|
filteredSourceDirectoryFileTuples.Add(new Tuple<string, DateTime>(nameof(A_Property), DateTime.Now));
|
||||||
|
else
|
||||||
|
{
|
||||||
|
File.SetLastWriteTime(fileInfo.FullName, fileInfo.CreationTime);
|
||||||
|
fileInfo.Refresh();
|
||||||
|
filteredSourceDirectoryFileTuples.Add(new Tuple<string, DateTime>(nameof(A_Property), fileInfo.CreationTime));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (hasWrongYearProperty)
|
||||||
|
{
|
||||||
|
json = JsonSerializer.Serialize(result, _WriteIndentedJsonSerializerOptions);
|
||||||
|
if (IPath.WriteAllText(fileInfo.FullName, json, compareBeforeWrite: true))
|
||||||
|
{
|
||||||
|
File.SetLastWriteTime(fileInfo.FullName, fileInfo.CreationTime);
|
||||||
|
fileInfo.Refresh();
|
||||||
|
filteredSourceDirectoryFileTuples.Add(new Tuple<string, DateTime>(nameof(A_Property), fileInfo.CreationTime));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool AnyFilesMoved(string sourceDirectory, PropertyHolder[] filteredPropertyHolderCollection)
|
||||||
{
|
{
|
||||||
bool result = false;
|
bool result = false;
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
@ -440,52 +767,58 @@ public class PropertyLogic
|
|||||||
bool? isWrongYear;
|
bool? isWrongYear;
|
||||||
string seasonName;
|
string seasonName;
|
||||||
DateTime dateTime;
|
DateTime dateTime;
|
||||||
A_Property? property;
|
|
||||||
string destinationFile;
|
string destinationFile;
|
||||||
DateTime minimumDateTime;
|
DateTime minimumDateTime;
|
||||||
FileInfo? propertyFileInfo;
|
|
||||||
string destinationDirectory;
|
string destinationDirectory;
|
||||||
string[] sourceDirectorySegments;
|
string[] sourceDirectorySegments;
|
||||||
string filteredSourceDirectoryFile;
|
|
||||||
FileInfo filteredSourceDirectoryFileInfo;
|
|
||||||
DateTime directoryMaximumOfMinimumDateTime = DateTime.MinValue;
|
DateTime directoryMaximumOfMinimumDateTime = DateTime.MinValue;
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
foreach (PropertyHolder propertyHolder in filteredPropertyHolderCollection)
|
||||||
{
|
{
|
||||||
if (!group.ValidImageFormatExtentionCollection[i])
|
if (propertyHolder.ValidImageFormatExtension is null || !propertyHolder.ValidImageFormatExtension.Value)
|
||||||
continue;
|
continue;
|
||||||
property = group.PropertyCollection[i];
|
if (propertyHolder.Property is null)
|
||||||
if (property is null)
|
|
||||||
continue;
|
continue;
|
||||||
minimumDateTime = Stateless.A_Property.GetMinimumDateTime(property);
|
if (propertyHolder.FileInfo is null)
|
||||||
|
continue;
|
||||||
|
minimumDateTime = Stateless.A_Property.GetMinimumDateTime(propertyHolder.Property);
|
||||||
if (minimumDateTime > directoryMaximumOfMinimumDateTime)
|
if (minimumDateTime > directoryMaximumOfMinimumDateTime)
|
||||||
directoryMaximumOfMinimumDateTime = minimumDateTime;
|
directoryMaximumOfMinimumDateTime = minimumDateTime;
|
||||||
filteredSourceDirectoryFile = group.FilteredSourceDirectoryFiles[i];
|
if (minimumDateTime != propertyHolder.FileInfo.CreationTime)
|
||||||
filteredSourceDirectoryFileInfo = new(filteredSourceDirectoryFile);
|
|
||||||
if (minimumDateTime != filteredSourceDirectoryFileInfo.CreationTime)
|
|
||||||
{
|
{
|
||||||
(isWrongYear, matches) = property.IsWrongYear(filteredSourceDirectoryFile, minimumDateTime);
|
(isWrongYear, matches) = propertyHolder.Property.IsWrongYear(propertyHolder.FileInfo.FullName, minimumDateTime);
|
||||||
if (isWrongYear is null || !isWrongYear.Value)
|
if (isWrongYear is null || !isWrongYear.Value)
|
||||||
dateTime = minimumDateTime;
|
dateTime = minimumDateTime;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (isWrongYear.HasValue && isWrongYear.Value)
|
if (isWrongYear.HasValue && isWrongYear.Value)
|
||||||
_Log.Information($"Wrong Year? <{filteredSourceDirectoryFile}>");
|
{
|
||||||
|
lock (propertyHolder)
|
||||||
|
propertyHolder.SetWrongYear(true);
|
||||||
|
}
|
||||||
if (!matches.Any())
|
if (!matches.Any())
|
||||||
continue;
|
continue;
|
||||||
if (!DateTime.TryParseExact(matches[0], "yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTime))
|
if (!DateTime.TryParseExact(matches[0], "yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out dateTime))
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
try
|
try
|
||||||
{ File.SetCreationTime(filteredSourceDirectoryFile, dateTime); }
|
{ File.SetCreationTime(propertyHolder.FileInfo.FullName, dateTime); }
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{ }
|
{ }
|
||||||
}
|
}
|
||||||
if (!_VerifyToSeason.Contains(group.SourceDirectory))
|
if (!_VerifyToSeason.Contains(sourceDirectory))
|
||||||
continue;
|
continue;
|
||||||
propertyFileInfo = group.PropertyFileInfoCollection[i];
|
if (!propertyHolder.FileInfo.FullName.Contains("zzz ") && !propertyHolder.FileInfo.FullName.Contains("Camera ") && propertyHolder.Property.DateTimeOriginal.HasValue)
|
||||||
if (propertyFileInfo is null)
|
{
|
||||||
continue;
|
TimeSpan timeSpan = new(propertyHolder.Property.DateTimeOriginal.Value.Ticks - propertyHolder.Property.LastWriteTime.Ticks);
|
||||||
sourceDirectorySegments = Path.GetFileName(group.SourceDirectory).Split(' ');
|
if (timeSpan.TotalHours > 6)
|
||||||
|
{
|
||||||
|
_Log.Warning($"*** propertyHolder.FileInfo.FullName <{propertyHolder.FileInfo.FullName}>");
|
||||||
|
_Log.Warning($"*** DateTimeOriginal <{propertyHolder.Property.DateTimeOriginal.Value}>");
|
||||||
|
_Log.Warning($"*** LastWriteTime <{propertyHolder.Property.LastWriteTime}>");
|
||||||
|
_Log.Warning($"*** TotalHours <{timeSpan.TotalHours}>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sourceDirectorySegments = Path.GetFileName(sourceDirectory).Split(' ');
|
||||||
(season, seasonName) = Stateless.A_Property.GetSeason(minimumDateTime.DayOfYear);
|
(season, seasonName) = Stateless.A_Property.GetSeason(minimumDateTime.DayOfYear);
|
||||||
if (sourceDirectorySegments[0] == "zzz")
|
if (sourceDirectorySegments[0] == "zzz")
|
||||||
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"zzz ={minimumDateTime:yyyy}.{season} {seasonName} {string.Join(' ', sourceDirectorySegments.Skip(3))}");
|
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"zzz ={minimumDateTime:yyyy}.{season} {seasonName} {string.Join(' ', sourceDirectorySegments.Skip(3))}");
|
||||||
@ -493,74 +826,75 @@ public class PropertyLogic
|
|||||||
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"={minimumDateTime:yyyy}.{season} {seasonName} {string.Join(' ', sourceDirectorySegments.Skip(2))}");
|
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"={minimumDateTime:yyyy}.{season} {seasonName} {string.Join(' ', sourceDirectorySegments.Skip(2))}");
|
||||||
else
|
else
|
||||||
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"={minimumDateTime:yyyy}.{season} {seasonName}");
|
destinationDirectory = Path.Combine(_Configuration.RootDirectory, $"={minimumDateTime:yyyy}.{season} {seasonName}");
|
||||||
if (destinationDirectory == group.SourceDirectory)
|
if (destinationDirectory == sourceDirectory)
|
||||||
continue;
|
continue;
|
||||||
|
lock (propertyHolder)
|
||||||
|
propertyHolder.SetMoved(true);
|
||||||
if (!result)
|
if (!result)
|
||||||
result = true;
|
result = true;
|
||||||
if (!Directory.Exists(destinationDirectory))
|
if (!Directory.Exists(destinationDirectory))
|
||||||
_ = Directory.CreateDirectory(destinationDirectory);
|
_ = Directory.CreateDirectory(destinationDirectory);
|
||||||
destinationFile = Path.Combine(destinationDirectory, filteredSourceDirectoryFileInfo.Name);
|
destinationFile = Path.Combine(destinationDirectory, propertyHolder.FileInfo.Name);
|
||||||
if (File.Exists(destinationFile))
|
if (File.Exists(destinationFile))
|
||||||
{
|
{
|
||||||
if (destinationFile.EndsWith(".jpg", ignoreCase: true, CultureInfo.CurrentCulture))
|
if (destinationFile.EndsWith(".jpg", ignoreCase: true, CultureInfo.CurrentCulture))
|
||||||
destinationFile = Path.Combine(destinationDirectory, Path.ChangeExtension(filteredSourceDirectoryFileInfo.Name, ".jpeg"));
|
destinationFile = Path.Combine(destinationDirectory, Path.ChangeExtension(propertyHolder.FileInfo.Name, ".jpeg"));
|
||||||
else if (destinationFile.EndsWith(".jpeg", ignoreCase: true, CultureInfo.CurrentCulture))
|
else if (destinationFile.EndsWith(".jpeg", ignoreCase: true, CultureInfo.CurrentCulture))
|
||||||
destinationFile = Path.Combine(destinationDirectory, Path.ChangeExtension(filteredSourceDirectoryFileInfo.Name, ".jpg"));
|
destinationFile = Path.Combine(destinationDirectory, Path.ChangeExtension(propertyHolder.FileInfo.Name, ".jpg"));
|
||||||
}
|
}
|
||||||
if (File.Exists(destinationFile))
|
if (File.Exists(destinationFile))
|
||||||
{
|
{
|
||||||
_Log.Information($"*** source <{filteredSourceDirectoryFile}>");
|
_Log.Information($"*** source <{propertyHolder.FileInfo.FullName}>");
|
||||||
_Log.Information($"*** destination <{destinationFile}>");
|
_Log.Information($"*** destination <{destinationFile}>");
|
||||||
if (propertyFileInfo.Exists)
|
if (propertyHolder.FileInfo.Exists)
|
||||||
{
|
{
|
||||||
deleteFile = Path.ChangeExtension(propertyFileInfo.FullName, ".delete");
|
deleteFile = Path.ChangeExtension(propertyHolder.FileInfo.FullName, ".delete");
|
||||||
if (File.Exists(deleteFile))
|
if (File.Exists(deleteFile))
|
||||||
File.Delete(deleteFile);
|
File.Delete(deleteFile);
|
||||||
File.Move(propertyFileInfo.FullName, deleteFile);
|
File.Move(propertyHolder.FileInfo.FullName, deleteFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
File.Move(filteredSourceDirectoryFile, destinationFile);
|
File.Move(propertyHolder.FileInfo.FullName, destinationFile);
|
||||||
if (propertyFileInfo.Exists)
|
if (propertyHolder.FileInfo.Exists)
|
||||||
{
|
{
|
||||||
deleteFile = Path.ChangeExtension(propertyFileInfo.FullName, ".delete");
|
deleteFile = Path.ChangeExtension(propertyHolder.FileInfo.FullName, ".delete");
|
||||||
if (File.Exists(deleteFile))
|
if (File.Exists(deleteFile))
|
||||||
File.Delete(deleteFile);
|
File.Delete(deleteFile);
|
||||||
File.Move(propertyFileInfo.FullName, deleteFile);
|
File.Move(propertyHolder.FileInfo.FullName, deleteFile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (directoryMaximumOfMinimumDateTime != DateTime.MinValue)
|
if (directoryMaximumOfMinimumDateTime != DateTime.MinValue)
|
||||||
{
|
{
|
||||||
DirectoryInfo directoryInfo = new(group.SourceDirectory);
|
System.IO.DirectoryInfo directoryInfo = new(sourceDirectory);
|
||||||
if (directoryInfo.LastWriteTime != directoryMaximumOfMinimumDateTime)
|
if (directoryInfo.LastWriteTime != directoryMaximumOfMinimumDateTime)
|
||||||
Directory.SetLastWriteTime(group.SourceDirectory, directoryMaximumOfMinimumDateTime);
|
Directory.SetLastWriteTime(sourceDirectory, directoryMaximumOfMinimumDateTime);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WriteGroup(Group group, string angleBracket)
|
private void WriteGroup(int sourceDirectoryLength, PropertyHolder[] filteredPropertyHolderCollection, string angleBracket)
|
||||||
{
|
{
|
||||||
if (!(from l in @group.PropertyCollection where l?.Width is null select true).Any())
|
if (!(from l in filteredPropertyHolderCollection where l?.Property?.Width is null select true).Any())
|
||||||
{
|
{
|
||||||
string key;
|
string key;
|
||||||
string json;
|
string json;
|
||||||
string checkFile;
|
string checkFile;
|
||||||
A_Property? property;
|
|
||||||
string checkDirectory;
|
string checkDirectory;
|
||||||
int sourceDirectoryLength = group.SourceDirectory.Length;
|
|
||||||
List<KeyValuePair<string, A_Property>> propertyCollectionKeyValuePairs = new();
|
List<KeyValuePair<string, A_Property>> propertyCollectionKeyValuePairs = new();
|
||||||
JsonSerializerOptions writeIndentedJsonSerializerOptions = new() { WriteIndented = false };
|
JsonSerializerOptions writeIndentedJsonSerializerOptions = new() { WriteIndented = false };
|
||||||
(int level, List<string> directories) = IPath.Get(_Configuration.RootDirectory, group.SourceDirectory);
|
(int level, List<string> directories) = IPath.Get(_Configuration.RootDirectory, filteredPropertyHolderCollection[0].SourceDirectory);
|
||||||
string fileName = string.Concat(string.Join(_Configuration.FileNameDirectorySeparator, directories), ".json");
|
string fileName = string.Concat(string.Join(_Configuration.FileNameDirectorySeparator, directories), ".json");
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
foreach (PropertyHolder propertyHolder in filteredPropertyHolderCollection)
|
||||||
{
|
{
|
||||||
property = group.PropertyCollection[i];
|
if (propertyHolder.Property is null)
|
||||||
if (property is null)
|
|
||||||
continue;
|
continue;
|
||||||
key = IPath.GetRelativePath(group.FilteredSourceDirectoryFiles[i], sourceDirectoryLength);
|
if (propertyHolder.FileInfo is null)
|
||||||
propertyCollectionKeyValuePairs.Add(new KeyValuePair<string, A_Property>(key, property));
|
continue;
|
||||||
|
key = IPath.GetRelativePath(propertyHolder.FileInfo.FullName, sourceDirectoryLength);
|
||||||
|
propertyCollectionKeyValuePairs.Add(new KeyValuePair<string, A_Property>(key, propertyHolder.Property));
|
||||||
}
|
}
|
||||||
checkDirectory = IPath.GetDirectory(angleBracket, level, "[{}]");
|
checkDirectory = IPath.GetDirectory(angleBracket, level, "[{}]");
|
||||||
checkFile = Path.Combine(checkDirectory, fileName);
|
checkFile = Path.Combine(checkDirectory, fileName);
|
||||||
@ -572,75 +906,72 @@ public class PropertyLogic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private (List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, bool isValidImageFormatExtension, FileInfo propertyFileInfo, A_Property property) ParallelForWork(bool firstPass, string angleBracket, string sourceDirectory, string filteredSourceDirectoryFile)
|
private void ParallelForWork(bool firstPass, string angleBracket, string sourceDirectory, List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, PropertyHolder propertyHolder)
|
||||||
{
|
{
|
||||||
|
if (propertyHolder.FileInfo is null)
|
||||||
|
throw new Exception($"{nameof(propertyHolder.FileInfo)} is null!");
|
||||||
|
A_Property property;
|
||||||
List<string> parseExceptions = new();
|
List<string> parseExceptions = new();
|
||||||
List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples = new();
|
string extensionLowered = propertyHolder.FileInfo.Extension.ToLower();
|
||||||
string extensionLowered = Path.GetExtension(filteredSourceDirectoryFile).ToLower();
|
|
||||||
bool isValidMetadataExtensions = _Configuration.ValidMetadataExtensions.Contains(extensionLowered);
|
bool isValidMetadataExtensions = _Configuration.ValidMetadataExtensions.Contains(extensionLowered);
|
||||||
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(propertyHolder.FileInfo.FullName);
|
||||||
bool isValidImageFormatExtension = _Configuration.ValidImageFormatExtensions.Contains(extensionLowered);
|
bool isValidImageFormatExtension = _Configuration.ValidImageFormatExtensions.Contains(extensionLowered);
|
||||||
|
lock (propertyHolder)
|
||||||
|
propertyHolder.SetValidImageFormatExtension(isValidImageFormatExtension);
|
||||||
bool isIgnoreExtension = isValidImageFormatExtension && _Configuration.IgnoreExtensions.Contains(extensionLowered);
|
bool isIgnoreExtension = isValidImageFormatExtension && _Configuration.IgnoreExtensions.Contains(extensionLowered);
|
||||||
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(filteredSourceDirectoryFile);
|
|
||||||
string filteredSourceDirectoryFileExtensionLowered = Path.Combine(sourceDirectory, $"{fileNameWithoutExtension}{extensionLowered}");
|
string filteredSourceDirectoryFileExtensionLowered = Path.Combine(sourceDirectory, $"{fileNameWithoutExtension}{extensionLowered}");
|
||||||
if (isValidImageFormatExtension && filteredSourceDirectoryFile.Length == filteredSourceDirectoryFileExtensionLowered.Length && filteredSourceDirectoryFile != filteredSourceDirectoryFileExtensionLowered)
|
if (isValidImageFormatExtension && propertyHolder.FileInfo.FullName.Length == filteredSourceDirectoryFileExtensionLowered.Length && propertyHolder.FileInfo.FullName != filteredSourceDirectoryFileExtensionLowered)
|
||||||
File.Move(filteredSourceDirectoryFile, filteredSourceDirectoryFileExtensionLowered);
|
File.Move(propertyHolder.FileInfo.FullName, filteredSourceDirectoryFileExtensionLowered);
|
||||||
|
if (propertyHolder.Changed is null || propertyHolder.Changed.Value || propertyHolder.Property is null)
|
||||||
|
{
|
||||||
string without = Path.Combine(angleBracket.Replace("<>", "{}"), $"{fileNameWithoutExtension}.json");
|
string without = Path.Combine(angleBracket.Replace("<>", "{}"), $"{fileNameWithoutExtension}.json");
|
||||||
FileInfo propertyFileInfo = new(Path.Combine(angleBracket.Replace("<>", "{}"), $"{fileNameWithoutExtension}{extensionLowered}.json"));
|
FileInfo fileInfo = new(Path.Combine(angleBracket.Replace("<>", "{}"), $"{fileNameWithoutExtension}{extensionLowered}.json"));
|
||||||
if (isValidImageFormatExtension && File.Exists(without))
|
if (isValidImageFormatExtension && File.Exists(without))
|
||||||
{
|
{
|
||||||
File.Move(without, propertyFileInfo.FullName);
|
File.Move(without, fileInfo.FullName);
|
||||||
propertyFileInfo.Refresh();
|
fileInfo.Refresh();
|
||||||
|
}
|
||||||
|
property = GetPropertyB(filteredSourceDirectoryFileTuples, parseExceptions, firstPass, angleBracket, propertyHolder.FileInfo, propertyHolder.Property, fileInfo, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions);
|
||||||
|
lock (propertyHolder)
|
||||||
|
propertyHolder.Update(fileInfo, property);
|
||||||
}
|
}
|
||||||
A_Property property = GetProperty(filteredSourceDirectoryFileTuples, parseExceptions, firstPass, angleBracket, filteredSourceDirectoryFile, propertyFileInfo, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions);
|
|
||||||
return new(filteredSourceDirectoryFileTuples, isValidImageFormatExtension, propertyFileInfo, property);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private int ParallelWork(bool firstPass, object @lock, long ticks, List<Tuple<string, DateTime>> sourceDirectoryChanges, int count, Group group, string angleBracket)
|
private void ParallelWork(bool firstPass, List<Exception> exceptions, List<Tuple<string, DateTime>> sourceDirectoryChanges, int propertyHolderCollectionsCount, int g, string sourceDirectory, int r, PropertyHolder[] filteredPropertyHolderCollection, int totalSeconds, string angleBracket)
|
||||||
{
|
{
|
||||||
int result = 0;
|
List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples = new();
|
||||||
if (_Log is null)
|
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
|
||||||
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _MaxDegreeOfParallelism };
|
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = _MaxDegreeOfParallelism };
|
||||||
int totalSeconds = (int)Math.Truncate(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
|
||||||
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
ProgressBarOptions options = new() { ProgressCharacter = '─', ProgressBarOnBottom = true, DisableBottomPercentage = true };
|
||||||
using (ProgressBar progressBar = new(group.FilteredSourceDirectoryFiles.Length, $"{group.G}) {group.R + 1:000} / {count:000} - {group.SourceDirectory} - {group.FilteredSourceDirectoryFiles.Length} file(s) - {totalSeconds} total second(s)", options))
|
using ProgressBar progressBar = new(filteredPropertyHolderCollection.Length, $"{r + 1:000}.{g} / {propertyHolderCollectionsCount:000}) {filteredPropertyHolderCollection.Length:000} file(s) - {totalSeconds} total second(s) - {sourceDirectory}", options);
|
||||||
{
|
_ = Parallel.For(0, filteredPropertyHolderCollection.Length, parallelOptions, i =>
|
||||||
_ = Parallel.For(0, group.FilteredSourceDirectoryFiles.Length, parallelOptions, i =>
|
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
long ticks = DateTime.Now.Ticks;
|
long ticks = DateTime.Now.Ticks;
|
||||||
DateTime dateTime = DateTime.Now;
|
DateTime dateTime = DateTime.Now;
|
||||||
(List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, bool isValidImageFormatExtension, FileInfo propertyFileInfo, A_Property property) = ParallelForWork(firstPass, angleBracket, group.SourceDirectory, group.FilteredSourceDirectoryFiles[i]);
|
List<Tuple<string, DateTime>> collection;
|
||||||
|
ParallelForWork(firstPass, angleBracket, sourceDirectory, filteredSourceDirectoryFileTuples, filteredPropertyHolderCollection[i]);
|
||||||
progressBar.Tick();
|
progressBar.Tick();
|
||||||
if (_MaxDegreeOfParallelism < 2)
|
lock (filteredSourceDirectoryFileTuples)
|
||||||
ticks = LogDelta(ticks, nameof(PropertyLogic.ParallelForWork));
|
collection = (from l in filteredSourceDirectoryFileTuples where l.Item2 > dateTime select l).ToList();
|
||||||
lock (@lock)
|
lock (sourceDirectoryChanges)
|
||||||
{
|
sourceDirectoryChanges.AddRange(collection);
|
||||||
group.PropertyCollection[i] = property;
|
|
||||||
group.PropertyFileInfoCollection[i] = propertyFileInfo;
|
|
||||||
if (isValidImageFormatExtension)
|
|
||||||
group.ValidImageFormatExtentionCollection[i] = isValidImageFormatExtension;
|
|
||||||
sourceDirectoryChanges.AddRange(from l in filteredSourceDirectoryFileTuples where l.Item2 > dateTime select l);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
result += 1;
|
lock (exceptions)
|
||||||
_Log.Error(string.Concat(group.SourceDirectory, Environment.NewLine, ex.Message, Environment.NewLine, ex.StackTrace), ex);
|
exceptions.Add(ex);
|
||||||
if (result == group.FilteredSourceDirectoryFiles.Length)
|
|
||||||
throw new Exception(string.Concat("All in [", group.SourceDirectory, "]failed!"));
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private string SetAngleBracketCollectionAndGetZero(Configuration configuration, string sourceDirectory)
|
private string SetAngleBracketCollectionAndGetZero(Configuration configuration, string modelName, string predictorModelName, string sourceDirectory)
|
||||||
{
|
{
|
||||||
string result;
|
string result;
|
||||||
AngleBracketCollection.Clear();
|
AngleBracketCollection.Clear();
|
||||||
AngleBracketCollection.AddRange(IResult.GetDirectoryInfoCollection(configuration,
|
AngleBracketCollection.AddRange(IResult.GetDirectoryInfoCollection(configuration,
|
||||||
|
modelName,
|
||||||
|
predictorModelName,
|
||||||
sourceDirectory,
|
sourceDirectory,
|
||||||
nameof(A_Property),
|
nameof(A_Property),
|
||||||
string.Empty,
|
string.Empty,
|
||||||
@ -654,48 +985,53 @@ public class PropertyLogic
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Group> GetParallelWork(Configuration configuration, List<string> topDirectories, List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection, bool firstPass, bool filterOnFirstPass)
|
public void ParallelWork(Configuration configuration, string modelName, string predictorModelName, long ticks, List<PropertyHolder[]> propertyHolderCollections, bool firstPass)
|
||||||
{
|
{
|
||||||
List<Group> results = new();
|
|
||||||
if (_Log is null)
|
if (_Log is null)
|
||||||
throw new Exception($"{nameof(_Log)} is null!");
|
throw new Exception($"{nameof(_Log)} is null!");
|
||||||
if (_Configuration.PopulatePropertyId is null)
|
if (_Configuration.PopulatePropertyId is null)
|
||||||
throw new Exception($"{nameof(_Configuration.PopulatePropertyId)} is null!");
|
throw new Exception($"{nameof(_Configuration.PopulatePropertyId)} is null!");
|
||||||
Group group;
|
int g;
|
||||||
int exceptionCount;
|
int r;
|
||||||
|
int totalSeconds;
|
||||||
string angleBracket;
|
string angleBracket;
|
||||||
object @lock = new();
|
string sourceDirectory;
|
||||||
long ticks = DateTime.Now.Ticks;
|
List<Exception> exceptions = new();
|
||||||
string[] filteredSourceDirectoryFiles;
|
PropertyHolder[] filteredPropertyHolderCollection;
|
||||||
List<Tuple<string, DateTime>> sourceDirectoryChanges = new();
|
List<Tuple<string, DateTime>> sourceDirectoryChanges = new();
|
||||||
|
int sourceDirectoryLength = configuration.RootDirectory.Length;
|
||||||
|
int propertyHolderCollectionsCount = propertyHolderCollections.Count;
|
||||||
string propertyRoot = IResult.GetResultsGroupDirectory(configuration, nameof(A_Property));
|
string propertyRoot = IResult.GetResultsGroupDirectory(configuration, nameof(A_Property));
|
||||||
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in groupCollection)
|
foreach (PropertyHolder[] propertyHolderCollection in propertyHolderCollections)
|
||||||
{
|
{
|
||||||
if (!topDirectories.Any())
|
if (!propertyHolderCollection.Any())
|
||||||
continue;
|
continue;
|
||||||
sourceDirectoryChanges.Clear();
|
sourceDirectoryChanges.Clear();
|
||||||
if (firstPass && !filterOnFirstPass)
|
if (firstPass)
|
||||||
filteredSourceDirectoryFiles = sourceDirectoryFiles;
|
filteredPropertyHolderCollection = (from l in propertyHolderCollection where l.NoJson is null || !l.NoJson.Value && (l.Changed is null || l.Changed.Value) select l).ToArray();
|
||||||
else
|
else
|
||||||
filteredSourceDirectoryFiles = (from l in sourceDirectoryFiles where !_Configuration.IgnoreExtensions.Contains(Path.GetExtension(l)) select l).ToArray();
|
filteredPropertyHolderCollection = (from l in propertyHolderCollection where l.FileInfo is not null && !_Configuration.IgnoreExtensions.Contains(l.FileInfo.Extension) select l).ToArray();
|
||||||
if (!filteredSourceDirectoryFiles.Any())
|
if (!filteredPropertyHolderCollection.Any())
|
||||||
continue;
|
continue;
|
||||||
group = new(g, sourceDirectory, filteredSourceDirectoryFiles, r);
|
g = filteredPropertyHolderCollection[0].G;
|
||||||
angleBracket = SetAngleBracketCollectionAndGetZero(configuration, sourceDirectory);
|
r = filteredPropertyHolderCollection[0].R;
|
||||||
exceptionCount = ParallelWork(firstPass, @lock, ticks, sourceDirectoryChanges, groupCollection.Count, group, angleBracket);
|
sourceDirectory = filteredPropertyHolderCollection[0].SourceDirectory;
|
||||||
if (exceptionCount != 0)
|
totalSeconds = (int)Math.Truncate(new TimeSpan(DateTime.Now.Ticks - ticks).TotalSeconds);
|
||||||
|
angleBracket = SetAngleBracketCollectionAndGetZero(configuration, modelName, predictorModelName, sourceDirectory);
|
||||||
|
ParallelWork(firstPass, exceptions, sourceDirectoryChanges, propertyHolderCollectionsCount, g, sourceDirectory, r, filteredPropertyHolderCollection, totalSeconds, angleBracket);
|
||||||
|
foreach (Exception exception in exceptions)
|
||||||
|
_Log.Error(string.Concat(sourceDirectory, Environment.NewLine, exception.Message, Environment.NewLine, exception.StackTrace), exception);
|
||||||
|
if (exceptions.Count == filteredPropertyHolderCollection.Length)
|
||||||
|
throw new Exception(string.Concat("All in [", sourceDirectory, "]failed!"));
|
||||||
|
if (exceptions.Count != 0)
|
||||||
_ExceptionsDirectories.Add(sourceDirectory);
|
_ExceptionsDirectories.Add(sourceDirectory);
|
||||||
else
|
|
||||||
results.Add(group);
|
|
||||||
bool? anyFilesMoved;
|
bool? anyFilesMoved;
|
||||||
if (!firstPass || exceptionCount != 0)
|
if (!firstPass || exceptions.Count != 0)
|
||||||
anyFilesMoved = null;
|
anyFilesMoved = null;
|
||||||
else
|
else
|
||||||
anyFilesMoved = AnyFilesMoved(group);
|
anyFilesMoved = AnyFilesMoved(sourceDirectory, filteredPropertyHolderCollection);
|
||||||
if (exceptionCount != 0 || (anyFilesMoved is not null && anyFilesMoved.Value))
|
if (exceptions.Count == 0 && !firstPass && _Configuration.PopulatePropertyId.Value && (anyFilesMoved is null || !anyFilesMoved.Value))
|
||||||
results.Clear();
|
WriteGroup(sourceDirectoryLength, filteredPropertyHolderCollection, angleBracket);
|
||||||
if (exceptionCount == 0 && !firstPass && _Configuration.PopulatePropertyId.Value && (anyFilesMoved is null || !anyFilesMoved.Value))
|
|
||||||
WriteGroup(group, angleBracket);
|
|
||||||
if (Directory.GetFiles(propertyRoot, "*.txt", SearchOption.TopDirectoryOnly).Any())
|
if (Directory.GetFiles(propertyRoot, "*.txt", SearchOption.TopDirectoryOnly).Any())
|
||||||
{
|
{
|
||||||
for (int y = 0; y < int.MaxValue; y++)
|
for (int y = 0; y < int.MaxValue; y++)
|
||||||
@ -707,27 +1043,18 @@ public class PropertyLogic
|
|||||||
_Log.Information(". . .");
|
_Log.Information(". . .");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return results;
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<string> DoWork(Configuration configuration, List<string> topDirectories, List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> groupCollection, bool firstPass)
|
|
||||||
{
|
|
||||||
List<string> results = new();
|
|
||||||
_ExceptionsDirectories.Clear();
|
|
||||||
_ = GetParallelWork(configuration, topDirectories, groupCollection, firstPass, filterOnFirstPass: false);
|
|
||||||
results.AddRange(_ExceptionsDirectories);
|
|
||||||
return results;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public A_Property GetProperty(string angleBracket, string sourceDirectory, string filteredSourceDirectoryFile, List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, List<string> parseExceptions, FileInfo fileInfo)
|
public A_Property GetProperty(string angleBracket, string sourceDirectory, string filteredSourceDirectoryFile, List<Tuple<string, DateTime>> filteredSourceDirectoryFileTuples, List<string> parseExceptions, FileInfo fileInfo)
|
||||||
{
|
{
|
||||||
A_Property result;
|
A_Property result;
|
||||||
bool firstPass = false;
|
bool firstPass = false;
|
||||||
string extensionLowered = Path.GetExtension(filteredSourceDirectoryFile).ToLower();
|
FileInfo filteredSourceDirectoryFileInfo = new(filteredSourceDirectoryFile);
|
||||||
|
string extensionLowered = filteredSourceDirectoryFileInfo.Extension.ToLower();
|
||||||
bool isValidMetadataExtensions = _Configuration.ValidMetadataExtensions.Contains(extensionLowered);
|
bool isValidMetadataExtensions = _Configuration.ValidMetadataExtensions.Contains(extensionLowered);
|
||||||
bool isValidImageFormatExtension = _Configuration.ValidImageFormatExtensions.Contains(extensionLowered);
|
bool isValidImageFormatExtension = _Configuration.ValidImageFormatExtensions.Contains(extensionLowered);
|
||||||
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(filteredSourceDirectoryFileInfo.FullName);
|
||||||
bool isIgnoreExtension = isValidImageFormatExtension && _Configuration.IgnoreExtensions.Contains(extensionLowered);
|
bool isIgnoreExtension = isValidImageFormatExtension && _Configuration.IgnoreExtensions.Contains(extensionLowered);
|
||||||
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(filteredSourceDirectoryFile);
|
|
||||||
string filteredSourceDirectoryFileExtensionLowered = Path.Combine(sourceDirectory, $"{fileNameWithoutExtension}{extensionLowered}");
|
string filteredSourceDirectoryFileExtensionLowered = Path.Combine(sourceDirectory, $"{fileNameWithoutExtension}{extensionLowered}");
|
||||||
if (isValidImageFormatExtension && filteredSourceDirectoryFile.Length == filteredSourceDirectoryFileExtensionLowered.Length && filteredSourceDirectoryFile != filteredSourceDirectoryFileExtensionLowered)
|
if (isValidImageFormatExtension && filteredSourceDirectoryFile.Length == filteredSourceDirectoryFileExtensionLowered.Length && filteredSourceDirectoryFile != filteredSourceDirectoryFileExtensionLowered)
|
||||||
File.Move(filteredSourceDirectoryFile, filteredSourceDirectoryFileExtensionLowered);
|
File.Move(filteredSourceDirectoryFile, filteredSourceDirectoryFileExtensionLowered);
|
||||||
@ -738,11 +1065,11 @@ public class PropertyLogic
|
|||||||
File.Move(without, propertyFileInfo.FullName);
|
File.Move(without, propertyFileInfo.FullName);
|
||||||
propertyFileInfo.Refresh();
|
propertyFileInfo.Refresh();
|
||||||
}
|
}
|
||||||
result = GetProperty(filteredSourceDirectoryFileTuples, parseExceptions, firstPass, angleBracket, filteredSourceDirectoryFile, fileInfo, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions);
|
result = GetPropertyA(filteredSourceDirectoryFileTuples, parseExceptions, firstPass, angleBracket, filteredSourceDirectoryFileInfo, fileInfo, isIgnoreExtension, isValidImageFormatExtension, isValidMetadataExtensions);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public (long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)[] GetPropertyIds(Configuration configuration, List<Group> groupCollection, bool saveToCollection)
|
public (long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)[] GetPropertyIds(Configuration configuration, string modelName, string predictorModelName, List<DirectoryInfo> groupCollection, bool saveToCollection)
|
||||||
{
|
{
|
||||||
List<(long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)> results = new();
|
List<(long Ticks, string FilteredSourceDirectoryFile, string PropertyDirectory, int PropertyId)> results = new();
|
||||||
int level;
|
int level;
|
||||||
@ -751,9 +1078,9 @@ public class PropertyLogic
|
|||||||
string checkDirectory;
|
string checkDirectory;
|
||||||
List<string> directories;
|
List<string> directories;
|
||||||
string propertyDirectory;
|
string propertyDirectory;
|
||||||
foreach (Group group in groupCollection)
|
foreach (DirectoryInfo group in groupCollection)
|
||||||
{
|
{
|
||||||
angleBracket = SetAngleBracketCollectionAndGetZero(configuration, group.SourceDirectory);
|
angleBracket = SetAngleBracketCollectionAndGetZero(configuration, modelName, predictorModelName, group.SourceDirectory);
|
||||||
if (string.IsNullOrEmpty(group.SourceDirectory))
|
if (string.IsNullOrEmpty(group.SourceDirectory))
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
if (!saveToCollection)
|
if (!saveToCollection)
|
||||||
@ -766,7 +1093,7 @@ public class PropertyLogic
|
|||||||
}
|
}
|
||||||
if (!Directory.Exists(propertyDirectory))
|
if (!Directory.Exists(propertyDirectory))
|
||||||
_ = Directory.CreateDirectory(propertyDirectory);
|
_ = Directory.CreateDirectory(propertyDirectory);
|
||||||
for (int i = 0; i < group.FilteredSourceDirectoryFiles.Length; i++)
|
for (int i = 0; i < group.SourceDirectoryFileInfoCollection.Length; i++)
|
||||||
{
|
{
|
||||||
property = group.PropertyCollection[i];
|
property = group.PropertyCollection[i];
|
||||||
if (property?.Id is null)
|
if (property?.Id is null)
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
using System.Text.Json;
|
||||||
|
|
||||||
namespace View_by_Distance.Property.Models.Stateless;
|
namespace View_by_Distance.Property.Models.Stateless;
|
||||||
|
|
||||||
public static class A_Property
|
public static class A_Property
|
||||||
@ -26,10 +28,7 @@ public static class A_Property
|
|||||||
string[] sourceDirectoryFiles;
|
string[] sourceDirectoryFiles;
|
||||||
List<string[]> fileCollections = new();
|
List<string[]> fileCollections = new();
|
||||||
if (!topDirectories.Any())
|
if (!topDirectories.Any())
|
||||||
{
|
|
||||||
topDirectories.Add(rootDirectory);
|
|
||||||
topDirectories.AddRange(from l in Directory.GetDirectories(rootDirectory, "*", SearchOption.TopDirectoryOnly) select Path.GetFullPath(l));
|
topDirectories.AddRange(from l in Directory.GetDirectories(rootDirectory, "*", SearchOption.TopDirectoryOnly) select Path.GetFullPath(l));
|
||||||
}
|
|
||||||
for (int g = 1; g < 5; g++)
|
for (int g = 1; g < 5; g++)
|
||||||
{
|
{
|
||||||
if (g == 4)
|
if (g == 4)
|
||||||
@ -105,6 +104,151 @@ public static class A_Property
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> GetJsonGroupCollection(string rootDirectory)
|
||||||
|
{
|
||||||
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> results;
|
||||||
|
bool reverse = false;
|
||||||
|
string searchPattern = "*.json";
|
||||||
|
List<string> topDirectories = new();
|
||||||
|
int maxImagesInDirectoryForTopLevelFirstPass = 50;
|
||||||
|
results = GetGroupCollection(rootDirectory, searchPattern, topDirectories, maxImagesInDirectoryForTopLevelFirstPass, reverse);
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<(int g, string sourceDirectory, FileInfo[] sourceDirectoryFiles, int r)> GetFileInfoGroupCollection(Models.Configuration configuration, bool reverse, string searchPattern, List<string> topDirectories)
|
||||||
|
{
|
||||||
|
if (configuration.MaxImagesInDirectoryForTopLevelFirstPass is null)
|
||||||
|
throw new Exception($"{nameof(configuration.MaxImagesInDirectoryForTopLevelFirstPass)} is null!");
|
||||||
|
List<(int g, string sourceDirectory, FileInfo[] sourceDirectoryFiles, int r)> results = new();
|
||||||
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)>? collection = GetGroupCollection(configuration.RootDirectory, searchPattern, topDirectories, configuration.MaxImagesInDirectoryForTopLevelFirstPass.Value, reverse);
|
||||||
|
foreach ((int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) in collection)
|
||||||
|
results.Add(new(g, sourceDirectory, (from l in sourceDirectoryFiles select new FileInfo(l)).ToArray(), r));
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<(int g, string sourceDirectory, List<(string sourceDirectoryFile, Models.A_Property? property)> collection, int r)> GetCollection(string rootDirectory, List<(int g, string sourceDirectory, string[] SourceDirectoryFiles, int r)> jsonCollection)
|
||||||
|
{
|
||||||
|
List<(int, string, List<(string, Models.A_Property?)>, int)> results = new();
|
||||||
|
int length = rootDirectory.Length;
|
||||||
|
ParallelOptions parallelOptions = new() { MaxDegreeOfParallelism = Environment.ProcessorCount };
|
||||||
|
_ = Parallel.For(0, jsonCollection.Count, parallelOptions, i => ParallelFor(jsonCollection, i, length, results));
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<PropertyHolder[]> Populate(Models.Configuration configuration, string aPropertySingletonDirectory, List<(int, string, FileInfo[], int)> fileInfoGroupCollection, List<(int, string, List<(string, Models.A_Property?)>, int)> collectionFromJson)
|
||||||
|
{
|
||||||
|
List<PropertyHolder[]> results = new();
|
||||||
|
if (configuration.PropertiesChangedForProperty is null)
|
||||||
|
throw new Exception($"{configuration.PropertiesChangedForProperty} is null");
|
||||||
|
int length;
|
||||||
|
string inferred;
|
||||||
|
string relativePath;
|
||||||
|
FileInfo keyFileInfo;
|
||||||
|
string keySourceDirectory;
|
||||||
|
List<PropertyHolder> propertyHolderCollection;
|
||||||
|
Dictionary<string, (string SourceDirectory, FileInfo FileInfo)> fileInfoKeyValuePairs = new();
|
||||||
|
length = configuration.RootDirectory.Length;
|
||||||
|
foreach ((int g, string sourceDirectory, FileInfo[] sourceDirectoryFileInfoCollection, int r) in fileInfoGroupCollection)
|
||||||
|
{
|
||||||
|
foreach (FileInfo sourceDirectoryFileInfo in sourceDirectoryFileInfoCollection)
|
||||||
|
{
|
||||||
|
relativePath = $"{XPath.GetRelativePath(sourceDirectoryFileInfo.FullName, length)}.json";
|
||||||
|
fileInfoKeyValuePairs.Add(relativePath, new(sourceDirectory, sourceDirectoryFileInfo));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
length = aPropertySingletonDirectory.Length;
|
||||||
|
foreach ((int g, string _, List<(string, Models.A_Property?)> collection, int r) in collectionFromJson)
|
||||||
|
{
|
||||||
|
if (!collection.Any())
|
||||||
|
continue;
|
||||||
|
propertyHolderCollection = new();
|
||||||
|
foreach ((string sourceDirectoryFile, Models.A_Property? property) in collection)
|
||||||
|
{
|
||||||
|
relativePath = XPath.GetRelativePath(sourceDirectoryFile, length);
|
||||||
|
if (!fileInfoKeyValuePairs.ContainsKey(relativePath))
|
||||||
|
{
|
||||||
|
inferred = string.Concat(configuration.RootDirectory, relativePath);
|
||||||
|
keyFileInfo = new(inferred[..^5]);
|
||||||
|
keySourceDirectory = string.Concat(keyFileInfo.DirectoryName);
|
||||||
|
propertyHolderCollection.Add(new(g, keySourceDirectory, sourceDirectoryFile, relativePath, r, keyFileInfo, property, true, null, null, null, null));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
keyFileInfo = fileInfoKeyValuePairs[relativePath].FileInfo;
|
||||||
|
keySourceDirectory = fileInfoKeyValuePairs[relativePath].SourceDirectory;
|
||||||
|
if (!fileInfoKeyValuePairs.Remove(relativePath))
|
||||||
|
throw new Exception();
|
||||||
|
if (property?.Id is null || property?.Width is null || property?.Height is null)
|
||||||
|
propertyHolderCollection.Add(new(g, keySourceDirectory, sourceDirectoryFile, relativePath, r, keyFileInfo, property, false, null, null, null, null));
|
||||||
|
else if (configuration.PropertiesChangedForProperty.Value || property.LastWriteTime != keyFileInfo.LastWriteTime || property.FileSize != keyFileInfo.Length)
|
||||||
|
propertyHolderCollection.Add(new(g, keySourceDirectory, sourceDirectoryFile, relativePath, r, keyFileInfo, property, false, true, null, null, null));
|
||||||
|
else
|
||||||
|
propertyHolderCollection.Add(new(g, keySourceDirectory, sourceDirectoryFile, relativePath, r, keyFileInfo, property, false, false, null, null, null));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (propertyHolderCollection.Any())
|
||||||
|
results.Add(propertyHolderCollection.ToArray());
|
||||||
|
}
|
||||||
|
length = configuration.RootDirectory.Length;
|
||||||
|
foreach ((int g, string sourceDirectory, FileInfo[] sourceDirectoryFileInfoCollection, int r) in fileInfoGroupCollection)
|
||||||
|
{
|
||||||
|
propertyHolderCollection = new();
|
||||||
|
foreach (FileInfo sourceDirectoryFileInfo in sourceDirectoryFileInfoCollection)
|
||||||
|
{
|
||||||
|
relativePath = $"{XPath.GetRelativePath(sourceDirectoryFileInfo.FullName, length)}.json";
|
||||||
|
if (!fileInfoKeyValuePairs.ContainsKey(relativePath))
|
||||||
|
continue;
|
||||||
|
if (!fileInfoKeyValuePairs.Remove(relativePath))
|
||||||
|
throw new Exception();
|
||||||
|
propertyHolderCollection.Add(new(g, sourceDirectory, relativePath, sourceDirectoryFileInfo.FullName, r, sourceDirectoryFileInfo, null, null, null, null, null, null));
|
||||||
|
}
|
||||||
|
if (propertyHolderCollection.Any())
|
||||||
|
results.Add(propertyHolderCollection.ToArray());
|
||||||
|
}
|
||||||
|
if (fileInfoKeyValuePairs.Any())
|
||||||
|
throw new Exception();
|
||||||
|
results = (from l in results orderby l[0].G, l[0].R select l).ToList();
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void ParallelFor(List<(int, string, string[], int)> jsonCollection, int i, int length, List<(int, string, List<(string, Models.A_Property?)>, int)> results)
|
||||||
|
{
|
||||||
|
string key;
|
||||||
|
string json;
|
||||||
|
Models.A_Property? property;
|
||||||
|
(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r) = jsonCollection[i];
|
||||||
|
List<(string, Models.A_Property?)> collection = new();
|
||||||
|
foreach (string sourceDirectoryFile in sourceDirectoryFiles)
|
||||||
|
{
|
||||||
|
json = File.ReadAllText(sourceDirectoryFile);
|
||||||
|
key = XPath.GetRelativePath(sourceDirectoryFile, length);
|
||||||
|
property = JsonSerializer.Deserialize<Models.A_Property>(json);
|
||||||
|
collection.Add(new(sourceDirectoryFile, property));
|
||||||
|
}
|
||||||
|
lock (results)
|
||||||
|
results.Add(new(g, sourceDirectory, collection, r));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<PropertyHolder[]> Get(Models.Configuration configuration, bool reverse, string modelName, string predictorModelName, PropertyLogic propertyLogic)
|
||||||
|
{
|
||||||
|
List<PropertyHolder[]> results;
|
||||||
|
string searchPattern = "*";
|
||||||
|
long ticks = DateTime.Now.Ticks;
|
||||||
|
List<string> topDirectories = new();
|
||||||
|
List<(int g, string sourceDirectory, string[] sourceDirectoryFiles, int r)> jsonCollection;
|
||||||
|
List<(int g, string sourceDirectory, FileInfo[] sourceDirectoryFiles, int r)> fileInfoGroupCollection;
|
||||||
|
string aPropertySingletonDirectory = IResult.GetResultsDateGroupDirectory(configuration, nameof(A_Property), "{}");
|
||||||
|
List<(int g, string sourceDirectory, List<(string sourceDirectoryFile, Models.A_Property? property)> collection, int r)> collectionFromJson;
|
||||||
|
jsonCollection = GetJsonGroupCollection(aPropertySingletonDirectory);
|
||||||
|
fileInfoGroupCollection = GetFileInfoGroupCollection(configuration, reverse, searchPattern, topDirectories);
|
||||||
|
collectionFromJson = GetCollection(aPropertySingletonDirectory, jsonCollection);
|
||||||
|
results = Populate(configuration, aPropertySingletonDirectory, fileInfoGroupCollection, collectionFromJson);
|
||||||
|
propertyLogic.ParallelWork(configuration, modelName, predictorModelName, ticks, results, firstPass: false);
|
||||||
|
if (propertyLogic.ExceptionsDirectories.Any())
|
||||||
|
throw new Exception();
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
public static int GetDeterministicHashCode(byte[] value)
|
public static int GetDeterministicHashCode(byte[] value)
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
@ -199,20 +343,20 @@ public static class A_Property
|
|||||||
result = DateTime.MinValue;
|
result = DateTime.MinValue;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
List<DateTime> datetimes = new()
|
List<DateTime> dateTimes = new()
|
||||||
{
|
{
|
||||||
property.CreationTime,
|
property.CreationTime,
|
||||||
property.LastWriteTime
|
property.LastWriteTime
|
||||||
};
|
};
|
||||||
if (property.DateTime.HasValue)
|
if (property.DateTime.HasValue)
|
||||||
datetimes.Add(property.DateTime.Value);
|
dateTimes.Add(property.DateTime.Value);
|
||||||
if (property.DateTimeDigitized.HasValue)
|
if (property.DateTimeDigitized.HasValue)
|
||||||
datetimes.Add(property.DateTimeDigitized.Value);
|
dateTimes.Add(property.DateTimeDigitized.Value);
|
||||||
if (property.DateTimeOriginal.HasValue)
|
if (property.DateTimeOriginal.HasValue)
|
||||||
datetimes.Add(property.DateTimeOriginal.Value);
|
dateTimes.Add(property.DateTimeOriginal.Value);
|
||||||
if (property.GPSDateStamp.HasValue)
|
if (property.GPSDateStamp.HasValue)
|
||||||
datetimes.Add(property.GPSDateStamp.Value);
|
dateTimes.Add(property.GPSDateStamp.Value);
|
||||||
result = datetimes.Min();
|
result = dateTimes.Min();
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -222,139 +366,17 @@ public static class A_Property
|
|||||||
public static DateTime GetMinimumDateTime(Models.A_Property? property)
|
public static DateTime GetMinimumDateTime(Models.A_Property? property)
|
||||||
{
|
{
|
||||||
DateTime result;
|
DateTime result;
|
||||||
List<DateTime> datetimes;
|
List<DateTime> dateTimes;
|
||||||
if (property is null)
|
if (property is null)
|
||||||
result = DateTime.MinValue;
|
result = DateTime.MinValue;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
datetimes = GetDateTimes(property);
|
dateTimes = GetDateTimes(property);
|
||||||
result = datetimes.Min();
|
result = dateTimes.Min();
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static string[] GetDirectoryRenameCollection(Models.Configuration configuration, string outputResolution, string bMetadata, string cResizeName)
|
|
||||||
{
|
|
||||||
List<string> results = new();
|
|
||||||
string cResizeContentDirectory;
|
|
||||||
string cResizeSingletonDirectory;
|
|
||||||
string bMetadataSingletonDirectory;
|
|
||||||
string aPropertySingletonDirectory;
|
|
||||||
bMetadataSingletonDirectory = IResult.GetResultsDateGroupDirectory(configuration, bMetadata, "{}");
|
|
||||||
if (Directory.Exists(bMetadataSingletonDirectory))
|
|
||||||
results.Add(bMetadataSingletonDirectory);
|
|
||||||
aPropertySingletonDirectory = IResult.GetResultsDateGroupDirectory(configuration, nameof(A_Property), "{}");
|
|
||||||
if (Directory.Exists(aPropertySingletonDirectory))
|
|
||||||
results.Add(aPropertySingletonDirectory);
|
|
||||||
cResizeContentDirectory = Path.Combine(IResult.GetResultsFullGroupDirectory(configuration, cResizeName, outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "()");
|
|
||||||
if (Directory.Exists(cResizeContentDirectory))
|
|
||||||
results.Add(cResizeContentDirectory);
|
|
||||||
cResizeSingletonDirectory = Path.Combine(IResult.GetResultsFullGroupDirectory(configuration, cResizeName, outputResolution, includeResizeGroup: true, includeModel: false, includePredictorModel: false), "{}");
|
|
||||||
if (Directory.Exists(cResizeSingletonDirectory))
|
|
||||||
results.Add(cResizeSingletonDirectory);
|
|
||||||
return results.ToArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SearchForAbandonedFilesFull(string argZero, string rootDirectory, bool onlyJson)
|
|
||||||
{
|
|
||||||
bool check;
|
|
||||||
string[] files;
|
|
||||||
string moveFile;
|
|
||||||
string extension;
|
|
||||||
string? directory;
|
|
||||||
const int last = 6;
|
|
||||||
string searchPattern;
|
|
||||||
string searchDirectory;
|
|
||||||
int lessThan = last + 1;
|
|
||||||
string? parentDirectory;
|
|
||||||
DirectoryInfo directoryInfo;
|
|
||||||
string fileNameWithoutExtension;
|
|
||||||
IEnumerator<FileInfo> enumerator;
|
|
||||||
List<string[]> fileMovePaths = new();
|
|
||||||
List<string> toReviewFiles = new();
|
|
||||||
int rootDirectoryLength = rootDirectory.Length;
|
|
||||||
for (int i = 1; i < lessThan; i++)
|
|
||||||
{
|
|
||||||
files = i switch
|
|
||||||
{
|
|
||||||
1 => Directory.GetFiles(rootDirectory, "*.json", SearchOption.AllDirectories),
|
|
||||||
2 => Directory.GetFiles(rootDirectory, "*.nosj", SearchOption.AllDirectories),
|
|
||||||
3 => Directory.GetFiles(rootDirectory, "*.jpeg", SearchOption.AllDirectories),
|
|
||||||
4 => Directory.GetFiles(rootDirectory, "*.tvs", SearchOption.AllDirectories),
|
|
||||||
5 => Directory.GetFiles(rootDirectory, "*.png", SearchOption.AllDirectories),
|
|
||||||
last => Directory.GetFiles(rootDirectory, "*", SearchOption.AllDirectories),
|
|
||||||
_ => Array.Empty<string>()
|
|
||||||
};
|
|
||||||
foreach (string file in files)
|
|
||||||
{
|
|
||||||
extension = Path.GetExtension(file);
|
|
||||||
if (extension == ".delete")
|
|
||||||
continue;
|
|
||||||
directory = Path.GetDirectoryName(file);
|
|
||||||
if (string.IsNullOrEmpty(directory))
|
|
||||||
continue;
|
|
||||||
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(file);
|
|
||||||
if (file.EndsWith(" - R.png"))
|
|
||||||
continue;
|
|
||||||
if (fileNameWithoutExtension.Length < 1)
|
|
||||||
continue;
|
|
||||||
if (fileNameWithoutExtension[1..] != string.Concat(" - ", Path.GetFileNameWithoutExtension(directory)))
|
|
||||||
{
|
|
||||||
searchPattern = string.Concat(fileNameWithoutExtension, '*');
|
|
||||||
searchDirectory = string.Concat(argZero, directory[rootDirectoryLength..]);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (fileNameWithoutExtension.Length < 4)
|
|
||||||
continue;
|
|
||||||
searchPattern = string.Concat(fileNameWithoutExtension[4..], '*');
|
|
||||||
parentDirectory = Path.GetDirectoryName(directory);
|
|
||||||
if (string.IsNullOrEmpty(parentDirectory))
|
|
||||||
continue;
|
|
||||||
searchDirectory = string.Concat(argZero, parentDirectory[rootDirectoryLength..]);
|
|
||||||
}
|
|
||||||
directoryInfo = new(searchDirectory);
|
|
||||||
if (!directoryInfo.Exists)
|
|
||||||
check = false;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
enumerator = directoryInfo.EnumerateFiles(searchPattern, SearchOption.TopDirectoryOnly).GetEnumerator();
|
|
||||||
check = enumerator.MoveNext();
|
|
||||||
}
|
|
||||||
if (check)
|
|
||||||
continue;
|
|
||||||
toReviewFiles.Add(file);
|
|
||||||
}
|
|
||||||
if (toReviewFiles.Any())
|
|
||||||
throw new Exception("Need to fix property having the extension before .json extension!");
|
|
||||||
foreach (string toReviewFile in toReviewFiles)
|
|
||||||
{
|
|
||||||
extension = Path.GetExtension(toReviewFile);
|
|
||||||
if (extension == ".delete")
|
|
||||||
continue;
|
|
||||||
directory = Path.GetDirectoryName(toReviewFile);
|
|
||||||
if (string.IsNullOrEmpty(directory))
|
|
||||||
continue;
|
|
||||||
moveFile = Path.Combine(directory, Path.ChangeExtension(toReviewFile, ".delete"));
|
|
||||||
if (i == last)
|
|
||||||
fileMovePaths.Add(new string[] { toReviewFile, moveFile });
|
|
||||||
else if (extension is ".nosj")
|
|
||||||
File.Delete(toReviewFile);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (File.Exists(moveFile))
|
|
||||||
File.Delete(moveFile);
|
|
||||||
File.Move(toReviewFile, moveFile);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
toReviewFiles.Clear();
|
|
||||||
if (onlyJson)
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (fileMovePaths.Any())
|
|
||||||
throw new Exception(string.Join(',', (from l in fileMovePaths select l[0]).ToArray()));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string GetDiffRootDirectory(string diffPropertyDirectory)
|
public static string GetDiffRootDirectory(string diffPropertyDirectory)
|
||||||
{
|
{
|
||||||
string result = string.Empty;
|
string result = string.Empty;
|
||||||
@ -374,4 +396,96 @@ public static class A_Property
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static double GetStandardDeviation(IEnumerable<long> values, double average)
|
||||||
|
{
|
||||||
|
double result = 0;
|
||||||
|
if (!values.Any())
|
||||||
|
throw new Exception("Collection must have at least one value!");
|
||||||
|
double sum = values.Sum(l => (l - average) * (l - average));
|
||||||
|
result = Math.Sqrt(sum / values.Count());
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TimeSpan GetThreeStandardDeviationHigh(int minimum, PropertyHolder[] propertyHolderCollection)
|
||||||
|
{
|
||||||
|
TimeSpan result;
|
||||||
|
List<long> ticksCollection = new();
|
||||||
|
foreach (PropertyHolder propertyHolder in propertyHolderCollection)
|
||||||
|
{
|
||||||
|
if (propertyHolder.Property is null || propertyHolder.MinimumDateTime is null)
|
||||||
|
continue;
|
||||||
|
ticksCollection.Add(propertyHolder.MinimumDateTime.Value.Ticks);
|
||||||
|
}
|
||||||
|
long threeStandardDeviationHigh;
|
||||||
|
long min;
|
||||||
|
if (!ticksCollection.Any())
|
||||||
|
min = 0;
|
||||||
|
else
|
||||||
|
min = ticksCollection.Min();
|
||||||
|
if (ticksCollection.Count < minimum)
|
||||||
|
threeStandardDeviationHigh = long.MaxValue;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ticksCollection = (from l in ticksCollection select l - min).ToList();
|
||||||
|
double sum = ticksCollection.Sum();
|
||||||
|
double average = sum / ticksCollection.Count;
|
||||||
|
double standardDeviation = GetStandardDeviation(ticksCollection, average);
|
||||||
|
threeStandardDeviationHigh = (long)Math.Ceiling(average + min + (standardDeviation * 3));
|
||||||
|
}
|
||||||
|
result = new TimeSpan(threeStandardDeviationHigh - min);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static (int, List<DateTime>, List<PropertyHolder>) Get(PropertyHolder[] propertyHolderCollection, TimeSpan threeStandardDeviationHigh, int i)
|
||||||
|
{
|
||||||
|
List<PropertyHolder> results = new();
|
||||||
|
int j = i;
|
||||||
|
long? ticks;
|
||||||
|
TimeSpan timeSpan;
|
||||||
|
PropertyHolder propertyHolder;
|
||||||
|
List<DateTime> dateTimes = new();
|
||||||
|
PropertyHolder nextPropertyHolder;
|
||||||
|
for (; j < propertyHolderCollection.Length; j++)
|
||||||
|
{
|
||||||
|
ticks = null;
|
||||||
|
propertyHolder = propertyHolderCollection[j];
|
||||||
|
if (propertyHolder.Property is null || propertyHolder.MinimumDateTime is null)
|
||||||
|
continue;
|
||||||
|
for (int k = j + 1; k < propertyHolderCollection.Length; k++)
|
||||||
|
{
|
||||||
|
nextPropertyHolder = propertyHolderCollection[k];
|
||||||
|
if (nextPropertyHolder.Property is not null && nextPropertyHolder.MinimumDateTime is not null)
|
||||||
|
{
|
||||||
|
ticks = nextPropertyHolder.MinimumDateTime.Value.Ticks;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
results.Add(propertyHolder);
|
||||||
|
dateTimes.Add(propertyHolder.MinimumDateTime.Value);
|
||||||
|
if (ticks.HasValue)
|
||||||
|
{
|
||||||
|
timeSpan = new(ticks.Value - propertyHolder.MinimumDateTime.Value.Ticks);
|
||||||
|
if (timeSpan > threeStandardDeviationHigh)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return new(j, dateTimes, results);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool Any(List<PropertyHolder[]> propertyHolderCollections)
|
||||||
|
{
|
||||||
|
bool result = false;
|
||||||
|
foreach (PropertyHolder[] propertyHolderCollection in propertyHolderCollections)
|
||||||
|
{
|
||||||
|
if (!propertyHolderCollection.Any())
|
||||||
|
continue;
|
||||||
|
if ((from l in propertyHolderCollection where l.Any() select true).Any())
|
||||||
|
{
|
||||||
|
result = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -15,10 +15,10 @@ public interface IResult
|
|||||||
string TestStatic_GetResultsDateGroupDirectory(Models.Configuration configuration, string description, string jsonGroup);
|
string TestStatic_GetResultsDateGroupDirectory(Models.Configuration configuration, string description, string jsonGroup);
|
||||||
static string GetResultsDateGroupDirectory(Models.Configuration configuration, string description, string jsonGroup) => Result.GetResultsDateGroupDirectory(configuration, description, jsonGroup);
|
static string GetResultsDateGroupDirectory(Models.Configuration configuration, string description, string jsonGroup) => Result.GetResultsDateGroupDirectory(configuration, description, jsonGroup);
|
||||||
|
|
||||||
string TestStatic_GetResultsFullGroupDirectory(Models.Configuration configuration, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel);
|
string TestStatic_GetResultsFullGroupDirectory(Models.Configuration configuration, string modelName, string predictorModelName, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel);
|
||||||
static string GetResultsFullGroupDirectory(Models.Configuration configuration, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel) => Result.GetResultsFullGroupDirectory(configuration, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel);
|
static string GetResultsFullGroupDirectory(Models.Configuration configuration, string modelName, string predictorModelName, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel) => Result.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel);
|
||||||
|
|
||||||
List<string> TestStatic_GetDirectoryInfoCollection(Models.Configuration configuration, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription);
|
List<string> TestStatic_GetDirectoryInfoCollection(Models.Configuration configuration, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription);
|
||||||
static List<string> GetDirectoryInfoCollection(Models.Configuration configuration, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription) => Result.GetDirectoryInfoCollection(configuration, sourceDirectory, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel, contentDescription, singletonDescription, collectionDescription);
|
static List<string> GetDirectoryInfoCollection(Models.Configuration configuration, string modelName, string predictorModelName, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription) => Result.GetDirectoryInfoCollection(configuration, modelName, predictorModelName, sourceDirectory, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel, contentDescription, singletonDescription, collectionDescription);
|
||||||
|
|
||||||
}
|
}
|
@ -33,14 +33,14 @@ internal class Result
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static string GetResultsFullGroupDirectory(Models.Configuration configuration, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel)
|
internal static string GetResultsFullGroupDirectory(Models.Configuration configuration, string modelName, string predictorModelName, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel)
|
||||||
{
|
{
|
||||||
string result = GetResultsDateGroupDirectory(configuration, description);
|
string result = GetResultsDateGroupDirectory(configuration, description);
|
||||||
if (includeResizeGroup)
|
if (includeResizeGroup)
|
||||||
result = Path.Combine(result, outputResolution);
|
result = Path.Combine(result, outputResolution);
|
||||||
if (includeModel && includePredictorModel)
|
if (includeModel && includePredictorModel)
|
||||||
{
|
{
|
||||||
string dateGroupDirectory = string.Concat(outputResolution.Replace(" ", string.Empty), " - ", "_Configuration.ModelName", " - ", "_Configuration.PredictorModelName");
|
string dateGroupDirectory = string.Concat(outputResolution.Replace(" ", string.Empty), " - ", modelName, " - ", predictorModelName);
|
||||||
result = Path.Combine(result, dateGroupDirectory);
|
result = Path.Combine(result, dateGroupDirectory);
|
||||||
}
|
}
|
||||||
else if (includeModel)
|
else if (includeModel)
|
||||||
@ -52,17 +52,17 @@ internal class Result
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static List<string> GetDirectoryInfoCollection(Models.Configuration configuration, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription)
|
internal static List<string> GetDirectoryInfoCollection(Models.Configuration configuration, string modelName, string predictorModelName, string sourceDirectory, string description, string outputResolution, bool includeResizeGroup, bool includeModel, bool includePredictorModel, string contentDescription, string singletonDescription, string collectionDescription)
|
||||||
{
|
{
|
||||||
List<string> results = new();
|
List<string> results = new();
|
||||||
string result = string.Empty;
|
string result = string.Empty;
|
||||||
string checkDirectory;
|
string checkDirectory;
|
||||||
string sourceDirectorySegment = GetRelativePath(configuration, sourceDirectory);
|
string sourceDirectorySegment = GetRelativePath(configuration, sourceDirectory);
|
||||||
string dateGroupDirectory = IResult.GetResultsFullGroupDirectory(configuration, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel);
|
string dateGroupDirectory = IResult.GetResultsFullGroupDirectory(configuration, modelName, predictorModelName, description, outputResolution, includeResizeGroup, includeModel, includePredictorModel);
|
||||||
if (!string.IsNullOrEmpty(contentDescription))
|
if (!string.IsNullOrEmpty(contentDescription))
|
||||||
{
|
{
|
||||||
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
||||||
DirectoryInfo contentDirectoryInfo = new(result.Replace("<>", "()"));
|
System.IO.DirectoryInfo contentDirectoryInfo = new(result.Replace("<>", "()"));
|
||||||
if (!contentDirectoryInfo.Exists)
|
if (!contentDirectoryInfo.Exists)
|
||||||
contentDirectoryInfo.Create();
|
contentDirectoryInfo.Create();
|
||||||
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("() - ", contentDescription));
|
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("() - ", contentDescription));
|
||||||
@ -72,7 +72,7 @@ internal class Result
|
|||||||
if (!string.IsNullOrEmpty(singletonDescription))
|
if (!string.IsNullOrEmpty(singletonDescription))
|
||||||
{
|
{
|
||||||
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
||||||
DirectoryInfo singletonDirectoryInfo = new(result.Replace("<>", "{}"));
|
System.IO.DirectoryInfo singletonDirectoryInfo = new(result.Replace("<>", "{}"));
|
||||||
if (!singletonDirectoryInfo.Exists)
|
if (!singletonDirectoryInfo.Exists)
|
||||||
singletonDirectoryInfo.Create();
|
singletonDirectoryInfo.Create();
|
||||||
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("{} - ", singletonDescription));
|
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("{} - ", singletonDescription));
|
||||||
@ -82,7 +82,7 @@ internal class Result
|
|||||||
if (!string.IsNullOrEmpty(collectionDescription))
|
if (!string.IsNullOrEmpty(collectionDescription))
|
||||||
{
|
{
|
||||||
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
result = string.Concat(Path.Combine(dateGroupDirectory, "<>"), sourceDirectorySegment);
|
||||||
DirectoryInfo collectionDirectoryInfo = new(result.Replace("<>", "[]"));
|
System.IO.DirectoryInfo collectionDirectoryInfo = new(result.Replace("<>", "[]"));
|
||||||
if (!collectionDirectoryInfo.Exists)
|
if (!collectionDirectoryInfo.Exists)
|
||||||
collectionDirectoryInfo.Create();
|
collectionDirectoryInfo.Create();
|
||||||
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("[] - ", collectionDescription));
|
checkDirectory = Path.Combine(dateGroupDirectory, string.Concat("[] - ", collectionDescription));
|
||||||
|
@ -119,44 +119,35 @@ public class C_Resize
|
|||||||
int outputResolutionOrientation = resize[2];
|
int outputResolutionOrientation = resize[2];
|
||||||
using Bitmap temp = new(subFile, useIcm: false);
|
using Bitmap temp = new(subFile, useIcm: false);
|
||||||
PropertyItem[] propertyItems = temp.PropertyItems;
|
PropertyItem[] propertyItems = temp.PropertyItems;
|
||||||
|
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
||||||
switch (outputResolutionOrientation) // exif 274
|
switch (outputResolutionOrientation) // exif 274
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
break; // 1 = Horizontal (normal)
|
break; // 1 = Horizontal (normal)
|
||||||
case 2:
|
case 2:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipX);
|
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipX);
|
||||||
break; // 2 = Mirror horizontal
|
break; // 2 = Mirror horizontal
|
||||||
case 3:
|
case 3:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate180FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate180FlipNone);
|
||||||
break; // 3 = Rotate 180
|
break; // 3 = Rotate 180
|
||||||
case 4:
|
case 4:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipY);
|
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipY);
|
||||||
break; // 4 = Mirror vertical
|
break; // 4 = Mirror vertical
|
||||||
case 5:
|
case 5:
|
||||||
bitmap = new(temp, outputResolutionHeight, outputResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate270FlipX);
|
bitmap.RotateFlip(RotateFlipType.Rotate270FlipX);
|
||||||
break; // 5 = Mirror horizontal and rotate 270 CW
|
break; // 5 = Mirror horizontal and rotate 270 CW
|
||||||
case 6:
|
case 6:
|
||||||
bitmap = new(temp, outputResolutionHeight, outputResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
|
||||||
break; // 6 = Rotate 90 CW
|
break; // 6 = Rotate 90 CW
|
||||||
case 7:
|
case 7:
|
||||||
bitmap = new(temp, outputResolutionHeight, outputResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate90FlipX);
|
bitmap.RotateFlip(RotateFlipType.Rotate90FlipX);
|
||||||
break; // 7 = Mirror horizontal and rotate 90 CW
|
break; // 7 = Mirror horizontal and rotate 90 CW
|
||||||
case 8:
|
case 8:
|
||||||
bitmap = new(temp, outputResolutionHeight, outputResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate270FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate270FlipNone);
|
||||||
break; // 8 = Rotate 270 CW
|
break; // 8 = Rotate 270 CW
|
||||||
default:
|
default:
|
||||||
bitmap = new(temp, outputResolutionWidth, outputResolutionHeight);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (fileInfo is null)
|
if (fileInfo is null)
|
||||||
@ -182,44 +173,35 @@ public class C_Resize
|
|||||||
int outputResolutionOrientation = resize[2];
|
int outputResolutionOrientation = resize[2];
|
||||||
using Bitmap temp = new(subFile, useIcm: false);
|
using Bitmap temp = new(subFile, useIcm: false);
|
||||||
PropertyItem[] propertyItems = temp.PropertyItems;
|
PropertyItem[] propertyItems = temp.PropertyItems;
|
||||||
|
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
||||||
switch (outputResolutionOrientation) // exif 274
|
switch (outputResolutionOrientation) // exif 274
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
break; // 1 = Horizontal (normal)
|
break; // 1 = Horizontal (normal)
|
||||||
case 2:
|
case 2:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipX);
|
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipX);
|
||||||
break; // 2 = Mirror horizontal
|
break; // 2 = Mirror horizontal
|
||||||
case 3:
|
case 3:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate180FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate180FlipNone);
|
||||||
break; // 3 = Rotate 180
|
break; // 3 = Rotate 180
|
||||||
case 4:
|
case 4:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipY);
|
bitmap.RotateFlip(RotateFlipType.RotateNoneFlipY);
|
||||||
break; // 4 = Mirror vertical
|
break; // 4 = Mirror vertical
|
||||||
case 5:
|
case 5:
|
||||||
bitmap = new(temp, tempResolutionHeight, tempResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate270FlipX);
|
bitmap.RotateFlip(RotateFlipType.Rotate270FlipX);
|
||||||
break; // 5 = Mirror horizontal and rotate 270 CW
|
break; // 5 = Mirror horizontal and rotate 270 CW
|
||||||
case 6:
|
case 6:
|
||||||
bitmap = new(temp, tempResolutionHeight, tempResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate90FlipNone);
|
||||||
break; // 6 = Rotate 90 CW
|
break; // 6 = Rotate 90 CW
|
||||||
case 7:
|
case 7:
|
||||||
bitmap = new(temp, tempResolutionHeight, tempResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate90FlipX);
|
bitmap.RotateFlip(RotateFlipType.Rotate90FlipX);
|
||||||
break; // 7 = Mirror horizontal and rotate 90 CW
|
break; // 7 = Mirror horizontal and rotate 90 CW
|
||||||
case 8:
|
case 8:
|
||||||
bitmap = new(temp, tempResolutionHeight, tempResolutionWidth);
|
|
||||||
bitmap.RotateFlip(RotateFlipType.Rotate270FlipNone);
|
bitmap.RotateFlip(RotateFlipType.Rotate270FlipNone);
|
||||||
break; // 8 = Rotate 270 CW
|
break; // 8 = Rotate 270 CW
|
||||||
default:
|
default:
|
||||||
bitmap = new(temp, tempResolutionWidth, tempResolutionHeight);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
Bitmap preRotated;
|
Bitmap preRotated;
|
||||||
|
@ -4,7 +4,7 @@ using View_by_Distance.Shared.Models.Methods;
|
|||||||
|
|
||||||
namespace View_by_Distance.Shared.Models;
|
namespace View_by_Distance.Shared.Models;
|
||||||
|
|
||||||
public class DirectoryFileSystem : Models.FileSystem, Properties.IDirectoryFileSystem, IDirectoryFileSystem
|
public class DirectoryFileSystem : FileSystem, Properties.IDirectoryFileSystem, IDirectoryFileSystem
|
||||||
{
|
{
|
||||||
|
|
||||||
// protected new string _ClassName;
|
// protected new string _ClassName;
|
||||||
|
@ -9,25 +9,25 @@ public class Face : Properties.IFace, IFace
|
|||||||
|
|
||||||
protected double? _Α;
|
protected double? _Α;
|
||||||
protected DateTime _DateTime;
|
protected DateTime _DateTime;
|
||||||
protected Models.FaceEncoding _FaceEncoding;
|
protected FaceEncoding _FaceEncoding;
|
||||||
protected Dictionary<string, Models.FacePoint[]> _FaceLandmarks;
|
protected Dictionary<string, FacePoint[]> _FaceLandmarks;
|
||||||
protected Models.OutputResolution _OutputResolution;
|
protected OutputResolution _OutputResolution;
|
||||||
protected Models.Location _Location;
|
protected Location _Location;
|
||||||
protected int? _LocationIndex;
|
protected int? _LocationIndex;
|
||||||
protected bool _Populated;
|
protected bool _Populated;
|
||||||
protected string _RelativePath;
|
protected string _RelativePath;
|
||||||
public double? α => _Α;
|
public double? α => _Α;
|
||||||
public DateTime DateTime => _DateTime;
|
public DateTime DateTime => _DateTime;
|
||||||
public Models.FaceEncoding FaceEncoding => _FaceEncoding;
|
public FaceEncoding FaceEncoding => _FaceEncoding;
|
||||||
public Dictionary<string, Models.FacePoint[]> FaceLandmarks => _FaceLandmarks;
|
public Dictionary<string, FacePoint[]> FaceLandmarks => _FaceLandmarks;
|
||||||
public Models.OutputResolution OutputResolution => _OutputResolution;
|
public OutputResolution OutputResolution => _OutputResolution;
|
||||||
public Models.Location Location => _Location;
|
public Location Location => _Location;
|
||||||
public int? LocationIndex => _LocationIndex;
|
public int? LocationIndex => _LocationIndex;
|
||||||
public bool Populated => _Populated;
|
public bool Populated => _Populated;
|
||||||
public string RelativePath => _RelativePath;
|
public string RelativePath => _RelativePath;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Face(double? α, DateTime dateTime, View_by_Distance.Shared.Models.FaceEncoding faceEncoding, Dictionary<string, View_by_Distance.Shared.Models.FacePoint[]> faceLandmarks, Models.OutputResolution outputResolution, View_by_Distance.Shared.Models.Location location, int? locationIndex, bool populated, string relativePath)
|
public Face(double? α, DateTime dateTime, FaceEncoding faceEncoding, Dictionary<string, FacePoint[]> faceLandmarks, OutputResolution outputResolution, Location location, int? locationIndex, bool populated, string relativePath)
|
||||||
{
|
{
|
||||||
_Α = α;
|
_Α = α;
|
||||||
_DateTime = dateTime;
|
_DateTime = dateTime;
|
||||||
|
@ -4,7 +4,7 @@ using View_by_Distance.Shared.Models.Methods;
|
|||||||
|
|
||||||
namespace View_by_Distance.Shared.Models;
|
namespace View_by_Distance.Shared.Models;
|
||||||
|
|
||||||
public class FaceFileSystem : Models.FileSystem, Properties.IFaceFileSystem, IFaceFileSystem
|
public class FaceFileSystem : FileSystem, Properties.IFaceFileSystem, IFaceFileSystem
|
||||||
{
|
{
|
||||||
|
|
||||||
// protected new string _ClassName;
|
// protected new string _ClassName;
|
||||||
|
@ -10,17 +10,17 @@ public class Navigate : Properties.INavigate
|
|||||||
protected string _SourceDirectory;
|
protected string _SourceDirectory;
|
||||||
protected string _DirectoryRelativePath;
|
protected string _DirectoryRelativePath;
|
||||||
protected string _EncodedSourceDirectory;
|
protected string _EncodedSourceDirectory;
|
||||||
protected Models.FaceFileSystem[] _FaceFileSystemCollection;
|
protected FaceFileSystem[] _FaceFileSystemCollection;
|
||||||
protected Models.DirectoryFileSystem[] _DirectoryFileSystemCollection;
|
protected DirectoryFileSystem[] _DirectoryFileSystemCollection;
|
||||||
public List<string[]> Levels => _Levels;
|
public List<string[]> Levels => _Levels;
|
||||||
public string SourceDirectory => _SourceDirectory;
|
public string SourceDirectory => _SourceDirectory;
|
||||||
public string DirectoryRelativePath => _DirectoryRelativePath;
|
public string DirectoryRelativePath => _DirectoryRelativePath;
|
||||||
public string EncodedSourceDirectory => _EncodedSourceDirectory;
|
public string EncodedSourceDirectory => _EncodedSourceDirectory;
|
||||||
public Models.FaceFileSystem[] FaceFileSystemCollection => _FaceFileSystemCollection;
|
public FaceFileSystem[] FaceFileSystemCollection => _FaceFileSystemCollection;
|
||||||
public Models.DirectoryFileSystem[] DirectoryFileSystemCollection => _DirectoryFileSystemCollection;
|
public DirectoryFileSystem[] DirectoryFileSystemCollection => _DirectoryFileSystemCollection;
|
||||||
|
|
||||||
[JsonConstructor]
|
[JsonConstructor]
|
||||||
public Navigate(List<string[]> levels, string sourceDirectory, string directoryRelativePath, string encodedSourceDirectory, Models.FaceFileSystem[] faceFileSystemCollection, Models.DirectoryFileSystem[] directoryFileSystemCollection)
|
public Navigate(List<string[]> levels, string sourceDirectory, string directoryRelativePath, string encodedSourceDirectory, FaceFileSystem[] faceFileSystemCollection, DirectoryFileSystem[] directoryFileSystemCollection)
|
||||||
{
|
{
|
||||||
_Levels = levels;
|
_Levels = levels;
|
||||||
_SourceDirectory = sourceDirectory;
|
_SourceDirectory = sourceDirectory;
|
||||||
|
@ -7,11 +7,11 @@ public interface IFace
|
|||||||
public double? α { get; }
|
public double? α { get; }
|
||||||
#pragma warning restore IDE1006
|
#pragma warning restore IDE1006
|
||||||
public DateTime DateTime { get; }
|
public DateTime DateTime { get; }
|
||||||
public Models.FaceEncoding FaceEncoding { get; }
|
public FaceEncoding FaceEncoding { get; }
|
||||||
public Dictionary<string, Models.FacePoint[]> FaceLandmarks { get; }
|
public Dictionary<string, FacePoint[]> FaceLandmarks { get; }
|
||||||
public Models.Location Location { get; }
|
public Location Location { get; }
|
||||||
public int? LocationIndex { get; }
|
public int? LocationIndex { get; }
|
||||||
public Models.OutputResolution OutputResolution { get; }
|
public OutputResolution OutputResolution { get; }
|
||||||
public bool Populated { get; }
|
public bool Populated { get; }
|
||||||
public string RelativePath { get; }
|
public string RelativePath { get; }
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ public interface INavigate
|
|||||||
public List<string[]> Levels { get; }
|
public List<string[]> Levels { get; }
|
||||||
public string SourceDirectory { get; }
|
public string SourceDirectory { get; }
|
||||||
public string DirectoryRelativePath { get; }
|
public string DirectoryRelativePath { get; }
|
||||||
public Models.FaceFileSystem[] FaceFileSystemCollection { get; }
|
public FaceFileSystem[] FaceFileSystemCollection { get; }
|
||||||
public Models.DirectoryFileSystem[] DirectoryFileSystemCollection { get; }
|
public DirectoryFileSystem[] DirectoryFileSystemCollection { get; }
|
||||||
|
|
||||||
}
|
}
|
@ -27,7 +27,7 @@ internal abstract class FaceFileSystem
|
|||||||
{
|
{
|
||||||
string json = File.ReadAllText(dataFullFileName);
|
string json = File.ReadAllText(dataFullFileName);
|
||||||
if (!json.Contains("MesaFab"))
|
if (!json.Contains("MesaFab"))
|
||||||
throw new Exception($"Maybe file <{Path.GetFileNameWithoutExtension(fullFileName)}> was moved to <{files[0]}> (unkown)!");
|
throw new Exception($"Maybe file <{Path.GetFileNameWithoutExtension(fullFileName)}> was moved to <{files[0]}> (unknown)!");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
json = json.Replace("MesaFab", "Mesa Fab");
|
json = json.Replace("MesaFab", "Mesa Fab");
|
||||||
@ -51,7 +51,7 @@ internal abstract class FaceFileSystem
|
|||||||
string? directoryName;
|
string? directoryName;
|
||||||
string fileNameWithoutExtension;
|
string fileNameWithoutExtension;
|
||||||
Models.FaceFileSystem faceFileSystem;
|
Models.FaceFileSystem faceFileSystem;
|
||||||
string eDistanceCollectionfileFullName;
|
string eDistanceCollectionFileFullName;
|
||||||
Models.Face[] face = Face.GetFaces(selectedFileFullName);
|
Models.Face[] face = Face.GetFaces(selectedFileFullName);
|
||||||
string extension = Path.GetExtension(selectedFileFullName);
|
string extension = Path.GetExtension(selectedFileFullName);
|
||||||
for (int i = 0; i < face.Length; i++)
|
for (int i = 0; i < face.Length; i++)
|
||||||
@ -68,12 +68,12 @@ internal abstract class FaceFileSystem
|
|||||||
continue;
|
continue;
|
||||||
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(face[i].RelativePath);
|
fileNameWithoutExtension = Path.GetFileNameWithoutExtension(face[i].RelativePath);
|
||||||
jsonFileName = string.Concat(locationIndex.Value, " - ", fileNameWithoutExtension, extension);
|
jsonFileName = string.Concat(locationIndex.Value, " - ", fileNameWithoutExtension, extension);
|
||||||
eDistanceCollectionfileFullName = string.Concat(tuple.E_DistanceCollectionDirectory, Path.Combine(directoryName, fileNameWithoutExtension, jsonFileName));
|
eDistanceCollectionFileFullName = string.Concat(tuple.E_DistanceCollectionDirectory, Path.Combine(directoryName, fileNameWithoutExtension, jsonFileName));
|
||||||
if (i == 0 && extension is ".json" && eDistanceCollectionfileFullName != selectedFileFullName)
|
if (i == 0 && extension is ".json" && eDistanceCollectionFileFullName != selectedFileFullName)
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
fileInfo = new(eDistanceCollectionfileFullName);
|
fileInfo = new(eDistanceCollectionFileFullName);
|
||||||
if (!fileInfo.Exists)
|
if (!fileInfo.Exists)
|
||||||
throw new Exception($"File <{eDistanceCollectionfileFullName}> doesn't exist!");
|
throw new Exception($"File <{eDistanceCollectionFileFullName}> doesn't exist!");
|
||||||
faceFileSystem = new Models.FaceFileSystem(requestPath, tuple.RootResultsDirectoryAbsoluteUri.Length, tuple.C_ResizeContentDirectory, tuple.D_FacesContentDirectory, fileInfo.FullName, face[i]);
|
faceFileSystem = new Models.FaceFileSystem(requestPath, tuple.RootResultsDirectoryAbsoluteUri.Length, tuple.C_ResizeContentDirectory, tuple.D_FacesContentDirectory, fileInfo.FullName, face[i]);
|
||||||
results.Add(faceFileSystem);
|
results.Add(faceFileSystem);
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ internal abstract class FileSystem
|
|||||||
if (!subDirectoryFiles.MoveNext())
|
if (!subDirectoryFiles.MoveNext())
|
||||||
{
|
{
|
||||||
directoryInfo = new(directories[i]);
|
directoryInfo = new(directories[i]);
|
||||||
fileSystem = new Models.DirectoryFileSystem(directoryInfo);
|
fileSystem = new DirectoryFileSystem(directoryInfo);
|
||||||
results.Add(fileSystem);
|
results.Add(fileSystem);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -8,16 +8,16 @@ public interface IPerson
|
|||||||
Dictionary<DateTime, string[]> TestStatic_Split(string knownPeopleFile);
|
Dictionary<DateTime, string[]> TestStatic_Split(string knownPeopleFile);
|
||||||
static Dictionary<DateTime, string[]> Split(string knownPeopleFile) => Person.Split(knownPeopleFile);
|
static Dictionary<DateTime, string[]> Split(string knownPeopleFile) => Person.Split(knownPeopleFile);
|
||||||
|
|
||||||
Models.Person[] TestStatic_GetPeople(Models.Properties.IStorage storage);
|
Models.Person[] TestStatic_GetPeople(Properties.IStorage storage);
|
||||||
static Models.Person[] GetPeople(Models.Properties.IStorage storage) => Person.GetPeople(storage);
|
static Models.Person[] GetPeople(Properties.IStorage storage) => Person.GetPeople(storage);
|
||||||
|
|
||||||
void TestStatic_SavePerson(Models.Properties.IStorage storage, Models.Person person);
|
void TestStatic_SavePerson(Properties.IStorage storage, Models.Person person);
|
||||||
static void SavePerson(Models.Properties.IStorage storage, Models.Person person) => Person.SavePerson(storage, person);
|
static void SavePerson(Properties.IStorage storage, Models.Person person) => Person.SavePerson(storage, person);
|
||||||
|
|
||||||
string TestStatic_GetFileFullName(Models.Properties.IStorage storage, Models.Person person);
|
string TestStatic_GetFileFullName(Properties.IStorage storage, Models.Person person);
|
||||||
static string GetFileFullName(Models.Properties.IStorage storage, Models.Person person) => PersonBirthday.GetFileFullName(storage, person.Birthday);
|
static string GetFileFullName(Properties.IStorage storage, Models.Person person) => PersonBirthday.GetFileFullName(storage, person.Birthday);
|
||||||
|
|
||||||
Models.Person TestStatic_CreatePerson(Models.Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses);
|
Models.Person TestStatic_CreatePerson(Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses);
|
||||||
static Models.Person CreatePerson(Models.Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses) => Person.CreatePerson(storage, birthday, name, comments, urls, numbers, emails, addresses);
|
static Models.Person CreatePerson(Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses) => Person.CreatePerson(storage, birthday, name, comments, urls, numbers, emails, addresses);
|
||||||
|
|
||||||
}
|
}
|
@ -12,19 +12,19 @@ public interface IPersonBirthday
|
|||||||
string TestStatic_GetFormat() => PersonBirthday.GetFormat();
|
string TestStatic_GetFormat() => PersonBirthday.GetFormat();
|
||||||
static string GetFormat() => PersonBirthday.GetFormat();
|
static string GetFormat() => PersonBirthday.GetFormat();
|
||||||
|
|
||||||
Models.PersonBirthday TestStatic_GetNextBirthdate(Models.Properties.IStorage storage) => PersonBirthday.GetNextBirthdate(storage);
|
Models.PersonBirthday TestStatic_GetNextBirthDate(Properties.IStorage storage) => PersonBirthday.GetNextBirthDate(storage);
|
||||||
static Models.PersonBirthday GetNextBirthdate(Models.Properties.IStorage storage) => PersonBirthday.GetNextBirthdate(storage);
|
static Models.PersonBirthday GetNextBirthDate(Properties.IStorage storage) => PersonBirthday.GetNextBirthDate(storage);
|
||||||
|
|
||||||
string TestStatic_GetFormated(Models.PersonBirthday personBirthday) => PersonBirthday.GetFormated(personBirthday);
|
string TestStatic_GetFormatted(Models.PersonBirthday personBirthday) => PersonBirthday.GetFormatted(personBirthday);
|
||||||
static string GetFormated(Models.PersonBirthday personBirthday) => PersonBirthday.GetFormated(personBirthday);
|
static string GetFormatted(Models.PersonBirthday personBirthday) => PersonBirthday.GetFormatted(personBirthday);
|
||||||
|
|
||||||
string TestStatic_GetFileName(Models.PersonBirthday personBirthday) => PersonBirthday.GetFileName(personBirthday);
|
string TestStatic_GetFileName(Models.PersonBirthday personBirthday) => PersonBirthday.GetFileName(personBirthday);
|
||||||
static string GetFileName(Models.PersonBirthday personBirthday) => PersonBirthday.GetFileName(personBirthday);
|
static string GetFileName(Models.PersonBirthday personBirthday) => PersonBirthday.GetFileName(personBirthday);
|
||||||
|
|
||||||
bool TestStatic_DoesBirthDateExits(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => DoesBirthDateExits(storage, personBirthday);
|
bool TestStatic_DoesBirthDateExits(Properties.IStorage storage, Models.PersonBirthday personBirthday) => DoesBirthDateExits(storage, personBirthday);
|
||||||
static bool DoesBirthDateExits(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => DoesBirthDateExits(storage, personBirthday);
|
static bool DoesBirthDateExits(Properties.IStorage storage, Models.PersonBirthday personBirthday) => DoesBirthDateExits(storage, personBirthday);
|
||||||
|
|
||||||
string TestStatic_GetFileFullName(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => PersonBirthday.GetFileFullName(storage, personBirthday);
|
string TestStatic_GetFileFullName(Properties.IStorage storage, Models.PersonBirthday personBirthday) => PersonBirthday.GetFileFullName(storage, personBirthday);
|
||||||
static string GetFileFullName(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => PersonBirthday.GetFileFullName(storage, personBirthday);
|
static string GetFileFullName(Properties.IStorage storage, Models.PersonBirthday personBirthday) => PersonBirthday.GetFileFullName(storage, personBirthday);
|
||||||
|
|
||||||
}
|
}
|
@ -5,4 +5,7 @@ public interface IPersonName
|
|||||||
|
|
||||||
// ...
|
// ...
|
||||||
|
|
||||||
|
string TestStatic_GetFullName(Models.PersonName personName);
|
||||||
|
static string GetFullName(Models.PersonName personName) => PersonName.GetFullName(personName);
|
||||||
|
|
||||||
}
|
}
|
@ -8,7 +8,7 @@ public interface IStorage
|
|||||||
bool TestStatic_WriteAllText(string path, string contents, bool compareBeforeWrite);
|
bool TestStatic_WriteAllText(string path, string contents, bool compareBeforeWrite);
|
||||||
static bool WriteAllText(string path, string contents, bool compareBeforeWrite) => Storage.WriteAllText(path, contents, compareBeforeWrite);
|
static bool WriteAllText(string path, string contents, bool compareBeforeWrite) => Storage.WriteAllText(path, contents, compareBeforeWrite);
|
||||||
|
|
||||||
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) TestStatic_GetTuple(Models.Properties.IStorage storage);
|
(string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) TestStatic_GetTuple(Properties.IStorage storage);
|
||||||
static (string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) GetTuple(Models.Properties.IStorage storage) => new(new Uri(storage.RootResultsDirectory).AbsoluteUri, Path.Combine(storage.ResizeRootDirectory, "()"), Path.Combine(storage.FaceRootDirectory, "()"), Path.Combine(storage.DistanceResultRootDirectory, "[]"));
|
static (string RootResultsDirectoryAbsoluteUri, string C_ResizeContentDirectory, string D_FacesContentDirectory, string E_DistanceCollectionDirectory) GetTuple(Properties.IStorage storage) => new(new Uri(storage.RootResultsDirectory).AbsoluteUri, Path.Combine(storage.ResizeRootDirectory, "()"), Path.Combine(storage.FaceRootDirectory, "()"), Path.Combine(storage.DistanceResultRootDirectory, "[]"));
|
||||||
|
|
||||||
}
|
}
|
@ -7,7 +7,7 @@ internal abstract class Person
|
|||||||
|
|
||||||
// ...
|
// ...
|
||||||
|
|
||||||
private static List<string> ValidatePerson(Models.Properties.IStorage storage, Models.PersonId id, Models.PersonBirthday birthday, Models.PersonName name)
|
private static List<string> ValidatePerson(Properties.IStorage storage, Models.PersonId id, Models.PersonBirthday birthday, Models.PersonName name)
|
||||||
{
|
{
|
||||||
List<string> results = new();
|
List<string> results = new();
|
||||||
if (birthday is null)
|
if (birthday is null)
|
||||||
@ -21,16 +21,16 @@ internal abstract class Person
|
|||||||
if (name.First is null || string.IsNullOrEmpty(name.First.Value))
|
if (name.First is null || string.IsNullOrEmpty(name.First.Value))
|
||||||
results.Add("Fist Name must be supplied!");
|
results.Add("Fist Name must be supplied!");
|
||||||
if (PersonBirthday.DoesBirthDateExits(storage, birthday))
|
if (PersonBirthday.DoesBirthDateExits(storage, birthday))
|
||||||
results.Add("Birthdate already exits!");
|
results.Add("BirthDate already exits!");
|
||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static Models.Person CreatePerson(Models.Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses)
|
internal static Models.Person CreatePerson(Properties.IStorage storage, Models.PersonBirthday birthday, Models.PersonName name, List<Models.PersonComment> comments, List<Models.PersonURL> urls, List<Models.PersonNumber> numbers, List<Models.PersonEmail> emails, List<Models.PersonAddress> addresses)
|
||||||
{
|
{
|
||||||
Models.Person result;
|
Models.Person result;
|
||||||
Models.PersonId id = new(birthday.Value.Ticks);
|
Models.PersonId id = new(birthday.Value.Ticks);
|
||||||
if (birthday.Value == DateTime.MinValue)
|
if (birthday.Value == DateTime.MinValue)
|
||||||
birthday = PersonBirthday.GetNextBirthdate(storage);
|
birthday = PersonBirthday.GetNextBirthDate(storage);
|
||||||
List<string> results = ValidatePerson(storage, id, birthday, name);
|
List<string> results = ValidatePerson(storage, id, birthday, name);
|
||||||
if (results.Any())
|
if (results.Any())
|
||||||
throw new Exception(string.Join(Environment.NewLine, results));
|
throw new Exception(string.Join(Environment.NewLine, results));
|
||||||
@ -126,14 +126,14 @@ internal abstract class Person
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static void SavePerson(Models.Properties.IStorage storage, Models.Person person)
|
internal static void SavePerson(Properties.IStorage storage, Models.Person person)
|
||||||
{
|
{
|
||||||
string fileName = IPerson.GetFileFullName(storage, person);
|
string fileName = IPerson.GetFileFullName(storage, person);
|
||||||
string json = JsonSerializer.Serialize(person, new JsonSerializerOptions { WriteIndented = true });
|
string json = JsonSerializer.Serialize(person, new JsonSerializerOptions { WriteIndented = true });
|
||||||
_ = IStorage.WriteAllText(fileName, json, compareBeforeWrite: true);
|
_ = IStorage.WriteAllText(fileName, json, compareBeforeWrite: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<Models.Person> GetPeopleFromText(Models.Properties.IStorage storage, string localKnownPeopleFile)
|
private static List<Models.Person> GetPeopleFromText(Properties.IStorage storage, string localKnownPeopleFile)
|
||||||
{
|
{
|
||||||
List<Models.Person> results = new();
|
List<Models.Person> results = new();
|
||||||
string comment;
|
string comment;
|
||||||
@ -175,7 +175,7 @@ internal abstract class Person
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static Models.Person[] GetPeople(Models.Properties.IStorage storage)
|
internal static Models.Person[] GetPeople(Properties.IStorage storage)
|
||||||
{
|
{
|
||||||
List<Models.Person> results = new();
|
List<Models.Person> results = new();
|
||||||
string json;
|
string json;
|
||||||
@ -187,11 +187,14 @@ internal abstract class Person
|
|||||||
string directory = Path.Combine(storage.PeopleRootDirectory, "{}");
|
string directory = Path.Combine(storage.PeopleRootDirectory, "{}");
|
||||||
if (!Directory.Exists(directory))
|
if (!Directory.Exists(directory))
|
||||||
_ = Directory.CreateDirectory(directory);
|
_ = Directory.CreateDirectory(directory);
|
||||||
if (!Directory.Exists(storage.RootDirectory))
|
string? rootDirectoryParent = Path.GetDirectoryName(storage.RootDirectory);
|
||||||
|
if (string.IsNullOrEmpty(rootDirectoryParent))
|
||||||
|
throw new Exception($"{nameof(rootDirectoryParent)} is null!");
|
||||||
|
if (!Directory.Exists(rootDirectoryParent))
|
||||||
localKnownPeopleFile = string.Empty;
|
localKnownPeopleFile = string.Empty;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
files = Directory.GetFiles(storage.RootDirectory, "*People*.txt", SearchOption.TopDirectoryOnly);
|
files = Directory.GetFiles(rootDirectoryParent, "*People*.txt", SearchOption.TopDirectoryOnly);
|
||||||
if (files.Any())
|
if (files.Any())
|
||||||
localKnownPeopleFile = files[0];
|
localKnownPeopleFile = files[0];
|
||||||
else
|
else
|
||||||
|
@ -8,9 +8,10 @@ internal abstract class PersonBirthday
|
|||||||
// ...
|
// ...
|
||||||
|
|
||||||
internal static string GetFormat() => "yyyy-MM-dd_HH";
|
internal static string GetFormat() => "yyyy-MM-dd_HH";
|
||||||
internal static Models.PersonBirthday GetNextBirthdate(Models.Properties.IStorage storage) => throw new Exception(storage.ToString()); // Person.GetNextBirthdate(storage);
|
internal static Models.PersonBirthday GetNextBirthDate(Properties.IStorage storage) => throw new Exception(storage.ToString()); // Person.GetNextBirthDate(storage);
|
||||||
internal static string GetFormated(Models.PersonBirthday personBirthday) => personBirthday.Value.ToString(GetFormat());
|
internal static string GetFormatted(Models.PersonBirthday personBirthday) => personBirthday.Value.ToString(GetFormat());
|
||||||
internal static string GetFileName(Models.PersonBirthday personBirthday) => $"{personBirthday.Value.ToString(GetFormat())}.json";
|
internal static string GetFileName(Models.PersonBirthday personBirthday) => $"{personBirthday.Value.ToString(GetFormat())}.json";
|
||||||
internal static bool DoesBirthDateExits(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => File.Exists(GetFileFullName(storage, personBirthday));
|
internal static bool DoesBirthDateExits(Properties.IStorage storage, Models.PersonBirthday personBirthday) => File.Exists(GetFileFullName(storage, personBirthday));
|
||||||
internal static string GetFileFullName(Models.Properties.IStorage storage, Models.PersonBirthday personBirthday) => Path.Combine(storage.PeopleRootDirectory, "{}", GetFileName(personBirthday));
|
internal static string GetFileFullName(Properties.IStorage storage, Models.PersonBirthday personBirthday) => Path.Combine(storage.PeopleRootDirectory, "{}", GetFileName(personBirthday));
|
||||||
|
|
||||||
}
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
using System.Text;
|
||||||
|
|
||||||
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
namespace View_by_Distance.Shared.Models.Stateless.Methods;
|
||||||
|
|
||||||
internal abstract class PersonName
|
internal abstract class PersonName
|
||||||
@ -57,4 +59,16 @@ internal abstract class PersonName
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal static string GetFullName(Models.PersonName personName)
|
||||||
|
{
|
||||||
|
StringBuilder result = new();
|
||||||
|
if (personName.First is not null)
|
||||||
|
_ = result.Append(personName.First.Value);
|
||||||
|
if (personName.Middle is not null)
|
||||||
|
_ = result.Append(' ').Append(personName.Middle.Value);
|
||||||
|
if (personName.Last is not null)
|
||||||
|
_ = result.Append(' ').Append(personName.Last.Value);
|
||||||
|
return result.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
10
package.json
10
package.json
@ -2,7 +2,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"Alpha": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
"Alpha": "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
||||||
"build": "dotnet build --runtime win-x64 --self-contained",
|
"build": "dotnet build --runtime win-x64 --self-contained",
|
||||||
"dotnet-format": "dotnet format --report .vscode --verbosity detailed --severity warn View-by-Distance.sln",
|
"dotnet-format": "dotnet format --report .vscode --verbosity detailed --severity warn",
|
||||||
"pull": "git pull",
|
"pull": "git pull",
|
||||||
"garbage-collect": "git gc",
|
"garbage-collect": "git gc",
|
||||||
"A-Instance-Pictures": "set ASPNETCORE_ENVIRONMENT=Development&& dotnet run --project \"Instance\\Instance.csproj\" --runtime win-x64 --no-self-contained \"C:\\Tmp\\phares\\Pictures\" s",
|
"A-Instance-Pictures": "set ASPNETCORE_ENVIRONMENT=Development&& dotnet run --project \"Instance\\Instance.csproj\" --runtime win-x64 --no-self-contained \"C:\\Tmp\\phares\\Pictures\" s",
|
||||||
@ -13,5 +13,13 @@
|
|||||||
"Z-Compare-Publish-": "dotnet publish \"Compare\\Compare.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Compare\\\"",
|
"Z-Compare-Publish-": "dotnet publish \"Compare\\Compare.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Compare\\\"",
|
||||||
"Z-Instance-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance\\\"",
|
"Z-Instance-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance\\\"",
|
||||||
"Z-Instance-CUDA-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance-CUDA\\\""
|
"Z-Instance-CUDA-Publish-": "dotnet publish \"Instance\\Instance.csproj\" --configuration Release --runtime win-x64 --verbosity normal --self-contained true -o \"D:\\net6.0\\View-by-Distance\\Instance-CUDA\\\""
|
||||||
|
},
|
||||||
|
"Notes": {
|
||||||
|
"a": "Keep creating the .json file the same way",
|
||||||
|
"b": "However load all .json files at the beginning",
|
||||||
|
"c": "When looping through all files and file not in collection path&name or date is different from collection value",
|
||||||
|
"d": "Get id in normal fashion",
|
||||||
|
"e": "If id is in collection update collection to new path/name",
|
||||||
|
"f": "If not save and add to collection"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user