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

129 lines
4.1 KiB
C#
Raw Normal View History

2013-03-04 05:43:06 +00:00
using MediaBrowser.Common.Configuration;
2013-02-24 21:53:54 +00:00
using MediaBrowser.Common.ScheduledTasks;
2013-02-21 01:33:05 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2013-02-24 21:53:54 +00:00
namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Deletes old cache files
/// </summary>
public class DeleteCacheFileTask : IScheduledTask
2013-02-21 01:33:05 +00:00
{
/// <summary>
2013-03-04 05:43:06 +00:00
/// Gets or sets the application paths.
/// </summary>
2013-03-04 05:43:06 +00:00
/// <value>The application paths.</value>
private IApplicationPaths ApplicationPaths { get; set; }
2013-02-21 01:33:05 +00:00
/// <summary>
2013-02-23 07:57:11 +00:00
/// Initializes a new instance of the <see cref="DeleteCacheFileTask" /> class.
/// </summary>
2013-03-04 05:43:06 +00:00
/// <param name="appPaths">The app paths.</param>
public DeleteCacheFileTask(IApplicationPaths appPaths)
2013-02-23 07:57:11 +00:00
{
2013-03-04 05:43:06 +00:00
ApplicationPaths = appPaths;
2013-02-23 07:57:11 +00:00
}
/// <summary>
2013-02-21 01:33:05 +00:00
/// Creates the triggers that define when the task will run
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 01:33:05 +00:00
{
2013-08-28 02:31:39 +00:00
// Until we can vary these default triggers per server and MBT, we need something that makes sense for both
return new ITaskTrigger[] {
// At startup
new StartupTrigger (),
2013-02-21 01:33:05 +00:00
2013-08-28 02:31:39 +00:00
// Every so often
new IntervalTrigger { Interval = TimeSpan.FromHours(24)}
};
2013-02-21 01:33:05 +00: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 01:33:05 +00:00
{
return Task.Run(() =>
{
2013-07-27 22:41:51 +00:00
var minDateModified = DateTime.UtcNow.AddDays(-30);
2013-02-21 01:33:05 +00:00
2013-03-04 05:43:06 +00:00
DeleteCacheFilesFromDirectory(cancellationToken, ApplicationPaths.CachePath, minDateModified, progress);
2013-02-21 01:33:05 +00: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 04:23:06 +00:00
private void DeleteCacheFilesFromDirectory(CancellationToken cancellationToken, string directory, DateTime minDateModified, IProgress<double> progress)
2013-02-21 01:33:05 +00:00
{
var filesToDelete = new DirectoryInfo(directory).EnumerateFileSystemInfos("*", SearchOption.AllDirectories)
.Where(f => !f.Attributes.HasFlag(FileAttributes.Directory) && f.LastWriteTimeUtc < minDateModified)
.ToList();
var index = 0;
foreach (var file in filesToDelete)
{
double percent = index;
percent /= filesToDelete.Count;
2013-02-22 04:23:06 +00:00
progress.Report(100 * percent);
2013-02-21 01:33:05 +00:00
cancellationToken.ThrowIfCancellationRequested();
File.Delete(file.FullName);
index++;
}
2013-02-22 04:23:06 +00:00
progress.Report(100);
2013-02-21 01:33:05 +00:00
}
/// <summary>
/// Gets the name of the task
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 01:33:05 +00:00
{
get { return "Cache file cleanup"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 01:33:05 +00: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 01:33:05 +00:00
{
get
{
return "Maintenance";
}
}
}
}