/* 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.Collections; using System.Collections.Generic; using System.Linq; using MongoDB.Bson.IO; using MongoDB.Bson.Serialization; using MongoDB.Bson.Serialization.Serializers; namespace MongoDB.Bson { // this class is a wrapper for an object that we intend to serialize as a BsonDocument // it is a subclass of BsonDocument so that it may be used where a BsonDocument is expected // this class is mostly used by MongoCollection and MongoCursor when supporting generic query objects // if all that ever happens with this wrapped object is that it gets serialized then the BsonDocument is never materialized /// /// Represents a BsonDocument wrapper. /// public class BsonDocumentWrapper : MaterializedOnDemandBsonDocument { // private fields private readonly object _wrapped; private readonly IBsonSerializer _serializer; // constructors /// /// Initializes a new instance of the class. /// /// The value. public BsonDocumentWrapper(object value) : this(value, UndiscriminatedActualTypeSerializer.Instance) { } /// /// Initializes a new instance of the class. /// /// The value. /// The serializer. public BsonDocumentWrapper(object value, IBsonSerializer serializer) { if (serializer == null) { throw new ArgumentNullException("serializer"); } _wrapped = value; _serializer = serializer; } // public properties /// /// Gets the serializer. /// /// /// The serializer. /// public IBsonSerializer Serializer { get { return _serializer; } } /// /// Gets the wrapped value. /// public object Wrapped { get { return _wrapped; } } // public static methods /// /// Creates a new instance of the BsonDocumentWrapper class. /// /// The nominal type of the wrapped object. /// The wrapped object. /// A BsonDocumentWrapper. public static BsonDocumentWrapper Create(TNominalType value) { return Create(typeof(TNominalType), value); } /// /// Creates a new instance of the BsonDocumentWrapper class. /// /// The nominal type of the wrapped object. /// The wrapped object. /// A BsonDocumentWrapper. public static BsonDocumentWrapper Create(Type nominalType, object value) { var serializer = BsonSerializer.LookupSerializer(nominalType); return new BsonDocumentWrapper(value, serializer); } /// /// Creates a list of new instances of the BsonDocumentWrapper class. /// /// The nominal type of the wrapped objects. /// A list of wrapped objects. /// A list of BsonDocumentWrappers. public static IEnumerable CreateMultiple(IEnumerable values) { if (values == null) { throw new ArgumentNullException("values"); } var serializer = BsonSerializer.LookupSerializer(typeof(TNominalType)); return values.Select(v => new BsonDocumentWrapper(v, serializer)); } /// /// Creates a list of new instances of the BsonDocumentWrapper class. /// /// The nominal type of the wrapped object. /// A list of wrapped objects. /// A list of BsonDocumentWrappers. public static IEnumerable CreateMultiple(Type nominalType, IEnumerable values) { if (nominalType == null) { throw new ArgumentNullException("nominalType"); } if (values == null) { throw new ArgumentNullException("values"); } var serializer = BsonSerializer.LookupSerializer(nominalType); return values.Cast().Select(v => new BsonDocumentWrapper(v, serializer)); } // public methods /// /// Creates a shallow clone of the document (see also DeepClone). /// /// /// A shallow clone of the document. /// public override BsonValue Clone() { if (IsMaterialized) { return base.Clone(); } else { return new BsonDocumentWrapper( _wrapped, _serializer); } } // protected methods /// /// Materializes the BsonDocument. /// /// The materialized elements. protected override IEnumerable Materialize() { var bsonDocument = new BsonDocument(); var writerSettings = BsonDocumentWriterSettings.Defaults; using (var bsonWriter = new BsonDocumentWriter(bsonDocument, writerSettings)) { var context = BsonSerializationContext.CreateRoot(bsonWriter); _serializer.Serialize(context, _wrapped); } return bsonDocument.Elements; } /// /// Informs subclasses that the Materialize process completed so they can free any resources related to the unmaterialized state. /// protected override void MaterializeCompleted() { } } }