0
0
mirror of https://github.com/sp-tarkov/patcher.git synced 2025-02-13 05:10:47 -05:00
patcher/Patcher/PatcherUtils/LazyOperations.cs
2022-06-14 21:26:23 -04:00

129 lines
4.4 KiB
C#

using PatcherUtils.Model;
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace PatcherUtils
{
public class LazyOperations
{
/// <summary>
/// A directory to store temporary data.
/// </summary>
public static string TempDir = "PATCHER_TEMP".FromCwd();
/// <summary>
/// The folder that the patches will be stored in
/// </summary>
public static string PatchFolder = "Aki_Patches";
private static string SevenZExe = "7za.exe";
/// <summary>
/// The path to the 7za.exe file in the <see cref="TempDir"/>
/// </summary>
public static string SevenZExePath = $"{TempDir}\\{SevenZExe}";
private static string PatcherClient = "PatchClient.exe";
/// <summary>
/// The path to the patcher.exe file in the <see cref="TempDir"/>
/// </summary>
public static string PatcherClientPath = $"{TempDir}\\{PatcherClient}";
private static string XDelta3EXE = "xdelta3.exe";
/// <summary>
/// The path to the xdelta3.exe flie in the <see cref="TempDir"/>
/// </summary>
public static string XDelta3Path = $"{TempDir}\\{XDelta3EXE}";
/// <summary>
/// Streams embedded resources out of the assembly
/// </summary>
/// <param name="ResourceName"></param>
/// <param name="OutputFilePath"></param>
/// <remarks>The resource will not be streamed out if the <paramref name="OutputFilePath"/> already exists</remarks>
private static void StreamResourceOut(Assembly assembly, string ResourceName, string OutputFilePath)
{
FileInfo outputFile = new FileInfo(OutputFilePath);
if (outputFile.Exists)
{
PatchLogger.LogInfo($"Deleting Existing Resource: {outputFile.Name}");
outputFile.Delete();
}
if (!outputFile.Directory.Exists)
{
PatchLogger.LogInfo($"Creating Resource Directory: {outputFile.Directory.Name}");
Directory.CreateDirectory(outputFile.Directory.FullName);
}
using (FileStream fs = File.Create(OutputFilePath))
using (Stream s = assembly.GetManifestResourceStream(ResourceName))
{
s.CopyTo(fs);
PatchLogger.LogInfo($"Resourced streamed out of assembly: {outputFile.Name}");
}
}
/// <summary>
/// Checks the resources in the assembly and streams them to the temp directory for later use.
/// </summary>
public static void ExtractResourcesToTempDir(Assembly assembly = null)
{
if(assembly == null) assembly = Assembly.GetExecutingAssembly();
foreach (string resource in assembly.GetManifestResourceNames())
{
switch (resource)
{
case string a when a.EndsWith(SevenZExe):
{
StreamResourceOut(assembly, resource, SevenZExePath);
break;
}
case string a when a.EndsWith(PatcherClient):
{
StreamResourceOut(assembly, resource, PatcherClientPath);
break;
}
case string a when a.EndsWith(XDelta3EXE):
{
StreamResourceOut(assembly, resource, XDelta3Path);
break;
}
}
}
}
public static void StartZipProcess(string SourcePath, string DestinationPath)
{
ProcessStartInfo procInfo = new ProcessStartInfo()
{
FileName = SevenZExePath,
Arguments = $"a -mm=LZMA {DestinationPath} {SourcePath}"
};
Process.Start(procInfo);
PatchLogger.LogInfo($"Zip process started");
}
/// <summary>
/// Deletes the <see cref="TempDir"/> recursively
/// </summary>
public static void CleanupTempDir()
{
DirectoryInfo dir = new DirectoryInfo(TempDir);
if (dir.Exists)
{
dir.Delete(true);
PatchLogger.LogInfo("Temp directory delted");
}
}
}
}