2013-03-24 03:08:23 +03:00
|
|
|
using System;
|
2013-03-26 08:51:56 +03:00
|
|
|
using System.Data.SQLite;
|
2013-03-25 06:51:32 +03:00
|
|
|
using Marr.Data;
|
2013-04-02 02:55:09 +03:00
|
|
|
using Marr.Data.Reflection;
|
2013-06-28 04:03:04 +03:00
|
|
|
using NzbDrone.Common.Composition;
|
2013-03-25 09:13:53 +03:00
|
|
|
using NzbDrone.Core.Datastore.Migration.Framework;
|
2013-06-28 04:03:04 +03:00
|
|
|
using NzbDrone.Core.Instrumentation;
|
2013-09-11 09:33:47 +03:00
|
|
|
using NzbDrone.Core.Messaging;
|
2013-03-25 06:51:32 +03:00
|
|
|
|
2013-03-24 03:08:23 +03:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
|
|
{
|
|
|
|
public interface IDbFactory
|
|
|
|
{
|
2013-06-28 04:03:04 +03:00
|
|
|
IDatabase Create(MigrationType migrationType = MigrationType.Main);
|
2013-03-24 03:08:23 +03:00
|
|
|
}
|
|
|
|
|
2013-07-05 06:56:27 +03:00
|
|
|
|
2013-03-24 03:08:23 +03:00
|
|
|
public class DbFactory : IDbFactory
|
|
|
|
{
|
2013-03-25 09:13:53 +03:00
|
|
|
private readonly IMigrationController _migrationController;
|
2013-07-05 06:56:27 +03:00
|
|
|
private readonly IConnectionStringFactory _connectionStringFactory;
|
2013-03-24 03:08:23 +03:00
|
|
|
|
2013-03-31 01:14:33 +03:00
|
|
|
static DbFactory()
|
2013-03-24 03:08:23 +03:00
|
|
|
{
|
2013-06-03 06:15:56 +03:00
|
|
|
MapRepository.Instance.ReflectionStrategy = new SimpleReflectionStrategy();
|
2013-03-25 09:13:53 +03:00
|
|
|
TableMapping.Map();
|
2013-03-31 01:14:33 +03:00
|
|
|
}
|
|
|
|
|
2013-06-28 04:03:04 +03:00
|
|
|
public static void RegisterDatabase(IContainer container)
|
|
|
|
{
|
2013-09-05 04:03:41 +03:00
|
|
|
container.Resolve<IDbFactory>().Create();
|
|
|
|
|
2013-06-28 04:03:04 +03:00
|
|
|
container.Register(c => c.Resolve<IDbFactory>().Create());
|
|
|
|
|
2013-09-05 04:03:41 +03:00
|
|
|
container.Resolve<IDbFactory>().Create(MigrationType.Log);
|
|
|
|
|
2013-06-28 04:03:04 +03:00
|
|
|
container.Register<ILogRepository>(c =>
|
|
|
|
{
|
|
|
|
var db = c.Resolve<IDbFactory>().Create(MigrationType.Log);
|
|
|
|
return new LogRepository(db, c.Resolve<IMessageAggregator>());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-07-05 06:56:27 +03:00
|
|
|
public DbFactory(IMigrationController migrationController, IConnectionStringFactory connectionStringFactory)
|
2013-03-31 01:14:33 +03:00
|
|
|
{
|
2013-03-25 09:13:53 +03:00
|
|
|
_migrationController = migrationController;
|
2013-07-05 06:56:27 +03:00
|
|
|
_connectionStringFactory = connectionStringFactory;
|
2013-03-25 09:13:53 +03:00
|
|
|
}
|
2013-03-24 07:56:59 +03:00
|
|
|
|
2013-06-28 04:03:04 +03:00
|
|
|
public IDatabase Create(MigrationType migrationType = MigrationType.Main)
|
2013-03-25 09:13:53 +03:00
|
|
|
{
|
2013-07-05 06:56:27 +03:00
|
|
|
string connectionString;
|
|
|
|
|
2013-06-28 04:03:04 +03:00
|
|
|
|
|
|
|
switch (migrationType)
|
|
|
|
{
|
|
|
|
case MigrationType.Main:
|
|
|
|
{
|
2013-07-05 06:56:27 +03:00
|
|
|
connectionString = _connectionStringFactory.MainDbConnectionString;
|
2013-06-28 04:03:04 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MigrationType.Log:
|
|
|
|
{
|
2013-07-05 06:56:27 +03:00
|
|
|
connectionString = _connectionStringFactory.LogDbConnectionString;
|
2013-06-28 04:03:04 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
throw new ArgumentException("Invalid MigrationType");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-24 03:08:23 +03:00
|
|
|
|
2013-03-25 09:13:53 +03:00
|
|
|
_migrationController.MigrateToLatest(connectionString, migrationType);
|
2013-05-11 23:06:57 +03:00
|
|
|
|
|
|
|
return new Database(() =>
|
|
|
|
{
|
|
|
|
var dataMapper = new DataMapper(SQLiteFactory.Instance, connectionString)
|
|
|
|
{
|
|
|
|
SqlMode = SqlModes.Text,
|
|
|
|
};
|
|
|
|
|
|
|
|
return dataMapper;
|
|
|
|
});
|
2013-03-25 06:51:32 +03:00
|
|
|
}
|
2013-03-24 03:08:23 +03:00
|
|
|
}
|
|
|
|
}
|