2013-02-19 10:20:51 +03:00
|
|
|
using System.Reflection;
|
|
|
|
using Autofac;
|
2013-01-03 04:09:13 +03:00
|
|
|
using NLog;
|
2013-02-19 04:13:42 +03:00
|
|
|
using NzbDrone.Api;
|
2011-10-23 08:26:43 +03:00
|
|
|
using NzbDrone.Common;
|
2013-02-19 04:13:42 +03:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2011-10-11 10:11:05 +03:00
|
|
|
|
|
|
|
namespace NzbDrone
|
|
|
|
{
|
2013-03-01 03:50:50 +03:00
|
|
|
public static class NzbDroneBootstrapper
|
2011-10-11 10:11:05 +03:00
|
|
|
{
|
2013-02-19 04:57:08 +03:00
|
|
|
private static readonly IContainer container;
|
2013-03-01 03:50:50 +03:00
|
|
|
private static readonly Logger logger = LogManager.GetLogger("NzbDroneBootstrapper");
|
2011-10-11 10:11:05 +03:00
|
|
|
|
2013-03-01 03:50:50 +03:00
|
|
|
static NzbDroneBootstrapper()
|
2011-10-11 10:11:05 +03:00
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
var builder = new ContainerBuilder();
|
|
|
|
BindKernel(builder);
|
2013-02-19 04:57:08 +03:00
|
|
|
container = builder.Build();
|
2013-02-28 09:59:08 +03:00
|
|
|
InitializeApp();
|
2011-10-11 10:11:05 +03:00
|
|
|
}
|
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
public static IContainer Container
|
2011-10-11 10:11:05 +03:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
2013-02-19 04:57:08 +03:00
|
|
|
return container;
|
2011-10-11 10:11:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-03 04:09:13 +03:00
|
|
|
private static void BindKernel(ContainerBuilder builder)
|
2011-10-11 10:11:05 +03:00
|
|
|
{
|
2013-02-19 04:13:42 +03:00
|
|
|
builder.RegisterModule<LogInjectionModule>();
|
|
|
|
|
2013-02-19 04:57:08 +03:00
|
|
|
builder.RegisterCommonServices();
|
|
|
|
builder.RegisterApiServices();
|
2013-02-19 10:20:51 +03:00
|
|
|
builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly());
|
2011-10-11 10:11:05 +03:00
|
|
|
}
|
|
|
|
|
2013-02-28 09:59:08 +03:00
|
|
|
private static void InitializeApp()
|
2011-10-11 10:11:05 +03:00
|
|
|
{
|
2013-02-19 04:57:08 +03:00
|
|
|
var environmentProvider = container.Resolve<EnvironmentProvider>();
|
|
|
|
|
|
|
|
ReportingService.RestProvider = container.Resolve<RestProvider>();
|
2012-01-23 05:24:16 +03:00
|
|
|
|
2013-02-19 04:57:08 +03:00
|
|
|
logger.Info("Start-up Path:'{0}'", environmentProvider.ApplicationPath);
|
2011-10-11 10:11:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|