2022-09-22 08:56:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HybridCLR.Editor.Installer
|
|
|
|
|
{
|
|
|
|
|
public static class BashUtil
|
|
|
|
|
{
|
2022-11-09 11:28:09 +08:00
|
|
|
|
public static int RunCommand(string workingDir, string program, string[] args, bool log = true)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
using (Process p = new Process())
|
|
|
|
|
{
|
|
|
|
|
p.StartInfo.WorkingDirectory = workingDir;
|
|
|
|
|
p.StartInfo.FileName = program;
|
|
|
|
|
p.StartInfo.UseShellExecute = false;
|
|
|
|
|
p.StartInfo.CreateNoWindow = true;
|
|
|
|
|
string argsStr = string.Join(" ", args.Select(arg => "\"" + arg + "\""));
|
|
|
|
|
p.StartInfo.Arguments = argsStr;
|
2022-11-09 11:28:09 +08:00
|
|
|
|
if (log)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] run => {program} {argsStr}");
|
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
p.Start();
|
|
|
|
|
p.WaitForExit();
|
|
|
|
|
return p.ExitCode;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-11-09 11:28:09 +08:00
|
|
|
|
public static (int ExitCode, string StdOut, string StdErr) RunCommand2(string workingDir, string program, string[] args, bool log = true)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
using (Process p = new Process())
|
|
|
|
|
{
|
|
|
|
|
p.StartInfo.WorkingDirectory = workingDir;
|
|
|
|
|
p.StartInfo.FileName = program;
|
|
|
|
|
p.StartInfo.UseShellExecute = false;
|
|
|
|
|
p.StartInfo.CreateNoWindow = true;
|
|
|
|
|
p.StartInfo.RedirectStandardOutput = true;
|
|
|
|
|
p.StartInfo.RedirectStandardError = true;
|
2023-01-20 12:50:24 +08:00
|
|
|
|
string argsStr = string.Join(" ", args);
|
2022-09-22 08:56:07 +08:00
|
|
|
|
p.StartInfo.Arguments = argsStr;
|
2022-11-09 11:28:09 +08:00
|
|
|
|
if (log)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] run => {program} {argsStr}");
|
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
p.Start();
|
|
|
|
|
p.WaitForExit();
|
|
|
|
|
|
|
|
|
|
string stdOut = p.StandardOutput.ReadToEnd();
|
|
|
|
|
string stdErr = p.StandardError.ReadToEnd();
|
|
|
|
|
return (p.ExitCode, stdOut, stdErr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void RemoveDir(string dir, bool log = false)
|
|
|
|
|
{
|
|
|
|
|
if (log)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] RemoveDir dir:{dir}");
|
|
|
|
|
}
|
|
|
|
|
if (!Directory.Exists(dir))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
foreach (var file in Directory.GetFiles(dir))
|
|
|
|
|
{
|
|
|
|
|
File.SetAttributes(file, FileAttributes.Normal);
|
|
|
|
|
File.Delete(file);
|
|
|
|
|
}
|
|
|
|
|
foreach (var subDir in Directory.GetDirectories(dir))
|
|
|
|
|
{
|
|
|
|
|
RemoveDir(subDir);
|
|
|
|
|
}
|
|
|
|
|
Directory.Delete(dir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void RecreateDir(string dir)
|
|
|
|
|
{
|
|
|
|
|
if(Directory.Exists(dir))
|
|
|
|
|
{
|
|
|
|
|
RemoveDir(dir, true);
|
|
|
|
|
}
|
|
|
|
|
Directory.CreateDirectory(dir);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-30 01:35:25 +08:00
|
|
|
|
private static void CopyWithCheckLongFile(string srcFile, string dstFile)
|
|
|
|
|
{
|
|
|
|
|
if (srcFile.Length > 255)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogError($"srcFile:{srcFile} path is too long. copy ignore!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (dstFile.Length > 255)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.LogError($"dstFile:{dstFile} path is too long. copy ignore!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
File.Copy(srcFile, dstFile);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CopyDir(string src, string dst, bool log = false)
|
|
|
|
|
{
|
|
|
|
|
if (log)
|
|
|
|
|
{
|
|
|
|
|
UnityEngine.Debug.Log($"[BashUtil] CopyDir {src} => {dst}");
|
|
|
|
|
}
|
|
|
|
|
RemoveDir(dst);
|
|
|
|
|
Directory.CreateDirectory(dst);
|
|
|
|
|
foreach(var file in Directory.GetFiles(src))
|
|
|
|
|
{
|
2023-04-30 01:35:25 +08:00
|
|
|
|
CopyWithCheckLongFile(file, $"{dst}/{Path.GetFileName(file)}");
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
foreach(var subDir in Directory.GetDirectories(src))
|
|
|
|
|
{
|
|
|
|
|
CopyDir(subDir, $"{dst}/{Path.GetFileName(subDir)}");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|