seb-win-refactoring/SafeExamBrowser.Runtime/Behaviour/Operations/SessionSequenceOperation.cs

150 lines
4.1 KiB
C#
Raw Normal View History

/*
* Copyright (c) 2018 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;
using System.Threading;
using SafeExamBrowser.Contracts.Behaviour.Operations;
using SafeExamBrowser.Contracts.Communication;
using SafeExamBrowser.Contracts.Configuration;
using SafeExamBrowser.Contracts.I18n;
using SafeExamBrowser.Contracts.Logging;
using SafeExamBrowser.Contracts.UserInterface;
using SafeExamBrowser.Contracts.WindowsApi;
namespace SafeExamBrowser.Runtime.Behaviour.Operations
{
internal abstract class SessionSequenceOperation : IOperation
{
private bool sessionRunning;
private IClientProxy client;
private IConfigurationRepository configuration;
private ILogger logger;
private IProcessFactory processFactory;
private IRuntimeHost runtimeHost;
private IServiceProxy service;
private ISession session;
public bool Abort { get; private set; }
public IProgressIndicator ProgressIndicator { private get; set; }
public SessionSequenceOperation(
IClientProxy client,
IConfigurationRepository configuration,
ILogger logger,
IProcessFactory processFactory,
IRuntimeHost runtimeHost,
IServiceProxy service)
{
this.client = client;
this.configuration = configuration;
this.logger = logger;
this.processFactory = processFactory;
this.runtimeHost = runtimeHost;
this.service = service;
}
public abstract void Perform();
public abstract void Repeat();
public abstract void Revert();
protected void StartSession()
{
logger.Info("Starting new session...");
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_StartSession, true);
session = configuration.InitializeSession();
runtimeHost.StartupToken = session.StartupToken;
service.StartSession(session.Id, configuration.CurrentSettings);
try
{
StartClient();
}
catch (Exception e)
{
service.StopSession(session.Id);
logger.Error("Failed to start client!", e);
}
if (sessionRunning)
{
logger.Info($"Successfully started new session with identifier '{session.Id}'.");
}
else
{
Abort = true;
logger.Info($"Failed to start new session! Aborting...");
}
}
protected void StopSession()
{
if (sessionRunning)
{
logger.Info($"Stopping session with identifier '{session.Id}'...");
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_StopSession, true);
service.StopSession(session.Id);
// TODO:
// - Terminate client (or does it terminate itself?)
sessionRunning = false;
logger.Info($"Successfully stopped session with identifier '{session.Id}'.");
}
}
private void StartClient()
{
2018-02-15 15:42:54 +01:00
const int TEN_SECONDS = 10000;
var clientStarted = false;
var clientReadyEvent = new AutoResetEvent(false);
var clientReadyEventHandler = new CommunicationEventHandler(() => clientReadyEvent.Set());
var clientExecutable = configuration.RuntimeInfo.ClientExecutablePath;
2018-02-15 15:42:54 +01:00
var clientLogFile = $"{'"' + configuration.RuntimeInfo.ClientLogFile + '"'}";
var hostUri = configuration.RuntimeInfo.RuntimeAddress;
var token = session.StartupToken.ToString("D");
runtimeHost.ClientReady += clientReadyEventHandler;
2018-02-15 15:42:54 +01:00
session.ClientProcess = processFactory.StartNew(clientExecutable, clientLogFile, hostUri, token);
clientStarted = clientReadyEvent.WaitOne(TEN_SECONDS);
runtimeHost.ClientReady -= clientReadyEventHandler;
2018-02-15 15:42:54 +01:00
// TODO: Check if client process alive!
if (clientStarted)
{
2018-02-15 15:42:54 +01:00
if (client.Connect(session.StartupToken))
{
2018-02-15 15:42:54 +01:00
var response = client.RequestAuthentication();
// TODO: Further integrity checks necessary?
if (session.ClientProcess.Id == response?.ProcessId)
2018-02-15 15:42:54 +01:00
{
sessionRunning = true;
}
else
{
logger.Error("Failed to verify client integrity!");
}
}
else
{
2018-02-15 15:42:54 +01:00
logger.Error("Failed to connect to client!");
}
}
else
{
2018-02-15 15:42:54 +01:00
logger.Error($"Failed to start client within {TEN_SECONDS / 1000} seconds!");
}
}
}
}