Quasar/Client/Core/ProtoBuf/Serializers/DoubleSerializer.cs

69 lines
1.6 KiB
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
#if !NO_RUNTIME
using System;
using ProtoBuf.Meta;
#if FEAT_IKVM
using Type = IKVM.Reflection.Type;
using IKVM.Reflection;
#else
using System.Reflection;
2014-07-08 12:58:53 +00:00
#endif
namespace ProtoBuf.Serializers
{
internal sealed class DoubleSerializer : IProtoSerializer
2014-07-08 12:58:53 +00:00
{
#if FEAT_IKVM
readonly Type expectedType;
#else
private static readonly Type expectedType = typeof (double);
2014-07-08 12:58:53 +00:00
#endif
2014-07-08 12:58:53 +00:00
public DoubleSerializer(ProtoBuf.Meta.TypeModel model)
{
#if FEAT_IKVM
expectedType = model.MapType(typeof(double));
#endif
}
public Type ExpectedType
{
get { return expectedType; }
}
bool IProtoSerializer.RequiresOldValue
{
get { return false; }
}
bool IProtoSerializer.ReturnsValue
{
get { return true; }
}
2014-07-08 12:58:53 +00:00
#if !FEAT_IKVM
public object Read(object value, ProtoReader source)
{
Helpers.DebugAssert(value == null); // since replaces
return source.ReadDouble();
}
2014-07-08 12:58:53 +00:00
public void Write(object value, ProtoWriter dest)
{
ProtoWriter.WriteDouble((double) value, dest);
2014-07-08 12:58:53 +00:00
}
#endif
#if FEAT_COMPILER
void IProtoSerializer.EmitWrite(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
{
ctx.EmitBasicWrite("WriteDouble", valueFrom);
}
void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
{
ctx.EmitBasicRead("ReadDouble", ExpectedType);
}
#endif
}
}
2014-07-08 12:58:53 +00:00
#endif