2013-01-19 04:46:43 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using Autofac;
|
|
|
|
|
using Autofac.Core;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-24 23:47:57 +00:00
|
|
|
|
using NzbDrone.Core.ExternalNotification;
|
2013-02-23 04:37:23 +00:00
|
|
|
|
using NzbDrone.Core.Indexers;
|
2013-01-19 04:46:43 +00:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
|
|
|
|
using NzbDrone.Core.Providers.Metadata;
|
|
|
|
|
using NzbDrone.Core.Providers.Search;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
|
{
|
|
|
|
|
public static class ContainerExtentions
|
|
|
|
|
{
|
|
|
|
|
|
2013-01-19 18:54:00 +00:00
|
|
|
|
private static readonly Logger logger = LogManager.GetLogger("ServiceRegistration");
|
2013-01-19 04:46:43 +00:00
|
|
|
|
|
2013-01-20 00:19:27 +00:00
|
|
|
|
public static void RegisterCoreServices(this ContainerBuilder containerBuilder)
|
2013-01-19 04:46:43 +00:00
|
|
|
|
{
|
2013-02-19 07:20:51 +00:00
|
|
|
|
containerBuilder.RegisterAssembly("NzbDrone.Common");
|
2013-02-19 01:57:08 +00:00
|
|
|
|
containerBuilder.RegisterAssembly("NzbDrone.Core");
|
2013-01-19 04:46:43 +00:00
|
|
|
|
|
2013-01-20 00:19:27 +00:00
|
|
|
|
containerBuilder.InitDatabase();
|
|
|
|
|
|
|
|
|
|
containerBuilder.RegisterModule<LogInjectionModule>();
|
2013-01-19 04:46:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-02-19 01:57:08 +00:00
|
|
|
|
private static void RegisterAssembly(this ContainerBuilder container, string assemblyName)
|
2013-01-19 04:46:43 +00:00
|
|
|
|
{
|
2013-01-19 19:42:06 +00:00
|
|
|
|
|
2013-02-19 01:57:08 +00:00
|
|
|
|
container.RegisterAssemblyTypes(assemblyName);
|
2013-01-19 04:46:43 +00:00
|
|
|
|
|
2013-02-19 01:57:08 +00:00
|
|
|
|
var assembly = Assembly.Load(assemblyName);
|
2013-01-19 04:46:43 +00:00
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 18:54:00 +00:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(IndexerBase)))
|
2013-01-19 04:46:43 +00:00
|
|
|
|
.As<IndexerBase>().SingleInstance();
|
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 18:54:00 +00:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(SearchBase)))
|
2013-01-19 04:46:43 +00:00
|
|
|
|
.As<SearchBase>().SingleInstance();
|
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 18:54:00 +00:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(ExternalNotificationBase)))
|
2013-01-19 04:46:43 +00:00
|
|
|
|
.As<ExternalNotificationBase>().SingleInstance();
|
|
|
|
|
|
|
|
|
|
container.RegisterAssemblyTypes(assembly)
|
2013-01-19 18:54:00 +00:00
|
|
|
|
.Where(t => t.IsSubclassOf(typeof(MetadataBase)))
|
2013-01-19 04:46:43 +00:00
|
|
|
|
.As<MetadataBase>().SingleInstance();
|
|
|
|
|
}
|
2013-01-19 19:42:06 +00:00
|
|
|
|
|
2013-01-19 04:46:43 +00:00
|
|
|
|
private static void InitDatabase(this ContainerBuilder container)
|
|
|
|
|
{
|
2013-01-19 18:54:00 +00:00
|
|
|
|
logger.Info("Registering Database...");
|
2013-01-19 04:46:43 +00:00
|
|
|
|
|
|
|
|
|
var appDataPath = new EnvironmentProvider().GetAppDataPath();
|
|
|
|
|
if (!Directory.Exists(appDataPath)) Directory.CreateDirectory(appDataPath);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-04 01:27:34 +00:00
|
|
|
|
container.Register(c =>
|
|
|
|
|
{
|
2013-02-17 04:59:35 +00:00
|
|
|
|
return c.Resolve<IObjectDbFactory>().Create();
|
2013-02-17 04:33:56 +00:00
|
|
|
|
}).As<IObjectDatabase>().SingleInstance();
|
2013-02-04 01:27:34 +00:00
|
|
|
|
|
2013-02-17 05:09:35 +00:00
|
|
|
|
container.RegisterGeneric(typeof(BasicRepository<>)).As(typeof(IBasicRepository<>));
|
2013-01-19 04:46:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|