mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
		
			
				
	
	
		
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Threading;
 | |
| using SQLitePCL.pretty;
 | |
| 
 | |
| namespace Emby.Server.Implementations.Data
 | |
| {
 | |
|     public class ManagedConnection : IDisposable
 | |
|     {
 | |
|         private SQLiteDatabaseConnection _db;
 | |
|         private readonly SemaphoreSlim _writeLock;
 | |
|         private bool _disposed = false;
 | |
| 
 | |
|         public ManagedConnection(SQLiteDatabaseConnection db, SemaphoreSlim writeLock)
 | |
|         {
 | |
|             _db = db;
 | |
|             _writeLock = writeLock;
 | |
|         }
 | |
| 
 | |
|         public IStatement PrepareStatement(string sql)
 | |
|         {
 | |
|             return _db.PrepareStatement(sql);
 | |
|         }
 | |
| 
 | |
|         public IEnumerable<IStatement> PrepareAll(string sql)
 | |
|         {
 | |
|             return _db.PrepareAll(sql);
 | |
|         }
 | |
| 
 | |
|         public void ExecuteAll(string sql)
 | |
|         {
 | |
|             _db.ExecuteAll(sql);
 | |
|         }
 | |
| 
 | |
|         public void Execute(string sql, params object[] values)
 | |
|         {
 | |
|             _db.Execute(sql, values);
 | |
|         }
 | |
| 
 | |
|         public void RunQueries(string[] sql)
 | |
|         {
 | |
|             _db.RunQueries(sql);
 | |
|         }
 | |
| 
 | |
|         public void RunInTransaction(Action<IDatabaseConnection> action, TransactionMode mode)
 | |
|         {
 | |
|             _db.RunInTransaction(action, mode);
 | |
|         }
 | |
| 
 | |
|         public T RunInTransaction<T>(Func<IDatabaseConnection, T> action, TransactionMode mode)
 | |
|         {
 | |
|             return _db.RunInTransaction(action, mode);
 | |
|         }
 | |
| 
 | |
|         public IEnumerable<IReadOnlyList<IResultSetValue>> Query(string sql)
 | |
|         {
 | |
|             return _db.Query(sql);
 | |
|         }
 | |
| 
 | |
|         public IEnumerable<IReadOnlyList<IResultSetValue>> Query(string sql, params object[] values)
 | |
|         {
 | |
|             return _db.Query(sql, values);
 | |
|         }
 | |
| 
 | |
|         public void Dispose()
 | |
|         {
 | |
|             if (_disposed)
 | |
|             {
 | |
|                 return;
 | |
|             }
 | |
| 
 | |
|             _writeLock.Release();
 | |
| 
 | |
|             _db = null; // Don't dispose it
 | |
|             _disposed = true;
 | |
|         }
 | |
|     }
 | |
| }
 |