Fix D2K installation on case sensitive filesystems.
This commit is contained in:
@@ -37,9 +37,26 @@ namespace OpenRA.Mods.Common
|
||||
return volumes.FirstOrDefault(isValidDisk);
|
||||
}
|
||||
|
||||
static string GetFileName(string path, ContentInstaller.FilenameCase caseModifier)
|
||||
{
|
||||
// Gets the file path, splitting on both / and \
|
||||
var index = path.LastIndexOfAny(new[] { '\\', '/' });
|
||||
var output = path.Substring(index + 1);
|
||||
|
||||
switch (caseModifier)
|
||||
{
|
||||
case ContentInstaller.FilenameCase.ForceLower:
|
||||
return output.ToLowerInvariant();
|
||||
case ContentInstaller.FilenameCase.ForceUpper:
|
||||
return output.ToUpperInvariant();
|
||||
default:
|
||||
return output;
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: The package should be mounted into its own context to avoid name collisions with installed files
|
||||
public static bool ExtractFromPackage(string srcPath, string package, string annotation, Dictionary<string, string[]> filesByDirectory,
|
||||
string destPath, bool overwrite, Action<string> onProgress, Action<string> onError)
|
||||
string destPath, bool overwrite, ContentInstaller.FilenameCase caseModifier, Action<string> onProgress, Action<string> onError)
|
||||
{
|
||||
Directory.CreateDirectory(destPath);
|
||||
|
||||
@@ -55,7 +72,7 @@ namespace OpenRA.Mods.Common
|
||||
foreach (var file in directory.Value)
|
||||
{
|
||||
var containingDir = Path.Combine(destPath, targetDir);
|
||||
var dest = Path.Combine(containingDir, file.ToLowerInvariant());
|
||||
var dest = Path.Combine(containingDir, GetFileName(file, caseModifier));
|
||||
if (File.Exists(dest))
|
||||
{
|
||||
if (overwrite)
|
||||
@@ -83,7 +100,7 @@ namespace OpenRA.Mods.Common
|
||||
}
|
||||
|
||||
public static bool CopyFiles(string srcPath, Dictionary<string, string[]> files, string destPath,
|
||||
bool overwrite, Action<string> onProgress, Action<string> onError)
|
||||
bool overwrite, ContentInstaller.FilenameCase caseModifier, Action<string> onProgress, Action<string> onError)
|
||||
{
|
||||
Directory.CreateDirectory(destPath);
|
||||
|
||||
@@ -100,9 +117,9 @@ namespace OpenRA.Mods.Common
|
||||
return false;
|
||||
}
|
||||
|
||||
var destFile = Path.GetFileName(file);
|
||||
var destFile = GetFileName(file, caseModifier);
|
||||
var containingDir = Path.Combine(destPath, targetDir);
|
||||
var dest = Path.Combine(containingDir, destFile.ToLowerInvariant());
|
||||
var dest = Path.Combine(containingDir, destFile);
|
||||
if (File.Exists(dest) && !overwrite)
|
||||
{
|
||||
Log.Write("debug", "Skipping {0}".F(dest));
|
||||
|
||||
@@ -132,7 +132,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
||||
var destFile = Platform.ResolvePath("^", "Content", modId, filename.ToLowerInvariant());
|
||||
cabExtractor.ExtractFile(uint.Parse(archive[0]), destFile);
|
||||
var annotation = archive.Length > 1 ? archive[1] : null;
|
||||
InstallUtils.ExtractFromPackage(source, destFile, annotation, extractFiles, destDir, overwrite, onProgress, onError);
|
||||
InstallUtils.ExtractFromPackage(source, destFile, annotation, extractFiles, destDir, overwrite, installData.OutputFilenameCase, onProgress, onError);
|
||||
progressBar.Percentage += installPercent;
|
||||
}
|
||||
}
|
||||
@@ -183,7 +183,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!InstallUtils.CopyFiles(source, copyFiles, dest, overwrite, onProgress, onError))
|
||||
if (!InstallUtils.CopyFiles(source, copyFiles, dest, overwrite, installData.OutputFilenameCase, onProgress, onError))
|
||||
{
|
||||
onError("Copying files from CD failed.");
|
||||
return;
|
||||
@@ -191,7 +191,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
||||
|
||||
if (!string.IsNullOrEmpty(extractPackage))
|
||||
{
|
||||
if (!InstallUtils.ExtractFromPackage(source, extractPackage, annotation, extractFiles, dest, overwrite, onProgress, onError))
|
||||
if (!InstallUtils.ExtractFromPackage(source, extractPackage, annotation, extractFiles, dest,
|
||||
overwrite, installData.OutputFilenameCase, onProgress, onError))
|
||||
{
|
||||
onError("Extracting files from CD failed.");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user