EnumSerializer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. #if !NO_RUNTIME
  2. using System;
  3. using ProtoBuf.Meta;
  4. using System.Reflection;
  5. namespace ProtoBuf.Serializers
  6. {
  7. sealed class EnumSerializer : IProtoSerializer
  8. {
  9. public readonly struct EnumPair
  10. {
  11. public readonly object RawValue; // note that this is boxing, but I'll live with it
  12. public readonly Enum TypedValue; // note that this is boxing, but I'll live with it
  13. public readonly int WireValue;
  14. public EnumPair(int wireValue, object raw, Type type)
  15. {
  16. WireValue = wireValue;
  17. RawValue = raw;
  18. TypedValue = (Enum)Enum.ToObject(type, raw);
  19. }
  20. }
  21. private readonly Type enumType;
  22. private readonly EnumPair[] map;
  23. public EnumSerializer(Type enumType, EnumPair[] map)
  24. {
  25. this.enumType = enumType ?? throw new ArgumentNullException(nameof(enumType));
  26. this.map = map;
  27. if (map != null)
  28. {
  29. for (int i = 1; i < map.Length; i++)
  30. for (int j = 0; j < i; j++)
  31. {
  32. if (map[i].WireValue == map[j].WireValue && !Equals(map[i].RawValue, map[j].RawValue))
  33. {
  34. throw new ProtoException("Multiple enums with wire-value " + map[i].WireValue.ToString());
  35. }
  36. if (Equals(map[i].RawValue, map[j].RawValue) && map[i].WireValue != map[j].WireValue)
  37. {
  38. throw new ProtoException("Multiple enums with deserialized-value " + map[i].RawValue);
  39. }
  40. }
  41. }
  42. }
  43. private ProtoTypeCode GetTypeCode()
  44. {
  45. Type type = Helpers.GetUnderlyingType(enumType);
  46. if (type == null) type = enumType;
  47. return Helpers.GetTypeCode(type);
  48. }
  49. public Type ExpectedType => enumType;
  50. bool IProtoSerializer.RequiresOldValue => false;
  51. bool IProtoSerializer.ReturnsValue => true;
  52. private int EnumToWire(object value)
  53. {
  54. unchecked
  55. {
  56. switch (GetTypeCode())
  57. { // unbox then convert to int
  58. case ProtoTypeCode.Byte: return (int)(byte)value;
  59. case ProtoTypeCode.SByte: return (int)(sbyte)value;
  60. case ProtoTypeCode.Int16: return (int)(short)value;
  61. case ProtoTypeCode.Int32: return (int)value;
  62. case ProtoTypeCode.Int64: return (int)(long)value;
  63. case ProtoTypeCode.UInt16: return (int)(ushort)value;
  64. case ProtoTypeCode.UInt32: return (int)(uint)value;
  65. case ProtoTypeCode.UInt64: return (int)(ulong)value;
  66. default: throw new InvalidOperationException();
  67. }
  68. }
  69. }
  70. private object WireToEnum(int value)
  71. {
  72. unchecked
  73. {
  74. switch (GetTypeCode())
  75. { // convert from int then box
  76. case ProtoTypeCode.Byte: return Enum.ToObject(enumType, (byte)value);
  77. case ProtoTypeCode.SByte: return Enum.ToObject(enumType, (sbyte)value);
  78. case ProtoTypeCode.Int16: return Enum.ToObject(enumType, (short)value);
  79. case ProtoTypeCode.Int32: return Enum.ToObject(enumType, value);
  80. case ProtoTypeCode.Int64: return Enum.ToObject(enumType, (long)value);
  81. case ProtoTypeCode.UInt16: return Enum.ToObject(enumType, (ushort)value);
  82. case ProtoTypeCode.UInt32: return Enum.ToObject(enumType, (uint)value);
  83. case ProtoTypeCode.UInt64: return Enum.ToObject(enumType, (ulong)value);
  84. default: throw new InvalidOperationException();
  85. }
  86. }
  87. }
  88. public object Read(object value, ProtoReader source)
  89. {
  90. Helpers.DebugAssert(value == null); // since replaces
  91. int wireValue = source.ReadInt32();
  92. if (map == null)
  93. {
  94. return WireToEnum(wireValue);
  95. }
  96. for (int i = 0; i < map.Length; i++)
  97. {
  98. if (map[i].WireValue == wireValue)
  99. {
  100. return map[i].TypedValue;
  101. }
  102. }
  103. source.ThrowEnumException(ExpectedType, wireValue);
  104. return null; // to make compiler happy
  105. }
  106. public void Write(object value, ProtoWriter dest)
  107. {
  108. if (map == null)
  109. {
  110. ProtoWriter.WriteInt32(EnumToWire(value), dest);
  111. }
  112. else
  113. {
  114. for (int i = 0; i < map.Length; i++)
  115. {
  116. if (object.Equals(map[i].TypedValue, value))
  117. {
  118. ProtoWriter.WriteInt32(map[i].WireValue, dest);
  119. return;
  120. }
  121. }
  122. ProtoWriter.ThrowEnumException(dest, value);
  123. }
  124. }
  125. #if FEAT_COMPILER
  126. void IProtoSerializer.EmitWrite(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
  127. {
  128. ProtoTypeCode typeCode = GetTypeCode();
  129. if (map == null)
  130. {
  131. ctx.LoadValue(valueFrom);
  132. ctx.ConvertToInt32(typeCode, false);
  133. ctx.EmitBasicWrite("WriteInt32", null);
  134. }
  135. else
  136. {
  137. using (Compiler.Local loc = ctx.GetLocalWithValue(ExpectedType, valueFrom))
  138. {
  139. Compiler.CodeLabel @continue = ctx.DefineLabel();
  140. for (int i = 0; i < map.Length; i++)
  141. {
  142. Compiler.CodeLabel tryNextValue = ctx.DefineLabel(), processThisValue = ctx.DefineLabel();
  143. ctx.LoadValue(loc);
  144. WriteEnumValue(ctx, typeCode, map[i].RawValue);
  145. ctx.BranchIfEqual(processThisValue, true);
  146. ctx.Branch(tryNextValue, true);
  147. ctx.MarkLabel(processThisValue);
  148. ctx.LoadValue(map[i].WireValue);
  149. ctx.EmitBasicWrite("WriteInt32", null);
  150. ctx.Branch(@continue, false);
  151. ctx.MarkLabel(tryNextValue);
  152. }
  153. ctx.LoadReaderWriter();
  154. ctx.LoadValue(loc);
  155. ctx.CastToObject(ExpectedType);
  156. ctx.EmitCall(ctx.MapType(typeof(ProtoWriter)).GetMethod("ThrowEnumException"));
  157. ctx.MarkLabel(@continue);
  158. }
  159. }
  160. }
  161. void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
  162. {
  163. ProtoTypeCode typeCode = GetTypeCode();
  164. if (map == null)
  165. {
  166. ctx.EmitBasicRead("ReadInt32", ctx.MapType(typeof(int)));
  167. ctx.ConvertFromInt32(typeCode, false);
  168. }
  169. else
  170. {
  171. int[] wireValues = new int[map.Length];
  172. object[] values = new object[map.Length];
  173. for (int i = 0; i < map.Length; i++)
  174. {
  175. wireValues[i] = map[i].WireValue;
  176. values[i] = map[i].RawValue;
  177. }
  178. using (Compiler.Local result = new Compiler.Local(ctx, ExpectedType))
  179. using (Compiler.Local wireValue = new Compiler.Local(ctx, ctx.MapType(typeof(int))))
  180. {
  181. ctx.EmitBasicRead("ReadInt32", ctx.MapType(typeof(int)));
  182. ctx.StoreValue(wireValue);
  183. Compiler.CodeLabel @continue = ctx.DefineLabel();
  184. foreach (BasicList.Group group in BasicList.GetContiguousGroups(wireValues, values))
  185. {
  186. Compiler.CodeLabel tryNextGroup = ctx.DefineLabel();
  187. int groupItemCount = group.Items.Count;
  188. if (groupItemCount == 1)
  189. {
  190. // discreet group; use an equality test
  191. ctx.LoadValue(wireValue);
  192. ctx.LoadValue(group.First);
  193. Compiler.CodeLabel processThisValue = ctx.DefineLabel();
  194. ctx.BranchIfEqual(processThisValue, true);
  195. ctx.Branch(tryNextGroup, false);
  196. WriteEnumValue(ctx, typeCode, processThisValue, @continue, group.Items[0], @result);
  197. }
  198. else
  199. {
  200. // implement as a jump-table-based switch
  201. ctx.LoadValue(wireValue);
  202. ctx.LoadValue(group.First);
  203. ctx.Subtract(); // jump-tables are zero-based
  204. Compiler.CodeLabel[] jmp = new Compiler.CodeLabel[groupItemCount];
  205. for (int i = 0; i < groupItemCount; i++)
  206. {
  207. jmp[i] = ctx.DefineLabel();
  208. }
  209. ctx.Switch(jmp);
  210. // write the default...
  211. ctx.Branch(tryNextGroup, false);
  212. for (int i = 0; i < groupItemCount; i++)
  213. {
  214. WriteEnumValue(ctx, typeCode, jmp[i], @continue, group.Items[i], @result);
  215. }
  216. }
  217. ctx.MarkLabel(tryNextGroup);
  218. }
  219. // throw source.CreateEnumException(ExpectedType, wireValue);
  220. ctx.LoadReaderWriter();
  221. ctx.LoadValue(ExpectedType);
  222. ctx.LoadValue(wireValue);
  223. ctx.EmitCall(ctx.MapType(typeof(ProtoReader)).GetMethod("ThrowEnumException"));
  224. ctx.MarkLabel(@continue);
  225. ctx.LoadValue(result);
  226. }
  227. }
  228. }
  229. private static void WriteEnumValue(Compiler.CompilerContext ctx, ProtoTypeCode typeCode, object value)
  230. {
  231. switch (typeCode)
  232. {
  233. case ProtoTypeCode.Byte: ctx.LoadValue((int)(byte)value); break;
  234. case ProtoTypeCode.SByte: ctx.LoadValue((int)(sbyte)value); break;
  235. case ProtoTypeCode.Int16: ctx.LoadValue((int)(short)value); break;
  236. case ProtoTypeCode.Int32: ctx.LoadValue((int)(int)value); break;
  237. case ProtoTypeCode.Int64: ctx.LoadValue((long)(long)value); break;
  238. case ProtoTypeCode.UInt16: ctx.LoadValue((int)(ushort)value); break;
  239. case ProtoTypeCode.UInt32: ctx.LoadValue((int)(uint)value); break;
  240. case ProtoTypeCode.UInt64: ctx.LoadValue((long)(ulong)value); break;
  241. default: throw new InvalidOperationException();
  242. }
  243. }
  244. private static void WriteEnumValue(Compiler.CompilerContext ctx, ProtoTypeCode typeCode, Compiler.CodeLabel handler, Compiler.CodeLabel @continue, object value, Compiler.Local local)
  245. {
  246. ctx.MarkLabel(handler);
  247. WriteEnumValue(ctx, typeCode, value);
  248. ctx.StoreValue(local);
  249. ctx.Branch(@continue, false); // "continue"
  250. }
  251. #endif
  252. }
  253. }
  254. #endif