2013-04-20 00:05:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-05-11 20:06:57 +00:00
|
|
|
|
using System.Diagnostics;
|
2013-04-20 00:05:48 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
2013-05-08 05:47:15 +00:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2013-05-09 06:38:20 +00:00
|
|
|
|
using NzbDrone.Common.Reflection;
|
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());
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 00:36:23 +00:00
|
|
|
|
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-08 05:47:15 +00:00
|
|
|
|
|
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)
|
|
|
|
|
{
|
2013-05-13 00:36:23 +00:00
|
|
|
|
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-11 20:06:57 +00:00
|
|
|
|
Trace.WriteLine(string.Format("Registering {0} -> {1}", contractType.FullName, impl.Name));
|
|
|
|
|
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
if (impl.HasAttribute<SingletonAttribute>())
|
2013-05-09 06:38:20 +00:00
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Container.RegisterSingleton(contractType, impl);
|
2013-05-09 06:38:20 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Container.Register(contractType, impl);
|
2013-05-09 06:38:20 +00:00
|
|
|
|
}
|
2013-04-20 00:05:48 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-05-11 20:06:57 +00:00
|
|
|
|
Trace.WriteLine(string.Format("Registering {0} -> {1}", contractType.FullName, implementations.Count));
|
|
|
|
|
|
2013-05-10 23:53:50 +00:00
|
|
|
|
Container.RegisterAll(contractType, implementations);
|
2013-04-20 00:05:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|