| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Threading; |
| | 4 | | using System.Threading.Tasks; |
| | 5 | | using Jellyfin.Database.Implementations; |
| | 6 | | using MediaBrowser.Model.Globalization; |
| | 7 | | using MediaBrowser.Model.Tasks; |
| | 8 | | using Microsoft.EntityFrameworkCore; |
| | 9 | | using Microsoft.Extensions.Logging; |
| | 10 | |
|
| | 11 | | namespace Emby.Server.Implementations.ScheduledTasks.Tasks |
| | 12 | | { |
| | 13 | | /// <summary> |
| | 14 | | /// Optimizes Jellyfin's database by issuing a VACUUM command. |
| | 15 | | /// </summary> |
| | 16 | | public class OptimizeDatabaseTask : IScheduledTask, IConfigurableScheduledTask |
| | 17 | | { |
| | 18 | | private readonly ILogger<OptimizeDatabaseTask> _logger; |
| | 19 | | private readonly ILocalizationManager _localization; |
| | 20 | | private readonly IDbContextFactory<JellyfinDbContext> _provider; |
| | 21 | | private readonly IJellyfinDatabaseProvider _jellyfinDatabaseProvider; |
| | 22 | |
|
| | 23 | | /// <summary> |
| | 24 | | /// Initializes a new instance of the <see cref="OptimizeDatabaseTask" /> class. |
| | 25 | | /// </summary> |
| | 26 | | /// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param> |
| | 27 | | /// <param name="localization">Instance of the <see cref="ILocalizationManager"/> interface.</param> |
| | 28 | | /// <param name="provider">Instance of the <see cref="IDbContextFactory{JellyfinDbContext}"/> interface.</param> |
| | 29 | | /// <param name="jellyfinDatabaseProvider">Instance of the JellyfinDatabaseProvider that can be used for provide |
| | 30 | | public OptimizeDatabaseTask( |
| | 31 | | ILogger<OptimizeDatabaseTask> logger, |
| | 32 | | ILocalizationManager localization, |
| | 33 | | IDbContextFactory<JellyfinDbContext> provider, |
| | 34 | | IJellyfinDatabaseProvider jellyfinDatabaseProvider) |
| | 35 | | { |
| 21 | 36 | | _logger = logger; |
| 21 | 37 | | _localization = localization; |
| 21 | 38 | | _provider = provider; |
| 21 | 39 | | _jellyfinDatabaseProvider = jellyfinDatabaseProvider; |
| 21 | 40 | | } |
| | 41 | |
|
| | 42 | | /// <inheritdoc /> |
| 21 | 43 | | public string Name => _localization.GetLocalizedString("TaskOptimizeDatabase"); |
| | 44 | |
|
| | 45 | | /// <inheritdoc /> |
| 0 | 46 | | public string Description => _localization.GetLocalizedString("TaskOptimizeDatabaseDescription"); |
| | 47 | |
|
| | 48 | | /// <inheritdoc /> |
| 0 | 49 | | public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory"); |
| | 50 | |
|
| | 51 | | /// <inheritdoc /> |
| 0 | 52 | | public string Key => "OptimizeDatabaseTask"; |
| | 53 | |
|
| | 54 | | /// <inheritdoc /> |
| 0 | 55 | | public bool IsHidden => false; |
| | 56 | |
|
| | 57 | | /// <inheritdoc /> |
| 0 | 58 | | public bool IsEnabled => true; |
| | 59 | |
|
| | 60 | | /// <inheritdoc /> |
| 0 | 61 | | public bool IsLogged => true; |
| | 62 | |
|
| | 63 | | /// <inheritdoc /> |
| | 64 | | public IEnumerable<TaskTriggerInfo> GetDefaultTriggers() |
| | 65 | | { |
| 21 | 66 | | return |
| 21 | 67 | | [ |
| 21 | 68 | | // Every so often |
| 21 | 69 | | new TaskTriggerInfo { Type = TaskTriggerInfoType.IntervalTrigger, IntervalTicks = TimeSpan.FromHours(24) |
| 21 | 70 | | ]; |
| | 71 | | } |
| | 72 | |
|
| | 73 | | /// <inheritdoc /> |
| | 74 | | public async Task ExecuteAsync(IProgress<double> progress, CancellationToken cancellationToken) |
| | 75 | | { |
| | 76 | | _logger.LogInformation("Optimizing and vacuuming jellyfin.db..."); |
| | 77 | |
|
| | 78 | | try |
| | 79 | | { |
| | 80 | | await _jellyfinDatabaseProvider.RunScheduledOptimisation(cancellationToken).ConfigureAwait(false); |
| | 81 | | } |
| | 82 | | catch (Exception e) |
| | 83 | | { |
| | 84 | | _logger.LogError(e, "Error while optimizing jellyfin.db"); |
| | 85 | | } |
| | 86 | | } |
| | 87 | | } |
| | 88 | | } |