158 lines
5.0 KiB
C#
158 lines
5.0 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright 2007-2015 The OpenRA Developers (see AUTHORS)
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation. For more information,
|
|
* see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Security.Cryptography;
|
|
using OpenRA.FileSystem;
|
|
using OpenRA.Primitives;
|
|
|
|
namespace OpenRA
|
|
{
|
|
public class ObjectCreator
|
|
{
|
|
// .NET does not support unloading assemblies, so mod libraries will leak across mod changes.
|
|
// This tracks the assemblies that have been loaded since game start so that we don't load multiple copies
|
|
static readonly Dictionary<string, Assembly> ResolvedAssemblies = new Dictionary<string, Assembly>();
|
|
|
|
readonly Cache<string, Type> typeCache;
|
|
readonly Cache<Type, ConstructorInfo> ctorCache;
|
|
readonly Pair<Assembly, string>[] assemblies;
|
|
|
|
public ObjectCreator(Assembly a)
|
|
{
|
|
typeCache = new Cache<string, Type>(FindType);
|
|
ctorCache = new Cache<Type, ConstructorInfo>(GetCtor);
|
|
assemblies = a.GetNamespaces().Select(ns => Pair.New(a, ns)).ToArray();
|
|
}
|
|
|
|
public ObjectCreator(Manifest manifest, FileSystem.FileSystem modFiles)
|
|
{
|
|
typeCache = new Cache<string, Type>(FindType);
|
|
ctorCache = new Cache<Type, ConstructorInfo>(GetCtor);
|
|
|
|
// Allow mods to load types from the core Game assembly, and any additional assemblies they specify.
|
|
var assemblyList = new List<Assembly>() { typeof(Game).Assembly };
|
|
foreach (var path in manifest.Assemblies)
|
|
{
|
|
var data = modFiles.Open(path).ReadAllBytes();
|
|
|
|
// .NET doesn't provide any way of querying the metadata of an assembly without either:
|
|
// (a) loading duplicate data into the application domain, breaking the world.
|
|
// (b) crashing if the assembly has already been loaded.
|
|
// We can't check the internal name of the assembly, so we'll work off the data instead
|
|
string hash;
|
|
using (var ms = new MemoryStream(data))
|
|
using (var csp = SHA1.Create())
|
|
hash = new string(csp.ComputeHash(data).SelectMany(a => a.ToString("x2")).ToArray());
|
|
|
|
Assembly assembly;
|
|
if (!ResolvedAssemblies.TryGetValue(hash, out assembly))
|
|
{
|
|
assembly = Assembly.Load(data);
|
|
ResolvedAssemblies.Add(hash, assembly);
|
|
}
|
|
|
|
assemblyList.Add(assembly);
|
|
}
|
|
|
|
AppDomain.CurrentDomain.AssemblyResolve += ResolveAssembly;
|
|
assemblies = assemblyList.SelectMany(asm => asm.GetNamespaces().Select(ns => Pair.New(asm, ns))).ToArray();
|
|
AppDomain.CurrentDomain.AssemblyResolve -= ResolveAssembly;
|
|
}
|
|
|
|
Assembly ResolveAssembly(object sender, ResolveEventArgs e)
|
|
{
|
|
foreach (var a in AppDomain.CurrentDomain.GetAssemblies())
|
|
if (a.FullName == e.Name)
|
|
return a;
|
|
|
|
return assemblies.Select(a => a.First).FirstOrDefault(a => a.FullName == e.Name);
|
|
}
|
|
|
|
public static Action<string> MissingTypeAction =
|
|
s => { throw new InvalidOperationException("Cannot locate type: {0}".F(s)); };
|
|
|
|
public T CreateObject<T>(string className)
|
|
{
|
|
return CreateObject<T>(className, new Dictionary<string, object>());
|
|
}
|
|
|
|
public T CreateObject<T>(string className, Dictionary<string, object> args)
|
|
{
|
|
var type = typeCache[className];
|
|
if (type == null)
|
|
{
|
|
MissingTypeAction(className);
|
|
return default(T);
|
|
}
|
|
|
|
var ctor = ctorCache[type];
|
|
if (ctor == null)
|
|
return (T)CreateBasic(type);
|
|
else
|
|
return (T)CreateUsingArgs(ctor, args);
|
|
}
|
|
|
|
public Type FindType(string className)
|
|
{
|
|
return assemblies
|
|
.Select(pair => pair.First.GetType(pair.Second + "." + className, false))
|
|
.FirstOrDefault(t => t != null);
|
|
}
|
|
|
|
public ConstructorInfo GetCtor(Type type)
|
|
{
|
|
var flags = BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance;
|
|
var ctors = type.GetConstructors(flags).Where(x => x.HasAttribute<UseCtorAttribute>());
|
|
if (ctors.Count() > 1)
|
|
throw new InvalidOperationException("ObjectCreator: UseCtor on multiple constructors; invalid.");
|
|
return ctors.FirstOrDefault();
|
|
}
|
|
|
|
public object CreateBasic(Type type)
|
|
{
|
|
return type.GetConstructor(new Type[0]).Invoke(new object[0]);
|
|
}
|
|
|
|
public object CreateUsingArgs(ConstructorInfo ctor, Dictionary<string, object> args)
|
|
{
|
|
var p = ctor.GetParameters();
|
|
var a = new object[p.Length];
|
|
for (var i = 0; i < p.Length; i++)
|
|
{
|
|
var key = p[i].Name;
|
|
if (!args.ContainsKey(key)) throw new InvalidOperationException("ObjectCreator: key `{0}' not found".F(key));
|
|
a[i] = args[key];
|
|
}
|
|
|
|
return ctor.Invoke(a);
|
|
}
|
|
|
|
public IEnumerable<Type> GetTypesImplementing<T>()
|
|
{
|
|
var it = typeof(T);
|
|
return GetTypes().Where(t => t != it && it.IsAssignableFrom(t));
|
|
}
|
|
|
|
public IEnumerable<Type> GetTypes()
|
|
{
|
|
return assemblies.Select(ma => ma.First).Distinct()
|
|
.SelectMany(ma => ma.GetTypes());
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Constructor)]
|
|
public sealed class UseCtorAttribute : Attribute { }
|
|
}
|
|
}
|