2011-10-23 07:26:43 +02:00
|
|
|
|
using System;
|
2011-11-14 04:09:34 +01:00
|
|
|
|
using System.IO;
|
2011-11-13 21:31:02 +01:00
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-05-11 01:53:50 +02:00
|
|
|
|
using NzbDrone.Common.Composition;
|
2011-11-13 21:31:02 +01:00
|
|
|
|
using NzbDrone.Update.Providers;
|
2011-10-23 07:26:43 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Update
|
|
|
|
|
{
|
2011-11-13 21:31:02 +01:00
|
|
|
|
public class Program
|
2011-10-23 07:26:43 +02:00
|
|
|
|
{
|
2011-11-13 21:31:02 +01:00
|
|
|
|
private readonly UpdateProvider _updateProvider;
|
2013-05-11 01:53:50 +02:00
|
|
|
|
private readonly IProcessProvider _processProvider;
|
|
|
|
|
private static IContainer _container;
|
2011-11-13 21:31:02 +01:00
|
|
|
|
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
public Program(UpdateProvider updateProvider, IProcessProvider processProvider)
|
2011-11-13 21:31:02 +01:00
|
|
|
|
{
|
|
|
|
|
_updateProvider = updateProvider;
|
|
|
|
|
_processProvider = processProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Starting NzbDrone Update Client");
|
2013-04-20 02:05:48 +02:00
|
|
|
|
|
|
|
|
|
_container = UpdateContainerBuilder.Build();
|
2013-02-28 07:59:08 +01:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
logger.Info("Updating NzbDrone to version {0}", _container.Resolve<IEnvironmentProvider>().Version);
|
2013-01-04 03:29:55 +01:00
|
|
|
|
_container.Resolve<Program>().Start(args);
|
2011-11-13 21:31:02 +01:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2011-11-13 21:42:12 +01:00
|
|
|
|
logger.FatalException("An error has occurred while applying update package.", e);
|
2011-11-13 21:31:02 +01:00
|
|
|
|
}
|
2011-11-21 03:13:10 +01:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 21:31:02 +01:00
|
|
|
|
public void Start(string[] args)
|
|
|
|
|
{
|
|
|
|
|
int processId = ParseProcessId(args);
|
|
|
|
|
|
2011-12-12 07:52:58 +01:00
|
|
|
|
var exeFileInfo = new FileInfo(_processProvider.GetProcessById(processId).StartPath);
|
|
|
|
|
string targetFolder = exeFileInfo.Directory.FullName;
|
2011-11-13 21:31:02 +01:00
|
|
|
|
|
2011-12-12 07:52:58 +01:00
|
|
|
|
logger.Info("Starting update process. Target Path:{0}", targetFolder);
|
|
|
|
|
_updateProvider.Start(targetFolder);
|
2011-11-13 21:31:02 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int ParseProcessId(string[] args)
|
|
|
|
|
{
|
2011-12-12 07:52:58 +01:00
|
|
|
|
int id;
|
2011-11-13 21:31:02 +01:00
|
|
|
|
if (!Int32.TryParse(args[0], out id) || id <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentOutOfRangeException("Invalid process id: " + args[0]);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-12 07:52:58 +01:00
|
|
|
|
logger.Debug("NzbDrone processId:{0}", id);
|
2011-11-13 21:31:02 +01:00
|
|
|
|
return id;
|
|
|
|
|
}
|
2011-10-23 07:26:43 +02:00
|
|
|
|
}
|
|
|
|
|
}
|