2017-07-07 15:46:32 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 ETH Zürich, Educational Development and Technology (LET)
|
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
using System.Threading;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Behaviour;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Configuration;
|
|
|
|
|
using SafeExamBrowser.Contracts.I18n;
|
|
|
|
|
using SafeExamBrowser.Contracts.Logging;
|
2017-07-19 14:43:54 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Monitoring;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.UserInterface;
|
2017-07-21 10:04:27 +02:00
|
|
|
|
using SafeExamBrowser.Core.Behaviour.Operations;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-12 15:36:30 +02:00
|
|
|
|
namespace SafeExamBrowser.Core.Behaviour
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
|
|
|
|
public class StartupController : IStartupController
|
|
|
|
|
{
|
2017-07-14 10:28:59 +02:00
|
|
|
|
private IApplicationController browserController;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
private IApplicationInfo browserInfo;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
private ILogger logger;
|
|
|
|
|
private IMessageBox messageBox;
|
2017-07-17 16:59:50 +02:00
|
|
|
|
private INotificationInfo aboutInfo;
|
2017-07-19 14:43:54 +02:00
|
|
|
|
private IProcessMonitor processMonitor;
|
2017-07-10 15:47:12 +02:00
|
|
|
|
private ISettings settings;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
private ISplashScreen splashScreen;
|
2017-07-10 15:47:12 +02:00
|
|
|
|
private ITaskbar taskbar;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
private IText text;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
private IUiElementFactory uiFactory;
|
2017-07-20 14:16:47 +02:00
|
|
|
|
private IWorkingArea workingArea;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private IEnumerable<IOperation> startupOperations;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
|
2017-07-14 10:28:59 +02:00
|
|
|
|
public StartupController(
|
|
|
|
|
IApplicationController browserController,
|
|
|
|
|
IApplicationInfo browserInfo,
|
|
|
|
|
ILogger logger,
|
|
|
|
|
IMessageBox messageBox,
|
2017-07-17 16:59:50 +02:00
|
|
|
|
INotificationInfo aboutInfo,
|
2017-07-19 14:43:54 +02:00
|
|
|
|
IProcessMonitor processMonitor,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
ISettings settings,
|
|
|
|
|
ITaskbar taskbar,
|
|
|
|
|
IText text,
|
2017-07-20 14:16:47 +02:00
|
|
|
|
IUiElementFactory uiFactory,
|
|
|
|
|
IWorkingArea workingArea)
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2017-07-17 16:59:50 +02:00
|
|
|
|
this.browserController = browserController;
|
|
|
|
|
this.browserInfo = browserInfo;
|
|
|
|
|
this.logger = logger;
|
|
|
|
|
this.messageBox = messageBox;
|
|
|
|
|
this.aboutInfo = aboutInfo;
|
2017-07-19 14:43:54 +02:00
|
|
|
|
this.processMonitor = processMonitor;
|
2017-07-17 16:59:50 +02:00
|
|
|
|
this.settings = settings;
|
|
|
|
|
this.taskbar = taskbar;
|
|
|
|
|
this.text = text;
|
|
|
|
|
this.uiFactory = uiFactory;
|
2017-07-20 14:16:47 +02:00
|
|
|
|
this.workingArea = workingArea;
|
2017-07-07 15:46:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
public bool TryInitializeApplication(out Stack<IOperation> operations)
|
2017-07-07 15:46:32 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
operations = new Stack<IOperation>();
|
|
|
|
|
|
2017-07-07 15:46:32 +02:00
|
|
|
|
try
|
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
CreateStartupOperations();
|
|
|
|
|
|
2017-07-14 10:28:59 +02:00
|
|
|
|
InitializeApplicationLog();
|
|
|
|
|
InitializeSplashScreen();
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
operations = PerformOperations();
|
2017-07-12 15:36:30 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
FinishInitialization();
|
2017-07-12 15:36:30 +02:00
|
|
|
|
|
2017-07-13 08:51:00 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
LogAndShowException(e);
|
|
|
|
|
RevertOperations(operations);
|
|
|
|
|
FinishInitialization(false);
|
2017-07-12 15:36:30 +02:00
|
|
|
|
|
2017-07-13 08:51:00 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private Stack<IOperation> PerformOperations()
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
var operations = new Stack<IOperation>();
|
2017-07-14 10:28:59 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
foreach (var operation in startupOperations)
|
|
|
|
|
{
|
|
|
|
|
operations.Push(operation);
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
operation.SplashScreen = splashScreen;
|
|
|
|
|
operation.Perform();
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
splashScreen.Progress();
|
2017-07-07 15:46:32 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
// TODO: Remove!
|
|
|
|
|
Thread.Sleep(250);
|
|
|
|
|
}
|
2017-07-10 15:47:12 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
return operations;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void RevertOperations(Stack<IOperation> operations)
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
while (operations.Any())
|
|
|
|
|
{
|
|
|
|
|
var operation = operations.Pop();
|
2017-07-13 08:51:00 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
operation.Revert();
|
|
|
|
|
splashScreen.Regress();
|
2017-07-19 14:43:54 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
// TODO: Remove!
|
|
|
|
|
Thread.Sleep(250);
|
|
|
|
|
}
|
2017-07-13 08:51:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void CreateStartupOperations()
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
startupOperations = new IOperation[]
|
|
|
|
|
{
|
|
|
|
|
new ProcessMonitoringOperation(logger, processMonitor),
|
|
|
|
|
new WorkingAreaOperation(logger, processMonitor, taskbar, workingArea),
|
|
|
|
|
new TaskbarInitializationOperation(logger, aboutInfo, taskbar, uiFactory),
|
|
|
|
|
new BrowserInitializationOperation(browserController, browserInfo, logger, taskbar, uiFactory)
|
|
|
|
|
};
|
2017-07-13 08:51:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void InitializeApplicationLog()
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
var titleLine = $"/* {settings.ProgramTitle}, Version {settings.ProgramVersion}{Environment.NewLine}";
|
|
|
|
|
var copyrightLine = $"/* {settings.ProgramCopyright}{Environment.NewLine}";
|
|
|
|
|
var emptyLine = $"/* {Environment.NewLine}";
|
|
|
|
|
var githubLine = $"/* Please visit https://github.com/SafeExamBrowser for more information.";
|
2017-07-17 16:59:50 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
logger.Log($"{titleLine}{copyrightLine}{emptyLine}{githubLine}");
|
|
|
|
|
logger.Log($"{Environment.NewLine}# Application started at {DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff")}{Environment.NewLine}");
|
|
|
|
|
logger.Info("--- Initiating startup procedure ---");
|
2017-07-13 08:51:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void InitializeSplashScreen()
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
splashScreen = uiFactory.CreateSplashScreen(settings, text);
|
|
|
|
|
splashScreen.SetMaxProgress(startupOperations.Count());
|
|
|
|
|
splashScreen.UpdateText(Key.SplashScreen_StartupProcedure);
|
|
|
|
|
splashScreen.InvokeShow();
|
|
|
|
|
}
|
2017-07-17 08:28:18 +02:00
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void LogAndShowException(Exception e)
|
|
|
|
|
{
|
|
|
|
|
logger.Error($"Failed to initialize application!", e);
|
|
|
|
|
messageBox.Show(text.Get(Key.MessageBox_StartupError), text.Get(Key.MessageBox_StartupErrorTitle), icon: MessageBoxIcon.Error);
|
|
|
|
|
logger.Info("Reverting operations...");
|
2017-07-13 08:51:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-21 10:04:27 +02:00
|
|
|
|
private void FinishInitialization(bool success = true)
|
2017-07-13 08:51:00 +02:00
|
|
|
|
{
|
2017-07-21 10:04:27 +02:00
|
|
|
|
if (success)
|
|
|
|
|
{
|
|
|
|
|
logger.Info("--- Application successfully initialized! ---");
|
|
|
|
|
splashScreen.InvokeClose();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
logger.Log($"{Environment.NewLine}# Application terminated at {DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff")}");
|
|
|
|
|
}
|
2017-07-07 15:46:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|