| | 1 | | using System; |
| | 2 | | using System.Globalization; |
| | 3 | | using System.IO; |
| | 4 | | using System.Threading; |
| | 5 | | using System.Threading.Tasks; |
| | 6 | | using Jellyfin.Database.Implementations; |
| | 7 | | using MediaBrowser.Common.Configuration; |
| | 8 | | using Microsoft.Data.Sqlite; |
| | 9 | | using Microsoft.EntityFrameworkCore; |
| | 10 | | using Microsoft.Extensions.Logging; |
| | 11 | |
|
| | 12 | | namespace Jellyfin.Database.Providers.Sqlite; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Configures jellyfin to use an SQLite database. |
| | 16 | | /// </summary> |
| | 17 | | [JellyfinDatabaseProviderKey("Jellyfin-SQLite")] |
| | 18 | | public sealed class SqliteDatabaseProvider : IJellyfinDatabaseProvider |
| | 19 | | { |
| | 20 | | private const string BackupFolderName = "SQLiteBackups"; |
| | 21 | | private readonly IApplicationPaths _applicationPaths; |
| | 22 | | private readonly ILogger<SqliteDatabaseProvider> _logger; |
| | 23 | |
|
| | 24 | | /// <summary> |
| | 25 | | /// Initializes a new instance of the <see cref="SqliteDatabaseProvider"/> class. |
| | 26 | | /// </summary> |
| | 27 | | /// <param name="applicationPaths">Service to construct the fallback when the old data path configuration is used.</ |
| | 28 | | /// <param name="logger">A logger.</param> |
| | 29 | | public SqliteDatabaseProvider(IApplicationPaths applicationPaths, ILogger<SqliteDatabaseProvider> logger) |
| | 30 | | { |
| 22 | 31 | | _applicationPaths = applicationPaths; |
| 22 | 32 | | _logger = logger; |
| 22 | 33 | | } |
| | 34 | |
|
| | 35 | | /// <inheritdoc/> |
| | 36 | | public IDbContextFactory<JellyfinDbContext>? DbContextFactory { get; set; } |
| | 37 | |
|
| | 38 | | /// <inheritdoc/> |
| | 39 | | public void Initialise(DbContextOptionsBuilder options) |
| | 40 | | { |
| 21 | 41 | | options.UseSqlite( |
| 21 | 42 | | $"Filename={Path.Combine(_applicationPaths.DataPath, "jellyfin.db")};Pooling=false", |
| 21 | 43 | | sqLiteOptions => sqLiteOptions.MigrationsAssembly(GetType().Assembly)); |
| 21 | 44 | | } |
| | 45 | |
|
| | 46 | | /// <inheritdoc/> |
| | 47 | | public async Task RunScheduledOptimisation(CancellationToken cancellationToken) |
| | 48 | | { |
| | 49 | | var context = await DbContextFactory!.CreateDbContextAsync(cancellationToken).ConfigureAwait(false); |
| | 50 | | await using (context.ConfigureAwait(false)) |
| | 51 | | { |
| | 52 | | if (context.Database.IsSqlite()) |
| | 53 | | { |
| | 54 | | await context.Database.ExecuteSqlRawAsync("PRAGMA optimize", cancellationToken).ConfigureAwait(false); |
| | 55 | | await context.Database.ExecuteSqlRawAsync("VACUUM", cancellationToken).ConfigureAwait(false); |
| | 56 | | _logger.LogInformation("jellyfin.db optimized successfully!"); |
| | 57 | | } |
| | 58 | | else |
| | 59 | | { |
| | 60 | | _logger.LogInformation("This database doesn't support optimization"); |
| | 61 | | } |
| | 62 | | } |
| | 63 | | } |
| | 64 | |
|
| | 65 | | /// <inheritdoc/> |
| | 66 | | public void OnModelCreating(ModelBuilder modelBuilder) |
| | 67 | | { |
| 2 | 68 | | modelBuilder.SetDefaultDateTimeKind(DateTimeKind.Utc); |
| 2 | 69 | | } |
| | 70 | |
|
| | 71 | | /// <inheritdoc/> |
| | 72 | | public async Task RunShutdownTask(CancellationToken cancellationToken) |
| | 73 | | { |
| | 74 | | // Run before disposing the application |
| | 75 | | var context = await DbContextFactory!.CreateDbContextAsync(cancellationToken).ConfigureAwait(false); |
| | 76 | | await using (context.ConfigureAwait(false)) |
| | 77 | | { |
| | 78 | | await context.Database.ExecuteSqlRawAsync("PRAGMA optimize", cancellationToken).ConfigureAwait(false); |
| | 79 | | } |
| | 80 | |
|
| | 81 | | SqliteConnection.ClearAllPools(); |
| | 82 | | } |
| | 83 | |
|
| | 84 | | /// <inheritdoc/> |
| | 85 | | public void ConfigureConventions(ModelConfigurationBuilder configurationBuilder) |
| | 86 | | { |
| 2 | 87 | | configurationBuilder.Conventions.Add(_ => new DoNotUseReturningClauseConvention()); |
| 2 | 88 | | } |
| | 89 | |
|
| | 90 | | /// <inheritdoc /> |
| | 91 | | public Task<string> MigrationBackupFast(CancellationToken cancellationToken) |
| | 92 | | { |
| 0 | 93 | | var key = DateTime.UtcNow.ToString("yyyyMMddhhmmss", CultureInfo.InvariantCulture); |
| 0 | 94 | | var path = Path.Combine(_applicationPaths.DataPath, "jellyfin.db"); |
| 0 | 95 | | var backupFile = Path.Combine(_applicationPaths.DataPath, BackupFolderName); |
| 0 | 96 | | if (!Directory.Exists(backupFile)) |
| | 97 | | { |
| 0 | 98 | | Directory.CreateDirectory(backupFile); |
| | 99 | | } |
| | 100 | |
|
| 0 | 101 | | backupFile = Path.Combine(_applicationPaths.DataPath, $"{key}_jellyfin.db"); |
| 0 | 102 | | File.Copy(path, backupFile); |
| 0 | 103 | | return Task.FromResult(key); |
| | 104 | | } |
| | 105 | |
|
| | 106 | | /// <inheritdoc /> |
| | 107 | | public Task RestoreBackupFast(string key, CancellationToken cancellationToken) |
| | 108 | | { |
| 0 | 109 | | var path = Path.Combine(_applicationPaths.DataPath, "jellyfin.db"); |
| 0 | 110 | | var backupFile = Path.Combine(_applicationPaths.DataPath, BackupFolderName, $"{key}_jellyfin.db"); |
| | 111 | |
|
| 0 | 112 | | if (!File.Exists(backupFile)) |
| | 113 | | { |
| 0 | 114 | | _logger.LogCritical("Tried to restore a backup that does not exist."); |
| 0 | 115 | | return Task.CompletedTask; |
| | 116 | | } |
| | 117 | |
|
| 0 | 118 | | File.Copy(backupFile, path, true); |
| 0 | 119 | | return Task.CompletedTask; |
| | 120 | | } |
| | 121 | | } |