using System;
using SabreTools.Library.Logging;
namespace SabreTools.Library.Tools
{
///
/// Stopwatch class for keeping track of duration in the code
///
public class InternalStopwatch
{
private string _subject;
private DateTime _startTime;
private readonly Logger _logger;
///
/// Constructor that initalizes the stopwatch
///
public InternalStopwatch()
{
_subject = string.Empty;
_logger = new Logger(this);
}
///
/// Constructor that initalizes the stopwatch with a subject and starts immediately
///
/// Subject of the stopwatch
public InternalStopwatch(string subject)
{
_subject = subject;
_logger = new Logger(this);
Start();
}
///
/// Start the stopwatch and display subject text
///
public void Start()
{
_startTime = DateTime.Now;
_logger.User($"{_subject}...");
}
///
/// Start the stopwatch and display subject text
///
/// Text to show on stopwatch start
public void Start(string subject)
{
_subject = subject;
Start();
}
///
/// End the stopwatch and display subject text
///
public void Stop()
{
_logger.User($"{_subject} completed in {DateTime.Now.Subtract(_startTime):G}");
}
}
}