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