|
@@ -0,0 +1,165 @@
|
|
|
|
+// Generated by Utf8Json.UniversalCodeGenerator. Do not hand edit.
|
|
|
|
+
|
|
|
|
+#pragma warning disable 618
|
|
|
|
+#pragma warning disable 612
|
|
|
|
+#pragma warning disable 414
|
|
|
|
+#pragma warning disable 168
|
|
|
|
+
|
|
|
|
+namespace Utf8Json.Resolvers
|
|
|
|
+{
|
|
|
|
+ using System;
|
|
|
|
+ using Utf8Json;
|
|
|
|
+
|
|
|
|
+ public class GeneratedResolver : global::Utf8Json.IJsonFormatterResolver
|
|
|
|
+ {
|
|
|
|
+ public static readonly global::Utf8Json.IJsonFormatterResolver Instance = new GeneratedResolver();
|
|
|
|
+
|
|
|
|
+ GeneratedResolver()
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public global::Utf8Json.IJsonFormatter<T> GetFormatter<T>()
|
|
|
|
+ {
|
|
|
|
+ return FormatterCache<T>.formatter;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ static class FormatterCache<T>
|
|
|
|
+ {
|
|
|
|
+ public static readonly global::Utf8Json.IJsonFormatter<T> formatter;
|
|
|
|
+
|
|
|
|
+ static FormatterCache()
|
|
|
|
+ {
|
|
|
|
+ var f = GeneratedResolverGetFormatterHelper.GetFormatter(typeof(T));
|
|
|
|
+ if (f != null)
|
|
|
|
+ {
|
|
|
|
+ formatter = (global::Utf8Json.IJsonFormatter<T>)f;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ internal static class GeneratedResolverGetFormatterHelper
|
|
|
|
+ {
|
|
|
|
+ static readonly global::System.Collections.Generic.Dictionary<Type, int> lookup;
|
|
|
|
+
|
|
|
|
+ static GeneratedResolverGetFormatterHelper()
|
|
|
|
+ {
|
|
|
|
+ lookup = new global::System.Collections.Generic.Dictionary<Type, int>(1)
|
|
|
|
+ {
|
|
|
|
+ {typeof(global::PlatformBenchmarks.JsonMessage), 0 },
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ internal static object GetFormatter(Type t)
|
|
|
|
+ {
|
|
|
|
+ int key;
|
|
|
|
+ if (!lookup.TryGetValue(t, out key)) return null;
|
|
|
|
+
|
|
|
|
+ switch (key)
|
|
|
|
+ {
|
|
|
|
+ case 0: return new Utf8Json.Formatters.PlatformBenchmarks.JsonMessageFormatter();
|
|
|
|
+ default: return null;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#pragma warning disable 168
|
|
|
|
+#pragma warning restore 414
|
|
|
|
+#pragma warning restore 618
|
|
|
|
+#pragma warning restore 612
|
|
|
|
+
|
|
|
|
+#pragma warning disable 618
|
|
|
|
+#pragma warning disable 612
|
|
|
|
+#pragma warning disable 414
|
|
|
|
+#pragma warning disable 219
|
|
|
|
+#pragma warning disable 168
|
|
|
|
+
|
|
|
|
+namespace Utf8Json.Formatters.PlatformBenchmarks
|
|
|
|
+{
|
|
|
|
+ using System;
|
|
|
|
+ using Utf8Json;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public sealed class JsonMessageFormatter : global::Utf8Json.IJsonFormatter<global::PlatformBenchmarks.JsonMessage>
|
|
|
|
+ {
|
|
|
|
+ readonly global::Utf8Json.Internal.AutomataDictionary ____keyMapping;
|
|
|
|
+ readonly byte[][] ____stringByteKeys;
|
|
|
|
+
|
|
|
|
+ public JsonMessageFormatter()
|
|
|
|
+ {
|
|
|
|
+ this.____keyMapping = new global::Utf8Json.Internal.AutomataDictionary()
|
|
|
|
+ {
|
|
|
|
+ { JsonWriter.GetEncodedPropertyNameWithoutQuotation("message"), 0},
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ this.____stringByteKeys = new byte[][]
|
|
|
|
+ {
|
|
|
|
+ JsonWriter.GetEncodedPropertyNameWithBeginObject("message"),
|
|
|
|
+
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void Serialize(ref JsonWriter writer, global::PlatformBenchmarks.JsonMessage value, global::Utf8Json.IJsonFormatterResolver formatterResolver)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ writer.WriteRaw(this.____stringByteKeys[0]);
|
|
|
|
+ writer.WriteString(value.message);
|
|
|
|
+
|
|
|
|
+ writer.WriteEndObject();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public global::PlatformBenchmarks.JsonMessage Deserialize(ref JsonReader reader, global::Utf8Json.IJsonFormatterResolver formatterResolver)
|
|
|
|
+ {
|
|
|
|
+ if (reader.ReadIsNull())
|
|
|
|
+ {
|
|
|
|
+ throw new InvalidOperationException("typecode is null, struct not supported");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ var __message__ = default(string);
|
|
|
|
+ var __message__b__ = false;
|
|
|
|
+
|
|
|
|
+ var ____count = 0;
|
|
|
|
+ reader.ReadIsBeginObjectWithVerify();
|
|
|
|
+ while (!reader.ReadIsEndObjectWithSkipValueSeparator(ref ____count))
|
|
|
|
+ {
|
|
|
|
+ var stringKey = reader.ReadPropertyNameSegmentRaw();
|
|
|
|
+ int key;
|
|
|
|
+ if (!____keyMapping.TryGetValueSafe(stringKey, out key))
|
|
|
|
+ {
|
|
|
|
+ reader.ReadNextBlock();
|
|
|
|
+ goto NEXT_LOOP;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ switch (key)
|
|
|
|
+ {
|
|
|
|
+ case 0:
|
|
|
|
+ __message__ = reader.ReadString();
|
|
|
|
+ __message__b__ = true;
|
|
|
|
+ break;
|
|
|
|
+ default:
|
|
|
|
+ reader.ReadNextBlock();
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ NEXT_LOOP:
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ var ____result = new global::PlatformBenchmarks.JsonMessage();
|
|
|
|
+ if(__message__b__) ____result.message = __message__;
|
|
|
|
+
|
|
|
|
+ return ____result;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#pragma warning disable 168
|
|
|
|
+#pragma warning restore 219
|
|
|
|
+#pragma warning restore 414
|
|
|
|
+#pragma warning restore 618
|
|
|
|
+#pragma warning restore 612
|