Merge branch 'master' of https://github.com/mono/mono into issue4328
[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.ComponentModel;
33
34 namespace System.ComponentModel.DataAnnotations
35 {
36 #if NET_4_0
37         [AttributeUsage (AttributeTargets.Parameter|AttributeTargets.Property|AttributeTargets.Field, AllowMultiple = false)]
38 #else
39         [AttributeUsage (AttributeTargets.Property|AttributeTargets.Field, AllowMultiple = false)]
40 #endif
41         public class StringLengthAttribute : ValidationAttribute
42         {
43                 public int MaximumLength { get; private set; }
44 #if NET_4_0
45                 public int MinimumLength { get; set; }
46 #endif
47                 public StringLengthAttribute (int maximumLength)
48                         : base (GetDefaultErrorMessage)
49                 {
50 #if !NET_4_0
51                         if (maximumLength < 0)
52                                 throw new ArgumentOutOfRangeException ("maximumLength", String.Format ("Actual value was {0}", maximumLength));
53 #endif
54                         MaximumLength = maximumLength;
55                 }
56
57                 static string GetDefaultErrorMessage ()
58                 {
59                         return "The field {0} must be a string with a maximum length of {1}.";
60                 }
61
62                 public override string FormatErrorMessage (string name)
63                 {
64 #if NET_4_0
65                         return String.Format (ErrorMessageString, name, MaximumLength, MinimumLength);
66 #else
67                         return String.Format (ErrorMessageString, name, MaximumLength);
68 #endif
69                 }
70
71                 public override bool IsValid (object value)
72                 {
73                         if (value == null)
74                                 return true;
75
76                         string str = (string)value;
77                         int max = MaximumLength;
78 #if NET_4_0
79                         int min = MinimumLength;
80
81                         // LAMESPEC: documented to throw ArgumentOutOfRangeException
82                         if (max < 0)
83                                 throw new InvalidOperationException ("The maximum length must be a nonnegative integer.");
84
85                         if (min > max)
86                                 throw new InvalidOperationException (
87                                         String.Format ("The maximum value '{0}' must be greater than or equal to the minimum value '{1}'.",
88                                                        max, min)
89                                 );
90
91                         int len = str.Length;
92                         return len <= max && len >= min;
93 #else                   
94                         return str.Length <= max;
95 #endif
96                 }
97         }
98 }