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