/* 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 MongoDB.Bson; using MongoDB.Bson.Serialization; using MongoDB.Bson.Serialization.Serializers; namespace MongoDB.Driver.GeoJsonObjectModel.Serializers { /// /// Represents a serializer for a GeoJsonFeature value. /// /// The type of the coordinates. public class GeoJsonFeatureSerializer : ClassSerializerBase> where TCoordinates : GeoJsonCoordinates { // private constants private static class Flags { public const long Geometry = 16; public const long Id = 32; public const long Properties = 64; } // private fields private readonly IBsonSerializer> _geometrySerializer = BsonSerializer.LookupSerializer>(); private readonly GeoJsonObjectSerializerHelper _helper; // constructors /// /// Initializes a new instance of the class. /// public GeoJsonFeatureSerializer() { _helper = new GeoJsonObjectSerializerHelper ( "Feature", new SerializerHelper.Member("geometry", Flags.Geometry), new SerializerHelper.Member("id", Flags.Id, isOptional: true), new SerializerHelper.Member("properties", Flags.Properties, isOptional: true) ); } // protected methods /// /// Deserializes a value. /// /// The deserialization context. /// The deserialization args. /// The value. protected override GeoJsonFeature DeserializeValue(BsonDeserializationContext context, BsonDeserializationArgs args) { var geoJsonFeatureArgs = new GeoJsonFeatureArgs(); GeoJsonGeometry geometry = null; _helper.DeserializeMembers(context, (elementName, flag) => { switch (flag) { case Flags.Geometry: geometry = DeserializeGeometry(context); break; case Flags.Id: geoJsonFeatureArgs.Id = DeserializeId(context); break; case Flags.Properties: geoJsonFeatureArgs.Properties = DeserializeProperties(context); break; default: _helper.DeserializeBaseMember(context, elementName, flag, geoJsonFeatureArgs); break; } }); return new GeoJsonFeature(geoJsonFeatureArgs, geometry); } /// /// Serializes a value. /// /// The serialization context. /// The serialization args. /// The value. protected override void SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, GeoJsonFeature value) { _helper.SerializeMembers(context, value, SerializeDerivedMembers); } // private methods private GeoJsonGeometry DeserializeGeometry(BsonDeserializationContext context) { return _geometrySerializer.Deserialize(context); } private BsonValue DeserializeId(BsonDeserializationContext context) { return BsonValueSerializer.Instance.Deserialize(context); } private BsonDocument DeserializeProperties(BsonDeserializationContext context) { return BsonDocumentSerializer.Instance.Deserialize(context); } private void SerializeDerivedMembers(BsonSerializationContext context, GeoJsonFeature value) { SerializeGeometry(context, value.Geometry); SerializeId(context, value.Id); SerializeProperties(context, value.Properties); } private void SerializeGeometry(BsonSerializationContext context, GeoJsonGeometry geometry) { context.Writer.WriteName("geometry"); _geometrySerializer.Serialize(context, geometry); } private void SerializeId(BsonSerializationContext context, BsonValue id) { if (id != null) { context.Writer.WriteName("id"); BsonValueSerializer.Instance.Serialize(context, id); } } private void SerializeProperties(BsonSerializationContext context, BsonDocument properties) { if (properties != null) { context.Writer.WriteName("properties"); BsonDocumentSerializer.Instance.Serialize(context, properties); } } } }