1 //
2 // Copyright (c) 2013-2017 Carsten Sonne Larsen <cs@innolan.net>
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE.
21 
22 using System;
23 using System.Collections.Generic;
24 using Ntp.Analyzer.Config.Attribute;
25 using Ntp.Analyzer.Config.Node.Destination;
26 using Ntp.Analyzer.Config.Node.Graph;
27 using Ntp.Analyzer.Config.Table;
28 using Ntp.Common.Process;
29 using Ntp.Common.Web;
30 
31 namespace Ntp.Analyzer.Config.Node.Page
32 {
33     public sealed class HostGraphPageConfiguration : GraphPageConfiguration, IJobConfiguration
34     {
HostGraphPageConfiguration( string configName, int? frequency, bool? initialRun, bool? fixedRun, int? linkIndex, HostPageConfiguration page, DestinationCollection destinations, Uri link)35         internal HostGraphPageConfiguration(
36             string configName,
37             int? frequency,
38             bool? initialRun,
39             bool? fixedRun,
40             int? linkIndex,
41             HostPageConfiguration page,
42             DestinationCollection destinations,
43             Uri link)
44             : base(configName, destinations, link)
45         {
46             this.frequency = frequency;
47             this.initialRun = initialRun;
48             this.fixedRun = fixedRun;
49             this.linkIndex = linkIndex;
50             ConfigLink = link;
51             PageConfiguration = page;
52         }
53 
54         private readonly bool? fixedRun;
55         private readonly int? frequency;
56         private readonly bool? initialRun;
57         private readonly int? linkIndex;
58 
59         public override PageTheme Theme => PageTheme.Default;
60 
61         public override string Title => string.Empty;
62 
63         [NtpaIndex(10)]
64         [NtpaReference(Symbol.KeywordGraphPage)]
65         public HostPageConfiguration PageConfiguration { get; }
66 
67         [NtpaIndex(11)]
68         [NtpaSetting(Symbol.KeywordLinkIndex, 1)]
69         public override int LinkIndex => linkIndex ?? 1;
70 
71         [NtpaIndex(20)]
72         [NtpaSetting(Symbol.KeywordLink)]
73         public Uri ConfigLink { get; }
74 
75         public override IEnumerable<GraphSetConfiguration> GraphSets => PageConfiguration.Graphs;
76 
77         [NtpaIndex(1)]
78         [NtpaSetting(Symbol.KeywordFrequency, 0)]
79         public int Frequency => frequency ?? 0;
80 
81         [NtpaIndex(2)]
82         [NtpaSetting(Symbol.KeywordInitialRun, true)]
83         public bool InitialRun => initialRun ?? true;
84 
85         [NtpaIndex(3)]
86         [NtpaSetting(Symbol.KeywordFixedRun, false)]
87         public bool FixedRun => fixedRun ?? false;
88 
GetFileName(GraphSetConfiguration graphSet, GraphBaseConfiguration graph)89         public string GetFileName(GraphSetConfiguration graphSet, GraphBaseConfiguration graph)
90         {
91             return graph.GetAltName(graphSet, null).
92                 Replace(".png", string.Empty).
93                 Replace('.', '-')
94                    + ".html";
95         }
96 
GetLink(GraphSetConfiguration graphSet, GraphBaseConfiguration graph)97         public Uri GetLink(GraphSetConfiguration graphSet, GraphBaseConfiguration graph)
98         {
99             return WebPath.
100                 Append(Link, graph.GetAltName(graphSet, null).Replace(".png", string.Empty).Replace('.', '-')).
101                 AppendExtension(".html");
102         }
103 
Assemble()104         internal override void Assemble()
105         {
106             base.Assemble();
107             PageConfiguration.AttachGraphPage(this);
108         }
109     }
110 }