mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
added marr.datamapper source code for easy debugging.
This commit is contained in:
parent
58a05fcef8
commit
3cdff3bb71
96 changed files with 9198 additions and 363 deletions
80
Marr.Data/Reflection/ReflectionHelper.cs
Normal file
80
Marr.Data/Reflection/ReflectionHelper.cs
Normal file
|
@ -0,0 +1,80 @@
|
|||
/* Copyright (C) 2008 - 2011 Jordan Marr
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 3 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Reflection;
|
||||
/* *
|
||||
* The FastReflection library was written by Renaud Bédard (renaud.bedard@gmail.com)
|
||||
* http://theinstructionlimit.com/?p=76
|
||||
* */
|
||||
using FastReflection;
|
||||
|
||||
// ReSharper disable CheckNamespace
|
||||
namespace Marr.Data
|
||||
// ReSharper restore CheckNamespace
|
||||
{
|
||||
public class ReflectionHelper
|
||||
{
|
||||
/// <summary>
|
||||
/// Converts a DBNull.Value to a null for a reference field,
|
||||
/// or the default value of a value field.
|
||||
/// </summary>
|
||||
/// <param name="fieldType"></param>
|
||||
/// <returns></returns>
|
||||
public static object GetDefaultValue(Type fieldType)
|
||||
{
|
||||
if (fieldType.IsGenericType)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
else if (fieldType.IsValueType)
|
||||
{
|
||||
return Activator.CreateInstance(fieldType);
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets the CLR data type of a MemberInfo.
|
||||
/// If the type is nullable, returns the underlying type.
|
||||
/// </summary>
|
||||
/// <param name="member"></param>
|
||||
/// <returns></returns>
|
||||
public static Type GetMemberType(MemberInfo member)
|
||||
{
|
||||
Type memberType = null;
|
||||
if (member.MemberType == MemberTypes.Property)
|
||||
memberType = (member as PropertyInfo).PropertyType;
|
||||
else if (member.MemberType == MemberTypes.Field)
|
||||
memberType = (member as FieldInfo).FieldType;
|
||||
else
|
||||
memberType = typeof(object);
|
||||
|
||||
// Handle nullable types - get underlying type
|
||||
if (memberType.IsGenericType && memberType.GetGenericTypeDefinition() == typeof(Nullable<>))
|
||||
{
|
||||
memberType = memberType.GetGenericArguments()[0];
|
||||
}
|
||||
|
||||
return memberType;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue