< Summary - Jellyfin

Information
Class: Emby.Server.Implementations.ScheduledTasks.Tasks.OptimizeDatabaseTask
Assembly: Emby.Server.Implementations
File(s): /srv/git/jellyfin/Emby.Server.Implementations/ScheduledTasks/Tasks/OptimizeDatabaseTask.cs
Line coverage
64%
Covered lines: 11
Uncovered lines: 6
Coverable lines: 17
Total lines: 88
Line coverage: 64.7%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor(...)100%11100%
get_Name()100%11100%
get_Description()100%210%
get_Category()100%210%
get_Key()100%210%
get_IsHidden()100%210%
get_IsEnabled()100%210%
get_IsLogged()100%210%
GetDefaultTriggers()100%11100%

File(s)

/srv/git/jellyfin/Emby.Server.Implementations/ScheduledTasks/Tasks/OptimizeDatabaseTask.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Threading;
 4using System.Threading.Tasks;
 5using Jellyfin.Database.Implementations;
 6using MediaBrowser.Model.Globalization;
 7using MediaBrowser.Model.Tasks;
 8using Microsoft.EntityFrameworkCore;
 9using Microsoft.Extensions.Logging;
 10
 11namespace 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        {
 2136            _logger = logger;
 2137            _localization = localization;
 2138            _provider = provider;
 2139            _jellyfinDatabaseProvider = jellyfinDatabaseProvider;
 2140        }
 41
 42        /// <inheritdoc />
 2143        public string Name => _localization.GetLocalizedString("TaskOptimizeDatabase");
 44
 45        /// <inheritdoc />
 046        public string Description => _localization.GetLocalizedString("TaskOptimizeDatabaseDescription");
 47
 48        /// <inheritdoc />
 049        public string Category => _localization.GetLocalizedString("TasksMaintenanceCategory");
 50
 51        /// <inheritdoc />
 052        public string Key => "OptimizeDatabaseTask";
 53
 54        /// <inheritdoc />
 055        public bool IsHidden => false;
 56
 57        /// <inheritdoc />
 058        public bool IsEnabled => true;
 59
 60        /// <inheritdoc />
 061        public bool IsLogged => true;
 62
 63        /// <inheritdoc />
 64        public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
 65        {
 2166            return
 2167            [
 2168                // Every so often
 2169                new TaskTriggerInfo { Type = TaskTriggerInfoType.IntervalTrigger, IntervalTicks = TimeSpan.FromHours(24)
 2170            ];
 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}