2010-03-31 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / class / corlib / System / UInt32.cs
index fcb03d8ac2d9ae7287d63d256e4b2de1776dec64..950f1e8ea69fdcd0ad299fcb89d77ba8170216c0 100644 (file)
@@ -34,12 +34,8 @@ namespace System
 {
        [Serializable]
        [CLSCompliant (false)]
-       public struct UInt32 : IFormattable, IConvertible,
-#if NET_2_0
-               IComparable, IComparable<UInt32>
-#else
-               IComparable
-#endif
+       [System.Runtime.InteropServices.ComVisible (true)]
+       public struct UInt32 : IFormattable, IConvertible, IComparable, IComparable<UInt32>, IEquatable <UInt32>
        {
                public const uint MaxValue = 0xffffffff;
                public const uint MinValue = 0;
@@ -54,13 +50,12 @@ namespace System
                        if (!(value is System.UInt32))
                                throw new ArgumentException (Locale.GetText ("Value is not a System.UInt32."));
 
-                       if (this.m_value == (uint) value)
-                               return 0;
+                       uint val = (uint) value;
 
-                       if (this.m_value < (uint) value)
-                               return -1;
+                       if (m_value == val)
+                               return 0;
 
-                       return 1;
+                       return (m_value < val) ? -1 : 1;
                }
 
                public override bool Equals (object obj)
@@ -76,7 +71,6 @@ namespace System
                        return (int) m_value;
                }
 
-#if NET_2_0
                public int CompareTo (uint value)
                {
                        if (m_value == value)
@@ -87,14 +81,12 @@ namespace System
                                return -1;
                }
 
-               public bool Equals (uint value)
+               public bool Equals (uint obj)
                {
-                       return value == m_value;
+                       return obj == m_value;
                }
-#endif
 
-               [CLSCompliant (false)]
-               public static uint Parse (string s)
+               internal static bool Parse (string s, bool tryParse, out uint result, out Exception exc)
                {
                        uint val = 0;
                        int len;
@@ -102,8 +94,14 @@ namespace System
                        bool digits_seen = false;
                        bool has_negative_sign = false;
 
-                       if (s == null)
-                               throw new ArgumentNullException ("s");
+                       result = 0;
+                       exc = null;
+
+                       if (s == null) {
+                               if (!tryParse)
+                                       exc = new ArgumentNullException ("s");
+                               return false;
+                       }
 
                        len = s.Length;
 
@@ -114,8 +112,11 @@ namespace System
                                        break;
                        }
 
-                       if (i == len)
-                               throw new FormatException ();
+                       if (i == len) {
+                               if (!tryParse)
+                                       exc = Int32.GetFormatException ();
+                               return false;
+                       }
 
                        if (s [i] == '+')
                                i++;
@@ -131,62 +132,62 @@ namespace System
                                if (c >= '0' && c <= '9') {
                                        uint d = (uint) (c - '0');
 
-                                       val = checked (val * 10 + d);
+                                       if ((val > MaxValue/10) || (val == (MaxValue / 10) && d > (MaxValue % 10))){
+                                               if (!tryParse)
+                                                       exc = new OverflowException (Locale.GetText ("Value is too large"));
+                                               return false;
+                                       }
+                                       val = (val * 10) + d;
                                        digits_seen = true;
+                               } else if (!Int32.ProcessTrailingWhitespace (tryParse, s, i, ref exc)){
+                                       return false;
                                }
-                               else {
-                                       if (Char.IsWhiteSpace (c)) {
-                                               for (i++; i < len; i++) {
-                                                       if (!Char.IsWhiteSpace (s [i]))
-                                                               throw new FormatException ();
-                                               }
-                                               break;
-                                       } else
-                                               throw new FormatException ();
-                               }
                        }
-                       if (!digits_seen)
-                               throw new FormatException ();
+                       if (!digits_seen) {
+                               if (!tryParse)
+                                       exc = Int32.GetFormatException ();
+                               return false;
+                       }
 
                        // -0 is legal but other negative values are not
                        if (has_negative_sign && (val > 0)) {
-                               throw new OverflowException (
-                                       Locale.GetText ("Negative number"));
+                               if (!tryParse)
+                                       exc = new OverflowException (
+                                           Locale.GetText ("Negative number"));
+                               return false;
                        }
 
-                       return val;
+                       result = val;
+                       return true;
                }
 
-               [CLSCompliant (false)]
-               public static uint Parse (string s, IFormatProvider provider)
+               internal static bool Parse (string s, NumberStyles style, IFormatProvider provider, bool tryParse, out uint result, out Exception exc)
                {
-                       return Parse (s, NumberStyles.Integer, provider);
-               }
+                       result = 0;
+                       exc = null;
 
-               [CLSCompliant (false)]
-               public static uint Parse (string s, NumberStyles style)
-               {
-                       return Parse (s, style, null);
-               }
-
-               [CLSCompliant (false)]
-               public static uint Parse (string s, NumberStyles style, IFormatProvider provider)
-               {
-                       if (s == null)
-                               throw new ArgumentNullException ("s");
+                       if (s == null) {
+                               if (!tryParse)
+                                       exc = new ArgumentNullException ("s");
+                               return false;
+                       }
 
-                       if (s.Length == 0)
-                               throw new FormatException (Locale.GetText ("Input string was not in the correct format."));
+                       if (s.Length == 0) {
+                               if (!tryParse)
+                                       exc = Int32.GetFormatException ();
+                               return false;
+                       }
 
-                       NumberFormatInfo nfi;
+                       NumberFormatInfo nfi = null;
                        if (provider != null) {
                                Type typeNFI = typeof (NumberFormatInfo);
                                nfi = (NumberFormatInfo) provider.GetFormat (typeNFI);
                        }
-                       else
+                       if (nfi == null)
                                nfi = Thread.CurrentThread.CurrentCulture.NumberFormat;
 
-                       Int32.CheckStyle (style);
+                       if (!Int32.CheckStyle (style, tryParse, ref exc))
+                               return false;
 
                        bool AllowCurrencySymbol = (style & NumberStyles.AllowCurrencySymbol) != 0;
                        bool AllowHexSpecifier = (style & NumberStyles.AllowHexSpecifier) != 0;
@@ -200,8 +201,8 @@ namespace System
 
                        int pos = 0;
 
-                       if (AllowLeadingWhite)
-                               pos = Int32.JumpOverWhite (pos, s, true);
+                       if (AllowLeadingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                               return false;
 
                        bool foundOpenParentheses = false;
                        bool negative = false;
@@ -215,25 +216,32 @@ namespace System
                                negative = true; // MS always make the number negative when there parentheses
                                                 // even when NumberFormatInfo.NumberNegativePattern != 0!!!
                                pos++;
-                               if (AllowLeadingWhite)
-                                       pos = Int32.JumpOverWhite (pos, s, true);
+                               if (AllowLeadingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                       return false;
 
-                               if (s.Substring (pos, nfi.NegativeSign.Length) == nfi.NegativeSign)
-                                       throw new FormatException (Locale.GetText ("Input string was not in the correct format."));
-                               if (s.Substring (pos, nfi.PositiveSign.Length) == nfi.PositiveSign)
-                                       throw new FormatException (Locale.GetText ("Input string was not in the correct format."));
+                               if (s.Substring (pos, nfi.NegativeSign.Length) == nfi.NegativeSign) {
+                                       if (!tryParse)
+                                               exc = Int32.GetFormatException ();
+                                       return false;
+                               }
+                               if (s.Substring (pos, nfi.PositiveSign.Length) == nfi.PositiveSign) {
+                                       if (!tryParse)
+                                               exc = Int32.GetFormatException ();
+                                       return false;
+                               }
                        }
 
                        if (AllowLeadingSign && !foundSign) {
                                // Sign + Currency
                                Int32.FindSign (ref pos, s, nfi, ref foundSign, ref negative);
                                if (foundSign) {
-                                       if (AllowLeadingWhite)
-                                               pos = Int32.JumpOverWhite (pos, s, true);
+                                       if (AllowLeadingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                               return false;
                                        if (AllowCurrencySymbol) {
                                                Int32.FindCurrency (ref pos, s, nfi, ref foundCurrency);
-                                               if (foundCurrency && AllowLeadingWhite)
-                                                       pos = Int32.JumpOverWhite (pos, s, true);
+                                               if (foundCurrency && AllowLeadingWhite &&
+                                                               !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                                       return false;
                                        }
                                }
                        }
@@ -242,13 +250,14 @@ namespace System
                                // Currency + sign
                                Int32.FindCurrency (ref pos, s, nfi, ref foundCurrency);
                                if (foundCurrency) {
-                                       if (AllowLeadingWhite)
-                                               pos = Int32.JumpOverWhite (pos, s, true);
+                                       if (AllowLeadingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                               return false;
                                        if (foundCurrency) {
                                                if (!foundSign && AllowLeadingSign) {
                                                        Int32.FindSign (ref pos, s, nfi, ref foundSign, ref negative);
-                                                       if (foundSign && AllowLeadingWhite)
-                                                               pos = Int32.JumpOverWhite (pos, s, true);
+                                                       if (foundSign && AllowLeadingWhite &&
+                                                                       !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                                               return false;
                                                }
                                        }
                                }
@@ -285,14 +294,24 @@ namespace System
                                        else
                                                digitValue = (uint) (hexDigit - 'A' + 10);
 
-                                       number = checked (number * 16 + digitValue);
+                                       if (tryParse){
+                                               ulong l = number * 16 + digitValue;
+
+                                               if (l > MaxValue)
+                                                       return false;
+                                               number = (uint) l;
+                                       } else
+                                               number = checked (number * 16 + digitValue);
                                }
                                else if (decimalPointFound) {
                                        nDigits++;
                                        // Allows decimal point as long as it's only 
                                        // followed by zeroes.
-                                       if (s [pos++] != '0')
-                                               throw new OverflowException (Locale.GetText ("Value too large or too small."));
+                                       if (s [pos++] != '0') {
+                                               if (!tryParse)
+                                                       exc = new OverflowException (Locale.GetText ("Value too large or too small."));
+                                               return false;
+                                       }
                                }
                                else {
                                        nDigits++;
@@ -301,21 +320,26 @@ namespace System
                                                number = checked (number * 10 + (uint) (s [pos++] - '0'));
                                        }
                                        catch (OverflowException) {
-                                               throw new OverflowException (Locale.GetText ("Value too large or too small."));
+                                               if (!tryParse)
+                                                       exc = new OverflowException (Locale.GetText ("Value too large or too small."));
+                                               return false;
                                        }
                                }
                        } while (pos < s.Length);
 
                        // Post number stuff
-                       if (nDigits == 0)
-                               throw new FormatException (Locale.GetText ("Input string was not in the correct format."));
+                       if (nDigits == 0) {
+                               if (!tryParse)
+                                       exc = Int32.GetFormatException ();
+                               return false;
+                       }
 
                        if (AllowTrailingSign && !foundSign) {
                                // Sign + Currency
                                Int32.FindSign (ref pos, s, nfi, ref foundSign, ref negative);
                                if (foundSign) {
-                                       if (AllowTrailingWhite)
-                                               pos = Int32.JumpOverWhite (pos, s, true);
+                                       if (AllowTrailingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                               return false;
                                        if (AllowCurrencySymbol)
                                                Int32. FindCurrency (ref pos, s, nfi, ref foundCurrency);
                                }
@@ -325,44 +349,113 @@ namespace System
                                // Currency + sign
                                Int32.FindCurrency (ref pos, s, nfi, ref foundCurrency);
                                if (foundCurrency) {
-                                       if (AllowTrailingWhite)
-                                               pos = Int32.JumpOverWhite (pos, s, true);
+                                       if (AllowTrailingWhite && !Int32.JumpOverWhite (ref pos, s, true, tryParse, ref exc))
+                                               return false;
                                        if (!foundSign && AllowTrailingSign)
                                                Int32.FindSign (ref pos, s, nfi, ref foundSign, ref negative);
                                }
                        }
 
-                       if (AllowTrailingWhite && pos < s.Length)
-                               pos = Int32.JumpOverWhite (pos, s, false);
+                       if (AllowTrailingWhite && pos < s.Length && !Int32.JumpOverWhite (ref pos, s, false, tryParse, ref exc))
+                               return false;
 
                        if (foundOpenParentheses) {
-                               if (pos >= s.Length || s [pos++] != ')')
-                                       throw new FormatException (Locale.GetText
-                                               ("Input string was not in the correct format."));
-                               if (AllowTrailingWhite && pos < s.Length)
-                                       pos = Int32.JumpOverWhite (pos, s, false);
+                               if (pos >= s.Length || s [pos++] != ')') {
+                                       if (!tryParse)
+                                               exc = Int32.GetFormatException ();
+                                       return false;
+                               }
+                               if (AllowTrailingWhite && pos < s.Length && !Int32.JumpOverWhite (ref pos, s, false, tryParse, ref exc))
+                                       return false;
                        }
 
-                       if (pos < s.Length && s [pos] != '\u0000')
-                               throw new FormatException (Locale.GetText ("Input string was not in the correct format."));
+                       if (pos < s.Length && s [pos] != '\u0000') {
+                               if (!tryParse)
+                                       exc = Int32.GetFormatException ();
+                               return false;
+                       }
 
                        // -0 is legal but other negative values are not
                        if (negative && (number > 0)) {
-                               throw new OverflowException (
-                                       Locale.GetText ("Negative number"));
+                               if (!tryParse)
+                                       exc = new OverflowException (
+                                           Locale.GetText ("Negative number"));
+                               return false;
                        }
 
-                       return number;
+                       result = number;
+
+                       return true;
+               }
+
+               [CLSCompliant (false)]
+               public static uint Parse (string s) 
+               {
+                       Exception exc;
+                       uint res;
+
+                       if (!Parse (s, false, out res, out exc))
+                               throw exc;
+
+                       return res;
+               }
+
+               [CLSCompliant (false)]
+               public static uint Parse (string s, NumberStyles style, IFormatProvider provider) 
+               {
+                       Exception exc;
+                       uint res;
+
+                       if (!Parse (s, style, provider, false, out res, out exc))
+                               throw exc;
+
+                       return res;
+               }
+
+               [CLSCompliant (false)]
+               public static uint Parse (string s, IFormatProvider provider)
+               {
+                       return Parse (s, NumberStyles.Integer, provider);
+               }
+
+               [CLSCompliant (false)]
+               public static uint Parse (string s, NumberStyles style)
+               {
+                       return Parse (s, style, null);
+               }
+
+               [CLSCompliant (false)]
+               public static bool TryParse (string s, out uint result) 
+               {
+                       Exception exc;
+                       if (!Parse (s, true, out result, out exc)) {
+                               result = 0;
+                               return false;
+                       }
+
+                       return true;
+               }
+
+               [CLSCompliant (false)]
+               public static bool TryParse (string s, NumberStyles style, IFormatProvider provider, out uint result) 
+               {
+                       Exception exc;
+                       if (!Parse (s, style, provider, true, out result, out exc)) {
+                               result = 0;
+                               return false;
+                       }
+
+                       return true;
                }
 
                public override string ToString ()
                {
-                       return ToString (null, null);
+                       return NumberFormatter.NumberToString (m_value, null);
                }
 
-               public string ToString (IFormatProvider fp)
+               public string ToString (IFormatProvider provider)
                {
-                       return ToString (null, fp);
+                       return NumberFormatter.NumberToString (m_value, provider);
                }
 
                public string ToString (string format)
@@ -370,15 +463,9 @@ namespace System
                        return ToString (format, null);
                }
 
-               public string ToString (string format, IFormatProvider fp)
+               public string ToString (string format, IFormatProvider provider)
                {
-                       NumberFormatInfo nfi = NumberFormatInfo.GetInstance (fp);
-                       
-                       // use "G" when format is null or String.Empty
-                       if ((format == null) || (format.Length == 0))
-                               format = "G";
-                       
-                       return IntegerFormatter.NumberToString (format, nfi, m_value);
+                       return NumberFormatter.NumberToString (format, m_value, provider);
                }
 
                // =========== IConvertible Methods =========== //
@@ -442,9 +529,12 @@ namespace System
                        return System.Convert.ToSingle (m_value);
                }
 
-               object IConvertible.ToType (Type conversionType, IFormatProvider provider)
+               object IConvertible.ToType (Type targetType, IFormatProvider provider)
                {
-                       return System.Convert.ToType (m_value, conversionType, provider);
+                       if (targetType == null)
+                               throw new ArgumentNullException ("targetType");
+                       
+                       return System.Convert.ToType (m_value, targetType, provider, false);
                }
 
                ushort IConvertible.ToUInt16 (IFormatProvider provider)