mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
323 lines
12 KiB
C#
323 lines
12 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Reflection.Emit;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.IoC.Exceptions;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Robust.Shared.IoC
|
|
{
|
|
public delegate T DependencyFactoryDelegate<out T>()
|
|
where T : class;
|
|
|
|
/// <inheritdoc />
|
|
internal class DependencyCollection : IDependencyCollection
|
|
{
|
|
private delegate void InjectorDelegate(object target, object[] services);
|
|
private static readonly Type[] InjectorParameters = {typeof(object), typeof(object[])};
|
|
|
|
/// <summary>
|
|
/// Dictionary that maps the types passed to <see cref="Resolve{T}"/> to their implementation.
|
|
/// </summary>
|
|
private readonly Dictionary<Type, object> _services = new();
|
|
|
|
/// <summary>
|
|
/// The types interface types mapping to their registered implementations.
|
|
/// This is pulled from to make a service if it doesn't exist yet.
|
|
/// </summary>
|
|
private readonly Dictionary<Type, Type> _resolveTypes = new();
|
|
|
|
private readonly Dictionary<Type, DependencyFactoryDelegate<object>> _resolveFactories = new();
|
|
|
|
// To do injection of common types like components, we make DynamicMethods to do the actual injecting.
|
|
// This is way faster than reflection and should be allocation free outside setup.
|
|
private readonly Dictionary<Type, (InjectorDelegate? @delegate, object[]? services)> _injectorCache =
|
|
new();
|
|
|
|
/// <inheritdoc />
|
|
public void Register<TInterface, TImplementation>(bool overwrite = false)
|
|
where TImplementation : class, TInterface, new()
|
|
{
|
|
Register<TInterface, TImplementation>(() => new TImplementation(), overwrite);
|
|
}
|
|
|
|
public void Register<TInterface, TImplementation>(DependencyFactoryDelegate<TImplementation> factory, bool overwrite = false)
|
|
where TImplementation : class, TInterface
|
|
{
|
|
var interfaceType = typeof(TInterface);
|
|
CheckRegisterInterface(interfaceType, typeof(TImplementation), overwrite);
|
|
|
|
_resolveTypes[interfaceType] = typeof(TImplementation);
|
|
_resolveFactories[typeof(TImplementation)] = factory;
|
|
}
|
|
|
|
[AssertionMethod]
|
|
private void CheckRegisterInterface(Type interfaceType, Type implementationType, bool overwrite)
|
|
{
|
|
if (!_resolveTypes.ContainsKey(interfaceType))
|
|
return;
|
|
|
|
if (!overwrite)
|
|
{
|
|
throw new InvalidOperationException
|
|
(
|
|
string.Format(
|
|
"Attempted to register already registered interface {0}. New implementation: {1}, Old implementation: {2}",
|
|
interfaceType, implementationType, _resolveTypes[interfaceType]
|
|
));
|
|
}
|
|
|
|
if (_services.ContainsKey(interfaceType))
|
|
{
|
|
throw new InvalidOperationException(
|
|
$"Attempted to overwrite already instantiated interface {interfaceType}.");
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void RegisterInstance<TInterface>(object implementation, bool overwrite = false)
|
|
{
|
|
if (implementation == null)
|
|
throw new ArgumentNullException(nameof(implementation));
|
|
|
|
if (!(implementation is TInterface))
|
|
throw new InvalidOperationException(
|
|
$"Implementation type {implementation.GetType()} is not assignable to interface type {typeof(TInterface)}");
|
|
|
|
CheckRegisterInterface(typeof(TInterface), implementation.GetType(), overwrite);
|
|
|
|
// do the equivalent of BuildGraph with a single type.
|
|
_resolveTypes[typeof(TInterface)] = implementation.GetType();
|
|
_services[typeof(TInterface)] = implementation;
|
|
|
|
InjectDependencies(implementation, true);
|
|
|
|
if (implementation is IPostInjectInit init)
|
|
init.PostInject();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void Clear()
|
|
{
|
|
foreach (var service in _services.Values.OfType<IDisposable>().Distinct())
|
|
{
|
|
service.Dispose();
|
|
}
|
|
|
|
_services.Clear();
|
|
_resolveTypes.Clear();
|
|
_resolveFactories.Clear();
|
|
_injectorCache.Clear();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[System.Diagnostics.Contracts.Pure]
|
|
public T Resolve<T>()
|
|
{
|
|
return (T) ResolveType(typeof(T));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
[System.Diagnostics.Contracts.Pure]
|
|
public object ResolveType(Type type)
|
|
{
|
|
if (_services.TryGetValue(type, out var value))
|
|
{
|
|
return value;
|
|
}
|
|
|
|
if (_resolveTypes.ContainsKey(type))
|
|
{
|
|
// If we have the type registered but not created that means we haven't been told to initialize the graph yet.
|
|
throw new InvalidOperationException(
|
|
$"Attempted to resolve type {type} before the object graph for it has been populated.");
|
|
}
|
|
|
|
if (type == typeof(IDependencyCollection))
|
|
{
|
|
return this;
|
|
}
|
|
|
|
throw new UnregisteredTypeException(type);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void BuildGraph()
|
|
{
|
|
// List of all objects we need to inject dependencies into.
|
|
var injectList = new List<object>();
|
|
|
|
// First we build every type we have registered but isn't yet built.
|
|
// This allows us to run this after the content assembly has been loaded.
|
|
foreach (var (key, value) in _resolveTypes.Where(p => !_services.ContainsKey(p.Key)))
|
|
{
|
|
// Find a potential dupe by checking other registered types that have already been instantiated that have the same instance type.
|
|
// Can't catch ourselves because we're not instantiated.
|
|
// Ones that aren't yet instantiated are about to be and will find us instead.
|
|
var (type, _) = _resolveTypes.FirstOrDefault(p => _services.ContainsKey(p.Key) && p.Value == value)!;
|
|
|
|
// Interface key can't be null so since KeyValuePair<> is a struct,
|
|
// this effectively checks whether we found something.
|
|
if (type != null)
|
|
{
|
|
// We have something with the same instance type, use that.
|
|
_services[key] = _services[type];
|
|
continue;
|
|
}
|
|
|
|
try
|
|
{
|
|
// Yay for delegate covariance
|
|
object instance = _resolveFactories[value].Invoke();
|
|
_services[key] = instance;
|
|
injectList.Add(instance);
|
|
}
|
|
catch (TargetInvocationException e)
|
|
{
|
|
throw new ImplementationConstructorException(value, e.InnerException);
|
|
}
|
|
}
|
|
|
|
// Because we only ever construct an instance once per registration, there is no need to keep the factory
|
|
// delegates. Also we need to free the delegates because lambdas capture variables.
|
|
_resolveFactories.Clear();
|
|
|
|
// Graph built, go over ones that need injection.
|
|
foreach (var implementation in injectList)
|
|
{
|
|
InjectDependencies(implementation, true);
|
|
}
|
|
|
|
foreach (var injectedItem in injectList.OfType<IPostInjectInit>())
|
|
{
|
|
injectedItem.PostInject();
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void InjectDependencies(object obj, bool oneOff=false)
|
|
{
|
|
var type = obj.GetType();
|
|
|
|
if (!_injectorCache.TryGetValue(type, out var injector))
|
|
{
|
|
if (oneOff)
|
|
{
|
|
// If this is a one-off injection then use the old reflection method.
|
|
// Won't cache a bunch of later-unused stuff.
|
|
InjectDependenciesReflection(obj);
|
|
return;
|
|
}
|
|
|
|
CacheInjector(type);
|
|
injector = _injectorCache[type];
|
|
}
|
|
|
|
var (@delegate, services) = injector;
|
|
|
|
// If @delegate is null then the type has no dependencies.
|
|
// So running an initializer would be quite wasteful.
|
|
@delegate?.Invoke(obj, services!);
|
|
}
|
|
|
|
private void InjectDependenciesReflection(object obj)
|
|
{
|
|
var type = obj.GetType();
|
|
foreach (var field in type.GetAllFields())
|
|
{
|
|
if (!Attribute.IsDefined(field, typeof(DependencyAttribute)))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Not using Resolve<T>() because we're literally building it right now.
|
|
if (!_services.ContainsKey(field.FieldType))
|
|
{
|
|
// A hard-coded special case so the DependencyCollection can inject itself.
|
|
// This is not put into the services so it can be overridden if needed.
|
|
if (field.FieldType == typeof(IDependencyCollection))
|
|
{
|
|
field.SetValue(obj, this);
|
|
continue;
|
|
}
|
|
|
|
throw new UnregisteredDependencyException(type, field.FieldType, field.Name);
|
|
}
|
|
|
|
// Quick note: this DOES work with read only fields, though it may be a CLR implementation detail.
|
|
field.SetValue(obj, _services[field.FieldType]);
|
|
}
|
|
}
|
|
|
|
private void CacheInjector(Type type)
|
|
{
|
|
var fields = new List<FieldInfo>();
|
|
|
|
foreach (var field in type.GetAllFields())
|
|
{
|
|
if (!Attribute.IsDefined(field, typeof(DependencyAttribute)))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
fields.Add(field);
|
|
}
|
|
|
|
if (fields.Count == 0)
|
|
{
|
|
_injectorCache.Add(type, (null, null));
|
|
return;
|
|
}
|
|
|
|
var dynamicMethod = new DynamicMethod($"_injector<>{type}", null, InjectorParameters, type, true);
|
|
|
|
dynamicMethod.DefineParameter(1, ParameterAttributes.In, "target");
|
|
dynamicMethod.DefineParameter(2, ParameterAttributes.In, "services");
|
|
|
|
var i = 0;
|
|
var services = new List<object>();
|
|
|
|
var generator = dynamicMethod.GetILGenerator();
|
|
|
|
foreach (var field in fields)
|
|
{
|
|
// Load object to inject into.
|
|
generator.Emit(OpCodes.Ldarg_0);
|
|
|
|
// Not using Resolve<T>() because we're literally building it right now.
|
|
if (!_services.TryGetValue(field.FieldType, out var service))
|
|
{
|
|
// A hard-coded special case so the DependencyCollection can inject itself.
|
|
// This is not put into the services so it can be overridden if needed.
|
|
if (field.FieldType == typeof(IDependencyCollection))
|
|
{
|
|
service = this;
|
|
}
|
|
else
|
|
{
|
|
throw new UnregisteredDependencyException(type, field.FieldType, field.Name);
|
|
}
|
|
}
|
|
|
|
services.Add(service);
|
|
|
|
// Load services array.
|
|
generator.Emit(OpCodes.Ldarg_1);
|
|
// Load service from array.
|
|
generator.Emit(OpCodes.Ldc_I4, i++);
|
|
generator.Emit(OpCodes.Ldelem_Ref);
|
|
|
|
// Set service into field.
|
|
generator.Emit(OpCodes.Stfld, field);
|
|
}
|
|
|
|
generator.Emit(OpCodes.Ret);
|
|
|
|
var @delegate = (InjectorDelegate)dynamicMethod.CreateDelegate(typeof(InjectorDelegate));
|
|
_injectorCache.Add(type, (@delegate, services.ToArray()));
|
|
}
|
|
}
|
|
}
|