Sonarr/NzbDrone/CentralDispatch.cs

54 lines
1.5 KiB
C#
Raw Normal View History

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