2017-07-05 11:41:19 +02:00
|
|
|
|
/*
|
2018-01-16 08:24:00 +01:00
|
|
|
|
* Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
|
2017-07-28 14:52:15 +02:00
|
|
|
|
*
|
2017-07-05 11:41:19 +02:00
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-01-17 08:26:44 +01:00
|
|
|
|
|
2017-07-21 12:05:31 +02:00
|
|
|
|
using System.Collections.Generic;
|
2018-01-17 08:26:44 +01:00
|
|
|
|
using System.IO;
|
2017-07-20 14:16:47 +02:00
|
|
|
|
using SafeExamBrowser.Configuration;
|
2018-01-17 08:26:44 +01:00
|
|
|
|
using SafeExamBrowser.Configuration.Settings;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Behaviour;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Configuration;
|
2017-07-28 14:52:15 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.Configuration.Settings;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.I18n;
|
|
|
|
|
using SafeExamBrowser.Contracts.Logging;
|
2018-01-17 08:26:44 +01:00
|
|
|
|
using SafeExamBrowser.Contracts.Runtime;
|
2017-07-13 08:51:00 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.UserInterface;
|
2017-07-27 11:46:31 +02:00
|
|
|
|
using SafeExamBrowser.Contracts.WindowsApi;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
using SafeExamBrowser.Core.Behaviour;
|
2017-07-21 12:05:31 +02:00
|
|
|
|
using SafeExamBrowser.Core.Behaviour.Operations;
|
2017-07-05 17:21:52 +02:00
|
|
|
|
using SafeExamBrowser.Core.I18n;
|
2017-07-06 18:18:39 +02:00
|
|
|
|
using SafeExamBrowser.Core.Logging;
|
2017-08-22 09:37:17 +02:00
|
|
|
|
using SafeExamBrowser.UserInterface.Classic;
|
2017-07-27 11:46:31 +02:00
|
|
|
|
using SafeExamBrowser.WindowsApi;
|
2017-07-05 17:21:52 +02:00
|
|
|
|
|
2017-07-06 10:56:03 +02:00
|
|
|
|
namespace SafeExamBrowser
|
2017-07-05 11:41:19 +02:00
|
|
|
|
{
|
2017-07-07 15:46:32 +02:00
|
|
|
|
internal class CompositionRoot
|
2017-07-05 11:41:19 +02:00
|
|
|
|
{
|
2017-07-19 14:43:54 +02:00
|
|
|
|
private ILogger logger;
|
2017-07-27 11:46:31 +02:00
|
|
|
|
private INativeMethods nativeMethods;
|
2017-08-04 12:19:56 +02:00
|
|
|
|
private IRuntimeController runtimeController;
|
2017-07-19 14:43:54 +02:00
|
|
|
|
private ISettings settings;
|
2017-08-14 17:44:16 +02:00
|
|
|
|
private ISystemInfo systemInfo;
|
2017-07-19 14:43:54 +02:00
|
|
|
|
private IText text;
|
2017-07-27 14:45:54 +02:00
|
|
|
|
private IUserInterfaceFactory uiFactory;
|
2017-07-12 15:36:30 +02:00
|
|
|
|
|
2018-01-17 08:26:44 +01:00
|
|
|
|
internal IShutdownController ShutdownController { get; private set; }
|
|
|
|
|
internal IStartupController StartupController { get; private set; }
|
|
|
|
|
internal Queue<IOperation> StartupOperations { get; private set; }
|
|
|
|
|
internal SplashScreen SplashScreen { get; private set; }
|
2017-07-13 08:51:00 +02:00
|
|
|
|
|
2018-01-17 08:26:44 +01:00
|
|
|
|
internal void BuildObjectGraph()
|
2017-07-06 10:56:03 +02:00
|
|
|
|
{
|
2017-07-27 11:46:31 +02:00
|
|
|
|
nativeMethods = new NativeMethods();
|
2018-01-17 08:26:44 +01:00
|
|
|
|
settings = new SettingsRepository().LoadDefaults();
|
2017-08-14 17:44:16 +02:00
|
|
|
|
systemInfo = new SystemInfo();
|
2017-07-27 14:45:54 +02:00
|
|
|
|
uiFactory = new UserInterfaceFactory();
|
2017-07-14 10:28:59 +02:00
|
|
|
|
|
2018-01-17 08:26:44 +01:00
|
|
|
|
InitializeLogger();
|
2017-07-06 10:56:03 +02:00
|
|
|
|
|
2017-10-10 10:17:28 +02:00
|
|
|
|
text = new Text(logger);
|
2017-07-31 20:22:53 +02:00
|
|
|
|
|
2018-01-17 08:26:44 +01:00
|
|
|
|
runtimeController = new RuntimeController(new ModuleLogger(logger, typeof(RuntimeController)));
|
2017-07-24 15:29:17 +02:00
|
|
|
|
ShutdownController = new ShutdownController(logger, settings, text, uiFactory);
|
2017-08-14 17:44:16 +02:00
|
|
|
|
StartupController = new StartupController(logger, settings, systemInfo, text, uiFactory);
|
2017-07-21 12:05:31 +02:00
|
|
|
|
|
|
|
|
|
StartupOperations = new Queue<IOperation>();
|
2017-10-10 10:17:28 +02:00
|
|
|
|
StartupOperations.Enqueue(new I18nOperation(logger, text));
|
2017-08-07 09:42:12 +02:00
|
|
|
|
StartupOperations.Enqueue(new RuntimeControllerOperation(runtimeController, logger));
|
2018-01-17 08:26:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitializeLogger()
|
|
|
|
|
{
|
|
|
|
|
var logFolder = Path.GetDirectoryName(settings.Logging.RuntimeLogFile);
|
|
|
|
|
|
|
|
|
|
if (!Directory.Exists(logFolder))
|
|
|
|
|
{
|
|
|
|
|
Directory.CreateDirectory(logFolder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger = new Logger();
|
|
|
|
|
logger.Subscribe(new LogFileWriter(new DefaultLogFormatter(), settings.Logging.RuntimeLogFile));
|
2017-07-06 10:56:03 +02:00
|
|
|
|
}
|
2017-07-05 11:41:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|