2008-12-06 Ivan N. Zlatev <contact@i-nz.net>
[mono.git] / mcs / class / System.Configuration / System.Configuration / TimeSpanValidator.cs
1 //
2 // System.Configuration.TimeSpanValidator.cs
3 //
4 // Authors:
5 //  Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
27 //
28
29 #if NET_2_0
30 using System;
31
32 namespace System.Configuration
33 {
34         public class TimeSpanValidator: ConfigurationValidatorBase
35         {
36                 bool rangeIsExclusive;
37                 TimeSpan minValue;
38                 TimeSpan maxValue;
39                 long resolutionInSeconds;
40
41                 public TimeSpanValidator (TimeSpan minValue, TimeSpan maxValue): this (minValue, maxValue, false, 0)
42                 {
43                 }               
44                 
45                 public TimeSpanValidator (TimeSpan minValue, TimeSpan maxValue, bool rangeIsExclusive): this (minValue, maxValue, rangeIsExclusive, 0)
46                 {
47                 }
48
49                 public TimeSpanValidator (TimeSpan minValue, TimeSpan maxValue, bool rangeIsExclusive, long resolutionInSeconds)
50                 {
51                         this.minValue = minValue;
52                         this.maxValue = maxValue;
53                         this.rangeIsExclusive = rangeIsExclusive;
54                         this.resolutionInSeconds = resolutionInSeconds;
55                 }               
56                 
57                 public override bool CanValidate (Type type)
58                 {
59                         return type == typeof(TimeSpan);
60                 }
61
62                 public override void Validate (object value)
63                 {
64                         TimeSpan s = (TimeSpan) value;
65                         if (!rangeIsExclusive) {
66                                 if (s < minValue || s > maxValue)
67                                         throw new ArgumentException ("The value must be in the range " + minValue + " - " + maxValue);
68                         } else {
69                                 if (s >= minValue && s <= maxValue)
70                                         throw new ArgumentException ("The value must not be in the range " + minValue + " - " + maxValue);
71                         }
72                         if (resolutionInSeconds != 0 && s.Ticks % (TimeSpan.TicksPerSecond * resolutionInSeconds) != 0)
73                                 throw new ArgumentException ("The value must have a resolution of " + TimeSpan.FromTicks (TimeSpan.TicksPerSecond * resolutionInSeconds));
74                 }
75         }
76 }
77
78 #endif