You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
using MessagePack.Formatters; |
|
using MessagePack.Internal; |
|
using System; |
|
|
|
namespace MessagePack.Resolvers |
|
{ |
|
public sealed class OldSpecResolver : IFormatterResolver |
|
{ |
|
public static readonly IFormatterResolver Instance = new OldSpecResolver(); |
|
|
|
OldSpecResolver() |
|
{ |
|
|
|
} |
|
|
|
public IMessagePackFormatter<T> GetFormatter<T>() |
|
{ |
|
return FormatterCache<T>.formatter; |
|
} |
|
|
|
static class FormatterCache<T> |
|
{ |
|
public static readonly IMessagePackFormatter<T> formatter; |
|
|
|
static FormatterCache() |
|
{ |
|
formatter = (IMessagePackFormatter<T>)OldSpecResolverGetFormatterHelper.GetFormatter(typeof(T)); |
|
} |
|
} |
|
} |
|
} |
|
|
|
namespace MessagePack.Internal |
|
{ |
|
internal static class OldSpecResolverGetFormatterHelper |
|
{ |
|
internal static object GetFormatter(Type t) |
|
{ |
|
if (t == typeof(string)) |
|
{ |
|
return OldSpecStringFormatter.Instance; |
|
} |
|
else if (t == typeof(string[])) |
|
{ |
|
return new ArrayFormatter<string>(); |
|
} |
|
else if (t == typeof(byte[])) |
|
{ |
|
return OldSpecBinaryFormatter.Instance; |
|
} |
|
|
|
return null; |
|
} |
|
} |
|
} |