mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
added siaqodb
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using NzbDrone.Common;
|
||||
using Sqo;
|
||||
|
||||
namespace NzbDrone.Core.Datastore
|
||||
{
|
||||
public interface IObjectDbFactory
|
||||
{
|
||||
IObjectDatabase CreateMemoryDb();
|
||||
IObjectDatabase Create(string dbPath);
|
||||
}
|
||||
|
||||
public class SiaqoDbFactory : IObjectDbFactory
|
||||
{
|
||||
private readonly DiskProvider _diskProvider;
|
||||
|
||||
public SiaqoDbFactory(DiskProvider diskProvider)
|
||||
{
|
||||
_diskProvider = diskProvider;
|
||||
}
|
||||
|
||||
public IObjectDatabase CreateMemoryDb()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IObjectDatabase Create(string dbPath)
|
||||
{
|
||||
if(!_diskProvider.FolderExists(dbPath))
|
||||
{
|
||||
_diskProvider.CreateDirectory(dbPath);
|
||||
}
|
||||
|
||||
SiaqodbConfigurator.SetTrialLicense("uvhpW4hT5Rtq+Uoyq8MOm1Smon15foxV5iS5bAegIXU=");
|
||||
|
||||
var db = new Siaqodb(dbPath);
|
||||
|
||||
return new SiaqodbProxy(db);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user