mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 13:36:40 +00:00
Pacify updater (#1899)
* Updater: Remove dirs selectively * Log exceptions from updater async tasks * Address riperiperi's comments
This commit is contained in:
parent
bcbf240d2e
commit
fa55d7133a
3 changed files with 44 additions and 17 deletions
|
@ -9,6 +9,7 @@ using Ryujinx.Ui.Widgets;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Net.NetworkInformation;
|
using System.Net.NetworkInformation;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
@ -35,6 +36,9 @@ namespace Ryujinx.Modules
|
||||||
|
|
||||||
private const string AppveyorApiUrl = "https://ci.appveyor.com/api";
|
private const string AppveyorApiUrl = "https://ci.appveyor.com/api";
|
||||||
|
|
||||||
|
// On Windows, GtkSharp.Dependencies adds these extra dirs that must be cleaned during updates.
|
||||||
|
private static readonly string[] WindowsDependencyDirs = new string[] { "bin", "etc", "lib", "share" };
|
||||||
|
|
||||||
public static async Task BeginParse(MainWindow mainWindow, bool showVersionUpToDate)
|
public static async Task BeginParse(MainWindow mainWindow, bool showVersionUpToDate)
|
||||||
{
|
{
|
||||||
if (Running) return;
|
if (Running) return;
|
||||||
|
@ -402,32 +406,29 @@ namespace Ryujinx.Modules
|
||||||
// Delete downloaded zip
|
// Delete downloaded zip
|
||||||
File.Delete(updateFile);
|
File.Delete(updateFile);
|
||||||
|
|
||||||
string[] allFiles = Directory.GetFiles(HomeDir, "*", SearchOption.AllDirectories);
|
List<string> allFiles = EnumerateFilesToDelete().ToList();
|
||||||
|
|
||||||
updateDialog.MainText.Text = "Renaming Old Files...";
|
updateDialog.MainText.Text = "Renaming Old Files...";
|
||||||
updateDialog.ProgressBar.Value = 0;
|
updateDialog.ProgressBar.Value = 0;
|
||||||
updateDialog.ProgressBar.MaxValue = allFiles.Length;
|
updateDialog.ProgressBar.MaxValue = allFiles.Count;
|
||||||
|
|
||||||
// Replace old files
|
// Replace old files
|
||||||
await Task.Run(() =>
|
await Task.Run(() =>
|
||||||
{
|
{
|
||||||
foreach (string file in allFiles)
|
foreach (string file in allFiles)
|
||||||
{
|
{
|
||||||
if (!Path.GetExtension(file).Equals(".log"))
|
try
|
||||||
{
|
{
|
||||||
try
|
File.Move(file, file + ".ryuold");
|
||||||
{
|
|
||||||
File.Move(file, file + ".ryuold");
|
|
||||||
|
|
||||||
Application.Invoke(delegate
|
Application.Invoke(delegate
|
||||||
{
|
|
||||||
updateDialog.ProgressBar.Value++;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
{
|
||||||
Logger.Warning?.Print(LogClass.Application, "Updater wasn't able to rename file: " + file);
|
updateDialog.ProgressBar.Value++;
|
||||||
}
|
});
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
Logger.Warning?.Print(LogClass.Application, "Updater wasn't able to rename file: " + file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -487,6 +488,26 @@ namespace Ryujinx.Modules
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NOTE: This method should always reflect the latest build layout.
|
||||||
|
private static IEnumerable<string> EnumerateFilesToDelete()
|
||||||
|
{
|
||||||
|
var files = Directory.EnumerateFiles(HomeDir); // All files directly in base dir.
|
||||||
|
|
||||||
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
||||||
|
{
|
||||||
|
foreach (string dir in WindowsDependencyDirs)
|
||||||
|
{
|
||||||
|
string dirPath = Path.Combine(HomeDir, dir);
|
||||||
|
if (Directory.Exists(dirPath))
|
||||||
|
{
|
||||||
|
files = files.Concat(Directory.EnumerateFiles(dirPath, "*", SearchOption.AllDirectories));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return files;
|
||||||
|
}
|
||||||
|
|
||||||
private static void MoveAllFilesOver(string root, string dest, UpdateDialog dialog)
|
private static void MoveAllFilesOver(string root, string dest, UpdateDialog dialog)
|
||||||
{
|
{
|
||||||
foreach (string directory in Directory.GetDirectories(root))
|
foreach (string directory in Directory.GetDirectories(root))
|
||||||
|
@ -514,7 +535,7 @@ namespace Ryujinx.Modules
|
||||||
|
|
||||||
public static void CleanupUpdate()
|
public static void CleanupUpdate()
|
||||||
{
|
{
|
||||||
foreach (string file in Directory.GetFiles(HomeDir, "*", SearchOption.AllDirectories))
|
foreach (string file in EnumerateFilesToDelete())
|
||||||
{
|
{
|
||||||
if (Path.GetExtension(file).EndsWith(".ryuold"))
|
if (Path.GetExtension(file).EndsWith(".ryuold"))
|
||||||
{
|
{
|
||||||
|
|
|
@ -156,7 +156,10 @@ namespace Ryujinx
|
||||||
|
|
||||||
if (ConfigurationState.Instance.CheckUpdatesOnStart.Value && Updater.CanUpdate(false))
|
if (ConfigurationState.Instance.CheckUpdatesOnStart.Value && Updater.CanUpdate(false))
|
||||||
{
|
{
|
||||||
_ = Updater.BeginParse(mainWindow, false);
|
Updater.BeginParse(mainWindow, false).ContinueWith(task =>
|
||||||
|
{
|
||||||
|
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
||||||
|
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||||
}
|
}
|
||||||
|
|
||||||
Application.Run();
|
Application.Run();
|
||||||
|
|
|
@ -1131,7 +1131,10 @@ namespace Ryujinx.Ui
|
||||||
{
|
{
|
||||||
if (Updater.CanUpdate(true))
|
if (Updater.CanUpdate(true))
|
||||||
{
|
{
|
||||||
_ = Updater.BeginParse(this, true);
|
Updater.BeginParse(this, true).ContinueWith(task =>
|
||||||
|
{
|
||||||
|
Logger.Error?.Print(LogClass.Application, $"Updater Error: {task.Exception}");
|
||||||
|
}, TaskContinuationOptions.OnlyOnFaulted);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue