Sonarr/NzbDrone.Core/CentralDispatch.cs

126 lines
4.7 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Diagnostics;
using System.IO;
using System.Web;
2010-09-23 03:19:47 +00:00
using Ninject;
2010-10-02 19:01:43 +00:00
using NLog.Config;
using NLog.Targets;
using NzbDrone.Core.Instrumentation;
using NzbDrone.Core.Providers;
2010-10-10 19:00:07 +00:00
using NzbDrone.Core.Providers.Fakes;
using NzbDrone.Core.Repository;
2010-09-23 03:19:47 +00:00
using SubSonic.DataProviders;
using SubSonic.Repository;
2010-10-02 19:01:43 +00:00
using NLog;
using System.Linq;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core
{
2010-10-05 06:21:18 +00:00
public static class CentralDispatch
2010-09-23 03:19:47 +00:00
{
2010-10-10 19:00:07 +00:00
private static IKernel _kernel;
private static readonly Object kernelLock = new object();
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-10-07 22:17:24 +00:00
2010-10-10 19:00:07 +00:00
public static void BindKernel()
2010-09-23 03:19:47 +00:00
{
2010-10-10 19:00:07 +00:00
lock (kernelLock)
{
Logger.Debug("Binding Ninject's Kernel");
_kernel = new StandardKernel();
string connectionString = String.Format("Data Source={0};Version=3;", Path.Combine(AppPath, "nzbdrone.db"));
var dbProvider = ProviderFactory.GetProvider(connectionString, "System.Data.SQLite");
2010-10-10 19:00:07 +00:00
string logConnectionString = String.Format("Data Source={0};Version=3;", Path.Combine(AppPath, "log.db"));
var logDbProvider = ProviderFactory.GetProvider(logConnectionString, "System.Data.SQLite");
var logRepository = new SimpleRepository(logDbProvider, SimpleRepositoryOptions.RunMigrations);
dbProvider.Log = new NlogWriter();
dbProvider.LogParams = true;
2010-10-10 19:00:07 +00:00
_kernel.Bind<ISeriesProvider>().To<SeriesProvider>().InSingletonScope();
_kernel.Bind<ISeasonProvider>().To<SeasonProvider>();
_kernel.Bind<IEpisodeProvider>().To<EpisodeProvider>();
_kernel.Bind<IDiskProvider>().To<DiskProvider>();
_kernel.Bind<ITvDbProvider>().To<TvDbProvider>();
_kernel.Bind<IConfigProvider>().To<ConfigProvider>().InSingletonScope();
_kernel.Bind<ISyncProvider>().To<SyncProvider>().InSingletonScope();
2010-10-12 02:49:27 +00:00
_kernel.Bind<INotificationProvider>().To<NotificationProvider>().InSingletonScope();
_kernel.Bind<ILogProvider>().To<LogProvider>().InSingletonScope();
_kernel.Bind<IRepository>().ToMethod(c => new SimpleRepository(dbProvider, SimpleRepositoryOptions.RunMigrations)).InSingletonScope();
_kernel.Bind<IRepository>().ToConstant(logRepository).WhenInjectedInto<SubsonicTarget>().InSingletonScope();
_kernel.Bind<IRepository>().ToConstant(logRepository).WhenInjectedInto<LogProvider>().InSingletonScope();
2010-10-10 19:00:07 +00:00
ForceMigration(_kernel.Get<IRepository>());
}
2010-09-23 03:19:47 +00:00
}
public static String AppPath
{
2010-10-05 06:21:18 +00:00
get
{
if (HttpContext.Current != null)
{
return new DirectoryInfo(HttpContext.Current.Server.MapPath("\\")).FullName;
}
return Directory.GetCurrentDirectory();
}
2010-10-02 19:01:43 +00:00
}
2010-10-10 19:00:07 +00:00
public static IKernel NinjectKernel
{
get
{
if (_kernel == null)
{
BindKernel();
}
return _kernel;
}
}
2010-10-02 19:01:43 +00:00
2010-10-05 06:21:18 +00:00
private static void ForceMigration(IRepository repository)
{
repository.GetPaged<Series>(0, 1);
repository.GetPaged<EpisodeFile>(0, 1);
repository.GetPaged<Episode>(0, 1);
2010-10-05 06:21:18 +00:00
}
/// <summary>
/// This method forces IISExpress process to exit with the host application
/// </summary>
public static void DedicateToHost()
{
try
{
Logger.Info("Attaching to parent process for automatic termination.");
var pc = new PerformanceCounter("Process", "Creating Process ID", Process.GetCurrentProcess().ProcessName);
var pid = (int)pc.NextValue();
var hostProcess = Process.GetProcessById(pid);
hostProcess.EnableRaisingEvents = true;
hostProcess.Exited += (delegate
{
Logger.Info("Host has been terminated. Shutting down web server.");
ShutDown();
});
Logger.Info("Successfully Attached to host. Process ID: {0}", pid);
}
catch (Exception e)
{
Logger.Fatal(e);
}
}
private static void ShutDown()
{
Logger.Info("Shutting down application.");
Process.GetCurrentProcess().Kill();
}
2010-09-23 03:19:47 +00:00
}
2010-09-28 05:58:49 +00:00
}