Improved support for TimeZoneInfo under windows.
[mono.git] / mcs / class / System.ComponentModel.DataAnnotations / System.ComponentModel.DataAnnotations / StringLengthAttribute.cs
1 //
2 // StringLengthAttribute.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //      Marek Habersack <grendel@twistedcode.net>
7 //
8 // Copyright (C) 2008-2010 Novell Inc. http://novell.com
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31 using System;
32 using System.Globalization;
33 using System.ComponentModel;
34
35 namespace System.ComponentModel.DataAnnotations
36 {
37 #if NET_4_0
38         [AttributeUsage (AttributeTargets.Parameter|AttributeTargets.Property|AttributeTargets.Field, AllowMultiple = false)]
39 #else
40         [AttributeUsage (AttributeTargets.Property|AttributeTargets.Field, AllowMultiple = false)]
41 #endif
42         public class StringLengthAttribute : ValidationAttribute
43         {
44                 public int MaximumLength { get; private set; }
45 #if NET_4_0
46                 public int MinimumLength { get; set; }
47 #endif
48                 public StringLengthAttribute (int maximumLength)
49                         : base (GetDefaultErrorMessage)
50                 {
51 #if !NET_4_0
52                         if (maximumLength < 0)
53                                 throw new ArgumentOutOfRangeException ("maximumLength", String.Format ("Actual value was {0}", maximumLength));
54 #endif
55                         MaximumLength = maximumLength;
56                 }
57
58                 static string GetDefaultErrorMessage ()
59                 {
60                         return "The field {0} must be a string with a maximum length of {1}.";
61                 }
62
63                 public override string FormatErrorMessage (string name)
64                 {
65 #if NET_4_0
66                         return String.Format (ErrorMessageString, name, MaximumLength, MinimumLength);
67 #else
68                         return String.Format (ErrorMessageString, name, MaximumLength);
69 #endif
70                 }
71
72                 public override bool IsValid (object value)
73                 {
74                         if (value == null)
75                                 return true;
76
77                         string str = (string)value;
78                         int max = MaximumLength;
79 #if NET_4_0
80                         int min = MinimumLength;
81
82                         // LAMESPEC: documented to throw ArgumentOutOfRangeException
83                         if (max < 0)
84                                 throw new InvalidOperationException ("The maximum length must be a nonnegative integer.");
85
86                         if (min > max)
87                                 throw new InvalidOperationException (
88                                         String.Format ("The maximum value '{0}' must be greater than or equal to the minimum value '{1}'.",
89                                                        max, min)
90                                 );
91
92                         int len = str.Length;
93                         return len <= max && len >= min;
94 #else                   
95                         return str.Length <= max;
96 #endif
97                 }
98         }
99 }