123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #if !NO_RUNTIME
- using System;
- namespace ProtoBuf.Serializers
- {
- sealed class Int16Serializer : IProtoSerializer
- {
- static readonly Type expectedType = typeof(short);
- public Int16Serializer(ProtoBuf.Meta.TypeModel model) { }
- public Type ExpectedType => expectedType;
- bool IProtoSerializer.RequiresOldValue => false;
- bool IProtoSerializer.ReturnsValue => true;
- public object Read(object value, ProtoReader source)
- {
- Helpers.DebugAssert(value == null); // since replaces
- return source.ReadInt16();
- }
- public void Write(object value, ProtoWriter dest)
- {
- ProtoWriter.WriteInt16((short)value, dest);
- }
- #if FEAT_COMPILER
- void IProtoSerializer.EmitWrite(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
- {
- ctx.EmitBasicWrite("WriteInt16", valueFrom);
- }
- void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
- {
- ctx.EmitBasicRead("ReadInt16", ExpectedType);
- }
- #endif
- }
- }
- #endif
|