// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using osu.Framework.Logging; using osu.Framework.Statistics; using osu.Game.Beatmaps; using osu.Game.Configuration; using osu.Game.IO; using osu.Game.Rulesets; using osu.Game.Scoring; using osu.Game.Skinning; using SQLitePCL; using LogLevel = Microsoft.Extensions.Logging.LogLevel; namespace osu.Game.Database { public class OsuDbContext : DbContext { public DbSet EFBeatmapInfo { get; set; } public DbSet BeatmapDifficulty { get; set; } public DbSet BeatmapMetadata { get; set; } public DbSet EFBeatmapSetInfo { get; set; } public DbSet FileInfo { get; set; } public DbSet RulesetInfo { get; set; } public DbSet SkinInfo { get; set; } public DbSet ScoreInfo { get; set; } // migrated to realm public DbSet DatabasedSetting { get; set; } private readonly string connectionString; private static readonly Lazy logger = new Lazy(() => new OsuDbLoggerFactory()); private static readonly GlobalStatistic contexts = GlobalStatistics.Get("Database", "Contexts"); static OsuDbContext() { // required to initialise native SQLite libraries on some platforms. Batteries_V2.Init(); // https://github.com/aspnet/EntityFrameworkCore/issues/9994#issuecomment-508588678 raw.sqlite3_config(2 /*SQLITE_CONFIG_MULTITHREAD*/); } /// /// Create a new in-memory OsuDbContext instance. /// public OsuDbContext() : this("DataSource=:memory:") { // required for tooling (see https://wildermuth.com/2017/07/06/Program-cs-in-ASP-NET-Core-2-0). Migrate(); } /// /// Create a new OsuDbContext instance. /// /// A valid SQLite connection string. public OsuDbContext(string connectionString) { this.connectionString = connectionString; var connection = Database.GetDbConnection(); try { connection.Open(); using (var cmd = connection.CreateCommand()) { cmd.CommandText = "PRAGMA journal_mode=WAL;"; cmd.ExecuteNonQuery(); cmd.CommandText = "PRAGMA foreign_keys=OFF;"; cmd.ExecuteNonQuery(); } } catch { connection.Close(); throw; } contexts.Value++; } ~OsuDbContext() { // DbContext does not contain a finalizer (https://github.com/aspnet/EntityFrameworkCore/issues/8872) // This is used to clean up previous contexts when fresh contexts are exposed via DatabaseContextFactory Dispose(); } private bool isDisposed; public override void Dispose() { if (isDisposed) return; isDisposed = true; base.Dispose(); contexts.Value--; GC.SuppressFinalize(this); } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { base.OnConfiguring(optionsBuilder); optionsBuilder // this is required for the time being due to the way we are querying in places like BeatmapStore. // if we ever move to having consumers file their own .Includes, or get eager loading support, this could be re-enabled. .UseSqlite(connectionString, sqliteOptions => sqliteOptions.CommandTimeout(10)) .UseLoggerFactory(logger.Value); } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); modelBuilder.Entity().HasIndex(b => b.OnlineID).IsUnique(); modelBuilder.Entity().HasIndex(b => b.MD5Hash); modelBuilder.Entity().HasIndex(b => b.Hash); modelBuilder.Entity().HasIndex(b => b.OnlineID).IsUnique(); modelBuilder.Entity().HasIndex(b => b.DeletePending); modelBuilder.Entity().HasIndex(b => b.Hash).IsUnique(); modelBuilder.Entity().HasIndex(b => b.Hash).IsUnique(); modelBuilder.Entity().HasIndex(b => b.DeletePending); modelBuilder.Entity().HasMany(s => s.Files).WithOne(f => f.SkinInfo); modelBuilder.Entity().HasIndex(b => new { b.RulesetID, b.Variant }); modelBuilder.Entity().HasIndex(b => b.Hash).IsUnique(); modelBuilder.Entity().HasIndex(b => b.ReferenceCount); modelBuilder.Entity().HasIndex(b => b.Available); modelBuilder.Entity().HasIndex(b => b.ShortName).IsUnique(); modelBuilder.Entity().HasOne(b => b.BaseDifficulty); modelBuilder.Entity().HasIndex(b => b.OnlineID).IsUnique(); } private class OsuDbLoggerFactory : ILoggerFactory { #region Disposal public void Dispose() { } #endregion public ILogger CreateLogger(string categoryName) => new OsuDbLogger(); public void AddProvider(ILoggerProvider provider) { // no-op. called by tooling. } private class OsuDbLogger : ILogger { public void Log(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func formatter) { if (logLevel < LogLevel.Information) return; Framework.Logging.LogLevel frameworkLogLevel; switch (logLevel) { default: frameworkLogLevel = Framework.Logging.LogLevel.Debug; break; case LogLevel.Warning: frameworkLogLevel = Framework.Logging.LogLevel.Important; break; case LogLevel.Error: case LogLevel.Critical: frameworkLogLevel = Framework.Logging.LogLevel.Error; break; } Logger.Log(formatter(state, exception), LoggingTarget.Database, frameworkLogLevel); } public bool IsEnabled(LogLevel logLevel) { #if DEBUG_DATABASE return logLevel > LogLevel.Debug; #else return logLevel > LogLevel.Information; #endif } public IDisposable BeginScope(TState state) => null; } } public void Migrate() => Database.Migrate(); } }