You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
using System.IO;
|
|
using NLog;
|
|
using Ninject;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Providers;
|
|
|
|
namespace NzbDrone
|
|
{
|
|
public static class CentralDispatch
|
|
{
|
|
private static StandardKernel _kernel;
|
|
private static readonly Logger Logger = LogManager.GetLogger("Host.CentralDispatch");
|
|
|
|
static CentralDispatch()
|
|
{
|
|
_kernel = new StandardKernel();
|
|
BindKernel();
|
|
InitilizeApp();
|
|
}
|
|
|
|
public static StandardKernel Kernel
|
|
{
|
|
get
|
|
{
|
|
return _kernel;
|
|
}
|
|
}
|
|
|
|
private static void BindKernel()
|
|
{
|
|
_kernel = new StandardKernel();
|
|
_kernel.Bind<ApplicationServer>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<ConfigFileProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<ConsoleProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<DebuggerProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<EnviromentProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<IISProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<MonitoringProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<ProcessProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<ServiceProvider>().ToSelf().InSingletonScope();
|
|
_kernel.Bind<WebClientProvider>().ToSelf().InSingletonScope();
|
|
|
|
}
|
|
|
|
private static void InitilizeApp()
|
|
{
|
|
var enviromentProvider = _kernel.Get<EnviromentProvider>();
|
|
|
|
LogConfiguration.RegisterRollingFileLogger(enviromentProvider.GetLogFileName(), LogLevel.Info);
|
|
LogConfiguration.RegisterConsoleLogger(LogLevel.Debug);
|
|
LogConfiguration.RegisterUdpLogger();
|
|
LogConfiguration.RegisterExceptioneer();
|
|
LogConfiguration.Reload();
|
|
Logger.Info("Start-up Path:'{0}'", enviromentProvider.ApplicationPath);
|
|
}
|
|
}
|
|
}
|