aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/Native/SqliteExtensions.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-06-28 13:20:39 -0400
committerLuke <luke.pulverenti@gmail.com>2016-06-28 13:20:39 -0400
commitcbf9370f266d0692e47220d0b09a1bc502986fe2 (patch)
treefafbb0c9419a8fcccfd3a4fba3e1a267ac407762 /MediaBrowser.Server.Mac/Native/SqliteExtensions.cs
parentbbdd2c5f6a1ce4640d3e11e158c3630f701419c2 (diff)
update mac project
Diffstat (limited to 'MediaBrowser.Server.Mac/Native/SqliteExtensions.cs')
-rw-r--r--MediaBrowser.Server.Mac/Native/SqliteExtensions.cs62
1 files changed, 0 insertions, 62 deletions
diff --git a/MediaBrowser.Server.Mac/Native/SqliteExtensions.cs b/MediaBrowser.Server.Mac/Native/SqliteExtensions.cs
deleted file mode 100644
index a05bb3f26..000000000
--- a/MediaBrowser.Server.Mac/Native/SqliteExtensions.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-using System;
-using System.Data;
-using System.Data.SQLite;
-using System.Threading.Tasks;
-using MediaBrowser.Model.Logging;
-using MediaBrowser.Server.Implementations.Persistence;
-
-namespace MediaBrowser.Server.Mac
-{
- /// <summary>
- /// Class SQLiteExtensions
- /// </summary>
- static class SqliteExtensions
- {
- /// <summary>
- /// Connects to db.
- /// </summary>
- /// <param name="dbPath">The db path.</param>
- /// <param name="logger">The logger.</param>
- /// <returns>Task{IDbConnection}.</returns>
- /// <exception cref="System.ArgumentNullException">dbPath</exception>
- public static async Task<IDbConnection> ConnectToDb(string dbPath, ILogger logger)
- {
- if (string.IsNullOrEmpty(dbPath))
- {
- throw new ArgumentNullException("dbPath");
- }
-
- logger.Info("Sqlite {0} opening {1}", SQLiteConnection.SQLiteVersion, dbPath);
-
- var connectionstr = new SQLiteConnectionStringBuilder
- {
- PageSize = 4096,
- CacheSize = 2000,
- SyncMode = SynchronizationModes.Full,
- DataSource = dbPath,
- JournalMode = SQLiteJournalModeEnum.Wal
- };
-
- var connection = new SQLiteConnection(connectionstr.ConnectionString);
-
- await connection.OpenAsync().ConfigureAwait(false);
-
- return connection;
- }
- }
-
- public class DbConnector : IDbConnector
- {
- private readonly ILogger _logger;
-
- public DbConnector(ILogger logger)
- {
- _logger = logger;
- }
-
- public Task<IDbConnection> Connect(string dbPath)
- {
- return SqliteExtensions.ConnectToDb(dbPath, _logger);
- }
- }
-} \ No newline at end of file