1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Datastore/DbFactory.cs

50 lines
1.3 KiB
C#
Raw Normal View History

2013-03-24 01:08:23 +01:00
using System;
using System.Data.SQLite;
2013-03-25 04:51:32 +01:00
using Marr.Data;
using Marr.Data.Reflection;
2013-03-25 07:13:53 +01:00
using NzbDrone.Core.Datastore.Migration.Framework;
2013-03-25 04:51:32 +01:00
2013-03-24 01:08:23 +01:00
namespace NzbDrone.Core.Datastore
{
public interface IDbFactory
{
2013-03-25 07:13:53 +01:00
IDatabase Create(string dbPath, MigrationType migrationType = MigrationType.Main);
2013-03-24 01:08:23 +01:00
}
public class DbFactory : IDbFactory
{
2013-03-25 07:13:53 +01:00
private readonly IMigrationController _migrationController;
2013-03-24 01:08:23 +01:00
static DbFactory()
2013-03-24 01:08:23 +01:00
{
2013-03-25 07:13:53 +01:00
TableMapping.Map();
}
public DbFactory(IMigrationController migrationController)
{
2013-03-25 07:13:53 +01:00
_migrationController = migrationController;
}
2013-03-24 05:56:59 +01:00
2013-03-25 07:13:53 +01:00
public IDatabase Create(string dbPath, MigrationType migrationType = MigrationType.Main)
{
var connectionString = GetConnectionString(dbPath);
2013-03-24 01:08:23 +01:00
2013-03-25 07:13:53 +01:00
_migrationController.MigrateToLatest(connectionString, migrationType);
var dataMapper = new DataMapper(SQLiteFactory.Instance, connectionString)
2013-03-25 08:36:22 +01:00
{
SqlMode = SqlModes.Text,
};
MapRepository.Instance.ReflectionStrategy = new SimpleReflectionStrategy();
2013-03-25 04:51:32 +01:00
return new Database(dataMapper);
}
2013-03-24 01:08:23 +01:00
private string GetConnectionString(string dbPath)
{
return String.Format("Data Source={0};Version=3;", dbPath);
}
}
}