2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Linq;
|
|
|
|
|
2016-11-19 09:51:49 -07:00
|
|
|
namespace Emby.Server.Implementations.Data
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2019-11-01 10:38:54 -07:00
|
|
|
/// Class TypeMapper.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
|
|
|
public class TypeMapper
|
|
|
|
{
|
|
|
|
/// <summary>
|
2019-11-01 10:38:54 -07:00
|
|
|
/// This holds all the types in the running assemblies
|
|
|
|
/// so that we can de-serialize properly when we don't have strong types.
|
2013-02-20 18:33:05 -07:00
|
|
|
/// </summary>
|
2021-05-20 12:28:18 -07:00
|
|
|
private readonly ConcurrentDictionary<string, Type?> _typeMap = new ConcurrentDictionary<string, Type?>();
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the type.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="typeName">Name of the type.</param>
|
|
|
|
/// <returns>Type.</returns>
|
2019-11-01 10:38:54 -07:00
|
|
|
/// <exception cref="ArgumentNullException"><c>typeName</c> is null.</exception>
|
2021-05-20 12:28:18 -07:00
|
|
|
public Type? GetType(string typeName)
|
2013-02-20 18:33:05 -07:00
|
|
|
{
|
2022-10-13 10:08:00 -07:00
|
|
|
ArgumentException.ThrowIfNullOrEmpty(typeName);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
2021-05-23 15:30:41 -07:00
|
|
|
return _typeMap.GetOrAdd(typeName, k => AppDomain.CurrentDomain.GetAssemblies()
|
|
|
|
.Select(a => a.GetType(k))
|
2022-12-05 07:01:13 -07:00
|
|
|
.FirstOrDefault(t => t is not null));
|
2013-02-20 18:33:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|