| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* Copyright 2010-2014 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 MongoDB.Bson.IO;
- namespace MongoDB.Bson.Serialization
- {
- /// <summary>
- /// Represents the information needed to serialize a member.
- /// </summary>
- public class BsonSerializationInfo
- {
- // private fields
- private string _elementName;
- private IBsonSerializer _serializer;
- private Type _nominalType;
- private IBsonSerializationOptions _serializationOptions;
- // constructors
- /// <summary>
- /// Initializes a new instance of the BsonSerializationInfo class.
- /// </summary>
- /// <param name="elementName">The element name.</param>
- /// <param name="serializer">The serializer.</param>
- /// <param name="nominalType">The nominal type.</param>
- /// <param name="serializationOptions">The serialization options.</param>
- public BsonSerializationInfo(string elementName, IBsonSerializer serializer, Type nominalType, IBsonSerializationOptions serializationOptions)
- {
- _elementName = elementName;
- _serializer = serializer;
- _nominalType = nominalType;
- _serializationOptions = serializationOptions;
- }
- // public properties
- /// <summary>
- /// Gets or sets the dotted element name.
- /// </summary>
- public string ElementName
- {
- get { return _elementName; }
- }
- /// <summary>
- /// Gets or sets the serializer.
- /// </summary>
- public IBsonSerializer Serializer
- {
- get { return _serializer; }
- }
- /// <summary>
- /// Gets or sets the nominal type.
- /// </summary>
- public Type NominalType
- {
- get { return _nominalType; }
- }
- /// <summary>
- /// Gets or sets the serialization options.
- /// </summary>
- public IBsonSerializationOptions SerializationOptions
- {
- get { return _serializationOptions; }
- }
- /// <summary>
- /// Deserializes the value.
- /// </summary>
- /// <param name="value">The value.</param>
- /// <returns>The deserialized value.</returns>
- public object DeserializeValue(BsonValue value)
- {
- var tempDocument = new BsonDocument("value", value);
- using (var reader = BsonReader.Create(tempDocument))
- {
- reader.ReadStartDocument();
- reader.ReadName("value");
- var deserializedValue = _serializer.Deserialize(reader, _nominalType, _serializationOptions);
- reader.ReadEndDocument();
- return deserializedValue;
- }
- }
- /// <summary>
- /// Serializes the value.
- /// </summary>
- /// <param name="value">The value.</param>
- /// <returns>The serialized value.</returns>
- public BsonValue SerializeValue(object value)
- {
- var tempDocument = new BsonDocument();
- using (var bsonWriter = BsonWriter.Create(tempDocument))
- {
- bsonWriter.WriteStartDocument();
- bsonWriter.WriteName("value");
- Serialize(bsonWriter, value);
- bsonWriter.WriteEndDocument();
- return tempDocument[0];
- }
- }
- /// <summary>
- /// Serializes the values.
- /// </summary>
- /// <param name="values">The values.</param>
- /// <returns>The serialized values.</returns>
- public BsonArray SerializeValues(IEnumerable values)
- {
- var tempDocument = new BsonDocument();
- using (var bsonWriter = BsonWriter.Create(tempDocument))
- {
- bsonWriter.WriteStartDocument();
- bsonWriter.WriteName("values");
- bsonWriter.WriteStartArray();
- foreach (var value in values)
- {
- Serialize(bsonWriter, value);
- }
- bsonWriter.WriteEndArray();
- bsonWriter.WriteEndDocument();
- return tempDocument[0].AsBsonArray;
- }
- }
- // private methods
- private void Serialize(BsonWriter bsonWriter, object value)
- {
- var serializer = _serializer;
- var actualType = (value == null) ? _nominalType : value.GetType();
- if (actualType != _nominalType)
- {
- serializer = BsonSerializer.LookupSerializer(actualType);
- }
- serializer.Serialize(bsonWriter, _nominalType, value, _serializationOptions);
- }
- }
- }
|