2009-08-11 Jérémie Laval <jeremie.laval@gmail.com>
[mono.git] / mcs / class / corlib / System / TypedReference.cs
1 //
2 // System.TypedReference.cs
3 //
4 // Authors:
5 //   Dick Porter (dick@ximian.com)
6 //   Paolo Molaro (lupus@ximian.com)
7 //
8 // (C) Ximian, Inc.  http://www.ximian.com
9 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Reflection;
32 using System.Runtime.CompilerServices;
33 using System.Security.Permissions;
34 using System.Runtime.InteropServices;
35
36 namespace System 
37 {
38         [CLSCompliant (false)]
39 #if NET_2_0
40         [ComVisible (true)]
41 #endif
42         public struct TypedReference 
43         {
44 #pragma warning disable 169
45                 RuntimeTypeHandle type;
46                 IntPtr value;
47                 IntPtr klass;
48 #pragma warning restore 169
49
50                 public override bool Equals (object o)
51                 {
52                         throw new NotSupportedException (Locale.GetText ("This operation is not supported for this type."));
53                 }
54
55                 public override int GetHashCode ()
56                 {
57                         if (type.Value == IntPtr.Zero)
58                                 return 0;
59                         return Type.GetTypeFromHandle (type).GetHashCode ();
60                 }
61
62                 public static Type GetTargetType (TypedReference value)
63                 {
64                         return Type.GetTypeFromHandle (value.type);
65                 }
66
67                 [MonoTODO]
68                 [CLSCompliant (false)]
69                 [ReflectionPermission (SecurityAction.LinkDemand, MemberAccess = true)]
70                 public static TypedReference MakeTypedReference (object target, FieldInfo[] flds) 
71                 {
72                         if (target == null) {
73                                 throw new ArgumentNullException ("target");
74                         }
75                         if (flds == null) {
76                                 throw new ArgumentNullException ("flds");
77                         }
78                         if (flds.Length == 0) {
79                                 throw new ArgumentException (Locale.GetText ("flds has no elements"));
80                         }
81                         throw new NotImplementedException ();
82                 }
83
84                 /* how can we set something in value if it's passed by value? */
85                 [MonoTODO]
86                 [CLSCompliant (false)]
87                 public static void SetTypedReference (TypedReference target, object value) 
88                 {
89                         if (value == null) {
90                                 throw new ArgumentNullException ("value");
91                         }
92                         throw new NotImplementedException ();
93                 }
94
95                 public static RuntimeTypeHandle TargetTypeToken (TypedReference value)
96                 {
97                         return value.type;
98                 }
99
100                 [MethodImpl (MethodImplOptions.InternalCall)]
101                 public extern static object ToObject (TypedReference value);
102         }
103 }