Lidarr/NzbDrone.Core/Datastore/DbFactory.cs

42 lines
1.2 KiB
C#
Raw Normal View History

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