/* 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 GeoJsonFeatureCollection value.
///
/// The type of the coordinates.
public class GeoJsonFeatureCollectionSerializer : ClassSerializerBase> where TCoordinates : GeoJsonCoordinates
{
// private constants
private static class Flags
{
public const long Features = 16;
}
// private fields
private readonly IBsonSerializer> _featureSerializer = BsonSerializer.LookupSerializer>();
private readonly GeoJsonObjectSerializerHelper _helper;
// constructors
///
/// Initializes a new instance of the class.
///
public GeoJsonFeatureCollectionSerializer()
{
_helper = new GeoJsonObjectSerializerHelper
(
"FeatureCollection",
new SerializerHelper.Member("features", Flags.Features)
);
}
// protected methods
///
/// Deserializes a value.
///
/// The deserialization context.
/// The deserialization args.
/// The value.
protected override GeoJsonFeatureCollection DeserializeValue(BsonDeserializationContext context, BsonDeserializationArgs args)
{
var geoJsonObjectArgs = new GeoJsonObjectArgs();
List> features = null;
_helper.DeserializeMembers(context, (elementName, flag) =>
{
switch (flag)
{
case Flags.Features: features = DeserializeFeatures(context); break;
default: _helper.DeserializeBaseMember(context, elementName, flag, geoJsonObjectArgs); break;
}
});
return new GeoJsonFeatureCollection(geoJsonObjectArgs, features);
}
///
/// Serializes a value.
///
/// The serialization context.
/// The serialization args.
/// The value.
protected override void SerializeValue(BsonSerializationContext context, BsonSerializationArgs args, GeoJsonFeatureCollection value)
{
_helper.SerializeMembers(context, value, SerializeDerivedMembers);
}
// private methods
private List> DeserializeFeatures(BsonDeserializationContext context)
{
var bsonReader = context.Reader;
bsonReader.ReadStartArray();
var features = new List>();
while (bsonReader.ReadBsonType() != BsonType.EndOfDocument)
{
var feature = _featureSerializer.Deserialize(context);
features.Add(feature);
}
bsonReader.ReadEndArray();
return features;
}
private void SerializeDerivedMembers(BsonSerializationContext context, GeoJsonFeatureCollection value)
{
SerializeFeatures(context, value.Features);
}
private void SerializeFeatures(BsonSerializationContext context, IEnumerable> features)
{
var bsonWriter = context.Writer;
bsonWriter.WriteName("features");
bsonWriter.WriteStartArray();
foreach (var feature in features)
{
_featureSerializer.Serialize(context, feature);
}
bsonWriter.WriteEndArray();
}
}
}