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

106 lines
3.2 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;
2013-02-23 08:57:11 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
2013-02-24 22:53:54 +01:00
namespace MediaBrowser.Common.Implementations.ScheduledTasks.Tasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class ReloadLoggerFileTask
/// </summary>
2013-12-26 15:20:45 +01:00
public class ReloadLoggerFileTask : IScheduledTask, IConfigurableScheduledTask
2013-02-21 02:33:05 +01:00
{
/// <summary>
2013-02-26 18:21:18 +01:00
/// Gets or sets the log manager.
/// </summary>
2013-02-26 18:21:18 +01:00
/// <value>The log manager.</value>
private ILogManager LogManager { get; set; }
/// <summary>
2013-03-04 06:43:06 +01:00
/// Gets or sets the configuration manager.
2013-02-26 18:21:18 +01:00
/// </summary>
2013-03-04 06:43:06 +01:00
/// <value>The configuration manager.</value>
private IConfigurationManager ConfigurationManager { get; set; }
2013-02-23 08:57:11 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ReloadLoggerFileTask" /> class.
/// </summary>
2013-02-26 18:21:18 +01:00
/// <param name="logManager">The logManager.</param>
2013-03-04 06:43:06 +01:00
/// <param name="configurationManager">The configuration manager.</param>
public ReloadLoggerFileTask(ILogManager logManager, IConfigurationManager configurationManager)
2013-02-23 08:57:11 +01:00
{
2013-02-26 18:21:18 +01:00
LogManager = logManager;
2013-03-04 06:43:06 +01:00
ConfigurationManager = configurationManager;
2013-02-23 08:57:11 +01:00
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the default triggers.
/// </summary>
/// <returns>IEnumerable{BaseTaskTrigger}.</returns>
public IEnumerable<ITaskTrigger> GetDefaultTriggers()
2013-02-21 02:33:05 +01:00
{
var trigger = new DailyTrigger { TimeOfDay = TimeSpan.FromHours(0) }; //12am
return new[] { trigger };
}
/// <summary>
/// Executes the internal.
/// </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
{
cancellationToken.ThrowIfCancellationRequested();
2013-02-22 05:23:06 +01:00
progress.Report(0);
2013-02-26 18:21:18 +01:00
LogManager.ReloadLogger(ConfigurationManager.CommonConfiguration.EnableDebugLevelLogging
? LogSeverity.Debug
: LogSeverity.Info);
return Task.FromResult(true);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name
2013-02-21 02:33:05 +01:00
{
get { return "Start new log file"; }
}
/// <summary>
/// Gets the description.
/// </summary>
/// <value>The description.</value>
public string Description
2013-02-21 02:33:05 +01:00
{
get { return "Moves logging to a new file to help reduce log file sizes."; }
}
/// <summary>
/// Gets the category.
/// </summary>
/// <value>The category.</value>
public string Category
{
get { return "Application"; }
}
2013-12-26 15:20:45 +01:00
public bool IsHidden
{
2014-07-30 05:31:35 +02:00
get { return true; }
2013-12-26 15:20:45 +01:00
}
public bool IsEnabled
{
get { return true; }
}
2013-02-21 02:33:05 +01:00
}
}