[Add] FishNet
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
//
|
||||
// Author:
|
||||
// Jb Evain (jbevain@gmail.com)
|
||||
//
|
||||
// Copyright (c) 2008 - 2015 Jb Evain
|
||||
// Copyright (c) 2008 - 2011 Novell, Inc.
|
||||
//
|
||||
// Licensed under the MIT/X11 license.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MonoFN.Cecil
|
||||
{
|
||||
public class DefaultAssemblyResolver : BaseAssemblyResolver
|
||||
{
|
||||
private readonly IDictionary<string, AssemblyDefinition> cache;
|
||||
|
||||
public DefaultAssemblyResolver()
|
||||
{
|
||||
cache = new Dictionary<string, AssemblyDefinition>(StringComparer.Ordinal);
|
||||
}
|
||||
|
||||
public override AssemblyDefinition Resolve(AssemblyNameReference name)
|
||||
{
|
||||
Mixin.CheckName(name);
|
||||
|
||||
AssemblyDefinition assembly;
|
||||
if (cache.TryGetValue(name.FullName, out assembly))
|
||||
return assembly;
|
||||
|
||||
assembly = base.Resolve(name);
|
||||
cache[name.FullName] = assembly;
|
||||
|
||||
return assembly;
|
||||
}
|
||||
|
||||
protected void RegisterAssembly(AssemblyDefinition assembly)
|
||||
{
|
||||
if (assembly == null)
|
||||
throw new ArgumentNullException("assembly");
|
||||
|
||||
string name = assembly.Name.FullName;
|
||||
if (cache.ContainsKey(name))
|
||||
return;
|
||||
|
||||
cache[name] = assembly;
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
foreach (AssemblyDefinition assembly in cache.Values)
|
||||
assembly.Dispose();
|
||||
|
||||
cache.Clear();
|
||||
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user