GuidSerializer.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #if !NO_RUNTIME
  2. using System;
  3. namespace ProtoBuf.Serializers
  4. {
  5. sealed class GuidSerializer : IProtoSerializer
  6. {
  7. static readonly Type expectedType = typeof(Guid);
  8. public GuidSerializer(ProtoBuf.Meta.TypeModel model) { }
  9. public Type ExpectedType { get { return expectedType; } }
  10. bool IProtoSerializer.RequiresOldValue => false;
  11. bool IProtoSerializer.ReturnsValue => true;
  12. public void Write(object value, ProtoWriter dest)
  13. {
  14. BclHelpers.WriteGuid((Guid)value, dest);
  15. }
  16. public object Read(object value, ProtoReader source)
  17. {
  18. Helpers.DebugAssert(value == null); // since replaces
  19. return BclHelpers.ReadGuid(source);
  20. }
  21. #if FEAT_COMPILER
  22. void IProtoSerializer.EmitWrite(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
  23. {
  24. ctx.EmitWrite(ctx.MapType(typeof(BclHelpers)), "WriteGuid", valueFrom);
  25. }
  26. void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
  27. {
  28. ctx.EmitBasicRead(ctx.MapType(typeof(BclHelpers)), "ReadGuid", ExpectedType);
  29. }
  30. #endif
  31. }
  32. }
  33. #endif