jellyfin/Emby.Server.Implementations/Services/StringMapTypeDeserializer.cs

129 lines
4.5 KiB
C#
Raw Normal View History

2016-11-11 20:55:12 +01:00
using System;
using System.Collections.Generic;
using System.Reflection;
2017-02-13 21:54:28 +01:00
namespace Emby.Server.Implementations.Services
2016-11-11 20:55:12 +01:00
{
/// <summary>
/// Serializer cache of delegates required to create a type from a string map (e.g. for REST urls)
/// </summary>
public class StringMapTypeDeserializer
{
internal class PropertySerializerEntry
{
public PropertySerializerEntry(Action<object, object> propertySetFn, Func<string, object> propertyParseStringFn)
2016-11-11 20:55:12 +01:00
{
PropertySetFn = propertySetFn;
PropertyParseStringFn = propertyParseStringFn;
}
public Action<object, object> PropertySetFn;
public Func<string, object> PropertyParseStringFn;
2016-11-11 20:55:12 +01:00
public Type PropertyType;
}
private readonly Type type;
private readonly Dictionary<string, PropertySerializerEntry> propertySetterMap
= new Dictionary<string, PropertySerializerEntry>(StringComparer.OrdinalIgnoreCase);
public Func<string, object> GetParseFn(Type propertyType)
{
if (propertyType == typeof(string))
return s => s;
2017-02-13 03:06:54 +01:00
return _GetParseFn(propertyType);
2016-11-11 20:55:12 +01:00
}
2017-02-13 03:06:54 +01:00
private readonly Func<Type, object> _CreateInstanceFn;
private readonly Func<Type, Func<string, object>> _GetParseFn;
public StringMapTypeDeserializer(Func<Type, object> createInstanceFn, Func<Type, Func<string, object>> getParseFn, Type type)
2016-11-11 20:55:12 +01:00
{
2017-02-13 03:06:54 +01:00
_CreateInstanceFn = createInstanceFn;
_GetParseFn = getParseFn;
2016-11-11 20:55:12 +01:00
this.type = type;
2017-02-13 03:06:54 +01:00
foreach (var propertyInfo in RestPath.GetSerializableProperties(type))
2016-11-11 20:55:12 +01:00
{
var propertySetFn = TypeAccessor.GetSetPropertyMethod(type, propertyInfo);
var propertyType = propertyInfo.PropertyType;
var propertyParseStringFn = GetParseFn(propertyType);
var propertySerializer = new PropertySerializerEntry(propertySetFn, propertyParseStringFn) { PropertyType = propertyType };
propertySetterMap[propertyInfo.Name] = propertySerializer;
}
}
public object PopulateFromMap(object instance, IDictionary<string, string> keyValuePairs)
{
string propertyName = null;
string propertyTextValue = null;
PropertySerializerEntry propertySerializerEntry = null;
if (instance == null)
2017-02-13 03:06:54 +01:00
instance = _CreateInstanceFn(type);
2016-11-11 20:55:12 +01:00
2017-08-30 20:52:29 +02:00
foreach (var pair in keyValuePairs)
2016-11-11 20:55:12 +01:00
{
propertyName = pair.Key;
propertyTextValue = pair.Value;
2017-08-30 20:52:29 +02:00
if (string.IsNullOrEmpty(propertyTextValue))
{
continue;
}
2016-11-11 20:55:12 +01:00
if (!propertySetterMap.TryGetValue(propertyName, out propertySerializerEntry))
{
if (propertyName == "v")
{
continue;
}
continue;
}
if (propertySerializerEntry.PropertySetFn == null)
{
continue;
}
if (propertySerializerEntry.PropertyType == typeof(bool))
{
//InputExtensions.cs#530 MVC Checkbox helper emits extra hidden input field, generating 2 values, first is the real value
propertyTextValue = LeftPart(propertyTextValue, ',');
}
var value = propertySerializerEntry.PropertyParseStringFn(propertyTextValue);
if (value == null)
{
continue;
}
propertySerializerEntry.PropertySetFn(instance, value);
}
return instance;
}
public static string LeftPart(string strVal, char needle)
{
if (strVal == null) return null;
var pos = strVal.IndexOf(needle);
return pos == -1
? strVal
: strVal.Substring(0, pos);
}
}
internal class TypeAccessor
{
public static Action<object, object> GetSetPropertyMethod(Type type, PropertyInfo propertyInfo)
{
2017-08-30 20:52:29 +02:00
if (!propertyInfo.CanWrite || propertyInfo.GetIndexParameters().Length > 0) return null;
2016-11-11 20:55:12 +01:00
var setMethodInfo = propertyInfo.SetMethod;
return (instance, value) => setMethodInfo.Invoke(instance, new[] { value });
}
}
}