2011-04-27 08:34:53 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2011-05-19 20:47:07 -07:00
|
|
|
using System.IO;
|
2011-06-13 18:23:04 -07:00
|
|
|
using Ninject;
|
2011-05-19 20:47:07 -07:00
|
|
|
using NLog;
|
2011-11-12 20:07:06 -08:00
|
|
|
using NzbDrone.Common;
|
2011-05-19 20:47:07 -07:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-03-08 23:40:48 -08:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-17 08:27:18 -07:00
|
|
|
using PetaPoco;
|
2011-03-08 23:40:48 -08:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
2011-04-08 08:10:46 -07:00
|
|
|
public class RootDirProvider
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2011-06-17 08:27:18 -07:00
|
|
|
private readonly IDatabase _database;
|
2011-05-19 20:47:07 -07:00
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
2011-03-08 23:40:48 -08:00
|
|
|
|
2011-06-13 18:23:04 -07:00
|
|
|
[Inject]
|
2011-06-17 08:27:18 -07:00
|
|
|
public RootDirProvider(IDatabase database, SeriesProvider seriesProvider, DiskProvider diskProvider)
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2011-06-17 08:27:18 -07:00
|
|
|
_database = database;
|
2011-05-19 20:47:07 -07:00
|
|
|
_diskProvider = diskProvider;
|
|
|
|
_seriesProvider = seriesProvider;
|
2011-03-08 23:40:48 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#region IRootDirProvider
|
|
|
|
|
2011-04-08 08:10:46 -07:00
|
|
|
public virtual List<RootDir> GetAll()
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2011-06-17 08:27:18 -07:00
|
|
|
return _database.Fetch<RootDir>();
|
2011-03-08 23:40:48 -08:00
|
|
|
}
|
|
|
|
|
2012-01-18 19:57:27 -08:00
|
|
|
public virtual void Add(RootDir rootDir)
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2012-01-18 21:04:55 -08:00
|
|
|
if (String.IsNullOrWhiteSpace(rootDir.Path) || !Path.IsPathRooted(rootDir.Path))
|
|
|
|
throw new ArgumentException("Invalid path");
|
|
|
|
|
|
|
|
if (!_diskProvider.FolderExists(rootDir.Path))
|
|
|
|
throw new DirectoryNotFoundException("Can't add root directory that doesn't exist.");
|
|
|
|
|
|
|
|
if (GetAll().Exists(r => DiskProvider.PathEquals(r.Path, rootDir.Path)))
|
|
|
|
throw new InvalidOperationException("Root directory already exist.");
|
|
|
|
|
2012-01-18 19:57:27 -08:00
|
|
|
_database.Insert(rootDir);
|
2011-03-08 23:40:48 -08:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
|
2011-04-08 08:10:46 -07:00
|
|
|
public virtual void Remove(int rootDirId)
|
2011-03-08 23:40:48 -08:00
|
|
|
{
|
2011-06-17 08:27:18 -07:00
|
|
|
_database.Delete<RootDir>(rootDirId);
|
2011-03-08 23:40:48 -08:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
|
2011-05-19 20:47:07 -07:00
|
|
|
public List<String> GetUnmappedFolders(string path)
|
|
|
|
{
|
|
|
|
Logger.Debug("Generating list of unmapped folders");
|
|
|
|
if (String.IsNullOrEmpty(path))
|
|
|
|
throw new ArgumentException("Invalid path provided", "path");
|
|
|
|
|
|
|
|
var results = new List<String>();
|
|
|
|
|
|
|
|
if (!_diskProvider.FolderExists(path))
|
|
|
|
{
|
|
|
|
Logger.Debug("Path supplied does not exist: {0}", path);
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (string seriesFolder in _diskProvider.GetDirectories(path))
|
|
|
|
{
|
2011-12-10 11:22:47 -08:00
|
|
|
if (!_seriesProvider.SeriesPathExists(seriesFolder))
|
2011-07-27 15:59:48 -07:00
|
|
|
{
|
2011-12-10 11:22:47 -08:00
|
|
|
results.Add(seriesFolder.Normalize());
|
2011-07-27 15:59:48 -07:00
|
|
|
}
|
2011-05-19 20:47:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Logger.Debug("{0} unmapped folders detected.", results.Count);
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2011-10-15 11:54:39 -07:00
|
|
|
public virtual string GetMostFreeRootDir()
|
|
|
|
{
|
|
|
|
ulong maxSize = 0;
|
|
|
|
var maxPath = String.Empty;
|
|
|
|
|
|
|
|
var rootDirs = GetAll();
|
|
|
|
|
|
|
|
foreach (var rootDir in rootDirs)
|
|
|
|
{
|
2011-11-12 11:53:36 -08:00
|
|
|
rootDir.FreeSpace = _diskProvider.FreeDiskSpace(new DirectoryInfo(rootDir.Path));
|
2011-10-15 11:54:39 -07:00
|
|
|
if (rootDir.FreeSpace > maxSize)
|
|
|
|
{
|
|
|
|
maxPath = rootDir.Path;
|
|
|
|
maxSize = rootDir.FreeSpace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return maxPath;
|
|
|
|
}
|
|
|
|
|
2011-03-08 23:40:48 -08:00
|
|
|
#endregion
|
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|