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