2013-03-26 08:50:18 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Reflection;
|
2013-04-01 02:20:01 +02:00
|
|
|
|
using Marr.Data;
|
2013-03-26 08:50:18 +01:00
|
|
|
|
using Marr.Data.Mapping;
|
2013-04-20 23:23:17 +02:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-03-26 08:50:18 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
|
|
|
{
|
|
|
|
|
public static class MappingExtensions
|
|
|
|
|
{
|
2013-04-20 23:23:17 +02:00
|
|
|
|
|
|
|
|
|
public static ColumnMapBuilder<T> MapResultSet<T>(this FluentMappings.MappingsFluentEntity<T> mapBuilder) where T : ResultSet, new()
|
|
|
|
|
{
|
|
|
|
|
return mapBuilder
|
|
|
|
|
.Columns
|
|
|
|
|
.AutoMapPropertiesWhere(IsMappableProperty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static ColumnMapBuilder<T> RegisterModel<T>(this FluentMappings.MappingsFluentEntity<T> mapBuilder, string tableName = null) where T : ModelBase, new()
|
2013-03-26 08:50:18 +01:00
|
|
|
|
{
|
2013-04-20 23:23:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-26 08:50:18 +01:00
|
|
|
|
return mapBuilder.Table.MapTable(tableName)
|
|
|
|
|
.Columns
|
|
|
|
|
.AutoMapPropertiesWhere(IsMappableProperty)
|
|
|
|
|
.For(c => c.Id)
|
|
|
|
|
.SetPrimaryKey()
|
|
|
|
|
.SetReturnValue()
|
|
|
|
|
.SetAutoIncrement();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsMappableProperty(MemberInfo memberInfo)
|
|
|
|
|
{
|
|
|
|
|
var propertyInfo = memberInfo as PropertyInfo;
|
|
|
|
|
|
|
|
|
|
if (propertyInfo == null) return false;
|
|
|
|
|
|
2013-04-01 02:20:01 +02:00
|
|
|
|
|
|
|
|
|
if (!propertyInfo.IsReadable() || !propertyInfo.IsWritable())
|
2013-03-26 08:50:18 +01:00
|
|
|
|
{
|
2013-04-01 02:20:01 +02:00
|
|
|
|
return false;
|
2013-03-26 08:50:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-01 02:20:01 +02:00
|
|
|
|
if (IsSimpleType(propertyInfo.PropertyType) || MapRepository.Instance.TypeConverters.ContainsKey(propertyInfo.PropertyType))
|
2013-03-26 23:17:13 +01:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-01 02:20:01 +02:00
|
|
|
|
return false;
|
2013-03-26 08:50:18 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsSimpleType(Type type)
|
|
|
|
|
{
|
|
|
|
|
if (type.IsGenericType && type.GetGenericTypeDefinition() == typeof(Nullable<>))
|
|
|
|
|
{
|
|
|
|
|
type = type.GetGenericArguments()[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return type.IsPrimitive
|
|
|
|
|
|| type.IsEnum
|
|
|
|
|
|| type == typeof(string)
|
|
|
|
|
|| type == typeof(DateTime)
|
|
|
|
|
|| type == typeof(Decimal);
|
|
|
|
|
}
|
2013-03-26 23:17:13 +01:00
|
|
|
|
|
|
|
|
|
private static bool IsReadable(this PropertyInfo propertyInfo)
|
|
|
|
|
{
|
|
|
|
|
return propertyInfo.CanRead && propertyInfo.GetGetMethod(false) != null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static bool IsWritable(this PropertyInfo propertyInfo)
|
|
|
|
|
{
|
|
|
|
|
return propertyInfo.CanWrite && propertyInfo.GetSetMethod(false) != null;
|
|
|
|
|
}
|
2013-03-26 08:50:18 +01:00
|
|
|
|
}
|
|
|
|
|
}
|