2012-02-10 16:48:20 -08:00
|
|
|
|
using NLog;
|
2011-10-11 00:11:05 -07:00
|
|
|
|
using Ninject;
|
2011-10-22 22:26:43 -07:00
|
|
|
|
using NzbDrone.Common;
|
2011-10-11 00:11:05 -07:00
|
|
|
|
using NzbDrone.Providers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone
|
|
|
|
|
{
|
|
|
|
|
public static class CentralDispatch
|
|
|
|
|
{
|
|
|
|
|
private static StandardKernel _kernel;
|
2011-10-11 19:24:43 -07:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetLogger("Host.CentralDispatch");
|
2011-10-11 00:11:05 -07:00
|
|
|
|
|
|
|
|
|
static CentralDispatch()
|
|
|
|
|
{
|
|
|
|
|
_kernel = new StandardKernel();
|
2011-10-12 19:24:30 -07:00
|
|
|
|
BindKernel();
|
|
|
|
|
InitilizeApp();
|
2011-10-11 00:11:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static StandardKernel Kernel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _kernel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void BindKernel()
|
|
|
|
|
{
|
|
|
|
|
_kernel = new StandardKernel();
|
2011-10-12 19:24:30 -07:00
|
|
|
|
_kernel.Bind<ApplicationServer>().ToSelf().InSingletonScope();
|
2011-11-12 23:27:16 -08:00
|
|
|
|
_kernel.Bind<ConfigFileProvider>().ToSelf().InSingletonScope();
|
2011-10-11 00:11:05 -07:00
|
|
|
|
_kernel.Bind<ConsoleProvider>().ToSelf().InSingletonScope();
|
|
|
|
|
_kernel.Bind<DebuggerProvider>().ToSelf().InSingletonScope();
|
2012-03-06 18:59:43 -08:00
|
|
|
|
_kernel.Bind<EnvironmentProvider>().ToSelf().InSingletonScope();
|
2011-10-11 00:11:05 -07:00
|
|
|
|
_kernel.Bind<IISProvider>().ToSelf().InSingletonScope();
|
|
|
|
|
_kernel.Bind<MonitoringProvider>().ToSelf().InSingletonScope();
|
|
|
|
|
_kernel.Bind<ProcessProvider>().ToSelf().InSingletonScope();
|
|
|
|
|
_kernel.Bind<ServiceProvider>().ToSelf().InSingletonScope();
|
2012-02-10 16:48:20 -08:00
|
|
|
|
_kernel.Bind<HttpProvider>().ToSelf().InSingletonScope();
|
2011-10-12 19:24:30 -07:00
|
|
|
|
|
2011-10-11 00:11:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void InitilizeApp()
|
|
|
|
|
{
|
2012-03-06 18:59:43 -08:00
|
|
|
|
var environmentProvider = _kernel.Get<EnvironmentProvider>();
|
2012-03-01 17:57:36 -08:00
|
|
|
|
|
|
|
|
|
ReportingService.RestProvider = _kernel.Get<RestProvider>();
|
2012-04-29 18:24:24 -07:00
|
|
|
|
ReportingService.SetupExceptronDriver();
|
2012-01-22 18:24:16 -08:00
|
|
|
|
|
2012-03-06 18:59:43 -08:00
|
|
|
|
LogConfiguration.RegisterRollingFileLogger(environmentProvider.GetLogFileName(), LogLevel.Info);
|
2011-10-23 22:54:09 -07:00
|
|
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Debug);
|
|
|
|
|
LogConfiguration.RegisterUdpLogger();
|
2012-02-04 22:34:36 -08:00
|
|
|
|
LogConfiguration.RegisterRemote();
|
2011-11-12 23:27:16 -08:00
|
|
|
|
LogConfiguration.Reload();
|
2012-03-06 18:59:43 -08:00
|
|
|
|
Logger.Info("Start-up Path:'{0}'", environmentProvider.ApplicationPath);
|
2011-10-11 00:11:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|