Revert "PowerPC64 ELFv2 ABI: cases for in-register parameter passing, return values...
[mono.git] / mcs / class / System.ComponentModel.DataAnnotations / System.ComponentModel.DataAnnotations / RegularExpressionAttribute.cs
1 //
2 // RegularExpressionAttribute.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //  Antoine Cailliau <a.cailliau@maximux.net>
7 //
8 // Copyright (C) 2008 Novell Inc. http://novell.com
9 // Copyright (C) 20011 Maximux Scris. http://maximux.net
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 using System;
33 using System.Globalization;
34 using System.ComponentModel;
35 using System.Text.RegularExpressions;
36
37 namespace System.ComponentModel.DataAnnotations
38 {
39
40 #if NET_4_0
41         [AttributeUsage (AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Parameter, AllowMultiple = false)]
42 #else
43         [AttributeUsage (AttributeTargets.Property|AttributeTargets.Field, AllowMultiple = false)]      
44 #endif
45         public class RegularExpressionAttribute : ValidationAttribute
46         {
47                 public RegularExpressionAttribute (string pattern)
48                         : base(GetDefaultErrorMessage)
49                 {
50                         if (pattern == null)
51                                 throw new ArgumentNullException("pattern");
52                         Pattern = pattern;
53                 }
54
55                 public string Pattern { get; private set; }
56
57                 static string GetDefaultErrorMessage ()
58                 {
59                         return "The field {0} must match the regular expression {1}.";
60                 }
61                 
62                 public override string FormatErrorMessage (string name)
63                 {
64                         return string.Format (ErrorMessageString, name, Pattern);
65                 }
66
67                 // LAMESPEC: does not throw ValidationException when value does not match the regular expression
68                 public override bool IsValid (object value)
69                 {
70                         if (value == null) 
71                                 return true;
72                         
73                         string str = (string) value;
74                         Regex regex = new Regex(Pattern);
75                         return regex.IsMatch(str);
76                 }
77         }
78 }