2009-08-11 Jérémie Laval <jeremie.laval@gmail.com>
[mono.git] / mcs / class / corlib / System / ValueType.cs
1 //
2 // System.ValueType.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //   Gonzalo Paniagua Javier (gonzalo@ximian.com)
7 //
8 // (C) Ximian, Inc.  http://www.ximian.com
9 // (C) 2003 Novell, Inc.  http://www.novell.com
10 //
11
12 //
13 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining
16 // a copy of this software and associated documentation files (the
17 // "Software"), to deal in the Software without restriction, including
18 // without limitation the rights to use, copy, modify, merge, publish,
19 // distribute, sublicense, and/or sell copies of the Software, and to
20 // permit persons to whom the Software is furnished to do so, subject to
21 // the following conditions:
22 // 
23 // The above copyright notice and this permission notice shall be
24 // included in all copies or substantial portions of the Software.
25 // 
26 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
30 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
31 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
32 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 //
34
35 using System.Reflection;
36 using System.Runtime.CompilerServices;
37 using System.Runtime.InteropServices;
38
39 namespace System
40 {
41         [Serializable]
42 #if NET_2_0
43         [ComVisible (true)]
44 #endif
45         public abstract class ValueType
46         {
47                 protected ValueType ()
48                 {
49                 }
50
51                 [MethodImplAttribute (MethodImplOptions.InternalCall)]
52                 internal extern static bool InternalEquals (object o1, object o2, out object[] fields);
53
54                 // This is also used by RuntimeHelpers
55                 internal static bool DefaultEquals (object o1, object o2)
56                 {
57                         object[] fields;
58
59                         if (o2 == null)
60                                 return false;
61
62                         bool res = InternalEquals (o1, o2, out fields);
63                         if (fields == null)
64                                 return res;
65
66                         for (int i = 0; i < fields.Length; i += 2) {
67                                 object meVal = fields [i];
68                                 object youVal = fields [i + 1];
69                                 if (meVal == null) {
70                                         if (youVal == null)
71                                                 continue;
72
73                                         return false;
74                                 }
75
76                                 if (!meVal.Equals (youVal))
77                                         return false;
78                         }
79
80                         return true;
81                 }
82
83                 // <summary>
84                 //   True if this instance and o represent the same type
85                 //   and have the same value.
86                 // </summary>
87                 public override bool Equals (object obj)
88                 {
89                         return DefaultEquals (this, obj);
90                 }
91
92                 [MethodImplAttribute (MethodImplOptions.InternalCall)]
93                 internal extern static int InternalGetHashCode (object o, out object[] fields);
94
95                 // <summary>
96                 //   Gets a hashcode for this value type using the
97                 //   bits in the structure
98                 // </summary>
99                 public override int GetHashCode ()
100                 {
101                         object[] fields;
102                         int result = InternalGetHashCode (this, out fields);
103
104                         if (fields != null)
105                                 for (int i = 0; i < fields.Length; ++i)
106                                         if (fields [i] != null)
107                                                 result ^= fields [i].GetHashCode ();
108                                 
109                         return result;
110                 }
111
112                 // <summary>
113                 //   Stringified representation of this ValueType.
114                 //   Must be overriden for better results, by default
115                 //   it just returns the Type name.
116                 // </summary>
117                 public override string ToString ()
118                 {
119                         return GetType ().FullName;
120                 }
121         }
122 }