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