Radarr/NzbDrone.Common/Composition/ContainerBuilderBase.cs

72 lines
2.2 KiB
C#
Raw Normal View History

2013-04-20 00:05:48 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using NzbDrone.Common.Messaging;
2013-05-10 23:53:50 +00:00
using TinyIoC;
2013-04-20 00:05:48 +00:00
2013-05-10 23:53:50 +00:00
namespace NzbDrone.Common.Composition
2013-04-20 00:05:48 +00:00
{
public abstract class ContainerBuilderBase
{
private readonly List<Type> _loadedTypes;
2013-05-10 23:53:50 +00:00
public IContainer Container { get; private set; }
2013-04-20 00:05:48 +00:00
protected ContainerBuilderBase(params string[] assemblies)
{
_loadedTypes = new List<Type>();
foreach (var assembly in assemblies)
{
_loadedTypes.AddRange(Assembly.Load(assembly).GetTypes());
}
Container = new Container(new TinyIoCContainer(), _loadedTypes);
2013-04-20 00:05:48 +00:00
AutoRegisterInterfaces();
}
private void AutoRegisterInterfaces()
{
2013-05-10 23:53:50 +00:00
var loadedInterfaces = _loadedTypes.Where(t => t.IsInterface).ToList();
2013-05-11 20:06:57 +00:00
var implementedInterfaces = _loadedTypes.SelectMany(t => t.GetInterfaces());
2013-04-20 00:05:48 +00:00
2013-05-10 23:53:50 +00:00
var contracts = loadedInterfaces.Union(implementedInterfaces).Where(c => !c.IsGenericTypeDefinition && !string.IsNullOrWhiteSpace(c.FullName))
2013-05-11 20:06:57 +00:00
.Where(c => !c.FullName.StartsWith("System"))
2013-05-11 06:16:10 +00:00
.Except(new List<Type> { typeof(IMessage), typeof(IEvent), typeof(IContainer) }).Distinct().OrderBy(c => c.FullName);
2013-05-10 23:53:50 +00:00
foreach (var contract in contracts)
2013-04-20 00:05:48 +00:00
{
AutoRegisterImplementations(contract);
}
}
protected void AutoRegisterImplementations<TContract>()
{
AutoRegisterImplementations(typeof(TContract));
}
private void AutoRegisterImplementations(Type contractType)
{
var implementations = Container.GetImplementations(contractType).Where(c => !c.IsGenericTypeDefinition).ToList();
2013-05-10 23:53:50 +00:00
2013-04-20 00:05:48 +00:00
if (implementations.Count == 0)
{
return;
}
if (implementations.Count == 1)
{
2013-05-10 23:53:50 +00:00
var impl = implementations.Single();
2013-05-30 01:33:20 +00:00
Container.RegisterSingleton(contractType, impl);
2013-04-20 00:05:48 +00:00
}
else
{
2013-05-30 01:33:20 +00:00
Container.RegisterAllAsSingleton(contractType, implementations);
2013-04-20 00:05:48 +00:00
}
}
}
}