2011-10-15 00:59:24 +00:00
|
|
|
|
using NLog;
|
2011-10-11 07:11:05 +00:00
|
|
|
|
using Ninject;
|
|
|
|
|
using NzbDrone.Providers;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone
|
|
|
|
|
{
|
|
|
|
|
public static class CentralDispatch
|
|
|
|
|
{
|
|
|
|
|
private static StandardKernel _kernel;
|
2011-10-12 02:24:43 +00:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetLogger("Host.CentralDispatch");
|
2011-10-11 07:11:05 +00:00
|
|
|
|
|
|
|
|
|
static CentralDispatch()
|
|
|
|
|
{
|
|
|
|
|
_kernel = new StandardKernel();
|
2011-10-13 02:24:30 +00:00
|
|
|
|
BindKernel();
|
|
|
|
|
InitilizeApp();
|
2011-10-11 07:11:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static StandardKernel Kernel
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _kernel;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void BindKernel()
|
|
|
|
|
{
|
|
|
|
|
_kernel = new StandardKernel();
|
2011-10-13 02:24:30 +00:00
|
|
|
|
_kernel.Bind<ApplicationServer>().ToSelf().InSingletonScope();
|
2011-10-11 07:11:05 +00:00
|
|
|
|
_kernel.Bind<ConfigProvider>().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();
|
2011-10-13 02:24:30 +00:00
|
|
|
|
|
2011-10-11 07:11:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void InitilizeApp()
|
|
|
|
|
{
|
|
|
|
|
_kernel.Get<ConfigProvider>().ConfigureNlog();
|
|
|
|
|
_kernel.Get<ConfigProvider>().CreateDefaultConfigFile();
|
2011-10-15 00:41:09 +00:00
|
|
|
|
Logger.Info("Start-up Path:'{0}'", _kernel.Get<EnviromentProvider>().ApplicationPath);
|
2011-10-11 07:11:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|