/* 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.IO; using MongoDB.Bson.IO; using MongoDB.Bson.Serialization.Attributes; using MongoDB.Bson.Serialization.Options; namespace MongoDB.Bson.Serialization.Serializers { /// /// Represents a serializer for DateTimeOffsets. /// public class DateTimeOffsetSerializer : StructSerializerBase, IRepresentationConfigurable { // private constants private static class Flags { public const long DateTime = 1; public const long Ticks = 2; public const long Offset = 4; } // private fields private readonly SerializerHelper _helper; private readonly Int32Serializer _int32Serializer = new Int32Serializer(); private readonly Int64Serializer _int64Serializer = new Int64Serializer(); private readonly BsonType _representation; // constructors /// /// Initializes a new instance of the class. /// public DateTimeOffsetSerializer() : this(BsonType.Array) { } /// /// Initializes a new instance of the class. /// /// The representation. public DateTimeOffsetSerializer(BsonType representation) { switch (representation) { case BsonType.Array: case BsonType.Document: case BsonType.String: break; default: var message = string.Format("{0} is not a valid representation for a DateTimeOffsetSerializer.", representation); throw new ArgumentException(message); } _representation = representation; _helper = new SerializerHelper ( new SerializerHelper.Member("DateTime", Flags.DateTime), new SerializerHelper.Member("Ticks", Flags.Ticks), new SerializerHelper.Member("Offset", Flags.Offset) ); } // public properties /// /// Gets the representation. /// /// /// The representation. /// public BsonType Representation { get { return _representation; } } // public methods /// /// Deserializes a value. /// /// The deserialization context. /// The deserialization args. /// A deserialized value. public override DateTimeOffset Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args) { var bsonReader = context.Reader; long ticks; TimeSpan offset; BsonType bsonType = bsonReader.GetCurrentBsonType(); switch (bsonType) { case BsonType.Array: bsonReader.ReadStartArray(); ticks = bsonReader.ReadInt64(); offset = TimeSpan.FromMinutes(bsonReader.ReadInt32()); bsonReader.ReadEndArray(); return new DateTimeOffset(ticks, offset); case BsonType.Document: ticks = 0; offset = TimeSpan.Zero; _helper.DeserializeMembers(context, (elementName, flag) => { switch (flag) { case Flags.DateTime: bsonReader.SkipValue(); break; // ignore value case Flags.Ticks: ticks = _int64Serializer.Deserialize(context); break; case Flags.Offset: offset = TimeSpan.FromMinutes(_int32Serializer.Deserialize(context)); break; } }); return new DateTimeOffset(ticks, offset); case BsonType.String: return JsonConvert.ToDateTimeOffset(bsonReader.ReadString()); default: throw CreateCannotDeserializeFromBsonTypeException(bsonType); } } /// /// Serializes a value. /// /// The serialization context. /// The serialization args. /// The object. public override void Serialize(BsonSerializationContext context, BsonSerializationArgs args, DateTimeOffset value) { var bsonWriter = context.Writer; // note: the DateTime portion cannot be serialized as a BsonType.DateTime because it is NOT in UTC switch (_representation) { case BsonType.Array: bsonWriter.WriteStartArray(); bsonWriter.WriteInt64(value.Ticks); bsonWriter.WriteInt32((int)value.Offset.TotalMinutes); bsonWriter.WriteEndArray(); break; case BsonType.Document: bsonWriter.WriteStartDocument(); bsonWriter.WriteDateTime("DateTime", BsonUtils.ToMillisecondsSinceEpoch(value.UtcDateTime)); bsonWriter.WriteInt64("Ticks", value.Ticks); bsonWriter.WriteInt32("Offset", (int)value.Offset.TotalMinutes); bsonWriter.WriteEndDocument(); break; case BsonType.String: bsonWriter.WriteString(JsonConvert.ToString(value)); break; default: var message = string.Format("'{0}' is not a valid DateTimeOffset representation.", _representation); throw new BsonSerializationException(message); } } /// /// Returns a serializer that has been reconfigured with the specified representation. /// /// The representation. /// The reconfigured serializer. public DateTimeOffsetSerializer WithRepresentation(BsonType representation) { if (representation == _representation) { return this; } else { return new DateTimeOffsetSerializer(representation); } } // explicit interface implementations IBsonSerializer IRepresentationConfigurable.WithRepresentation(BsonType representation) { return WithRepresentation(representation); } } }