forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectHelpers.cs
More file actions
372 lines (316 loc) · 12.4 KB
/
Copy pathObjectHelpers.cs
File metadata and controls
372 lines (316 loc) · 12.4 KB
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
using System.Linq;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Runtime.InteropServices.ComTypes;
using TYPEATTR = System.Runtime.InteropServices.ComTypes.TYPEATTR;
using TYPEFLAGS = System.Runtime.InteropServices.ComTypes.TYPEFLAGS;
using TYPEKIND = System.Runtime.InteropServices.ComTypes.TYPEKIND;
using TYPELIBATTR = System.Runtime.InteropServices.ComTypes.TYPELIBATTR;
namespace Microsoft.ClearScript.Util
{
internal static class ObjectHelpers
{
// GUID_ManagedName (um\cor.h)
private static readonly Guid managedNameGuid = new Guid("{0f21f359-ab84-41e8-9a78-36d110e6d2f9}");
public static Type GetTypeOrTypeInfo(this object value)
{
var type = value.GetType();
IDispatch dispatch = null;
Type typeInfo = null;
TYPEKIND typeInfoKind = 0;
TYPEFLAGS typeInfoFlags = 0;
if (type.IsUnknownCOMObject())
{
// This appears to be a generic COM object with no specific type information.
// Attempt to acquire COM type information via IDispatch or IProvideClassInfo.
dispatch = value as IDispatch;
if (dispatch != null)
{
uint count;
if (RawCOMHelpers.HResult.Succeeded(dispatch.GetTypeInfoCount(out count)) && (count > 0))
{
ITypeInfo tempTypeInfo;
if (RawCOMHelpers.HResult.Succeeded(dispatch.GetTypeInfo(0, 0, out tempTypeInfo)))
{
typeInfo = GetTypeForTypeInfo(tempTypeInfo);
typeInfoKind = GetTypeInfoKind(tempTypeInfo);
typeInfoFlags = GetTypeInfoFlags(tempTypeInfo);
}
}
}
if (typeInfo == null)
{
var provideClassInfo = value as IProvideClassInfo;
if (provideClassInfo != null)
{
ITypeInfo tempTypeInfo;
if (RawCOMHelpers.HResult.Succeeded(provideClassInfo.GetClassInfo(out tempTypeInfo)))
{
typeInfo = GetTypeForTypeInfo(tempTypeInfo);
typeInfoKind = GetTypeInfoKind(tempTypeInfo);
typeInfoFlags = GetTypeInfoFlags(tempTypeInfo);
}
}
}
}
if (typeInfo != null)
{
// If the COM type is a dispatch-only interface, use it. Such interfaces typically
// aren't exposed via QueryInterface(), so there's no way to validate them anyway.
if ((dispatch != null) && (typeInfoKind == TYPEKIND.TKIND_DISPATCH) && typeInfoFlags.HasFlag(TYPEFLAGS.TYPEFLAG_FDISPATCHABLE) && !typeInfoFlags.HasFlag(TYPEFLAGS.TYPEFLAG_FDUAL))
{
return typeInfo;
}
// COM type information acquired in this manner may not actually be valid for the
// original object. In some cases the original object implements a base interface.
if (typeInfo.IsInstanceOfType(value))
{
return typeInfo;
}
foreach (var interfaceType in typeInfo.GetInterfaces())
{
if (interfaceType.IsInstanceOfType(value))
{
return interfaceType;
}
}
}
return type;
}
public static string GetFriendlyName(this object value)
{
return value.GetFriendlyName(null);
}
public static string GetFriendlyName(this object value, Type type)
{
if (type == null)
{
if (value == null)
{
return "[null]";
}
type = value.GetType();
}
if (type.IsArray && (value != null))
{
var array = (Array)value;
var dimensions = Enumerable.Range(0, type.GetArrayRank());
var lengths = String.Join(",", dimensions.Select(array.GetLength));
return MiscHelpers.FormatInvariant("{0}[{1}]", type.GetElementType().GetFriendlyName(), lengths);
}
return type.GetFriendlyName();
}
public static T DynamicCast<T>(this object value)
{
// ReSharper disable RedundantCast
// the cast to dynamic is not redundant; removing it breaks tests
return (T)(dynamic)value;
// ReSharper restore RedundantCast
}
public static object ToDynamicResult(this object result, ScriptEngine engine)
{
if (result is Nonexistent)
{
return Undefined.Value;
}
if ((result is HostTarget) || (result is IPropertyBag))
{
// Returning an instance of HostTarget (an internal type) isn't likely to be
// useful. Wrapping it in a dynamic object makes sense in this context. Wrapping
// a property bag allows it to participate in dynamic invocation chaining, which
// may be useful when dealing with things like host type collections. HostItem
// supports dynamic conversion, so the client can unwrap the object if necessary.
return HostItem.Wrap(engine, result);
}
return result;
}
private static Type GetTypeForTypeInfo(ITypeInfo typeInfo)
{
// ReSharper disable EmptyGeneralCatchClause
try
{
ITypeLib typeLib;
int index;
typeInfo.GetContainingTypeLib(out typeLib, out index);
var assembly = LoadPrimaryInteropAssembly(typeLib);
if (assembly != null)
{
var name = GetManagedTypeInfoName(typeInfo, typeLib);
var guid = GetTypeInfoGuid(typeInfo);
var type = assembly.GetType(name, false, true);
if ((type != null) && (type.GUID == guid))
{
return type;
}
var types = assembly.GetTypes();
if ((index >= 0) && (index < types.Length))
{
type = types[index];
if ((type.GUID == guid) && (type.FullName == name))
{
return type;
}
}
// ReSharper disable once PossibleNullReferenceException
type = types.FirstOrDefault(testType => (testType.GUID == guid) && (testType.FullName.Equals(name, StringComparison.OrdinalIgnoreCase)));
if (type != null)
{
return type;
}
}
var pTypeInfo = Marshal.GetComInterfaceForObject(typeInfo, typeof(ITypeInfo));
try
{
return Marshal.GetTypeForITypeInfo(pTypeInfo);
}
finally
{
Marshal.Release(pTypeInfo);
}
}
catch (Exception)
{
}
return null;
// ReSharper restore EmptyGeneralCatchClause
}
private static Assembly LoadPrimaryInteropAssembly(ITypeLib typeLib)
{
// ReSharper disable EmptyGeneralCatchClause
try
{
IntPtr pAttr;
typeLib.GetLibAttr(out pAttr);
try
{
var attr = (TYPELIBATTR)Marshal.PtrToStructure(pAttr, typeof(TYPELIBATTR));
string name;
string codeBase;
if (new TypeLibConverter().GetPrimaryInteropAssembly(attr.guid, attr.wMajorVerNum, attr.wMinorVerNum, attr.lcid, out name, out codeBase))
{
return Assembly.Load(new AssemblyName(name) { CodeBase = codeBase });
}
}
finally
{
typeLib.ReleaseTLibAttr(pAttr);
}
}
catch (Exception)
{
}
return null;
// ReSharper restore EmptyGeneralCatchClause
}
private static string GetManagedTypeInfoName(ITypeInfo typeInfo, ITypeLib typeLib)
{
var typeInfo2 = typeInfo as ITypeInfo2;
if (typeInfo2 != null)
{
// ReSharper disable EmptyGeneralCatchClause
try
{
var guid = managedNameGuid;
object data;
typeInfo2.GetCustData(ref guid, out data);
var name = data as string;
if (name != null)
{
return name.Trim();
}
}
catch (Exception)
{
}
// ReSharper restore EmptyGeneralCatchClause
}
return GetManagedTypeLibName(typeLib) + "." + Marshal.GetTypeInfoName(typeInfo);
}
private static string GetManagedTypeLibName(ITypeLib typeLib)
{
var typeLib2 = typeLib as ITypeLib2;
if (typeLib2 != null)
{
// ReSharper disable EmptyGeneralCatchClause
try
{
var guid = managedNameGuid;
object data;
typeLib2.GetCustData(ref guid, out data);
var name = data as string;
if (name != null)
{
name = name.Trim();
if (name.EndsWith(".dll", StringComparison.OrdinalIgnoreCase) || name.EndsWith(".exe", StringComparison.OrdinalIgnoreCase))
{
return name.Substring(0, name.Length - 4);
}
return name;
}
}
catch (Exception)
{
}
// ReSharper restore EmptyGeneralCatchClause
}
return Marshal.GetTypeLibName(typeLib);
}
private static Guid GetTypeInfoGuid(ITypeInfo typeInfo)
{
IntPtr pAttr;
typeInfo.GetTypeAttr(out pAttr);
try
{
var attr = (TYPEATTR)Marshal.PtrToStructure(pAttr, typeof(TYPEATTR));
return attr.guid;
}
finally
{
typeInfo.ReleaseTypeAttr(pAttr);
}
}
private static TYPEKIND GetTypeInfoKind(ITypeInfo typeInfo)
{
IntPtr pAttr;
typeInfo.GetTypeAttr(out pAttr);
try
{
var attr = (TYPEATTR)Marshal.PtrToStructure(pAttr, typeof(TYPEATTR));
return attr.typekind;
}
finally
{
typeInfo.ReleaseTypeAttr(pAttr);
}
}
private static TYPEFLAGS GetTypeInfoFlags(ITypeInfo typeInfo)
{
IntPtr pAttr;
typeInfo.GetTypeAttr(out pAttr);
try
{
var attr = (TYPEATTR)Marshal.PtrToStructure(pAttr, typeof(TYPEATTR));
return attr.wTypeFlags;
}
finally
{
typeInfo.ReleaseTypeAttr(pAttr);
}
}
#region Nested type: IProvideClassInfo
[ComImport]
[Guid("b196b283-bab4-101a-b69c-00aa00341d07")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
private interface IProvideClassInfo
{
[PreserveSig]
int GetClassInfo(
[Out] [MarshalAs(UnmanagedType.Interface)] out ITypeInfo typeInfo
);
}
#endregion
}
}