-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGACHelper.cs
More file actions
409 lines (359 loc) · 13.1 KB
/
GACHelper.cs
File metadata and controls
409 lines (359 loc) · 13.1 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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#region Licence...
//-----------------------------------------------------------------------------
// Date: 17/10/04 Time: 2:33p
// Module: GACHelper.cs
// Classes: COM
// InstallReference
// InstallReferenceGuid
// AssemblyCache
// AssemblyEnum
//
// This module contains the definition of the GAC helper classes.
//
// Written by Oleg Shilo (oshilo@gmail.com). Based on work by Junfeng Zhang
// (Simple wrapper for GAC).
//----------------------------------------------
// The MIT License (MIT)
// Copyright (c) 2014 Oleg Shilo
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software
// and associated documentation files (the "Software"), to deal in the Software without restriction,
// including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial
// portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//----------------------------------------------
#endregion Licence...
using System;
using System.Runtime.InteropServices;
using System.Text;
/*
* PSS ID Number: Q317540
*
* Use the GAC API in the following scenarios:
* When you install an assembly to the GAC.
* When you remove an assembly from the GAC.
* When you export an assembly from the GAC.
* When you enumerate assemblies that are available in the GAC.
*
*/
//#pragma warning disable 414
namespace csscript
{
/// <summary>
/// COM HR checker: just to make code more compact;
/// </summary>
class COM
{
static public void CheckHR(int hr)
{
if (hr < 0)
Marshal.ThrowExceptionForHR(hr);
}
}
/// <summary>
/// IAssemblyCache; COM import
/// </summary>
[ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("e707dcde-d1cd-11d2-bab9-00c04f8eceae")]
internal interface IAssemblyCache
{
//PreserveSig() Indicates that the HRESULT or retval signature transformation that takes place during COM interop calls should be suppressed
[PreserveSig()]
int UninstallAssembly(int flags,
[MarshalAs(UnmanagedType.LPWStr)]
string assemblyName,
InstallReference refData,
out AssemblyCacheUninstallDisposition disposition);
[PreserveSig()]
int QueryAssemblyInfo(int flags,
[MarshalAs(UnmanagedType.LPWStr)]
string assemblyName,
ref AssemblyInfo assemblyInfo);
[PreserveSig()]
int Reserved(int flags,
IntPtr pvReserved,
out Object ppAsmItem,
[MarshalAs(UnmanagedType.LPWStr)]
string assemblyName);
[PreserveSig()]
int Reserved(out Object ppAsmScavenger);
[PreserveSig()]
int InstallAssembly(int flags,
[MarshalAs(UnmanagedType.LPWStr)]
string assemblyFilePath,
InstallReference refData);
}
/// <summary>
/// IAssemblyName; COM import
/// </summary>
[ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("CD193BC0-B4BC-11d2-9833-00C04FC31D2E")]
internal interface IAssemblyName
{
[PreserveSig()]
int SetProperty(int PropertyId,
IntPtr pvProperty,
int cbProperty);
[PreserveSig()]
int GetProperty(int PropertyId,
IntPtr pvProperty,
ref int pcbProperty);
[PreserveSig()]
int Finalize();
[PreserveSig()]
int GetDisplayName(StringBuilder pDisplayName,
ref int pccDisplayName,
int displayFlags);
[PreserveSig()]
int Reserved(ref Guid guid,
Object o1,
Object o2,
string string1,
Int64 llFlags,
IntPtr pvReserved,
int cbReserved,
out IntPtr ppv);
[PreserveSig()]
int GetName(ref int pccBuffer,
StringBuilder pwzName);
[PreserveSig()]
int GetVersion(out int versionHi,
out int versionLow);
[PreserveSig()]
int IsEqual(IAssemblyName pAsmName,
int cmpFlags);
[PreserveSig()]
int Clone(out IAssemblyName pAsmName);
}
/// <summary>
/// IAssemblyEnum; COM import
/// </summary>
[ComImport, InterfaceType(ComInterfaceType.InterfaceIsIUnknown), Guid("21b8916c-f28e-11d2-a473-00c04f8ef448")]
internal interface IAssemblyEnum
{
[PreserveSig()]
int GetNextAssembly(IntPtr pvReserved,
out IAssemblyName ppName,
int flags);
[PreserveSig()]
int Reset();
[PreserveSig()]
int Clone(out IAssemblyEnum ppEnum);
}
/// <summary>
/// AssemblyCommitFlags; Used by COM imported calls
/// </summary>
enum AssemblyCommitFlags
{
Default,
Force
}
/// <summary>
/// AssemblyCacheFlags; Used by COM imported calls
/// </summary>
[Flags]
internal enum AssemblyCacheFlags
{
GAC = 2
}
/// <summary>
/// AssemblyCacheUninstallDisposition; Used by COM imported calls
/// </summary>
enum AssemblyCacheUninstallDisposition
{
Unknown,
Uninstalled,
StillInUse,
AlreadyUninstalled,
DeletePending,
HasInstallReference,
ReferenceNotFound,
}
/// <summary>
/// CreateAssemblyNameObjectFlags; Used by COM imported calls
/// </summary>
internal enum CreateAssemblyNameObjectFlags
{
CANOF_DEFAULT,
CANOF_PARSE_DISPLAY_NAME,
CANOF_SET_DEFAULT_VALUES
}
/// <summary>
/// AssemblyNameDisplayFlags; Used by COM imported calls
/// </summary>
[Flags]
internal enum AssemblyNameDisplayFlags
{
VERSION = 0x01,
CULTURE = 0x02,
PUBLIC_KEY_TOKEN = 0x04,
PROCESSORARCHITECTURE = 0x20,
RETARGETABLE = 0x80,
ALL = VERSION
| CULTURE
| PROCESSORARCHITECTURE
| PUBLIC_KEY_TOKEN
| RETARGETABLE
}
/// <summary>
/// InstallReference + struct initialization; Used by COM imported calls
/// </summary>
[StructLayout(LayoutKind.Sequential)]
class InstallReference
{
int cbSize;
int flags;
Guid guidScheme;
[MarshalAs(UnmanagedType.LPWStr)]
string identifier;
[MarshalAs(UnmanagedType.LPWStr)]
string nonCannonicalData;
public InstallReference(Guid guid, string id, string data)
{
cbSize = (int)(2 * IntPtr.Size + 16 + (id.Length + data.Length) * 2);
flags = 0;
guidScheme = guid;
identifier = id;
nonCannonicalData = data;
}
public Guid GuidScheme
{
get { return guidScheme; }
}
}
/// <summary>
/// AssemblyInfo; Used by COM imported calls
/// </summary>
[StructLayout(LayoutKind.Sequential)]
internal struct AssemblyInfo
{
public int cbAssemblyInfo;
public int assemblyFlags;
public long assemblySizeInKB;
[MarshalAs(UnmanagedType.LPWStr)]
public string currentAssemblyPath;
public int cchBuf;
}
/// <summary>
/// InstallReferenceGuid; Used by COM imported calls
/// </summary>
[ComVisible(false)]
class InstallReferenceGuid
{
public static bool IsValidGuidScheme(Guid guid)
{
return (guid.Equals(UninstallSubkeyGuid) ||
guid.Equals(FilePathGuid) ||
guid.Equals(OpaqueStringGuid) ||
guid.Equals(Guid.Empty));
}
public readonly static Guid UninstallSubkeyGuid = new Guid("8cedc215-ac4b-488b-93c0-a50a49cb2fb8");
public readonly static Guid FilePathGuid = new Guid("b02f9d65-fb77-4f7a-afa5-b391309f11c9");
public readonly static Guid OpaqueStringGuid = new Guid("2ec93463-b0c3-45e1-8364-327e96aea856");
}
/// <summary>
/// Helper calss for IAssemblyCache
/// </summary>
[ComVisible(false)]
class AssemblyCache
{
// If you use this, fusion will do the streaming & commit
public static void InstallAssembly(string assemblyPath, InstallReference reference, AssemblyCommitFlags flags)
{
if (reference != null)
{
if (!InstallReferenceGuid.IsValidGuidScheme(reference.GuidScheme))
throw new ArgumentException("Invalid argument( reference guid).");
}
IAssemblyCache asmCache = null;
COM.CheckHR(CreateAssemblyCache(out asmCache, 0));
COM.CheckHR(asmCache.InstallAssembly((int)flags, assemblyPath, reference));
}
public static void UninstallAssembly(string assemblyName, InstallReference reference, out AssemblyCacheUninstallDisposition disp)
{
AssemblyCacheUninstallDisposition dispResult = AssemblyCacheUninstallDisposition.Uninstalled;
if (reference != null)
{
if (!InstallReferenceGuid.IsValidGuidScheme(reference.GuidScheme))
throw new ArgumentException("Invalid argument (reference guid).");
}
IAssemblyCache asmCache = null;
COM.CheckHR(CreateAssemblyCache(out asmCache, 0));
COM.CheckHR(asmCache.UninstallAssembly(0, assemblyName, reference, out dispResult));
disp = dispResult;
}
public static string QueryAssemblyInfo(string assemblyName)
{
if (assemblyName == null)
{
throw new ArgumentException("Invalid argument (assemblyName)");
}
AssemblyInfo aInfo = new AssemblyInfo();
aInfo.cchBuf = 1024;
aInfo.currentAssemblyPath = "Path".PadLeft(aInfo.cchBuf);
IAssemblyCache ac = null;
COM.CheckHR(CreateAssemblyCache(out ac, 0));
COM.CheckHR(ac.QueryAssemblyInfo(0, assemblyName, ref aInfo));
return aInfo.currentAssemblyPath;
}
[DllImport("fusion.dll")]
internal static extern int CreateAssemblyCache(out IAssemblyCache ppAsmCache, int reserved);
}
/// <summary>
/// Helper calss for IAssemblyEnum
/// </summary>
[ComVisible(false)]
class AssemblyEnum
{
public AssemblyEnum(string sAsmName)
{
IAssemblyName asmName = null;
if (sAsmName != null) //if no name specified all assemblies will be returned
{
COM.CheckHR(CreateAssemblyNameObject(out asmName, sAsmName, CreateAssemblyNameObjectFlags.CANOF_PARSE_DISPLAY_NAME, IntPtr.Zero));
}
COM.CheckHR(CreateAssemblyEnum(out m_assemblyEnum, IntPtr.Zero, asmName, AssemblyCacheFlags.GAC, IntPtr.Zero));
}
public string GetNextAssembly()
{
string retval = null;
if (!m_done)
{
IAssemblyName asmName = null;
COM.CheckHR(m_assemblyEnum.GetNextAssembly((IntPtr)0, out asmName, 0));
if (asmName != null)
retval = GetFullName(asmName);
m_done = (retval == null);
}
return retval;
}
private string GetFullName(IAssemblyName asmName)
{
StringBuilder fullName = new StringBuilder(1024);
int iLen = fullName.Capacity;
COM.CheckHR(asmName.GetDisplayName(fullName, ref iLen, (int)AssemblyNameDisplayFlags.ALL));
return fullName.ToString();
}
[DllImport("fusion.dll")]
internal static extern int CreateAssemblyEnum(out IAssemblyEnum ppEnum,
IntPtr pUnkReserved,
IAssemblyName pName,
AssemblyCacheFlags flags,
IntPtr pvReserved);
[DllImport("fusion.dll")]
internal static extern int CreateAssemblyNameObject(out IAssemblyName ppAssemblyNameObj,
[MarshalAs(UnmanagedType.LPWStr)]
string szAssemblyName,
CreateAssemblyNameObjectFlags flags,
IntPtr pvReserved);
private bool m_done;
private IAssemblyEnum m_assemblyEnum = null;
}
}