DateTimeSerializer.cs 15.6 KB
Newer Older
T
tanghai 已提交
1
/* Copyright 2010-2015 MongoDB Inc.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
*
* 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.Globalization;
using System.IO;
using MongoDB.Bson.IO;
T
tanghai 已提交
20
using MongoDB.Bson.Serialization.Attributes;
21 22 23 24 25 26 27
using MongoDB.Bson.Serialization.Options;

namespace MongoDB.Bson.Serialization.Serializers
{
    /// <summary>
    /// Represents a serializer for DateTimes.
    /// </summary>
T
tanghai 已提交
28
    public class DateTimeSerializer : StructSerializerBase<DateTime>, IRepresentationConfigurable<DateTimeSerializer>
29
    {
T
tanghai 已提交
30 31 32 33 34 35 36
        // private constants
        private static class Flags
        {
            public const long DateTime = 1;
            public const long Ticks = 2;
        }

37
        // private static fields
T
tanghai 已提交
38 39 40 41 42 43 44 45 46 47
        private static readonly DateTimeSerializer __dateOnlyInstance = new DateTimeSerializer(true);
        private static readonly DateTimeSerializer __localInstance = new DateTimeSerializer(DateTimeKind.Local);
        private static readonly DateTimeSerializer __utcInstance = new DateTimeSerializer(DateTimeKind.Utc);

        // private fields
        private readonly bool _dateOnly;
        private readonly SerializerHelper _helper;
        private readonly Int64Serializer _int64Serializer = new Int64Serializer();
        private readonly DateTimeKind _kind;
        private readonly BsonType _representation;
48 49 50

        // constructors
        /// <summary>
T
tanghai 已提交
51
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
52 53
        /// </summary>
        public DateTimeSerializer()
T
tanghai 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
            : this(DateTimeKind.Utc, BsonType.DateTime)
        {
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
        /// </summary>
        /// <param name="dateOnly">if set to <c>true</c> [date only].</param>
        public DateTimeSerializer(bool dateOnly)
            : this(dateOnly, BsonType.DateTime)
        {
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
        /// </summary>
        /// <param name="dateOnly">if set to <c>true</c> [date only].</param>
        /// <param name="representation">The representation.</param>
        public DateTimeSerializer(bool dateOnly, BsonType representation)
            : this(dateOnly, DateTimeKind.Utc, representation)
        {
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
        /// </summary>
        /// <param name="representation">The representation.</param>
        public DateTimeSerializer(BsonType representation)
            : this(DateTimeKind.Utc, representation)
83 84 85 86
        {
        }

        /// <summary>
T
tanghai 已提交
87
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
88
        /// </summary>
T
tanghai 已提交
89 90 91
        /// <param name="kind">The kind.</param>
        public DateTimeSerializer(DateTimeKind kind)
            : this(kind, BsonType.DateTime)
92 93 94
        {
        }

T
tanghai 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
        /// <summary>
        /// Initializes a new instance of the <see cref="DateTimeSerializer"/> class.
        /// </summary>
        /// <param name="kind">The kind.</param>
        /// <param name="representation">The representation.</param>
        public DateTimeSerializer(DateTimeKind kind, BsonType representation)
            : this(false, kind, representation)
        {
        }

        private DateTimeSerializer(bool dateOnly, DateTimeKind kind, BsonType representation)
        {
            switch (representation)
            {
                case BsonType.DateTime:
                case BsonType.Document:
                case BsonType.Int64:
                case BsonType.String:
                    break;

                default:
                    var message = string.Format("{0} is not a valid representation for a DateTimeSerializer.", representation);
                    throw new ArgumentException(message);
            }

            _dateOnly = dateOnly;
            _kind = kind;
            _representation = representation;

            _helper = new SerializerHelper
            (
                new SerializerHelper.Member("DateTime", Flags.DateTime),
                new SerializerHelper.Member("Ticks", Flags.Ticks)
            );
        }

131 132
        // public static properties
        /// <summary>
T
tanghai 已提交
133 134 135 136 137 138 139 140 141
        /// Gets an instance of DateTimeSerializer with DateOnly=true.
        /// </summary>
        public static DateTimeSerializer DateOnlyInstance
        {
            get { return __dateOnlyInstance; }
        }

        /// <summary>
        /// Gets an instance of DateTimeSerializer with Kind=Local.
142
        /// </summary>
T
tanghai 已提交
143
        public static DateTimeSerializer LocalInstance
144
        {
T
tanghai 已提交
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
            get { return __localInstance; }
        }

        /// <summary>
        /// Gets an instance of DateTimeSerializer with Kind=Utc.
        /// </summary>
        public static DateTimeSerializer UtcInstance
        {
            get { return __utcInstance; }
        }

        // public properties
        /// <summary>
        /// Gets whether this DateTime consists of a Date only.
        /// </summary>
        public bool DateOnly
        {
            get { return _dateOnly; }
        }

        /// <summary>
        /// Gets the DateTimeKind (Local, Unspecified or Utc).
        /// </summary>
        public DateTimeKind Kind
        {
            get { return _kind; }
        }

        /// <summary>
        /// Gets the external representation.
        /// </summary>
        /// <value>
        /// The representation.
        /// </value>
        public BsonType Representation
        {
            get { return _representation; }
182 183 184 185
        }

        // public methods
        /// <summary>
T
tanghai 已提交
186
        /// Deserializes a value.
187
        /// </summary>
T
tanghai 已提交
188 189 190 191
        /// <param name="context">The deserialization context.</param>
        /// <param name="args">The deserialization args.</param>
        /// <returns>A deserialized value.</returns>
        public override DateTime Deserialize(BsonDeserializationContext context, BsonDeserializationArgs args)
192
        {
T
tanghai 已提交
193 194
            var bsonReader = context.Reader;
            DateTime value;
195 196 197 198 199 200 201 202

            var bsonType = bsonReader.GetCurrentBsonType();
            switch (bsonType)
            {
                case BsonType.DateTime:
                    // use an intermediate BsonDateTime so MinValue and MaxValue are handled correctly
                    value = new BsonDateTime(bsonReader.ReadDateTime()).ToUniversalTime();
                    break;
T
tanghai 已提交
203

204
                case BsonType.Document:
T
tanghai 已提交
205 206 207 208 209 210 211 212 213
                    value = default(DateTime);
                    _helper.DeserializeMembers(context, (elementName, flag) =>
                    {
                        switch (flag)
                        {
                            case Flags.DateTime: bsonReader.SkipValue(); break; // ignore value (use Ticks instead)
                            case Flags.Ticks: value = new DateTime(_int64Serializer.Deserialize(context), DateTimeKind.Utc); break;
                        }
                    });
214
                    break;
T
tanghai 已提交
215

216 217 218
                case BsonType.Int64:
                    value = DateTime.SpecifyKind(new DateTime(bsonReader.ReadInt64()), DateTimeKind.Utc);
                    break;
T
tanghai 已提交
219

220
                case BsonType.String:
T
tanghai 已提交
221
                    if (_dateOnly)
222 223 224 225 226
                    {
                        value = DateTime.SpecifyKind(DateTime.ParseExact(bsonReader.ReadString(), "yyyy-MM-dd", null), DateTimeKind.Utc);
                    }
                    else
                    {
T
tanghai 已提交
227
                        value = JsonConvert.ToDateTime(bsonReader.ReadString());
228 229
                    }
                    break;
T
tanghai 已提交
230

231
                default:
T
tanghai 已提交
232
                    throw CreateCannotDeserializeFromBsonTypeException(bsonType);
233 234
            }

T
tanghai 已提交
235
            if (_dateOnly)
236 237 238
            {
                if (value.TimeOfDay != TimeSpan.Zero)
                {
T
tanghai 已提交
239
                    throw new FormatException("TimeOfDay component for DateOnly DateTime value is not zero.");
240
                }
T
tanghai 已提交
241
                value = DateTime.SpecifyKind(value, _kind); // not ToLocalTime or ToUniversalTime!
242 243 244
            }
            else
            {
T
tanghai 已提交
245
                switch (_kind)
246 247 248
                {
                    case DateTimeKind.Local:
                    case DateTimeKind.Unspecified:
T
tanghai 已提交
249
                        value = DateTime.SpecifyKind(BsonUtils.ToLocalTime(value), _kind);
250 251 252 253 254 255 256 257 258 259 260
                        break;
                    case DateTimeKind.Utc:
                        value = BsonUtils.ToUniversalTime(value);
                        break;
                }
            }

            return value;
        }

        /// <summary>
T
tanghai 已提交
261
        /// Serializes a value.
262
        /// </summary>
T
tanghai 已提交
263 264
        /// <param name="context">The serialization context.</param>
        /// <param name="args">The serialization args.</param>
265
        /// <param name="value">The object.</param>
T
tanghai 已提交
266
        public override void Serialize(BsonSerializationContext context, BsonSerializationArgs args, DateTime value)
267
        {
T
tanghai 已提交
268
            var bsonWriter = context.Writer;
269 270

            DateTime utcDateTime;
T
tanghai 已提交
271
            if (_dateOnly)
272
            {
T
tanghai 已提交
273
                if (value.TimeOfDay != TimeSpan.Zero)
274 275 276
                {
                    throw new BsonSerializationException("TimeOfDay component is not zero.");
                }
T
tanghai 已提交
277
                utcDateTime = DateTime.SpecifyKind(value, DateTimeKind.Utc); // not ToLocalTime
278 279 280
            }
            else
            {
T
tanghai 已提交
281
                utcDateTime = BsonUtils.ToUniversalTime(value);
282 283 284
            }
            var millisecondsSinceEpoch = BsonUtils.ToMillisecondsSinceEpoch(utcDateTime);

T
tanghai 已提交
285
            switch (_representation)
286 287 288 289
            {
                case BsonType.DateTime:
                    bsonWriter.WriteDateTime(millisecondsSinceEpoch);
                    break;
T
tanghai 已提交
290

291 292 293 294 295 296
                case BsonType.Document:
                    bsonWriter.WriteStartDocument();
                    bsonWriter.WriteDateTime("DateTime", millisecondsSinceEpoch);
                    bsonWriter.WriteInt64("Ticks", utcDateTime.Ticks);
                    bsonWriter.WriteEndDocument();
                    break;
T
tanghai 已提交
297

298 299 300
                case BsonType.Int64:
                    bsonWriter.WriteInt64(utcDateTime.Ticks);
                    break;
T
tanghai 已提交
301

302
                case BsonType.String:
T
tanghai 已提交
303
                    if (_dateOnly)
304
                    {
T
tanghai 已提交
305
                        bsonWriter.WriteString(value.ToString("yyyy-MM-dd"));
306 307 308
                    }
                    else
                    {
T
tanghai 已提交
309
                        if (value == DateTime.MinValue || value == DateTime.MaxValue)
310 311
                        {
                            // serialize MinValue and MaxValue as Unspecified so we do NOT get the time zone offset
T
tanghai 已提交
312
                            value = DateTime.SpecifyKind(value, DateTimeKind.Unspecified);
313
                        }
T
tanghai 已提交
314
                        else if (value.Kind == DateTimeKind.Unspecified)
315 316
                        {
                            // serialize Unspecified as Local se we get the time zone offset
T
tanghai 已提交
317
                            value = DateTime.SpecifyKind(value, DateTimeKind.Local);
318
                        }
T
tanghai 已提交
319
                        bsonWriter.WriteString(JsonConvert.ToString(value));
320 321
                    }
                    break;
T
tanghai 已提交
322

323
                default:
T
tanghai 已提交
324
                    var message = string.Format("'{0}' is not a valid DateTime representation.", _representation);
325 326 327
                    throw new BsonSerializationException(message);
            }
        }
T
tanghai 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

        /// <summary>
        /// Returns a serializer that has been reconfigured with the specified dateOnly value.
        /// </summary>
        /// <param name="dateOnly">if set to <c>true</c> the values will be required to be Date's only (zero time component).</param>
        /// <returns>
        /// The reconfigured serializer.
        /// </returns>
        public DateTimeSerializer WithDateOnly(bool dateOnly)
        {
            if (dateOnly == _dateOnly)
            {
                return this;
            }
            else
            {
                return new DateTimeSerializer(dateOnly, _representation);
            }
        }

        /// <summary>
        /// Returns a serializer that has been reconfigured with the specified dateOnly value and representation.
        /// </summary>
        /// <param name="dateOnly">if set to <c>true</c> the values will be required to be Date's only (zero time component).</param>
        /// <param name="representation">The representation.</param>
        /// <returns>
        /// The reconfigured serializer.
        /// </returns>
        public DateTimeSerializer WithDateOnly(bool dateOnly, BsonType representation)
        {
            if (dateOnly == _dateOnly && representation == _representation)
            {
                return this;
            }
            else
            {
                return new DateTimeSerializer(dateOnly, representation);
            }
        }

        /// <summary>
        /// Returns a serializer that has been reconfigured with the specified DateTimeKind value.
        /// </summary>
        /// <param name="kind">The DateTimeKind.</param>
        /// <returns>
        /// The reconfigured serializer.
        /// </returns>
        public DateTimeSerializer WithKind(DateTimeKind kind)
        {
            if (kind == _kind && _dateOnly == false)
            {
                return this;
            }
            else
            {
                return new DateTimeSerializer(kind, _representation);
            }
        }

        /// <summary>
        /// Returns a serializer that has been reconfigured with the specified DateTimeKind value and representation.
        /// </summary>
        /// <param name="kind">The DateTimeKind.</param>
        /// <param name="representation">The representation.</param>
        /// <returns>
        /// The reconfigured serializer.
        /// </returns>
        public DateTimeSerializer WithKind(DateTimeKind kind, BsonType representation)
        {
            if (kind == _kind && representation == _representation && _dateOnly == false)
            {
                return this;
            }
            else
            {
                return new DateTimeSerializer(kind, representation);
            }
        }

        /// <summary>
        /// Returns a serializer that has been reconfigured with the specified representation.
        /// </summary>
        /// <param name="representation">The representation.</param>
        /// <returns>The reconfigured serializer.</returns>
        public DateTimeSerializer WithRepresentation(BsonType representation)
        {
            if (representation == _representation)
            {
                return this;
            }
            else
            {
                if (_dateOnly)
                {
                    return new DateTimeSerializer(_dateOnly, representation);
                }
                else
                {
                    return new DateTimeSerializer(_kind, representation);
                }
            }
        }

        // explicit interface implementations
        IBsonSerializer IRepresentationConfigurable.WithRepresentation(BsonType representation)
        {
            return WithRepresentation(representation);
        }
436 437
    }
}