Radarr/NzbDrone.Core/Datastore/SiaqodbProxy.cs

91 lines
2.3 KiB
C#
Raw Normal View History

2013-02-03 22:01:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2013-02-17 01:52:40 +00:00
using Sqo;
2013-02-03 22:01:36 +00:00
namespace NzbDrone.Core.Datastore
{
2013-02-17 01:52:40 +00:00
public interface IObjectDatabase : IDisposable
2013-02-03 22:01:36 +00:00
{
2013-02-17 01:52:40 +00:00
IEnumerable<T> AsQueryable<T>();
T Insert<T>(T obj) where T : BaseRepositoryModel;
T Update<T>(T obj) where T : BaseRepositoryModel;
IList<T> InsertMany<T>(IList<T> objects) where T : BaseRepositoryModel;
IList<T> UpdateMany<T>(IList<T> objects) where T : BaseRepositoryModel;
void Delete<T>(T obj) where T : BaseRepositoryModel;
void DeleteMany<T>(IEnumerable<T> objects) where T : BaseRepositoryModel;
}
public class SiaqodbProxy : IObjectDatabase
{
private readonly Siaqodb _db;
public SiaqodbProxy(Siaqodb db)
{
_db = db;
}
2013-02-03 22:01:36 +00:00
2013-02-17 01:52:40 +00:00
public void Dispose()
2013-02-03 22:01:36 +00:00
{
2013-02-17 01:52:40 +00:00
2013-02-03 22:01:36 +00:00
}
2013-02-04 00:10:15 +00:00
public IEnumerable<T> AsQueryable<T>()
2013-02-03 22:01:36 +00:00
{
2013-02-17 01:52:40 +00:00
return _db.Cast<T>();
2013-02-03 22:01:36 +00:00
}
2013-02-13 01:25:32 +00:00
public T Insert<T>(T obj) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
2013-02-17 01:52:40 +00:00
if (obj.OID != 0)
2013-02-16 04:03:54 +00:00
{
throw new InvalidOperationException("Attempted to insert object with existing ID as new object");
}
_db.StoreObject(obj);
2013-02-04 00:10:15 +00:00
return obj;
2013-02-03 22:01:36 +00:00
}
2013-02-16 04:03:54 +00:00
public T Update<T>(T obj) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
2013-02-17 01:52:40 +00:00
if (obj.OID == 0)
2013-02-16 04:03:54 +00:00
{
2013-02-17 01:52:40 +00:00
throw new InvalidOperationException("Attempted to update object without an ID");
2013-02-16 04:03:54 +00:00
}
2013-02-03 22:01:36 +00:00
2013-02-17 01:52:40 +00:00
_db.StoreObject(obj);
2013-02-04 00:10:15 +00:00
return obj;
2013-02-03 22:01:36 +00:00
}
2013-02-16 04:03:54 +00:00
public IList<T> InsertMany<T>(IList<T> objects) where T : BaseRepositoryModel
{
return DoMany(objects, Insert);
2013-02-16 04:03:54 +00:00
}
2013-02-17 01:52:40 +00:00
2013-02-16 04:03:54 +00:00
public IList<T> UpdateMany<T>(IList<T> objects) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
2013-02-04 00:10:15 +00:00
return DoMany(objects, Update);
2013-02-17 01:52:40 +00:00
2013-02-03 22:01:36 +00:00
}
2013-02-16 04:03:54 +00:00
public void Delete<T>(T obj) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
_db.Delete(obj);
2013-02-03 22:01:36 +00:00
}
2013-02-16 04:03:54 +00:00
public void DeleteMany<T>(IEnumerable<T> objects) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
foreach (var o in objects)
{
Delete(o);
}
2013-02-03 22:01:36 +00:00
}
2013-02-16 04:03:54 +00:00
private IList<T> DoMany<T>(IEnumerable<T> objects, Func<T, T> function) where T : BaseRepositoryModel
2013-02-03 22:01:36 +00:00
{
2013-02-04 00:10:15 +00:00
return objects.Select(function).ToList();
2013-02-03 22:01:36 +00:00
}
}
}