jellyfin/MediaBrowser.Common.Implementations/ScheduledTasks/Tasks/DeleteCacheFileTask.cs

207 lines
6.4 KiB
C#
Raw Normal View History

2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.Configuration;
2013-02-24 22:53:54 +01:00
using MediaBrowser.Common.ScheduledTasks;
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2013-02-21 02:33:05 +01:00
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Deletes old cache files
/// </summary>
2013-12-26 15:20:45 +01:00
public class DeleteCacheFileTask : IScheduledTask, IConfigurableScheduledTask
2013-02-21 02:33:05 +01:00
{
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets or sets the application paths.
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The application paths.</value>
private IApplicationPaths ApplicationPaths { get; set; }
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
2014-05-07 04:28:19 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
2013-02-23 08:57:11 +01:00
/// Initializes a new instance of the <see cref="DeleteCacheFileTask" /> class.
/// </summary>
public DeleteCacheFileTask(IApplicationPaths appPaths, ILogger logger, IFileSystem fileSystem)
2013-02-23 08:57:11 +01:00
{
2013-03-04 06:43:06 +01:00
ApplicationPaths = appPaths;
_logger = logger;
_fileSystem = fileSystem;
2013-02-23 08:57:11 +01:00
}
/// <summary>
2013-02-21 02:33:05 +01:00
/// Creates the triggers that define when the task will run
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
2013-08-28 04:31:39 +02:00
// Until we can vary these default triggers per server and MBT, we need something that makes sense for both
return new ITaskTrigger[] {
// Every so often
new IntervalTrigger { Interval = TimeSpan.FromHours(24)}
};
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Returns the task to be executed
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="progress">The progress.</param>
/// <returns>Task.</returns>
public Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
var minDateModified = DateTime.UtcNow.AddDays(-30);
2013-02-21 02:33:05 +01:00
try
{
2013-03-04 06:43:06 +01:00
DeleteCacheFilesFromDirectory(cancellationToken, ApplicationPaths.CachePath, minDateModified, progress);
}
catch (DirectoryNotFoundException)
{
// No biggie here. Nothing to delete
}
progress.Report(90);
2016-07-23 07:03:16 +02:00
minDateModified = DateTime.UtcNow.AddDays(-1);
2014-05-07 04:28:19 +02:00
try
{
2014-05-07 04:28:19 +02:00
DeleteCacheFilesFromDirectory(cancellationToken, ApplicationPaths.TempDirectory, minDateModified, progress);
}
catch (DirectoryNotFoundException)
{
// No biggie here. Nothing to delete
}
return Task.FromResult(true);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Deletes the cache files from directory with a last write time less than a given date
/// </summary>
/// <param name="cancellationToken">The task cancellation token.</param>
/// <param name="directory">The directory.</param>
/// <param name="minDateModified">The min date modified.</param>
/// <param name="progress">The progress.</param>
2013-02-22 05:23:06 +01:00
private void DeleteCacheFilesFromDirectory(CancellationToken cancellationToken, string directory, DateTime minDateModified, IProgress<double> progress)
2013-02-21 02:33:05 +01:00
{
2015-09-13 23:32:02 +02:00
var filesToDelete = _fileSystem.GetFiles(directory, true)
.Where(f => _fileSystem.GetLastWriteTimeUtc(f) < minDateModified)
2013-02-21 02:33:05 +01:00
.ToList();
var index = 0;
foreach (var file in filesToDelete)
{
double percent = index;
percent /= filesToDelete.Count;
2013-02-22 05:23:06 +01:00
progress.Report(100 * percent);
2013-02-21 02:33:05 +01:00
cancellationToken.ThrowIfCancellationRequested();
DeleteFile(file.FullName);
2013-02-21 02:33:05 +01:00
index++;
}
2015-03-08 06:37:48 +01:00
DeleteEmptyFolders(directory);
2013-02-22 05:23:06 +01:00
progress.Report(100);
2013-02-21 02:33:05 +01:00
}
2015-09-13 23:32:02 +02:00
private void DeleteEmptyFolders(string parent)
2015-03-08 06:37:48 +01:00
{
2015-09-24 19:50:49 +02:00
foreach (var directory in _fileSystem.GetDirectoryPaths(parent))
2015-03-08 06:37:48 +01:00
{
DeleteEmptyFolders(directory);
2015-09-24 19:50:49 +02:00
if (!_fileSystem.GetFileSystemEntryPaths(directory).Any())
2015-03-08 06:37:48 +01:00
{
2015-11-20 18:55:38 +01:00
try
{
_fileSystem.DeleteDirectory(directory, false);
}
2015-11-24 19:46:23 +01:00
catch (UnauthorizedAccessException ex)
{
_logger.ErrorException("Error deleting directory {0}", ex, directory);
}
2015-11-20 18:55:38 +01:00
catch (IOException ex)
{
_logger.ErrorException("Error deleting directory {0}", ex, directory);
}
2015-03-08 06:37:48 +01:00
}
}
}
private void DeleteFile(string path)
{
try
{
_fileSystem.DeleteFile(path);
}
2015-11-24 19:46:23 +01:00
catch (UnauthorizedAccessException ex)
{
_logger.ErrorException("Error deleting file {0}", ex, path);
}
catch (IOException ex)
{
_logger.ErrorException("Error deleting file {0}", ex, path);
}
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the name of the task
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 02:33:05 +01:00
{
get { return "Cache file cleanup"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 02:33:05 +01:00
{
get { return "Deletes cache files no longer needed by the system"; }
}
/// <summary>
/// Gets the category.
/// </summary>
/// <value>The category.</value>
public string Category
2013-02-21 02:33:05 +01:00
{
get
{
return "Maintenance";
}
}
2013-12-26 15:20:45 +01:00
/// <summary>
/// Gets a value indicating whether this instance is hidden.
/// </summary>
/// <value><c>true</c> if this instance is hidden; otherwise, <c>false</c>.</value>
public bool IsHidden
{
get { return true; }
}
public bool IsEnabled
{
get { return true; }
}
2013-02-21 02:33:05 +01:00
}
}