mirror of
https://github.com/chylex/Backup-Essentials.git
synced 2025-06-02 06:34:08 +02:00
99 lines
4.2 KiB
C#
99 lines
4.2 KiB
C#
using BackupEssentials.Backup;
|
|
using BackupEssentials.Backup.Data;
|
|
using BackupEssentials.Pages;
|
|
using BackupEssentials.Utils;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows;
|
|
using System.Windows.Threading;
|
|
|
|
namespace BackupEssentials{
|
|
public partial class App : Application{
|
|
[DllImport("USER32.DLL")]
|
|
public static extern bool SetForegroundWindow(IntPtr hwnd);
|
|
|
|
public static Window Window { get { return Application.Current.MainWindow; } }
|
|
|
|
/// <summary>
|
|
/// List of arguments
|
|
/// =================
|
|
/// -runshell = switch to backup runner
|
|
/// [ required -src and either -dest or -locid ]
|
|
/// -src = backup source (folder or file, supports multiple entries)
|
|
/// -dest = backup destination (folder)
|
|
/// -locid = backup location id
|
|
/// </summary>
|
|
private void StartApp(object sender, StartupEventArgs args){
|
|
ProgramArgsParser parser = new ProgramArgsParser(args.Args);
|
|
|
|
if (parser.HasFlag("runshell")){
|
|
int locid = -1;
|
|
string dest = parser.GetValue("dest","");
|
|
|
|
if (int.TryParse(parser.GetValue("locid","-1"),out locid) && locid >= 0){
|
|
Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory);
|
|
DataStorage.Load(DataStorage.Type.Locations);
|
|
|
|
if (locid < DataStorage.BackupLocationList.Count){
|
|
dest = DataStorage.BackupLocationList[locid].Directory;
|
|
}
|
|
}
|
|
|
|
if (dest.Length > 0){
|
|
BackupRunInfo info = new BackupRunInfo(parser.GetMultiValue("src"),dest);
|
|
new BackupWindow(new BackupRunner(info)).Show();
|
|
}
|
|
else throw new ArgumentException("Backup could not begin, destination is empty. Program arguments: "+string.Join(" ",args.Args));
|
|
}
|
|
else if (parser.HasFlag("runcompat")){
|
|
Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory);
|
|
MainWindow window = new MainWindow();
|
|
window.ShowPage(typeof(BackupDrop),new object[]{ parser.GetMultiValue("src"), null, true });
|
|
window.Show();
|
|
}
|
|
else{
|
|
Process[] running = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location));
|
|
|
|
if (running.Length > 1){
|
|
int myId = Process.GetCurrentProcess().Id;
|
|
|
|
foreach(Process process in running){
|
|
if (process.Id != myId && process.MainWindowHandle != IntPtr.Zero){
|
|
if (process.Responding){
|
|
SetForegroundWindow(process.MainWindowHandle);
|
|
Application.Current.Shutdown();
|
|
return;
|
|
}
|
|
else{
|
|
if (MessageBox.Show(MainWindow,"The application is already running, but is not responding. Do you want to force close it?","Application is already running",MessageBoxButton.YesNo,MessageBoxImage.Question) == MessageBoxResult.Yes){
|
|
try{
|
|
process.Kill();
|
|
}catch(Exception e){
|
|
MessageBox.Show(MainWindow,"Could not close the application: "+e.Message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
new MainWindow().Show();
|
|
}
|
|
}
|
|
|
|
private void HandleException(object sender, DispatcherUnhandledExceptionEventArgs e){
|
|
using(FileStream fileStream = new FileStream("exceptions.log",FileMode.Append)){
|
|
using(StreamWriter writer = new StreamWriter(fileStream)){
|
|
writer.WriteLine(e.Exception.ToString());
|
|
writer.WriteLine();
|
|
}
|
|
}
|
|
|
|
// TODO
|
|
}
|
|
}
|
|
}
|