blob: ef3271b93435e5e2b9fc3119bdb50dcb68aca71a [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
namespace Apache.Fory;
public sealed class NullableSerializer<T> : Serializer<T?> where T : struct
{
public override T? DefaultValue => null;
public override void WriteData(WriteContext context, in T? value, bool hasGenerics)
{
if (!value.HasValue)
{
throw new InvalidDataException("Nullable<T>.None cannot write raw payload");
}
T wrapped = value.Value;
Serializer<T> wrappedSerializer = context.TypeResolver.GetSerializer<T>();
wrappedSerializer.WriteData(context, wrapped, hasGenerics);
}
public override T? ReadData(ReadContext context)
{
Serializer<T> wrappedSerializer = context.TypeResolver.GetSerializer<T>();
return wrappedSerializer.ReadData(context);
}
public override void Write(WriteContext context, in T? value, RefMode refMode, bool writeTypeInfo, bool hasGenerics)
{
Serializer<T> wrappedSerializer = context.TypeResolver.GetSerializer<T>();
switch (refMode)
{
case RefMode.None:
if (!value.HasValue)
{
throw new InvalidDataException("Nullable<T>.None with RefMode.None");
}
T wrapped = value.Value;
wrappedSerializer.Write(context, wrapped, RefMode.None, writeTypeInfo, hasGenerics);
break;
case RefMode.NullOnly:
if (!value.HasValue)
{
context.Writer.WriteInt8((sbyte)RefFlag.Null);
return;
}
context.Writer.WriteInt8((sbyte)RefFlag.NotNullValue);
wrappedSerializer.Write(context, value.Value, RefMode.None, writeTypeInfo, hasGenerics);
break;
case RefMode.Tracking:
if (!value.HasValue)
{
context.Writer.WriteInt8((sbyte)RefFlag.Null);
return;
}
wrappedSerializer.Write(context, value.Value, RefMode.Tracking, writeTypeInfo, hasGenerics);
break;
default:
throw new InvalidDataException($"unsupported ref mode {refMode}");
}
}
public override T? Read(ReadContext context, RefMode refMode, bool readTypeInfo)
{
Serializer<T> wrappedSerializer = context.TypeResolver.GetSerializer<T>();
switch (refMode)
{
case RefMode.None:
return wrappedSerializer.Read(context, RefMode.None, readTypeInfo);
case RefMode.NullOnly:
{
sbyte refFlag = context.Reader.ReadInt8();
if (refFlag == (sbyte)RefFlag.Null)
{
return null;
}
return wrappedSerializer.Read(context, RefMode.None, readTypeInfo);
}
case RefMode.Tracking:
{
sbyte refFlag = context.Reader.ReadInt8();
if (refFlag == (sbyte)RefFlag.Null)
{
return null;
}
context.Reader.MoveBack(1);
return wrappedSerializer.Read(context, RefMode.Tracking, readTypeInfo);
}
default:
throw new InvalidDataException($"unsupported ref mode {refMode}");
}
}
}