/* Copyright 2010-present MongoDB Inc.
*
* Licensed 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.
*/
using System;
namespace MongoDB.Bson.Serialization.Serializers
{
///
/// Represents an abstract base class for class serializers.
///
/// The type of the value.
public abstract class ClassSerializerBase : SerializerBase where TValue : class
{
// public methods
///
/// Deserializes a value.
///
/// The deserialization context.
/// The deserialization args.
/// A deserialized value.
public override TValue Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
{
var bsonReader = context.Reader;
if (bsonReader.GetCurrentBsonType() == BsonType.Null)
{
bsonReader.ReadNull();
return null;
}
else
{
var actualType = GetActualType(context);
if (actualType == typeof(TValue))
{
return DeserializeValue(context, args);
}
else
{
var serializer = BsonSerializer.LookupSerializer(actualType);
return (TValue)serializer.Deserialize(context, args);
}
}
}
///
/// Serializes a value.
///
/// The serialization context.
/// The serialization args.
/// The value.
public override void Serialize(BsonSerializationContext context, BsonSerializationArgs args, TValue value)
{
if (value == null)
{
var bsonWriter = context.Writer;
bsonWriter.WriteNull();
}
else
{
var actualType = value.GetType();
if (actualType == typeof(TValue) || args.SerializeAsNominalType)
{
SerializeValue(context, args, value);
}
else
{
var serializer = BsonSerializer.LookupSerializer(actualType);
serializer.Serialize(context, value);
}
}
}
// protected methods
///
/// Deserializes a class.
///
/// The deserialization context.
/// The deserialization args.
/// A deserialized value.
protected virtual TValue DeserializeValue(BsonDeserializationContext context, BsonDeserializationArgs args)
{
throw CreateCannotBeDeserializedException();
}
///
/// Gets the actual type.
///
/// The context.
/// The actual type.
protected virtual Type GetActualType(BsonDeserializationContext context)
{
var discriminatorConvention = BsonSerializer.LookupDiscriminatorConvention(typeof(TValue));
return discriminatorConvention.GetActualType(context.Reader, typeof(TValue));
}
///
/// Serializes a value of type {TValue}.
///
/// The serialization context.
/// The serialization args.
/// The value.
protected virtual void SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, TValue value)
{
throw CreateCannotBeSerializedException();
}
}
}