Radarr/NzbDrone.Core/CentralDispatch.cs

176 lines
6.4 KiB
C#
Raw Normal View History

2010-09-23 03:19:47 +00:00
using System;
using System.Diagnostics;
using System.IO;
2011-06-18 01:46:22 +00:00
using System.Linq;
using System.Reflection;
using System.Web.Hosting;
2010-09-23 03:19:47 +00:00
using Ninject;
2011-04-10 02:44:01 +00:00
using NLog;
2011-05-23 23:29:14 +00:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Instrumentation;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Providers.Core;
using NzbDrone.Core.Providers.ExternalNotification;
using NzbDrone.Core.Providers.Indexer;
using NzbDrone.Core.Providers.Jobs;
2011-06-15 02:31:41 +00:00
using PetaPoco;
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
{
2011-03-30 06:18:35 +00:00
private static StandardKernel _kernel;
private static readonly Object KernelLock = new object();
2010-10-10 19:00:07 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2010-10-07 22:17:24 +00:00
public static Version Version
{
get { return Assembly.GetExecutingAssembly().GetName().Version; }
}
public static DateTime BuildDateTime
{
get
{
var fileLocation = Assembly.GetCallingAssembly().Location;
return new FileInfo(fileLocation).CreationTime;
}
}
2011-04-10 02:44:01 +00:00
public static String AppPath
{
get
{
if (!String.IsNullOrWhiteSpace(HostingEnvironment.ApplicationPhysicalPath))
{
return HostingEnvironment.ApplicationPhysicalPath;
}
return Directory.GetCurrentDirectory();
}
}
public static StandardKernel NinjectKernel
{
get
{
if (_kernel == null)
{
2011-05-23 23:29:14 +00:00
InitializeApp();
2011-04-10 02:44:01 +00:00
}
return _kernel;
}
}
2011-07-08 05:41:08 +00:00
public static void InitializeApp()
2011-05-23 23:29:14 +00:00
{
BindKernel();
2011-06-15 02:31:41 +00:00
MigrationsHelper.Run(Connection.MainConnectionString, true);
2011-08-07 05:49:07 +00:00
LogConfiguration.StartDbLogging();
_kernel.Get<QualityProvider>().SetupDefaultProfiles();
_kernel.Get<QualityTypeProvider>().SetupDefault();
_kernel.Get<ConfigFileProvider>().CreateDefaultConfigFile();
2011-05-23 23:29:14 +00:00
BindExternalNotifications();
2011-05-23 23:29:14 +00:00
BindIndexers();
BindJobs();
}
2011-07-08 05:41:08 +00:00
private static void BindKernel()
2010-09-23 03:19:47 +00:00
{
lock (KernelLock)
2010-10-10 19:00:07 +00:00
{
Logger.Debug("Binding Ninject's Kernel");
_kernel = new StandardKernel();
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString)).InTransientScope();
//_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString, false)).WhenInjectedInto<IJob>();
//_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString, false)).WhenInjectedInto<JobProvider>();
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.LogConnectionString, false)).WhenInjectedInto<DatabaseTarget>().InSingletonScope();
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.LogConnectionString)).WhenInjectedInto<LogProvider>().InSingletonScope();
2010-10-10 19:00:07 +00:00
}
2010-09-23 03:19:47 +00:00
}
private static void BindIndexers()
{
_kernel.Bind<IndexerBase>().To<NzbsOrg>();
_kernel.Bind<IndexerBase>().To<NzbMatrix>();
_kernel.Bind<IndexerBase>().To<NzbsRUs>();
_kernel.Bind<IndexerBase>().To<Newzbin>();
2011-05-27 06:03:57 +00:00
var indexers = _kernel.GetAll<IndexerBase>();
_kernel.Get<IndexerProvider>().InitializeIndexers(indexers.ToList());
}
private static void BindJobs()
2011-04-20 02:17:28 +00:00
{
_kernel.Bind<IJob>().To<RssSyncJob>().InSingletonScope();
_kernel.Bind<IJob>().To<ImportNewSeriesJob>().InSingletonScope();
_kernel.Bind<IJob>().To<UpdateInfoJob>().InSingletonScope();
_kernel.Bind<IJob>().To<DiskScanJob>().InSingletonScope();
_kernel.Bind<IJob>().To<DeleteSeriesJob>().InSingletonScope();
_kernel.Bind<IJob>().To<EpisodeSearchJob>().InSingletonScope();
_kernel.Bind<IJob>().To<RenameEpisodeJob>().InSingletonScope();
_kernel.Bind<IJob>().To<PostDownloadScanJob>().InSingletonScope();
_kernel.Bind<IJob>().To<UpdateSceneMappingsJob>().InSingletonScope();
_kernel.Bind<IJob>().To<SeasonSearchJob>().InSingletonScope();
_kernel.Bind<IJob>().To<RenameSeasonJob>().InSingletonScope();
_kernel.Bind<IJob>().To<SeriesSearchJob>().InSingletonScope();
_kernel.Bind<IJob>().To<RenameSeriesJob>().InSingletonScope();
2011-08-28 19:24:16 +00:00
_kernel.Bind<IJob>().To<BacklogSearchJob>().InSingletonScope();
_kernel.Bind<IJob>().To<BannerDownloadJob>().InSingletonScope();
_kernel.Bind<IJob>().To<ConvertEpisodeJob>().InSingletonScope();
2011-04-23 19:47:05 +00:00
_kernel.Get<JobProvider>().Initialize();
_kernel.Get<WebTimer>().StartTimer(30);
2011-04-20 02:17:28 +00:00
}
private static void BindExternalNotifications()
{
_kernel.Bind<ExternalNotificationBase>().To<Xbmc>();
var notifiers = _kernel.GetAll<ExternalNotificationBase>();
_kernel.Get<ExternalNotificationProvider>().InitializeNotifiers(notifiers.ToList());
}
/// <summary>
2011-04-20 01:20:20 +00:00
/// Forces IISExpress process to exit with the host application
/// </summary>
public static void DedicateToHost()
{
try
{
var pid = Convert.ToInt32(Environment.GetEnvironmentVariable("NZBDRONE_PID"));
Logger.Debug("Attaching to parent process ({0}) for automatic termination.", pid);
var hostProcess = Process.GetProcessById(Convert.ToInt32(pid));
hostProcess.EnableRaisingEvents = true;
hostProcess.Exited += (delegate
2011-04-10 02:44:01 +00:00
{
Logger.Info("Host has been terminated. Shutting down web server.");
ShutDown();
});
Logger.Debug("Successfully Attached to host. Process [{0}]", hostProcess.ProcessName);
}
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
}