mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 17:01:04 +00:00
13759b1db6
- reduce ASAR IO overhead with streamed archive reads, buffered copies, faster relative-path handling and placeholder integrity records - fix in-place app.asar.unpacked packing/extraction self-copy cases that caused locked-file failures - tighten JS patch discovery with candidate bundle filters and search hints - require prebuilt remote-panel dist artifacts and clean up embedded bridge/script packaging - add unified build entrypoints for PowerShell, cmd and bash and move native CMake output under .tmp - add release metadata validation, changelog section extraction, pre-commit hook and GitHub Actions validation/release pipelines - make CHANGELOG the source of truth for release notes and document the tag-driven release flow - add updater release notes UI with latest/full changelog loading and localize the new update strings - modularize bridge renderer scripts, add installed apps and game status sync, and support remote launch/stop commands - centralize bridge protocol, IPC and WebSocket constants and improve LAN IP selection for QR pairing - refactor remote panel controls/state enums, persist accent color, polish library/session UI and refresh assets
201 lines
7.1 KiB
C#
201 lines
7.1 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
|
|
namespace AsarSharp.Utils
|
|
{
|
|
internal static class Extensions
|
|
{
|
|
/// <summary>
|
|
/// Compute path relative to <paramref name="relativeTo"/>.
|
|
/// Fast common-case (path is inside relativeTo): plain prefix-strip.
|
|
/// Falls back to <see cref="Path.GetFullPath"/> + manual relativisation
|
|
/// when paths must be normalised or '..' segments are required.
|
|
/// Replaces previous URI-based implementation which was a large hot-path cost.
|
|
/// </summary>
|
|
public static string GetRelativePath(string relativeTo, string path)
|
|
{
|
|
if (string.IsNullOrEmpty(relativeTo))
|
|
throw new ArgumentNullException(nameof(relativeTo));
|
|
if (string.IsNullOrEmpty(path))
|
|
throw new ArgumentNullException(nameof(path));
|
|
|
|
// Fast path: literal prefix match (no normalisation). Covers ~all
|
|
// intra-archive callers where both inputs already come from the
|
|
// same crawl pass.
|
|
string baseFast = TrimTrailingSeparators(relativeTo);
|
|
string pathFast = TrimTrailingSeparators(path);
|
|
|
|
if (string.Equals(baseFast, pathFast, StringComparison.OrdinalIgnoreCase))
|
|
return string.Empty;
|
|
|
|
if (pathFast.Length > baseFast.Length &&
|
|
pathFast.StartsWith(baseFast, StringComparison.OrdinalIgnoreCase) &&
|
|
IsSeparator(pathFast[baseFast.Length]))
|
|
{
|
|
return pathFast.Substring(baseFast.Length + 1);
|
|
}
|
|
|
|
// Slow path: normalise both sides and compute relative — used for
|
|
// security checks (out-of-tree symlink/destination guards) and the
|
|
// rare "go up" case.
|
|
return GetRelativePathNormalised(relativeTo, path);
|
|
}
|
|
|
|
private static string GetRelativePathNormalised(string relativeTo, string path)
|
|
{
|
|
string fullBase = Path.GetFullPath(relativeTo);
|
|
string fullPath = Path.GetFullPath(path);
|
|
|
|
fullBase = TrimTrailingSeparators(fullBase);
|
|
fullPath = TrimTrailingSeparators(fullPath);
|
|
|
|
if (string.Equals(fullBase, fullPath, StringComparison.OrdinalIgnoreCase))
|
|
return string.Empty;
|
|
|
|
if (fullPath.Length > fullBase.Length &&
|
|
fullPath.StartsWith(fullBase, StringComparison.OrdinalIgnoreCase) &&
|
|
IsSeparator(fullPath[fullBase.Length]))
|
|
{
|
|
return fullPath.Substring(fullBase.Length + 1);
|
|
}
|
|
|
|
// Need to walk up the common ancestor.
|
|
char sep = Path.DirectorySeparatorChar;
|
|
string[] baseParts = fullBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
|
|
string[] pathParts = fullPath.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
|
|
|
|
int common = 0;
|
|
int max = Math.Min(baseParts.Length, pathParts.Length);
|
|
while (common < max &&
|
|
string.Equals(baseParts[common], pathParts[common], StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
common++;
|
|
}
|
|
|
|
var sb = new StringBuilder();
|
|
for (int i = common; i < baseParts.Length; i++)
|
|
{
|
|
if (sb.Length > 0) sb.Append(sep);
|
|
sb.Append("..");
|
|
}
|
|
for (int i = common; i < pathParts.Length; i++)
|
|
{
|
|
if (sb.Length > 0) sb.Append(sep);
|
|
sb.Append(pathParts[i]);
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
|
|
private static string TrimTrailingSeparators(string s)
|
|
{
|
|
int end = s.Length;
|
|
while (end > 0 && IsSeparator(s[end - 1])) end--;
|
|
return end == s.Length ? s : s.Substring(0, end);
|
|
}
|
|
|
|
private static bool IsSeparator(char c) => c == '/' || c == '\\';
|
|
|
|
public static string GetDirectoryName(string path)
|
|
{
|
|
if (string.IsNullOrEmpty(path))
|
|
return ".";
|
|
|
|
string result = Path.GetDirectoryName(path);
|
|
|
|
if (string.IsNullOrEmpty(result))
|
|
return ".";
|
|
|
|
return result;
|
|
}
|
|
|
|
public static void CopyDirectory(string sourceDir, string destinationDir)
|
|
{
|
|
Directory.CreateDirectory(destinationDir);
|
|
|
|
foreach (var file in Directory.GetFiles(sourceDir))
|
|
{
|
|
var destFile = Path.Combine(destinationDir, Path.GetFileName(file));
|
|
File.Copy(file, destFile, true);
|
|
}
|
|
|
|
foreach (var dir in Directory.GetDirectories(sourceDir))
|
|
{
|
|
var destDir = Path.Combine(destinationDir, Path.GetFileName(dir));
|
|
CopyDirectory(dir, destDir);
|
|
}
|
|
}
|
|
|
|
public static string GetBasePath(string dir)
|
|
{
|
|
int wildcardIndex = dir.IndexOfAny(new[] { '*', '?' });
|
|
if (wildcardIndex == -1)
|
|
{
|
|
return dir;
|
|
}
|
|
|
|
int lastSeparatorIndex = dir.LastIndexOf(Path.DirectorySeparatorChar, wildcardIndex);
|
|
if (lastSeparatorIndex == -1)
|
|
{
|
|
return ".";
|
|
}
|
|
|
|
return dir.Substring(0, lastSeparatorIndex);
|
|
}
|
|
|
|
public static void SetUnixFilePermission(string filePath, string permission)
|
|
{
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
return;
|
|
|
|
var process = new System.Diagnostics.Process
|
|
{
|
|
StartInfo = new System.Diagnostics.ProcessStartInfo
|
|
{
|
|
FileName = "chmod",
|
|
Arguments = $"{permission} \"{filePath}\"",
|
|
UseShellExecute = false,
|
|
RedirectStandardOutput = true,
|
|
CreateNoWindow = true
|
|
}
|
|
};
|
|
process.Start();
|
|
process.WaitForExit();
|
|
}
|
|
|
|
|
|
public static void CreateSymbolicLink(string linkTarget, string linkPath)
|
|
{
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
{
|
|
NativeMethods.CreateSymbolicLink(linkPath, linkTarget,
|
|
Directory.Exists(linkTarget)
|
|
? NativeMethods.SymLinkFlag.Directory
|
|
: NativeMethods.SymLinkFlag.File);
|
|
return;
|
|
}
|
|
|
|
var process = new System.Diagnostics.Process
|
|
{
|
|
StartInfo = new System.Diagnostics.ProcessStartInfo
|
|
{
|
|
FileName = "ln",
|
|
Arguments = $"-s \"{linkTarget}\" \"{linkPath}\"",
|
|
UseShellExecute = false,
|
|
RedirectStandardOutput = true,
|
|
CreateNoWindow = true
|
|
}
|
|
};
|
|
process.Start();
|
|
process.WaitForExit();
|
|
}
|
|
|
|
|
|
public static bool IsWindowsPlatform()
|
|
{
|
|
return Environment.OSVersion.Platform == PlatformID.Win32NT;
|
|
}
|
|
}
|
|
}
|