1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
//
// Wrapper handles for Mono Runtime internal structs
//
// Authors:
// Aleksey Kliger <aleksey@xamarin.com>
// Rodrigo Kumpera <kumpera@xamarin.com>
//
// Copyright 2016 Dot net foundation.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
namespace Mono
{
unsafe struct RuntimeClassHandle
{
RuntimeStructs.MonoClass* value;
internal RuntimeClassHandle (RuntimeStructs.MonoClass* value)
{
this.value = value;
}
internal RuntimeClassHandle (IntPtr ptr)
{
this.value = (RuntimeStructs.MonoClass*) ptr;
}
internal RuntimeStructs.MonoClass* Value => value;
public override bool Equals (object obj)
{
if (obj == null || GetType () != obj.GetType ())
return false;
return value == ((RuntimeClassHandle)obj).Value;
}
public override int GetHashCode () => ((IntPtr)value).GetHashCode ();
public bool Equals (RuntimeClassHandle handle)
{
return value == handle.Value;
}
public static bool operator == (RuntimeClassHandle left, object right)
{
return right != null && right is RuntimeClassHandle rch && left.Equals (rch);
}
public static bool operator != (RuntimeClassHandle left, object right)
{
return !(left == right);
}
public static bool operator == (object left, RuntimeClassHandle right)
{
return left != null && left is RuntimeClassHandle rch && rch.Equals (right);
}
public static bool operator != (object left, RuntimeClassHandle right)
{
return !(left == right);
}
[MethodImpl(MethodImplOptions.InternalCall)]
internal unsafe extern static IntPtr GetTypeFromClass (RuntimeStructs.MonoClass *klass);
internal RuntimeTypeHandle GetTypeHandle () => new RuntimeTypeHandle (GetTypeFromClass (value));
}
unsafe struct RuntimeRemoteClassHandle
{
RuntimeStructs.RemoteClass* value;
internal RuntimeRemoteClassHandle (RuntimeStructs.RemoteClass* value)
{
this.value = value;
}
internal RuntimeClassHandle ProxyClass {
get {
return new RuntimeClassHandle (value->proxy_class);
}
}
}
unsafe struct RuntimeGenericParamInfoHandle
{
RuntimeStructs.GenericParamInfo* value;
internal RuntimeGenericParamInfoHandle (RuntimeStructs.GenericParamInfo* value)
{
this.value = value;
}
internal RuntimeGenericParamInfoHandle (IntPtr ptr)
{
this.value = (RuntimeStructs.GenericParamInfo*) ptr;
}
internal Type[] Constraints => GetConstraints ();
internal GenericParameterAttributes Attributes => (GenericParameterAttributes) value->flags;
Type[] GetConstraints ()
{
int n = GetConstraintsCount ();
var a = new Type [n];
for (int i = 0; i < n; i++) {
RuntimeClassHandle c = new RuntimeClassHandle (value->constraints[i]);
a[i] = Type.GetTypeFromHandle (c.GetTypeHandle ());
}
return a;
}
int GetConstraintsCount ()
{
int i = 0;
RuntimeStructs.MonoClass** p = value->constraints;
while (p != null && *p != null) {
p++; i++;
}
return i;
}
}
internal struct RuntimeEventHandle
{
IntPtr value;
internal RuntimeEventHandle (IntPtr v)
{
value = v;
}
public IntPtr Value => value;
public override bool Equals (object obj)
{
if (obj == null || GetType () != obj.GetType ())
return false;
return value == ((RuntimeEventHandle)obj).Value;
}
public bool Equals (RuntimeEventHandle handle)
{
return value == handle.Value;
}
public override int GetHashCode ()
{
return value.GetHashCode ();
}
public static bool operator == (RuntimeEventHandle left, RuntimeEventHandle right)
{
return left.Equals (right);
}
public static bool operator != (RuntimeEventHandle left, RuntimeEventHandle right)
{
return !left.Equals (right);
}
}
internal struct RuntimePropertyHandle
{
IntPtr value;
internal RuntimePropertyHandle (IntPtr v)
{
value = v;
}
public IntPtr Value => value;
public override bool Equals (object obj)
{
if (obj == null || GetType () != obj.GetType ())
return false;
return value == ((RuntimePropertyHandle)obj).Value;
}
public bool Equals (RuntimePropertyHandle handle)
{
return value == handle.Value;
}
public override int GetHashCode ()
{
return value.GetHashCode ();
}
public static bool operator == (RuntimePropertyHandle left, RuntimePropertyHandle right)
{
return left.Equals (right);
}
public static bool operator != (RuntimePropertyHandle left, RuntimePropertyHandle right)
{
return !left.Equals (right);
}
}
unsafe struct RuntimeGPtrArrayHandle
{
RuntimeStructs.GPtrArray* value;
internal RuntimeGPtrArrayHandle (RuntimeStructs.GPtrArray* value)
{
this.value = value;
}
internal RuntimeGPtrArrayHandle (IntPtr ptr)
{
this.value = (RuntimeStructs.GPtrArray*) ptr;
}
internal int Length => value->len;
internal IntPtr this [int i] => Lookup (i);
internal IntPtr Lookup (int i)
{
if (i >= 0 && i < Length) {
return value->data[i];
} else
throw new IndexOutOfRangeException ();
}
[MethodImpl(MethodImplOptions.InternalCall)]
extern static void GPtrArrayFree (RuntimeStructs.GPtrArray* value);
internal static void DestroyAndFree (ref RuntimeGPtrArrayHandle h) {
GPtrArrayFree (h.value);
h.value = null;
}
}
}
|