2017-10-06 00:52:26 -07:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
using SabreTools.Library.Data;
|
|
|
|
|
|
|
2017-10-06 20:46:43 -07:00
|
|
|
|
namespace SabreTools.Library.Tools
|
2017-10-06 00:52:26 -07:00
|
|
|
|
{
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Stopwatch class for keeping track of duration in the code
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class InternalStopwatch
|
|
|
|
|
|
{
|
|
|
|
|
|
private string _subject;
|
|
|
|
|
|
private DateTime _startTime;
|
2017-10-06 00:52:26 -07:00
|
|
|
|
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Constructor that initalizes the stopwatch
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public InternalStopwatch()
|
|
|
|
|
|
{
|
2020-06-10 22:37:19 -07:00
|
|
|
|
_subject = string.Empty;
|
2019-02-08 21:03:28 -08:00
|
|
|
|
}
|
2017-10-06 00:52:26 -07:00
|
|
|
|
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Constructor that initalizes the stopwatch with a subject and starts immediately
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="subject">Subject of the stopwatch</param>
|
|
|
|
|
|
public InternalStopwatch(string subject)
|
|
|
|
|
|
{
|
|
|
|
|
|
_subject = subject;
|
|
|
|
|
|
Start();
|
|
|
|
|
|
}
|
2017-10-06 00:52:26 -07:00
|
|
|
|
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Start the stopwatch and display subject text
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public void Start()
|
|
|
|
|
|
{
|
|
|
|
|
|
_startTime = DateTime.Now;
|
2020-06-10 22:37:19 -07:00
|
|
|
|
Globals.Logger.User($"{_subject}...");
|
2019-02-08 21:03:28 -08:00
|
|
|
|
}
|
2017-10-06 00:52:26 -07:00
|
|
|
|
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Start the stopwatch and display subject text
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="subject">Text to show on stopwatch start</param>
|
|
|
|
|
|
public void Start(string subject)
|
|
|
|
|
|
{
|
|
|
|
|
|
_subject = subject;
|
|
|
|
|
|
Start();
|
|
|
|
|
|
}
|
2017-10-06 00:52:26 -07:00
|
|
|
|
|
2019-02-08 21:03:28 -08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// End the stopwatch and display subject text
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public void Stop()
|
|
|
|
|
|
{
|
2020-06-10 22:37:19 -07:00
|
|
|
|
Globals.Logger.User($"{_subject} completed in {DateTime.Now.Subtract(_startTime).ToString("hh:mm:ss.fffff")}");
|
2019-02-08 21:03:28 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-10-06 00:52:26 -07:00
|
|
|
|
}
|