2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Linq;
|
|
|
|
|
2016-11-19 16:51:49 +00:00
|
|
|
namespace Emby.Server.Implementations.Data
|
2013-02-21 01:33:05 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class TypeMapper
|
|
|
|
/// </summary>
|
|
|
|
public class TypeMapper
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// This holds all the types in the running assemblies so that we can de-serialize properly when we don't have strong types
|
|
|
|
/// </summary>
|
|
|
|
private readonly ConcurrentDictionary<string, Type> _typeMap = new ConcurrentDictionary<string, Type>();
|
|
|
|
|
2019-03-07 17:10:55 +00:00
|
|
|
public TypeMapper()
|
2016-11-19 16:51:49 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the type.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="typeName">Name of the type.</param>
|
|
|
|
/// <returns>Type.</returns>
|
2019-01-13 20:37:13 +00:00
|
|
|
/// <exception cref="ArgumentNullException"></exception>
|
2013-02-21 01:33:05 +00:00
|
|
|
public Type GetType(string typeName)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(typeName))
|
|
|
|
{
|
2019-01-06 20:50:43 +00:00
|
|
|
throw new ArgumentNullException(nameof(typeName));
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return _typeMap.GetOrAdd(typeName, LookupType);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Lookups the type.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="typeName">Name of the type.</param>
|
|
|
|
/// <returns>Type.</returns>
|
|
|
|
private Type LookupType(string typeName)
|
|
|
|
{
|
2019-03-07 17:10:55 +00:00
|
|
|
return AppDomain.CurrentDomain.GetAssemblies()
|
2016-11-19 16:51:49 +00:00
|
|
|
.Select(a => a.GetType(typeName))
|
|
|
|
.FirstOrDefault(t => t != null);
|
2013-02-21 01:33:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|