mirror of https://github.com/quasar/Quasar.git
55 lines
1.5 KiB
C#
55 lines
1.5 KiB
C#
#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 DateTimeSerializer : IProtoSerializer
|
|
{
|
|
#if FEAT_IKVM
|
|
readonly Type expectedType;
|
|
#else
|
|
static readonly Type expectedType = typeof(DateTime);
|
|
#endif
|
|
public Type ExpectedType { get { return expectedType; } }
|
|
|
|
bool IProtoSerializer.RequiresOldValue { get { return false; } }
|
|
bool IProtoSerializer.ReturnsValue { get { return true; } }
|
|
|
|
public DateTimeSerializer(ProtoBuf.Meta.TypeModel model)
|
|
{
|
|
#if FEAT_IKVM
|
|
expectedType = model.MapType(typeof(DateTime));
|
|
#endif
|
|
}
|
|
#if !FEAT_IKVM
|
|
public object Read(object value, ProtoReader source)
|
|
{
|
|
Helpers.DebugAssert(value == null); // since replaces
|
|
return BclHelpers.ReadDateTime(source);
|
|
}
|
|
public void Write(object value, ProtoWriter dest)
|
|
{
|
|
BclHelpers.WriteDateTime((DateTime)value, dest);
|
|
}
|
|
#endif
|
|
#if FEAT_COMPILER
|
|
void IProtoSerializer.EmitWrite(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
|
|
{
|
|
ctx.EmitWrite(ctx.MapType(typeof(BclHelpers)), "WriteDateTime", valueFrom);
|
|
}
|
|
void IProtoSerializer.EmitRead(Compiler.CompilerContext ctx, Compiler.Local valueFrom)
|
|
{
|
|
ctx.EmitBasicRead(ctx.MapType(typeof(BclHelpers)), "ReadDateTime", ExpectedType);
|
|
}
|
|
#endif
|
|
|
|
}
|
|
}
|
|
#endif |