2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / corlib / System / Char.cs
index 95909eb66e3c0fccf93729eb579062225272a5f0..865bd2814d41558fee06ace94c93c24958e5af65 100644 (file)
 // (C) 2004 Novell, Inc (http://www.novell.com)
 //
 
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 // Note about the ToString()'s. ECMA says there's only a ToString() method, 
 // BUT it is just a wrapper for ToString(null). However there is no other ToString
 // in the docs. Turning to the NET framework sdk reveals that there is a 
@@ -25,18 +48,20 @@ namespace System
 {
        [Serializable]
        public struct Char : IComparable, IConvertible
+#if NET_2_0
+               , IComparable <char>
+#endif
        {
                public const char MaxValue = (char) 0xffff;
                public const char MinValue = (char) 0;
 
                internal char m_value;
 
-               static Char () {
+               static Char ()
+               {
                        unsafe {
-                               GetDataTablePointers (out category_data, out numeric_data,
-                                               out numeric_data_values,
-                                               out to_lower_data_low, out to_lower_data_high,
-                                               out to_upper_data_low, out to_upper_data_high);
+                               GetDataTablePointers (out category_data, out numeric_data, out numeric_data_values,
+                                       out to_lower_data_low, out to_lower_data_high, out to_upper_data_low, out to_upper_data_high);
                        }
                }
 
@@ -80,6 +105,24 @@ namespace System
                        return ((Char) o).m_value == m_value;
                }
 
+#if NET_2_0
+               public int CompareTo (char value)
+               {
+                       if (m_value == value)
+                               return 0;
+
+                       if (m_value > value)
+                               return 1;
+                       else
+                               return -1;
+               }
+
+               public bool Equals (char value)
+               {
+                       return m_value == value;
+               }
+#endif
+
                public override int GetHashCode ()
                {
                        return m_value;
@@ -105,12 +148,11 @@ namespace System
                public static double GetNumericValue (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                       "The value of index is less than zero, or greater than or equal to the length of str"));
-                                       
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));       
                        
                        return GetNumericValue (str[index]);
                }
@@ -125,11 +167,11 @@ namespace System
                public static UnicodeCategory GetUnicodeCategory (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
-                               throw new ArgumentOutOfRangeException (Locale.GetText ("The value of index is less "+
-                                                         "than zero, or greater than or equal to the length of str"));
+                               throw new ArgumentOutOfRangeException (Locale.GetText (
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return GetUnicodeCategory (str[index]);
                }
@@ -144,11 +186,11 @@ namespace System
                public static bool IsControl (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("Str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                       "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsControl (str[index]);
                }       
@@ -163,11 +205,11 @@ namespace System
                public static bool IsDigit (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("Str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsDigit (str[index]);
                }
@@ -192,11 +234,11 @@ namespace System
                public static bool IsLetter (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsLetter (str[index]);
                }
@@ -222,11 +264,11 @@ namespace System
                public static bool IsLetterOrDigit (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsLetterOrDigit (str[index]);
                }
@@ -241,11 +283,11 @@ namespace System
                public static bool IsLower (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsLower (str[index]);
                }
@@ -268,11 +310,11 @@ namespace System
                public static bool IsNumber (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                               "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsNumber (str[index]);
                }
@@ -299,11 +341,11 @@ namespace System
                public static bool IsPunctuation (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsPunctuation (str[index]);
                }
@@ -326,11 +368,11 @@ namespace System
                public static bool IsSeparator (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsSeparator (str[index]);
                }
@@ -345,11 +387,11 @@ namespace System
                public static bool IsSurrogate (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsSurrogate (str[index]);
                }
@@ -373,11 +415,11 @@ namespace System
                public static bool IsSymbol (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                       "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsSymbol (str[index]);
                }
@@ -392,11 +434,11 @@ namespace System
                public static bool IsUpper (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsUpper (str[index]);
                }
@@ -426,19 +468,19 @@ namespace System
                public static bool IsWhiteSpace (string str, int index)
                {
                        if (str == null) 
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                               throw new ArgumentNullException ("str");
                        
                        if (index < 0 || index >= str.Length)
                                throw new ArgumentOutOfRangeException (Locale.GetText (
-                                       "The value of index is less than zero, or greater than or equal to the length of str"));
+                                       "The value of index is less than zero, or greater than or equal to the length of str."));
                        
                        return IsWhiteSpace (str[index]);
                }
 
                public static char Parse (string str)
                {
-                       if (str == null)
-                               throw new ArgumentNullException (Locale.GetText ("str is a null reference"));
+                       if (str == null) 
+                               throw new ArgumentNullException ("str");
 
                        if (str.Length != 1)
                                throw new FormatException ("string contains more than one character.");
@@ -447,27 +489,40 @@ namespace System
                }
 
                public static char ToLower (char c)
+               {
+                       return ToLower (c, CultureInfo.CurrentCulture);
+               }
+
+               internal static char ToLowerInvariant (char c)
                {
                        unsafe {
                                if (c <= ((char)0x24cf))
                                        return (char) to_lower_data_low [c];
-                               if (c >= ((char)0xff41))
-                                       return (char) to_lower_data_high[c - 0xff41];
+                               if (c >= ((char)0xff21))
+                                       return (char) to_lower_data_high[c - 0xff21];
                        }
                        return c;
                }
 
-               [MonoTODO]
                public static char ToLower (char c, CultureInfo culture)
                {
-                       //TODO ignored culture for now
-                       return ToLower (c);
+                       if (culture == null)
+                               throw new ArgumentNullException ("culture");
+                       if (culture.LCID == 0x007F) // Invariant
+                               return ToLowerInvariant (c);
+
+                       return culture.TextInfo.ToLower (c);
                }
 
                public static char ToUpper (char c)
+               {
+                       return ToUpper (c, CultureInfo.CurrentCulture);
+               }
+
+               internal static char ToUpperInvariant (char c)
                {
                        unsafe {
-                               if (c <= ((char)0x24cf))
+                               if (c <= ((char)0x24e9))
                                        return (char) to_upper_data_low [c];
                                if (c >= ((char)0xff21))
                                        return (char) to_upper_data_high [c - 0xff21];
@@ -475,13 +530,16 @@ namespace System
                        return c;
                }
 
-               [MonoTODO]
-               public static char ToUpper(char c, CultureInfo culture)
+               public static char ToUpper (char c, CultureInfo culture)
                {
-                       //TODO ignored culture for now
-                       return ToUpper (c);
-               }
+                       if (culture == null)
+                               throw new ArgumentNullException ("culture");
+                       if (culture.LCID == 0x007F) // Invariant
+                               return ToUpperInvariant (c);
 
+                       return culture.TextInfo.ToUpper (c);
+               }
+               
                public override string ToString ()
                {
                        // LAMESPEC: ECMA draft lists this as returning ToString (null), 
@@ -527,7 +585,6 @@ namespace System
                        return m_value;
                }
                
-               [CLSCompliant(false)]
                DateTime IConvertible.ToDateTime (IFormatProvider provider)
                {
                        throw new InvalidCastException();
@@ -558,7 +615,6 @@ namespace System
                        return System.Convert.ToInt64(m_value);
                }
                
-               [CLSCompliant(false)] 
                sbyte IConvertible.ToSByte (IFormatProvider provider)
                {
                        return System.Convert.ToSByte(m_value);
@@ -574,19 +630,16 @@ namespace System
                        return ToString(provider);
                }
 
-               [CLSCompliant(false)]
                ushort IConvertible.ToUInt16 (IFormatProvider provider)
                {
                        return System.Convert.ToUInt16(m_value);
                }
                
-               [CLSCompliant(false)]
                uint IConvertible.ToUInt32 (IFormatProvider provider)
                {
                        return System.Convert.ToUInt32(m_value);
                }
                
-               [CLSCompliant(false)]
                ulong IConvertible.ToUInt64 (IFormatProvider provider)
                {
                        return System.Convert.ToUInt64(m_value);