/* 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.Collections.Generic; using MongoDB.Bson; using MongoDB.Bson.Serialization; using MongoDB.Bson.Serialization.Serializers; namespace MongoDB.Driver.GeoJsonObjectModel.Serializers { /// /// Represents a serializer for a GeoJsonGeometryCollection value. /// /// The type of the coordinates. public class GeoJsonGeometryCollectionSerializer : ClassSerializerBase> where TCoordinates : GeoJsonCoordinates { // private constants private static class Flags { public const long Geometries = 16; } // private fields private readonly IBsonSerializer> _geometrySerializer = BsonSerializer.LookupSerializer>(); private readonly GeoJsonObjectSerializerHelper _helper; // constructors /// /// Initializes a new instance of the class. /// public GeoJsonGeometryCollectionSerializer() { _helper = new GeoJsonObjectSerializerHelper ( "GeometryCollection", new SerializerHelper.Member("geometries", Flags.Geometries) ); } // protected methods /// /// Deserializes a value. /// /// The deserialization context. /// The deserialization args. /// The value. protected override GeoJsonGeometryCollection DeserializeValue(BsonDeserializationContext context, BsonDeserializationArgs args) { var geoJsonObjectArgs = new GeoJsonObjectArgs(); List> geometries = null; _helper.DeserializeMembers(context, (elementName, flag) => { switch (flag) { case Flags.Geometries: geometries = DeserializeGeometries(context); break; default: _helper.DeserializeBaseMember(context, elementName, flag, geoJsonObjectArgs); break; } }); return new GeoJsonGeometryCollection(geoJsonObjectArgs, geometries); } /// /// Serializes a value. /// /// The serialization context. /// The serialization args. /// The value. protected override void SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, GeoJsonGeometryCollection value) { _helper.SerializeMembers(context, value, SerializeDerivedMembers); } // private methods private List> DeserializeGeometries(BsonDeserializationContext context) { var bsonReader = context.Reader; bsonReader.ReadStartArray(); var geometries = new List>(); while (bsonReader.ReadBsonType() != BsonType.EndOfDocument) { var geometry = _geometrySerializer.Deserialize(context); geometries.Add(geometry); } bsonReader.ReadEndArray(); return geometries; } private void SerializeDerivedMembers(BsonSerializationContext context, GeoJsonGeometryCollection value) { SerializeGeometries(context, value.Geometries); } private void SerializeGeometries(BsonSerializationContext context, IEnumerable> geometries) { var bsonWriter = context.Writer; bsonWriter.WriteName("geometries"); bsonWriter.WriteStartArray(); foreach (var geometry in geometries) { _geometrySerializer.Serialize(context, geometry); } bsonWriter.WriteEndArray(); } } }