mirror of
https://bitbucket.org/anguist/ntpa
synced 2026-09-27 11:28:53 +00:00
106 lines
3.7 KiB
C#
106 lines
3.7 KiB
C#
//
|
|
// UptimeCommand.cs
|
|
//
|
|
// Author:
|
|
// Carsten Sonne Larsen <cs@innolan.dk>
|
|
//
|
|
// Copyright (c) 2013 Carsten Sonne Larsen
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Text;
|
|
|
|
namespace Ntp.Monitor.Server.TextCommand
|
|
{
|
|
internal sealed class UptimeCommand : MonitorTextCommand
|
|
{
|
|
public UptimeCommand (string[] args)
|
|
: base(args)
|
|
{
|
|
}
|
|
|
|
protected override string ExecuteTextCommand ()
|
|
{
|
|
TimeSpan runtime = DateTime.Now.Subtract (ApplicationState.StartupTime);
|
|
|
|
StringBuilder builder = new StringBuilder ();
|
|
|
|
builder.Append ("Daemon was started ");
|
|
builder.Append (ApplicationState.StartupTime.ToShortDateString ());
|
|
builder.Append (" ");
|
|
builder.Append (TimeZone.CurrentTimeZone.StandardName);
|
|
builder.Append (" ");
|
|
builder.Append (ApplicationState.StartupTime.ToLongTimeString ());
|
|
builder.AppendLine ();
|
|
|
|
builder.Append ("Uptime ");
|
|
builder.Append (FormatTimespan (runtime));
|
|
builder.AppendLine ();
|
|
|
|
return builder.ToString ();
|
|
}
|
|
|
|
private string FormatTimespan (TimeSpan time)
|
|
{
|
|
string days;
|
|
|
|
if (time.TotalDays >= 1 && time.TotalDays < 2) {
|
|
days = "1 day ";
|
|
} else if (time.TotalDays >= 2) {
|
|
days = time.TotalDays.ToString (CultureInfo.InvariantCulture) + " days ";
|
|
} else {
|
|
days = String.Empty;
|
|
}
|
|
|
|
string hours;
|
|
|
|
if (time.Hours >= 1 && time.Hours < 2) {
|
|
hours = "1 hour ";
|
|
} else if (time.Hours >= 2) {
|
|
hours = time.Hours.ToString (CultureInfo.InvariantCulture) + " hours ";
|
|
} else {
|
|
hours = String.Empty;
|
|
}
|
|
|
|
string minutes;
|
|
|
|
if (time.Minutes >= 1 && time.Minutes < 2) {
|
|
minutes = "1 minute ";
|
|
} else if (time.Minutes >= 2) {
|
|
minutes = time.Minutes.ToString (CultureInfo.InvariantCulture) + " minutes ";
|
|
} else {
|
|
minutes = String.Empty;
|
|
}
|
|
|
|
string seconds;
|
|
|
|
if (time.Seconds >= 1 && time.Seconds < 2) {
|
|
seconds = "1 second";
|
|
} else if (time.Seconds >= 2) {
|
|
seconds = time.Seconds.ToString (CultureInfo.InvariantCulture) + " seconds";
|
|
} else {
|
|
seconds = String.Empty;
|
|
}
|
|
|
|
return String.Concat (days, hours, minutes, seconds);
|
|
}
|
|
}
|
|
}
|