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

68 lines
1.5 KiB
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
#if !NO_RUNTIME
using System;
#if FEAT_IKVM
using Type = IKVM.Reflection.Type;
using IKVM.Reflection;
#else
using System.Reflection;
#endif
2014-07-08 12:58:53 +00:00
namespace ProtoBuf.Serializers
{
internal sealed class UInt32Serializer : IProtoSerializer
2014-07-08 12:58:53 +00:00
{
#if FEAT_IKVM
readonly Type expectedType;
#else
private static readonly Type expectedType = typeof (uint);
2014-07-08 12:58:53 +00:00
#endif
2014-07-08 12:58:53 +00:00
public UInt32Serializer(ProtoBuf.Meta.TypeModel model)
{
#if FEAT_IKVM
expectedType = model.MapType(typeof(uint));
#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.ReadUInt32();
}
2014-07-08 12:58:53 +00:00
public void Write(object value, ProtoWriter dest)
{
ProtoWriter.WriteUInt32((uint) 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("WriteUInt32", valueFrom);
}
void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
{
ctx.EmitBasicRead("ReadUInt32", ctx.MapType(typeof(uint)));
}
#endif
}
}
2014-07-08 12:58:53 +00:00
#endif