This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / corlib / System / Single.cs
1 //
2 // System.Single.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
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
33 using System.Globalization;
34
35 namespace System
36 {
37         [Serializable]
38         public struct Single : IComparable, IFormattable, IConvertible
39         {
40                 public const float Epsilon = 1.4e-45f;
41                 public const float MaxValue =  3.40282346638528859e38f;
42                 public const float MinValue = -3.40282346638528859e38f;
43                 public const float NaN = 0.0f / 0.0f;
44                 public const float PositiveInfinity =  1.0f / 0.0f;
45                 public const float NegativeInfinity = -1.0f / 0.0f;
46
47                 internal float m_value;
48
49                 public int CompareTo (object v)
50                 {
51                         if (v == null)
52                                 return 1;
53
54                         if (!(v is System.Single))
55                                 throw new ArgumentException (Locale.GetText ("Value is not a System.Single."));
56
57                         float fv = (float)v;
58
59                         if (IsPositiveInfinity (m_value) && IsPositiveInfinity (fv))
60                                 return 0;
61
62                         if (IsNegativeInfinity (m_value) && IsNegativeInfinity (fv))
63                                 return 0;
64
65                         if (IsNaN (fv))
66                                 if (IsNaN (m_value))
67                                         return 0;
68                                 else
69                                         return 1;
70
71                         if (IsNaN (m_value))
72                                 if (IsNaN (fv))
73                                         return 0;
74                                 else
75                                         return -1;
76
77                         if (this.m_value == fv)
78                                 return 0;
79                         else if (this.m_value > fv)
80                                 return 1;
81                         else
82                                 return -1;
83                 }
84
85                 public override bool Equals (object o)
86                 {
87                         if (!(o is System.Single))
88                                 return false;
89
90                         if (IsNaN ((float) o)) {
91                                 return IsNaN (m_value);
92                         }
93
94                         return ((float) o) == m_value;
95                 }
96
97                 public override int GetHashCode ()
98                 {
99                         return (int) m_value;
100                 }
101
102                 public static bool IsInfinity (float f)
103                 {
104                         return (f == PositiveInfinity || f == NegativeInfinity);
105                 }
106
107                 public static bool IsNaN (float f)
108                 {
109                         return (f != f);
110                 }
111
112                 public static bool IsNegativeInfinity (float f)
113                 {
114                         return (f < 0.0f && (f == NegativeInfinity || f == PositiveInfinity));
115                 }
116
117                 public static bool IsPositiveInfinity (float f)
118                 {
119                         return (f > 0.0f && (f == NegativeInfinity || f == PositiveInfinity));
120                 }
121
122                 public static float Parse (string s)
123                 {
124                         double parsed_value = Double.Parse (
125                                 s, (NumberStyles.Float | NumberStyles.AllowThousands), null);
126                         if (parsed_value > (double) float.MaxValue)
127                                 throw new OverflowException();
128
129                         return (float) parsed_value;
130                 }
131
132                 public static float Parse (string s, IFormatProvider provider)
133                 {
134                         double parsed_value = Double.Parse (
135                                 s, (NumberStyles.Float | NumberStyles.AllowThousands), provider);
136                         if (parsed_value > (double) float.MaxValue)
137                                 throw new OverflowException();
138
139                         return (float) parsed_value;
140                 }
141                 
142                 public static float Parse (string s, NumberStyles style)
143                 {
144                         double parsed_value = Double.Parse (s, style, null);
145                         if (parsed_value > (double) float.MaxValue)
146                                 throw new OverflowException();
147
148                         return (float) parsed_value;
149                 }
150
151                 public static float Parse (string s, NumberStyles style, IFormatProvider provider) 
152                 {
153                         double parsed_value = Double.Parse (s, style, provider);
154                         if (parsed_value > (double) float.MaxValue)
155                                 throw new OverflowException();
156
157                         return (float) parsed_value;
158                 }
159
160                 public override string ToString ()
161                 {
162                         return ToString (null, null);
163                 }
164
165                 public string ToString (IFormatProvider provider)
166                 {
167                         return ToString (null, provider);
168                 }
169
170                 public string ToString (string format)
171                 {
172                         return ToString (format, null);
173                 }
174
175                 public string ToString (string format, IFormatProvider provider)
176                 {
177                         if (provider is CultureInfo)
178                                 return SingleFormatter.NumberToString (format, ((CultureInfo) provider).NumberFormat, m_value);
179                         else
180                                 return SingleFormatter.NumberToString (format, (NumberFormatInfo) provider, m_value);
181                 }
182
183                 // ============= IConvertible Methods ============ //
184                 public TypeCode GetTypeCode ()
185                 {
186                         return TypeCode.Single;
187                 }
188
189                 bool IConvertible.ToBoolean (IFormatProvider provider)
190                 {
191                         return System.Convert.ToBoolean (m_value);
192                 }
193
194                 byte IConvertible.ToByte (IFormatProvider provider)
195                 {
196                         return System.Convert.ToByte (m_value);
197                 }
198
199                 char IConvertible.ToChar (IFormatProvider provider)
200                 {
201                         return System.Convert.ToChar (m_value);
202                 }
203
204                 DateTime IConvertible.ToDateTime (IFormatProvider provider)
205                 {
206                         return System.Convert.ToDateTime (m_value);
207                 }
208
209                 decimal IConvertible.ToDecimal (IFormatProvider provider)
210                 {
211                         return System.Convert.ToDecimal (m_value);
212                 }
213
214                 double IConvertible.ToDouble (IFormatProvider provider)
215                 {
216                         return System.Convert.ToDouble (m_value);
217                 }
218
219                 short IConvertible.ToInt16 (IFormatProvider provider)
220                 {
221                         return System.Convert.ToInt16 (m_value);
222                 }
223
224                 int IConvertible.ToInt32 (IFormatProvider provider)
225                 {
226                         return System.Convert.ToInt32 (m_value);
227                 }
228
229                 long IConvertible.ToInt64 (IFormatProvider provider)
230                 {
231                         return System.Convert.ToInt64 (m_value);
232                 }
233
234                 sbyte IConvertible.ToSByte (IFormatProvider provider)
235                 {
236                         return System.Convert.ToSByte (m_value);
237                 }
238
239                 float IConvertible.ToSingle (IFormatProvider provider)
240                 {
241                         return System.Convert.ToSingle (m_value);
242                 }
243
244                 object IConvertible.ToType (Type conversionType, IFormatProvider provider)
245                 {
246                         return System.Convert.ToType (m_value, conversionType, provider);
247                 }
248
249                 ushort IConvertible.ToUInt16 (IFormatProvider provider)
250                 {
251                         return System.Convert.ToUInt16 (m_value);
252                 }
253
254                 uint IConvertible.ToUInt32 (IFormatProvider provider)
255                 {
256                         return System.Convert.ToUInt32 (m_value);
257                 }
258
259                 ulong IConvertible.ToUInt64 (IFormatProvider provider)
260                 {
261                         return System.Convert.ToUInt64 (m_value);
262                 }
263         }
264 }