Files
ntpa/Ntp.Analyzer/Config/ServerConfiguration.cs
T
2016-04-10 11:50:35 +02:00

349 lines
13 KiB
C#

//
// ServerConfiguration.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.Config;
using Ntp.Analyzer.Config.Graph;
using Ntp.Analyzer.Config.Navigation;
using Ntp.Analyzer.Config.Page;
using Ntp.Analyzer.Config.Root;
using Ntp.Analyzer.Config.Stats;
using Ntp.Analyzer.Localize;
namespace Ntp.Analyzer.Config
{
public sealed class ServerConfiguration : ConfigurationBase
{
private ServerConfiguration (
string configName,
int indentLevel,
int hostId,
string serverName,
ServerType serverType,
string filePath,
string webPath)
: base(configName, indentLevel)
{
this.hostId = hostId;
this.serverName = serverName;
this.serverType = serverType;
this.filePath = filePath;
this.webPath = webPath;
hostPages = new List<HostPageConfiguration> ();
hostGraphs = new List<HostGraphConfiguration> ();
trafficGraphs = new List<TrafficGraphConfiguration> ();
peerSummaryPages = new List<PeerSummaryPageConfiguration> ();
peerPages = new List<PeerPageConfiguration> ();
peerGraphs = new List<PeerGraphConfiguration> ();
}
public const string Identifier = ConfigurationKeyword.Server;
private static readonly String[] Params = new[] {
ConfigurationKeyword.Server,
ConfigurationKeyword.ServerHostId,
ConfigurationKeyword.ServerHostAddress,
ConfigurationKeyword.ServerHostType,
ConfigurationKeyword.ServerFilePath,
ConfigurationKeyword.ServerWebPath,
MenuConfiguration.Identifier,
AboutPageConfiguration.Identifier,
HostPageConfiguration.Identifier,
HostGraphConfiguration.Identifier,
TrafficGraphConfiguration.Identifier,
PeerPageConfiguration.Identifier,
PeerGraphConfiguration.Identifier,
PeerSummaryPageConfiguration.Identifier,
HostGraphPageConfiguration.Identifier,
PeerGraphPageConfiguration.Identifier,
HostStatConfiguration.Identifier,
HostIOStatConfiguration.Identifier,
PeerStatConfiguration.Identifier
};
private readonly string filePath;
private readonly List<HostGraphConfiguration> hostGraphs;
private readonly List<TrafficGraphConfiguration> trafficGraphs;
private readonly int hostId;
private readonly List<HostPageConfiguration> hostPages;
private readonly List<PeerGraphConfiguration> peerGraphs;
private readonly List<PeerPageConfiguration> peerPages;
private readonly List<PeerSummaryPageConfiguration> peerSummaryPages;
private readonly string serverName;
private readonly ServerType serverType;
private readonly string webPath;
private AboutPageConfiguration aboutPage;
private HostGraphPageConfiguration hostGraphPage;
private HostStatConfiguration hostStats;
private HostIOStatConfiguration hostIoStats;
private MenuConfiguration menu;
private PeerGraphPageConfiguration peerGraphPage;
private PeerStatConfiguration peerStats;
public int HostId {
get { return hostId; }
}
public string ServerName {
get { return serverName != null ? serverName : HostId.ToString(); }
}
public ServerType ServerType {
get { return serverType; }
}
public string FilePath {
get { return filePath; }
}
public string WebPath {
get { return webPath; }
}
public MenuConfiguration Menu {
get { return menu; }
}
public AboutPageConfiguration AboutPage {
get { return aboutPage; }
}
public IEnumerable<HostPageConfiguration> HostPages {
get { return hostPages; }
}
public IEnumerable<HostGraphConfiguration> HostGraphs {
get { return hostGraphs; }
}
public List<TrafficGraphConfiguration> TrafficGraphs {
get { return trafficGraphs; }
}
public IEnumerable<PeerPageConfiguration> PeerPages {
get { return peerPages; }
}
public IEnumerable<PeerGraphConfiguration> PeerGraphs {
get { return peerGraphs; }
}
public IEnumerable<PeerSummaryPageConfiguration> PeerSummaryPages {
get { return peerSummaryPages; }
}
public HostGraphPageConfiguration HostGraphPage {
get { return hostGraphPage; }
}
public PeerGraphPageConfiguration PeerGraphPage {
get { return peerGraphPage; }
}
public HostStatConfiguration HostStats {
get { return hostStats; }
}
public HostIOStatConfiguration HostIoStats {
get { return hostIoStats; }
}
public PeerStatConfiguration PeerStats {
get { return peerStats; }
}
protected override IEnumerable<Object> Items {
get {
return new object[] {
ConfigName,
hostId,
serverName,
GetServerTypeString(serverType),
filePath,
webPath,
menu,
aboutPage,
hostPages,
hostGraphs,
trafficGraphs,
peerPages,
peerGraphs,
PeerSummaryPages,
hostGraphPage,
peerGraphPage,
hostStats,
hostIoStats,
peerStats
};
}
}
private string GetServerTypeString(ServerType type)
{
switch (type) {
case ServerType.Ntpdc:
return ConfigurationKeyword.ServerTypeNtpdc;
case ServerType.Ntpq:
return ConfigurationKeyword.ServerTypeNtpq;
default:
return ConfigurationKeyword.ServerTypeUnknown;
}
}
private static ServerType GetServerTypeString(
Dictionary<String, String> options,
string type,
string configPath)
{
if (!options.ContainsKey (type) || options [type].Trim () == String.Empty) {
ConfigError (String.Format (ConfigurationMessage.NoValueForSetting, type, configPath));
return ServerType.Unknown;
}
switch (options [type].Trim ()) {
case ConfigurationKeyword.ServerTypeNtpdc:
return ServerType.Ntpdc;
case ConfigurationKeyword.ServerTypeNtpq:
return ServerType.Ntpq;
default:
ConfigError (String.Format (ConfigurationMessage.InvalidValue, type, configPath));
return ServerType.Unknown;
}
}
public override string ToString ()
{
return ConfigText (Params, Items);
}
public static ServerConfiguration Create (ReadingBulkConfiguration bulk, ConfigurationBlock configBlock)
{
Dictionary<String, String> options = GetOptions (Params, configBlock);
ServerConfiguration config = new ServerConfiguration (
GetOptionConfigName (options, Identifier, Identifier, true),
configBlock.IndentLevel,
GetOptionInteger (options, ConfigurationKeyword.ServerHostId, Identifier, true),
GetOptionString (options, ConfigurationKeyword.ServerHostAddress, Identifier, true),
GetServerTypeString (options, ConfigurationKeyword.ServerHostType, Identifier),
GetOptionString (options, ConfigurationKeyword.ServerFilePath, Identifier, false),
GetOptionString (options, ConfigurationKeyword.ServerWebPath, Identifier, false)
);
ConfigurationBlock block;
block = FindSingleBlock (HostStatConfiguration.Identifier, configBlock);
config.hostStats = block != null ? HostStatConfiguration.Create (config, bulk, block) : null;
block = FindSingleBlock (HostIOStatConfiguration.Identifier, configBlock);
config.hostIoStats = block != null ? HostIOStatConfiguration.Create (config, bulk, block) : null;
block = FindSingleBlock (PeerStatConfiguration.Identifier, configBlock);
config.peerStats = block != null ? PeerStatConfiguration.Create (config, bulk, block) : null;
block = FindSingleBlock (AboutPageConfiguration.Identifier, configBlock);
config.aboutPage = block != null ? AboutPageConfiguration.Create (config, block) : null;
ConfigurationBlock[] hostGraphBlock = FindBlocks (
HostGraphConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock hostBlock in hostGraphBlock) {
config.hostGraphs.Add (HostGraphConfiguration.Create (config, hostBlock));
}
ConfigurationBlock[] trafficGraphBlocks = FindBlocks (
TrafficGraphConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock trafficBlock in trafficGraphBlocks) {
config.trafficGraphs.Add (TrafficGraphConfiguration.Create (config, trafficBlock));
}
ConfigurationBlock[] peerGraphBlock = FindBlocks (
PeerGraphConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock peerBlock in peerGraphBlock) {
config.peerGraphs.Add (PeerGraphConfiguration.Create (config, peerBlock));
}
ConfigurationBlock[] peerBlocks = FindBlocks (
PeerPageConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock peerBlock in peerBlocks) {
config.peerPages.Add (PeerPageConfiguration.Create (
config,
peerBlock,
config.peerGraphs));
}
ConfigurationBlock[] peerSummaryBlocks = FindBlocks (
PeerSummaryPageConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock peerSummaryBlock in peerSummaryBlocks) {
config.peerSummaryPages.Add (PeerSummaryPageConfiguration.Create (
config, peerSummaryBlock,
config.peerPages,
config.peerGraphs));
}
List<GraphBaseConfiguration> graphs = new List<GraphBaseConfiguration> ();
graphs.AddRange (config.hostGraphs);
graphs.AddRange (config.trafficGraphs);
ConfigurationBlock[] hostBlocks = FindBlocks (HostPageConfiguration.Identifier, configBlock);
foreach (ConfigurationBlock hostBlock in hostBlocks) {
config.hostPages.Add (HostPageConfiguration.Create (
config,
hostBlock,
config.peerPages,
graphs,
config.PeerSummaryPages));
}
block = FindSingleBlock (HostGraphPageConfiguration.Identifier, configBlock);
config.hostGraphPage =
block != null ? HostGraphPageConfiguration.Create (
config,
block,
config.hostPages) : null;
block = FindSingleBlock (PeerGraphPageConfiguration.Identifier, configBlock);
config.peerGraphPage =
block != null ? PeerGraphPageConfiguration.Create (
config,
block,
config.peerPages) : null;
List<ILinkable> linkables = new List<ILinkable> ();
if (config.aboutPage != null)
linkables.Add (config.aboutPage);
linkables.AddRange (config.hostPages);
linkables.AddRange (config.peerPages);
linkables.AddRange (config.PeerSummaryPages);
block = FindSingleBlock (MenuConfiguration.Identifier, configBlock);
config.menu = block != null ? MenuConfiguration.Create (block, linkables) : null;
return config;
}
}
}