2010-09-22 20:19:47 -07:00
|
|
|
using System;
|
2010-10-17 10:22:48 -07:00
|
|
|
using System.Diagnostics;
|
2010-09-23 19:19:55 -07:00
|
|
|
using System.IO;
|
2011-06-17 18:46:22 -07:00
|
|
|
using System.Linq;
|
2011-04-05 19:24:57 -07:00
|
|
|
using System.Web.Hosting;
|
2010-09-22 20:19:47 -07:00
|
|
|
using Ninject;
|
2011-04-09 19:44:01 -07:00
|
|
|
using NLog;
|
2011-05-23 16:29:14 -07:00
|
|
|
using NzbDrone.Core.Datastore;
|
2010-10-24 00:46:58 -07:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2010-09-27 21:25:41 -07:00
|
|
|
using NzbDrone.Core.Providers;
|
2011-04-28 23:06:13 -07:00
|
|
|
using NzbDrone.Core.Providers.ExternalNotification;
|
2011-04-18 17:12:06 -07:00
|
|
|
using NzbDrone.Core.Providers.Indexer;
|
2011-04-20 00:44:13 -07:00
|
|
|
using NzbDrone.Core.Providers.Jobs;
|
2011-06-14 19:31:41 -07:00
|
|
|
using PetaPoco;
|
2010-09-22 20:19:47 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
{
|
2010-10-04 23:21:18 -07:00
|
|
|
public static class CentralDispatch
|
2010-09-22 20:19:47 -07:00
|
|
|
{
|
2011-03-29 23:18:35 -07:00
|
|
|
private static StandardKernel _kernel;
|
2011-04-09 17:14:51 -07:00
|
|
|
private static readonly Object KernelLock = new object();
|
2010-10-10 12:00:07 -07:00
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
2010-10-07 15:17:24 -07:00
|
|
|
|
2011-04-09 19:44:01 -07: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 16:29:14 -07:00
|
|
|
InitializeApp();
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|
|
|
|
return _kernel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-23 16:29:14 -07:00
|
|
|
private static void InitializeApp()
|
|
|
|
{
|
|
|
|
BindKernel();
|
2011-05-26 19:12:28 -07:00
|
|
|
|
2011-06-12 20:45:22 -07:00
|
|
|
LogConfiguration.StartDbLogging();
|
2011-05-26 19:12:28 -07:00
|
|
|
|
2011-06-14 19:31:41 -07:00
|
|
|
MigrationsHelper.Run(Connection.MainConnectionString, true);
|
2011-05-26 19:12:28 -07:00
|
|
|
|
2011-06-12 20:45:22 -07:00
|
|
|
_kernel.Get<QualityProvider>().SetupDefaultProfiles();
|
2011-05-23 16:29:14 -07:00
|
|
|
|
|
|
|
BindIndexers();
|
|
|
|
BindJobs();
|
|
|
|
BindExternalNotifications();
|
|
|
|
}
|
|
|
|
|
2010-10-10 12:00:07 -07:00
|
|
|
public static void BindKernel()
|
2010-09-22 20:19:47 -07:00
|
|
|
{
|
2011-04-09 17:14:51 -07:00
|
|
|
lock (KernelLock)
|
2010-10-10 12:00:07 -07:00
|
|
|
{
|
|
|
|
Logger.Debug("Binding Ninject's Kernel");
|
|
|
|
_kernel = new StandardKernel();
|
|
|
|
|
2011-06-15 23:33:01 -07:00
|
|
|
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString)).InRequestScope();
|
2011-06-18 10:58:52 -07:00
|
|
|
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString, false)).WhenInjectedInto<IJob>();
|
|
|
|
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.MainConnectionString, false)).WhenInjectedInto<JobProvider>();
|
2011-06-23 21:05:31 -07:00
|
|
|
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.LogConnectionString, false)).WhenInjectedInto<DatabaseTarget>().InSingletonScope();
|
2011-06-17 17:11:12 -07:00
|
|
|
_kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb(Connection.LogConnectionString)).WhenInjectedInto<LogProvider>().InRequestScope();
|
2010-10-10 12:00:07 -07:00
|
|
|
}
|
2010-09-22 20:19:47 -07:00
|
|
|
}
|
|
|
|
|
2011-04-18 17:12:06 -07:00
|
|
|
private static void BindIndexers()
|
|
|
|
{
|
2011-06-18 10:58:52 -07:00
|
|
|
_kernel.Bind<IndexerBase>().To<NzbsOrg>();
|
|
|
|
_kernel.Bind<IndexerBase>().To<NzbMatrix>();
|
|
|
|
_kernel.Bind<IndexerBase>().To<NzbsRUs>();
|
|
|
|
_kernel.Bind<IndexerBase>().To<Newzbin>();
|
2011-05-26 23:03:57 -07:00
|
|
|
|
|
|
|
var indexers = _kernel.GetAll<IndexerBase>();
|
|
|
|
_kernel.Get<IndexerProvider>().InitializeIndexers(indexers.ToList());
|
2011-04-18 17:12:06 -07:00
|
|
|
}
|
|
|
|
|
2011-04-20 00:44:13 -07:00
|
|
|
private static void BindJobs()
|
2011-04-19 19:17:28 -07:00
|
|
|
{
|
2011-06-18 10:58:52 -07: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();
|
2011-04-23 12:47:05 -07:00
|
|
|
|
2011-04-20 00:44:13 -07:00
|
|
|
_kernel.Get<JobProvider>().Initialize();
|
2011-04-21 22:46:47 -07:00
|
|
|
_kernel.Get<WebTimer>().StartTimer(30);
|
2011-04-19 19:17:28 -07:00
|
|
|
}
|
|
|
|
|
2011-04-28 23:06:13 -07:00
|
|
|
private static void BindExternalNotifications()
|
|
|
|
{
|
|
|
|
_kernel.Bind<ExternalNotificationProviderBase>().To<XbmcNotificationProvider>().InSingletonScope();
|
|
|
|
var notifiers = _kernel.GetAll<ExternalNotificationProviderBase>();
|
|
|
|
_kernel.Get<ExternalNotificationProvider>().InitializeNotifiers(notifiers.ToList());
|
|
|
|
}
|
2011-04-21 19:23:31 -07:00
|
|
|
|
2010-10-17 10:22:48 -07:00
|
|
|
/// <summary>
|
2011-04-19 18:20:20 -07:00
|
|
|
/// Forces IISExpress process to exit with the host application
|
2010-10-17 10:22:48 -07:00
|
|
|
/// </summary>
|
|
|
|
public static void DedicateToHost()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2011-06-12 20:45:22 -07:00
|
|
|
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));
|
2010-10-17 10:22:48 -07:00
|
|
|
|
|
|
|
hostProcess.EnableRaisingEvents = true;
|
|
|
|
hostProcess.Exited += (delegate
|
2011-04-09 19:44:01 -07:00
|
|
|
{
|
|
|
|
Logger.Info("Host has been terminated. Shutting down web server.");
|
|
|
|
ShutDown();
|
|
|
|
});
|
2010-10-17 10:22:48 -07:00
|
|
|
|
2011-06-12 20:45:22 -07:00
|
|
|
Logger.Debug("Successfully Attached to host. Process [{0}]", hostProcess.ProcessName);
|
2010-10-17 10:22:48 -07:00
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
Logger.Fatal(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void ShutDown()
|
|
|
|
{
|
|
|
|
Logger.Info("Shutting down application.");
|
|
|
|
Process.GetCurrentProcess().Kill();
|
|
|
|
}
|
2010-09-22 20:19:47 -07:00
|
|
|
}
|
2010-09-27 22:58:49 -07:00
|
|
|
}
|