| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /* 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;
- using System.Reflection;
- using MongoDB.Bson.Serialization.Conventions;
- namespace MongoDB.Bson.Serialization.Serializers
- {
- /// <summary>
- /// Represents a serializer for Interfaces.
- /// </summary>
- /// <typeparam name="TInterface">The type of the interface.</typeparam>
- public class DiscriminatedInterfaceSerializer<TInterface> : SerializerBase<TInterface> // where TInterface is an interface
- {
- // private fields
- private readonly Type _interfaceType;
- private readonly IDiscriminatorConvention _discriminatorConvention;
- private readonly IBsonSerializer<object> _objectSerializer;
- // constructors
- /// <summary>
- /// Initializes a new instance of the <see cref="DiscriminatedInterfaceSerializer{TInterface}" /> class.
- /// </summary>
- public DiscriminatedInterfaceSerializer()
- : this(BsonSerializer.LookupDiscriminatorConvention(typeof(TInterface)))
- {
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="DiscriminatedInterfaceSerializer{TInterface}" /> class.
- /// </summary>
- /// <param name="discriminatorConvention">The discriminator convention.</param>
- /// <exception cref="System.ArgumentException">interfaceType</exception>
- /// <exception cref="System.ArgumentNullException">interfaceType</exception>
- public DiscriminatedInterfaceSerializer(IDiscriminatorConvention discriminatorConvention)
- {
- var interfaceTypeInfo = typeof(TInterface).GetTypeInfo();
- if (!interfaceTypeInfo.IsInterface)
- {
- var message = string.Format("{0} is not an interface.", typeof(TInterface).FullName);
- throw new ArgumentException(message, "<TInterface>");
- }
- _interfaceType = typeof(TInterface);
- _discriminatorConvention = discriminatorConvention;
- _objectSerializer = new ObjectSerializer(_discriminatorConvention);
- }
- // public methods
- /// <summary>
- /// Deserializes a value.
- /// </summary>
- /// <param name="context">The deserialization context.</param>
- /// <param name="args">The deserialization args.</param>
- /// <returns>A deserialized value.</returns>
- /// <exception cref="System.FormatException"></exception>
- public override TInterface Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
- {
- var bsonReader = context.Reader;
- if (bsonReader.GetCurrentBsonType() == BsonType.Null)
- {
- bsonReader.ReadNull();
- return default(TInterface);
- }
- else
- {
- var actualType = _discriminatorConvention.GetActualType(bsonReader, typeof(TInterface));
- if (actualType == _interfaceType)
- {
- var message = string.Format("Unable to determine actual type of object to deserialize for interface type {0}.", _interfaceType.FullName);
- throw new FormatException(message);
- }
- var serializer = BsonSerializer.LookupSerializer(actualType);
- return (TInterface)serializer.Deserialize(context, args);
- }
- }
- /// <summary>
- /// Serializes a value.
- /// </summary>
- /// <param name="context">The serialization context.</param>
- /// <param name="args">The serialization args.</param>
- /// <param name="value">The document.</param>
- public override void Serialize(BsonSerializationContext context, BsonSerializationArgs args, TInterface value)
- {
- var bsonWriter = context.Writer;
- if (value == null)
- {
- bsonWriter.WriteNull();
- }
- else
- {
- args.NominalType = typeof(object);
- _objectSerializer.Serialize(context, args, value);
- }
- }
- }
- }
|