Lidarr/NzbDrone.Core/Datastore/BasicRepository.cs

189 lines
4.8 KiB
C#
Raw Normal View History

2013-03-24 04:16:00 +00:00
using System;
using System.Collections.Generic;
using System.Data;
2013-02-05 04:07:07 +00:00
using System.Linq;
2013-03-24 04:16:00 +00:00
using System.Linq.Expressions;
2013-03-25 03:51:32 +00:00
using Marr.Data;
using Marr.Data.QGen;
2013-03-31 20:25:39 +00:00
using NzbDrone.Core.Tv;
2013-03-25 03:51:32 +00:00
2013-02-05 04:07:07 +00:00
namespace NzbDrone.Core.Datastore
{
2013-03-02 18:25:39 +00:00
public interface IBasicRepository<TModel> where TModel : ModelBase, new()
2013-02-05 04:07:07 +00:00
{
2013-02-19 06:56:02 +00:00
IEnumerable<TModel> All();
2013-02-23 19:38:25 +00:00
int Count();
TModel Get(int id);
2013-04-18 00:33:38 +00:00
IEnumerable<TModel> Get(IEnumerable<int> ids);
TModel SingleOrDefault();
2013-02-19 06:56:02 +00:00
TModel Insert(TModel model);
TModel Update(TModel model);
2013-03-24 04:16:00 +00:00
TModel Upsert(TModel model);
void Delete(int id);
void Delete(TModel model);
2013-03-24 04:16:00 +00:00
void InsertMany(IList<TModel> model);
void UpdateMany(IList<TModel> model);
void DeleteMany(List<TModel> model);
2013-02-23 19:38:25 +00:00
void Purge();
2013-03-02 18:25:39 +00:00
bool HasItems();
2013-03-24 04:16:00 +00:00
void DeleteMany(IEnumerable<int> ids);
void SetFields(TModel model, params Expression<Func<TModel, object>>[] properties);
2013-04-25 04:27:49 +00:00
TModel Single();
2013-02-05 04:07:07 +00:00
}
public class BasicRepository<TModel> : IBasicRepository<TModel> where TModel : ModelBase, new()
2013-02-05 04:07:07 +00:00
{
2013-04-25 04:27:49 +00:00
//TODO: add assertion to make sure model properly mapped
2013-03-25 03:51:32 +00:00
private readonly IDataMapper _dataMapper;
2013-03-25 03:51:32 +00:00
public BasicRepository(IDatabase database)
2013-02-05 04:07:07 +00:00
{
2013-03-25 03:51:32 +00:00
_dataMapper = database.DataMapper;
2013-02-05 04:07:07 +00:00
}
2013-03-27 03:44:52 +00:00
protected QueryBuilder<TModel> Query
2013-02-05 04:07:07 +00:00
{
2013-03-27 03:44:52 +00:00
get { return _dataMapper.Query<TModel>(); }
}
protected void Delete(Expression<Func<TModel, bool>> filter)
{
_dataMapper.Delete(filter);
2013-02-05 04:07:07 +00:00
}
2013-03-25 03:51:32 +00:00
public IEnumerable<TModel> All()
2013-02-23 19:38:25 +00:00
{
2013-03-25 03:51:32 +00:00
return _dataMapper.Query<TModel>().ToList();
}
2013-03-25 03:51:32 +00:00
public int Count()
{
2013-03-25 03:51:32 +00:00
return _dataMapper.Query<TModel>().Count();
2013-02-23 19:38:25 +00:00
}
public TModel Get(int id)
2013-02-05 04:07:07 +00:00
{
2013-03-25 07:36:22 +00:00
return _dataMapper.Query<TModel>().Single(c => c.Id == id);
2013-02-05 04:07:07 +00:00
}
2013-04-18 00:33:38 +00:00
public IEnumerable<TModel> Get(IEnumerable<int> ids)
{
var idList = ids.ToList();
var result = Query.Where(String.Format("Id IN ({0})", String.Join(",", idList))).ToList();
var resultCount = result.Count;
if (resultCount != idList.Count || result.Select(r => r.Id).Distinct().Count() != resultCount)
throw new InvalidOperationException("Unexpected result from query");
return result;
}
public TModel SingleOrDefault()
2013-04-25 04:27:49 +00:00
{
return All().SingleOrDefault();
}
public TModel Single()
{
2013-03-24 04:16:00 +00:00
return All().Single();
}
2013-02-19 06:56:02 +00:00
public TModel Insert(TModel model)
2013-02-05 04:07:07 +00:00
{
2013-03-24 19:56:51 +00:00
if (model.Id != 0)
{
throw new InvalidOperationException("Can't insert model with existing ID");
}
2013-03-25 03:51:32 +00:00
var id = _dataMapper.Insert(model);
2013-03-24 04:16:00 +00:00
return model;
2013-02-05 04:07:07 +00:00
}
public TModel Update(TModel model)
{
2013-03-24 19:56:51 +00:00
if (model.Id == 0)
{
throw new InvalidOperationException("Can't update model with ID 0");
}
2013-03-25 03:51:32 +00:00
_dataMapper.Update(model, c => c.Id == model.Id);
2013-03-24 04:16:00 +00:00
return model;
}
public void Delete(TModel model)
{
2013-03-25 03:51:32 +00:00
_dataMapper.Delete<TModel>(c => c.Id == model.Id);
}
2013-03-24 04:16:00 +00:00
public void InsertMany(IList<TModel> models)
{
2013-03-25 03:51:32 +00:00
foreach (var model in models)
{
Insert(model);
}
}
2013-03-24 04:16:00 +00:00
public void UpdateMany(IList<TModel> models)
{
2013-03-25 03:51:32 +00:00
foreach (var model in models)
{
Update(model);
}
}
2013-03-24 04:16:00 +00:00
public void DeleteMany(List<TModel> models)
{
2013-03-25 03:51:32 +00:00
models.ForEach(Delete);
}
2013-03-24 04:16:00 +00:00
public TModel Upsert(TModel model)
{
if (model.Id == 0)
2013-02-23 19:38:25 +00:00
{
2013-03-25 03:51:32 +00:00
Insert(model);
2013-03-24 04:16:00 +00:00
return model;
2013-02-23 19:38:25 +00:00
}
2013-03-25 03:51:32 +00:00
Update(model);
2013-03-24 04:16:00 +00:00
return model;
}
public void Delete(int id)
2013-02-05 04:07:07 +00:00
{
2013-03-25 03:51:32 +00:00
_dataMapper.Delete<TModel>(c => c.Id == id);
2013-02-05 04:07:07 +00:00
}
2013-02-23 19:38:25 +00:00
public void DeleteMany(IEnumerable<int> ids)
{
2013-03-25 03:51:32 +00:00
ids.ToList().ForEach(Delete);
2013-02-23 19:38:25 +00:00
}
public void Purge()
{
2013-03-25 03:51:32 +00:00
_dataMapper.Delete<TModel>(c => c.Id > -1);
2013-02-23 19:38:25 +00:00
}
2013-03-02 18:25:39 +00:00
public bool HasItems()
{
2013-03-24 04:16:00 +00:00
return Count() > 0;
}
public void SetFields(TModel model, params Expression<Func<TModel, object>>[] properties)
2013-03-24 04:16:00 +00:00
{
if (model.Id == 0)
{
throw new InvalidOperationException("Attempted to updated model without ID");
}
_dataMapper.Update<TModel>()
.Where(c => c.Id == model.Id)
.ColumnsIncluding(properties)
.Entity(model)
.Execute();
2013-03-02 18:25:39 +00:00
}
2013-02-05 04:07:07 +00:00
}
}