seb-win-refactoring/SafeExamBrowser.Client/Behaviour/Operations/ProcessMonitorOperation.cs

64 lines
1.8 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 SafeExamBrowser.Contracts.Behaviour.OperationModel;
using SafeExamBrowser.Contracts.I18n;
using SafeExamBrowser.Contracts.Logging;
using SafeExamBrowser.Contracts.Monitoring;
using SafeExamBrowser.Contracts.UserInterface;
namespace SafeExamBrowser.Client.Behaviour.Operations
{
internal class ProcessMonitorOperation : IOperation
{
private ILogger logger;
private IProcessMonitor processMonitor;
public IProgressIndicator ProgressIndicator { private get; set; }
public ProcessMonitorOperation(ILogger logger, IProcessMonitor processMonitor)
{
this.logger = logger;
this.processMonitor = processMonitor;
}
public OperationResult Perform()
{
2017-07-24 15:29:17 +02:00
logger.Info("Initializing process monitoring...");
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_WaitExplorerTermination, true);
2017-07-24 08:56:39 +02:00
processMonitor.CloseExplorerShell();
processMonitor.StartMonitoringExplorer();
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_InitializeProcessMonitoring);
// TODO: Implement process monitoring...
return OperationResult.Success;
}
public OperationResult Repeat()
{
return OperationResult.Success;
}
public void Revert()
{
2017-07-24 15:29:17 +02:00
logger.Info("Stopping process monitoring...");
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_StopProcessMonitoring);
// TODO: Implement process monitoring...
2017-07-24 08:56:39 +02:00
ProgressIndicator?.UpdateText(TextKey.ProgressIndicator_WaitExplorerStartup, true);
2017-07-24 08:56:39 +02:00
processMonitor.StopMonitoringExplorer();
processMonitor.StartExplorerShell();
}
}
}