| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* 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.Linq;
- using MongoDB.Bson;
- using MongoDB.Bson.IO;
- using MongoDB.Bson.Serialization;
- using MongoDB.Bson.Serialization.Serializers;
- namespace MongoDB.Driver.GeoJsonObjectModel.Serializers
- {
- /// <summary>
- /// Represents a serializer for a GeoJsonBoundingBox value.
- /// </summary>
- /// <typeparam name="TCoordinates">The type of the coordinates.</typeparam>
- public class GeoJsonBoundingBoxSerializer<TCoordinates> : ClassSerializerBase<GeoJsonBoundingBox<TCoordinates>> where TCoordinates : GeoJsonCoordinates
- {
- // private fields
- private readonly IBsonSerializer<TCoordinates> _coordinatesSerializer = BsonSerializer.LookupSerializer<TCoordinates>();
- // protected methods
- /// <summary>
- /// Deserializes a value.
- /// </summary>
- /// <param name="context">The deserialization context.</param>
- /// <param name="args">The deserialization args.</param>
- /// <returns>The value.</returns>
- protected override GeoJsonBoundingBox<TCoordinates> DeserializeValue(BsonDeserializationContext context, BsonDeserializationArgs args)
- {
- var bsonReader = context.Reader;
- var flattenedArray = BsonArraySerializer.Instance.Deserialize(context);
- if ((flattenedArray.Count % 2) != 0)
- {
- throw new FormatException("Bounding box array does not have an even number of values.");
- }
- var half = flattenedArray.Count / 2;
- // create a dummy document with a min and a max and then deserialize the min and max coordinates from there
- var document = new BsonDocument
- {
- { "min", new BsonArray(flattenedArray.Take(half)) },
- { "max", new BsonArray(flattenedArray.Skip(half)) }
- };
- using (var documentReader = new BsonDocumentReader(document))
- {
- var documentContext = BsonDeserializationContext.CreateRoot(documentReader);
- documentReader.ReadStartDocument();
- documentReader.ReadName("min");
- var min = _coordinatesSerializer.Deserialize(documentContext);
- documentReader.ReadName("max");
- var max = _coordinatesSerializer.Deserialize(documentContext);
- documentReader.ReadEndDocument();
- return new GeoJsonBoundingBox<TCoordinates>(min, max);
- }
- }
- /// <summary>
- /// Serializes a value.
- /// </summary>
- /// <param name="context">The serialization context.</param>
- /// <param name="args">The serialization args.</param>
- /// <param name="value">The value.</param>
- protected override void SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, GeoJsonBoundingBox<TCoordinates> value)
- {
- var bsonWriter = context.Writer;
- // serialize min and max to a dummy document and then flatten the two arrays and serialize that
- var document = new BsonDocument();
- using (var documentWriter = new BsonDocumentWriter(document))
- {
- var documentContext = BsonSerializationContext.CreateRoot(documentWriter);
- documentWriter.WriteStartDocument();
- documentWriter.WriteName("min");
- _coordinatesSerializer.Serialize(documentContext, value.Min);
- documentWriter.WriteName("max");
- _coordinatesSerializer.Serialize(documentContext, value.Max);
- documentWriter.WriteEndDocument();
- }
- var flattenedArray = new BsonArray();
- flattenedArray.AddRange(document["min"].AsBsonArray);
- flattenedArray.AddRange(document["max"].AsBsonArray);
- BsonArraySerializer.Instance.Serialize(context, flattenedArray);
- }
- }
- }
|