// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Interaction logic for App.xaml // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF { using System; using System.IO; using System.Linq; using System.Windows; using System.Windows.Controls; using Caliburn.Micro; using HandBrakeWPF.Startup; using HandBrakeWPF.Utilities; using HandBrakeWPF.ViewModels; using HandBrakeWPF.ViewModels.Interfaces; using GeneralApplicationException = HandBrakeWPF.Exceptions.GeneralApplicationException; /// /// Interaction logic for App.xaml /// public partial class App { /// /// Initializes a new instance of the class. /// public App() { Application.Current.Dispatcher.UnhandledException += this.Dispatcher_UnhandledException; AppDomain.CurrentDomain.UnhandledException += this.CurrentDomain_UnhandledException; ToolTipService.ShowDurationProperty.OverrideMetadata(typeof(DependencyObject), new FrameworkPropertyMetadata(15000)); } /// /// Override the startup behavior to handle files dropped on the app icon. /// /// /// The StartupEventArgs. /// protected override void OnStartup(StartupEventArgs e) { // We don't support Windows XP / 2003 / 2003 R2 / Vista / 2008 OperatingSystem os = Environment.OSVersion; if (((os.Platform == PlatformID.Win32NT) && (os.Version.Major == 5)) || ((os.Platform == PlatformID.Win32NT) && (os.Version.Major == 6 && os.Version.Minor < 1))) { MessageBox.Show("HandBrake requires Windows 7 or later to run. Version 0.9.9 (XP) and 0.10.5 (Vista) was the last version to support these versions.", "Warning", MessageBoxButton.OK, MessageBoxImage.Warning); Application.Current.Shutdown(); return; } if (e.Args.Any(f => f.Equals("--reset"))) { HandBrakeApp.ResetToDefaults(); Application.Current.Shutdown(); return; } if (e.Args.Any(f => f.Equals("--auto-start-queue"))) { StartupOptions.AutoRestartQueue = true; } // Portable Mode if (Portable.IsPortable()) { Portable.Initialise(); } base.OnStartup(e); // If we have a file dropped on the icon, try scanning it. string[] args = e.Args; if (args.Any() && (File.Exists(args[0]) || Directory.Exists(args[0]))) { IMainViewModel mvm = IoC.Get(); mvm.StartScan(args[0], 0); } } /// /// Non-UI Thread exception handler. /// /// /// The sender. /// /// /// The UnhandledExceptionEventArgs. /// private void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { Caliburn.Micro.Execute.OnUIThreadAsync(() => { if (e.ExceptionObject.GetType() == typeof(FileNotFoundException)) { GeneralApplicationException exception = new GeneralApplicationException("A file appears to be missing.", "Try re-installing Microsoft .NET Framework 4.0", (Exception)e.ExceptionObject); this.ShowError(exception); } else { this.ShowError(e.ExceptionObject); } }); } /// /// Handle unhandled exceptions. UI thread only. /// /// /// The sender. /// /// /// The DispatcherUnhandledExceptionEventArgs. /// private void Dispatcher_UnhandledException( object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) { if (e.Exception.GetType() == typeof(FileNotFoundException)) { GeneralApplicationException exception = new GeneralApplicationException("A file appears to be missing.", "Try re-installing Microsoft .NET Framework 4.0", e.Exception); this.ShowError(exception); } else if (e.Exception.GetType() == typeof(GeneralApplicationException)) { this.ShowError(e.Exception); } else if (e.Exception.InnerException != null && e.Exception.InnerException.GetType() == typeof(GeneralApplicationException)) { this.ShowError(e.Exception.InnerException); } else { this.ShowError(e.Exception); } e.Handled = true; } /// /// Show an error dialog for the user. /// /// /// The exception. /// private void ShowError(object exception) { try { IWindowManager windowManager = IoC.Get(); if (windowManager != null) { ErrorViewModel errorView = new ErrorViewModel(); GeneralApplicationException applicationException = null; if (exception.GetType() == typeof(GeneralApplicationException)) { applicationException = exception as GeneralApplicationException; if (applicationException != null) { string details = string.Format( "{0}{1}{2}{3}{4}", applicationException.Error, Environment.NewLine, applicationException.Solution, Environment.NewLine, applicationException.ActualException != null ? applicationException.ActualException.ToString() : "No additional exception information available."); errorView.ErrorMessage = applicationException.Error; errorView.Solution = applicationException.Solution; errorView.Details = details; } } else { errorView.Details = exception.ToString(); } try { windowManager.ShowDialog(errorView); } catch (Exception) { if (applicationException != null) { MessageBox.Show(applicationException.Error + Environment.NewLine + Environment.NewLine + applicationException.Solution, "Error", MessageBoxButton.OK, MessageBoxImage.Error); } } } } catch (Exception) { MessageBox.Show("An Unknown Error has occurred. \n\n Exception:" + exception, "Unhandled Exception", MessageBoxButton.OK, MessageBoxImage.Error); } } } }