213 lines
6.1 KiB
C#
213 lines
6.1 KiB
C#
using Mono.Cecil;
|
|
using Newtonsoft.Json;
|
|
using ReCodeIt.Models;
|
|
using ReCodeItLib.Utils;
|
|
|
|
namespace ReCodeIt.Utils;
|
|
|
|
public static class DataProvider
|
|
{
|
|
static DataProvider()
|
|
{
|
|
if (!Directory.Exists(ReCodeItProjectsPath))
|
|
{
|
|
Directory.CreateDirectory(ReCodeItProjectsPath);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Is this running in the CLI?
|
|
/// </summary>
|
|
public static bool IsCli { get; set; } = false;
|
|
|
|
public static string DataPath => RegistryHelper.GetRegistryValue<string>("DataPath");
|
|
|
|
public static readonly string ReCodeItProjectsPath = Path.Combine(AppContext.BaseDirectory, "Projects");
|
|
|
|
public static List<RemapModel> Remaps { get; set; } = [];
|
|
|
|
public static Dictionary<string, HashSet<ScoringModel>> ScoringModels { get; set; } = [];
|
|
|
|
public static Settings Settings { get; private set; }
|
|
|
|
public static AssemblyDefinition AssemblyDefinition { get; private set; }
|
|
|
|
public static AssemblyDefinition NameMangledAssemblyDefinition { get; private set; }
|
|
|
|
public static ModuleDefinition ModuleDefinition { get; private set; }
|
|
|
|
public static ModuleDefinition NameMangledModuleDefinition { get; private set; }
|
|
|
|
public static void LoadAppSettings()
|
|
{
|
|
var settingsPath = Path.Combine(DataPath, "Settings.jsonc");
|
|
|
|
if (!File.Exists(settingsPath))
|
|
{
|
|
throw new FileNotFoundException($"path `{settingsPath}` does not exist...");
|
|
}
|
|
|
|
var jsonText = File.ReadAllText(settingsPath);
|
|
|
|
JsonSerializerSettings settings = new JsonSerializerSettings
|
|
{
|
|
NullValueHandling = NullValueHandling.Ignore
|
|
};
|
|
|
|
Settings = JsonConvert.DeserializeObject<Settings>(jsonText, settings);
|
|
|
|
Logger.Log($"Settings loaded from '{settingsPath}'");
|
|
}
|
|
|
|
public static void SaveAppSettings()
|
|
{
|
|
var settingsPath = RegistryHelper.GetRegistryValue<string>("SettingsPath");
|
|
|
|
if (!File.Exists(settingsPath))
|
|
{
|
|
Logger.Log($"path `{settingsPath}` does not exist...", ConsoleColor.Red);
|
|
}
|
|
|
|
JsonSerializerSettings settings = new()
|
|
{
|
|
Formatting = Formatting.Indented
|
|
};
|
|
|
|
var jsonText = JsonConvert.SerializeObject(Settings, settings);
|
|
|
|
File.WriteAllText(settingsPath, jsonText);
|
|
|
|
//Logger.Log($"App settings saved to {settingsPath}");
|
|
}
|
|
|
|
public static List<RemapModel> LoadMappingFile(string path)
|
|
{
|
|
if (!File.Exists(path))
|
|
{
|
|
Logger.Log($"Error loading mapping.json from `{path}`, First time running? Please select a mapping path");
|
|
}
|
|
|
|
var jsonText = File.ReadAllText(path);
|
|
|
|
ScoringModels = [];
|
|
|
|
var remaps = JsonConvert.DeserializeObject<List<RemapModel>>(jsonText);
|
|
|
|
if (remaps == null) { return []; }
|
|
|
|
var properties = typeof(SearchParams).GetProperties();
|
|
|
|
foreach (var remap in Remaps)
|
|
{
|
|
foreach (var property in properties)
|
|
{
|
|
if (property.PropertyType == typeof(List<string>) && property.GetValue(remap.SearchParams) is null)
|
|
{
|
|
property.SetValue(remap.SearchParams, new List<string>());
|
|
}
|
|
}
|
|
}
|
|
|
|
Logger.Log($"Mapping file loaded from '{path}' containing {Remaps.Count} remaps");
|
|
|
|
return remaps;
|
|
}
|
|
|
|
public static void SaveMapping()
|
|
{
|
|
JsonSerializerSettings settings = new()
|
|
{
|
|
NullValueHandling = NullValueHandling.Ignore,
|
|
Formatting = Formatting.Indented
|
|
};
|
|
|
|
var path = Settings.Remapper.MappingPath;
|
|
|
|
var jsonText = JsonConvert.SerializeObject(Remaps, settings);
|
|
|
|
File.WriteAllText(path, jsonText);
|
|
Logger.Log($"Mapping File Saved To {path}");
|
|
}
|
|
|
|
public static void UpdateMapping(string path)
|
|
{
|
|
if (!File.Exists(path))
|
|
{
|
|
throw new FileNotFoundException($"path `{path}` does not exist...");
|
|
}
|
|
|
|
JsonSerializerSettings settings = new()
|
|
{
|
|
NullValueHandling = NullValueHandling.Ignore,
|
|
Formatting = Formatting.Indented
|
|
};
|
|
|
|
var properties = typeof(SearchParams).GetProperties();
|
|
|
|
foreach (var remap in Remaps)
|
|
{
|
|
foreach (var property in properties)
|
|
{
|
|
if (property.PropertyType == typeof(List<string>))
|
|
{
|
|
var val = property.GetValue(remap.SearchParams);
|
|
|
|
if (val is List<string> list && list.Count > 0) { continue; }
|
|
|
|
property.SetValue(remap.SearchParams, null);
|
|
}
|
|
}
|
|
}
|
|
|
|
var jsonText = JsonConvert.SerializeObject(Remaps, settings);
|
|
|
|
File.WriteAllText(path, jsonText);
|
|
|
|
Logger.Log($"Mapping file saved to {path}");
|
|
}
|
|
|
|
public static void LoadAssemblyDefinition(string path)
|
|
{
|
|
AssemblyDefinition = null;
|
|
ModuleDefinition = null;
|
|
|
|
DefaultAssemblyResolver resolver = new();
|
|
|
|
Console.WriteLine(path);
|
|
|
|
resolver.AddSearchDirectory(Path.GetDirectoryName(path)); // Replace with the correct path : (6/14) I have no idea what I met by that
|
|
ReaderParameters parameters = new() { AssemblyResolver = resolver };
|
|
|
|
var assemblyDefinition = AssemblyDefinition.ReadAssembly(
|
|
path,
|
|
parameters);
|
|
|
|
if (assemblyDefinition is null)
|
|
{
|
|
throw new NullReferenceException("AssemblyDefinition was null...");
|
|
}
|
|
|
|
var fileName = Path.GetFileName(path);
|
|
|
|
foreach (var module in assemblyDefinition.Modules.ToArray())
|
|
{
|
|
if (module.Name == fileName)
|
|
{
|
|
Logger.Log($"Module definition {module.Name} found");
|
|
|
|
AssemblyDefinition = assemblyDefinition;
|
|
ModuleDefinition = module;
|
|
return;
|
|
}
|
|
}
|
|
|
|
Logger.Log($"Module {fileName} not found in assembly {fileName}");
|
|
}
|
|
|
|
public static string WriteAssemblyDefinition(string path)
|
|
{
|
|
AssemblyDefinition.Write(path);
|
|
|
|
return path;
|
|
}
|
|
} |