Files
ntpa/Ntp.Analyzer/Config/Stats/HostStatConfiguration.cs
T
2016-04-12 21:54:26 +02:00

118 lines
4.3 KiB
C#

//
// HostStatConfiguration.cs
//
// Author:
// Carsten Sonne Larsen <cs@innolan.dk>
//
// Copyright (c) 2013-2016 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.Collections.Generic;
using Ntp.Analyzer.Localize;
using Ntp.Config;
using Ntp.Analyzer.Config.Root;
namespace Ntp.Analyzer.Config.Stats
{
public sealed class HostStatConfiguration : StatsConfiguration
{
private HostStatConfiguration (
string configName,
int indentLevel,
ServerConfiguration server,
ReadingBulkConfiguration bulk,
int frequency,
bool initialRun,
bool fixedRun
)
: base(configName, indentLevel, server, bulk, frequency, initialRun, fixedRun)
{
}
public const string Identifier = ConfigurationKeyword.HostStats;
private static readonly String[] Params = new[] {
ConfigurationKeyword.HostStats,
ConfigurationKeyword.Frequency,
ConfigurationKeyword.InitialRun,
ConfigurationKeyword.FixedRun
};
protected override IEnumerable<Object> Items {
get {
return new object[] {
ConfigName,
Frequency,
InitialRun,
FixedRun
};
}
}
public override string ToString ()
{
return
Bulk == null ?
ConfigText (Params, Items) :
ConfigText (
new[] { ConfigurationKeyword.HostStats, ConfigurationKeyword.Frequency },
new[] { ConfigName, Bulk.Name });
}
public static HostStatConfiguration Create (
ServerConfiguration server,
ReadingBulkConfiguration bulk,
ConfigurationBlock config)
{
OptionSet options = GetOptions (Params, config);
string configName = GetOptionConfigName (options, ConfigurationKeyword.HostStats, String.Empty, false);
bool initialRun = false;
bool fixedRun = false;
int frequency;
ReadingBulkConfiguration bulkConfig = null;
// TODO: Implement handling of multimple ReadingBulkConfigurations
if (!Int32.TryParse (ConfigurationKeyword.Frequency, out frequency)) {
if (bulk != null && options [ConfigurationKeyword.Frequency] == bulk.Name)
bulkConfig = bulk;
else {
ConfigError (String.Format (
ConfigurationMessage.WrongReference,
ConfigurationKeyword.Frequency, Identifier, configName));
}
} else {
frequency = GetOptionInteger (options, ConfigurationKeyword.Frequency, Identifier, true);
initialRun = GetOptionBoolean (options, ConfigurationKeyword.InitialRun, Identifier, true);
fixedRun = GetOptionBoolean (options, ConfigurationKeyword.FixedRun, Identifier, true);
}
return new HostStatConfiguration (
configName,
config.IndentLevel,
server,
bulkConfig,
frequency,
initialRun,
fixedRun);
}
}
}