forked from npgsql/npgsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNpgsqlDateTime.cs
More file actions
478 lines (405 loc) · 22.4 KB
/
NpgsqlDateTime.cs
File metadata and controls
478 lines (405 loc) · 22.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
83
84
85
86
87
88
89
90
91
92
93
94
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
using System;
using System.Collections;
using System.Collections.Generic;
using Npgsql.Util;
#pragma warning disable 1591
// ReSharper disable once CheckNamespace
namespace NpgsqlTypes
{
/// <summary>
/// A struct similar to .NET DateTime but capable of storing PostgreSQL's timestamp and timestamptz types.
/// DateTime is capable of storing values from year 1 to 9999 at 100-nanosecond precision,
/// while PostgreSQL's timestamps store values from 4713BC to 5874897AD with 1-microsecond precision.
/// </summary>
[Serializable]
public readonly struct NpgsqlDateTime : IEquatable<NpgsqlDateTime>, IComparable<NpgsqlDateTime>, IComparable,
IComparer<NpgsqlDateTime>, IComparer
{
#region Fields
readonly NpgsqlDate _date;
readonly TimeSpan _time;
readonly InternalType _type;
#endregion
#region Constants
public static readonly NpgsqlDateTime Epoch = new NpgsqlDateTime(NpgsqlDate.Epoch);
public static readonly NpgsqlDateTime Era = new NpgsqlDateTime(NpgsqlDate.Era);
public static readonly NpgsqlDateTime Infinity =
new NpgsqlDateTime(InternalType.Infinity, NpgsqlDate.Era, TimeSpan.Zero);
public static readonly NpgsqlDateTime NegativeInfinity =
new NpgsqlDateTime(InternalType.NegativeInfinity, NpgsqlDate.Era, TimeSpan.Zero);
// 9999-12-31
const int MaxDateTimeDay = 3652058;
#endregion
#region Constructors
NpgsqlDateTime(InternalType type, NpgsqlDate date, TimeSpan time)
{
if (!date.IsFinite && type != InternalType.Infinity && type != InternalType.NegativeInfinity)
throw new ArgumentException("Can't construct an NpgsqlDateTime with a non-finite date, use Infinity and NegativeInfinity instead", nameof(date));
_type = type;
_date = date;
_time = time;
}
public NpgsqlDateTime(NpgsqlDate date, TimeSpan time, DateTimeKind kind = DateTimeKind.Unspecified)
: this(KindToInternalType(kind), date, time) {}
public NpgsqlDateTime(NpgsqlDate date)
: this(date, TimeSpan.Zero) {}
public NpgsqlDateTime(int year, int month, int day, int hours, int minutes, int seconds, DateTimeKind kind=DateTimeKind.Unspecified)
: this(new NpgsqlDate(year, month, day), new TimeSpan(0, hours, minutes, seconds), kind) {}
public NpgsqlDateTime(int year, int month, int day, int hours, int minutes, int seconds, int milliseconds, DateTimeKind kind = DateTimeKind.Unspecified)
: this(new NpgsqlDate(year, month, day), new TimeSpan(0, hours, minutes, seconds, milliseconds), kind) { }
public NpgsqlDateTime(DateTime dateTime)
: this(new NpgsqlDate(dateTime.Date), dateTime.TimeOfDay, dateTime.Kind) {}
public NpgsqlDateTime(long ticks, DateTimeKind kind)
: this(new DateTime(ticks, kind)) { }
public NpgsqlDateTime(long ticks)
: this(new DateTime(ticks, DateTimeKind.Unspecified)) { }
#endregion
#region Public Properties
public NpgsqlDate Date => _date;
public TimeSpan Time => _time;
public int DayOfYear => _date.DayOfYear;
public int Year => _date.Year;
public int Month => _date.Month;
public int Day => _date.Day;
public DayOfWeek DayOfWeek => _date.DayOfWeek;
public bool IsLeapYear => _date.IsLeapYear;
public long Ticks => _date.DaysSinceEra * NpgsqlTimeSpan.TicksPerDay + _time.Ticks;
public int Millisecond => _time.Milliseconds;
public int Second => _time.Seconds;
public int Minute => _time.Minutes;
public int Hour => _time.Hours;
public bool IsInfinity => _type == InternalType.Infinity;
public bool IsNegativeInfinity => _type == InternalType.NegativeInfinity;
public bool IsFinite
=> _type switch
{
InternalType.FiniteUnspecified => true,
InternalType.FiniteUtc => true,
InternalType.FiniteLocal => true,
InternalType.Infinity => false,
InternalType.NegativeInfinity => false,
_ => throw new InvalidOperationException($"Internal Npgsql bug: unexpected value {_type} of enum {nameof(NpgsqlDateTime)}.{nameof(InternalType)}. Please file a bug.")
};
public DateTimeKind Kind
=> _type switch
{
InternalType.FiniteUtc => DateTimeKind.Utc,
InternalType.FiniteLocal => DateTimeKind.Local,
InternalType.FiniteUnspecified => DateTimeKind.Unspecified,
InternalType.Infinity => DateTimeKind.Unspecified,
InternalType.NegativeInfinity => DateTimeKind.Unspecified,
_ => throw new InvalidOperationException($"Internal Npgsql bug: unexpected value {_type} of enum {nameof(DateTimeKind)}. Please file a bug.")
};
/// <summary>
/// Cast of an <see cref="NpgsqlDateTime"/> to a <see cref="DateTime"/>.
/// </summary>
/// <returns>An equivalent <see cref="DateTime"/>.</returns>
public DateTime ToDateTime()
{
if (!IsFinite)
throw new InvalidCastException("Can't convert infinite timestamp values to DateTime");
if (_date.DaysSinceEra < 0 || _date.DaysSinceEra > MaxDateTimeDay)
throw new InvalidCastException("Out of the range of DateTime (year must be between 1 and 9999)");
return new DateTime(Ticks, Kind);
}
/// <summary>
/// Converts the value of the current <see cref="NpgsqlDateTime"/> object to Coordinated Universal Time (UTC).
/// </summary>
/// <remarks>
/// See the MSDN documentation for DateTime.ToUniversalTime().
/// <b>Note:</b> this method <b>only</b> takes into account the time zone's base offset, and does
/// <b>not</b> respect daylight savings. See https://github.com/npgsql/npgsql/pull/684 for more
/// details.
/// </remarks>
public NpgsqlDateTime ToUniversalTime()
{
switch (_type)
{
case InternalType.FiniteUnspecified:
// Treat as Local
case InternalType.FiniteLocal:
if (_date.DaysSinceEra >= 1 && _date.DaysSinceEra <= MaxDateTimeDay - 1)
{
// Day between 0001-01-02 and 9999-12-30, so we can use DateTime and it will always succeed
return new NpgsqlDateTime(Subtract(TimeZoneInfo.Local.GetUtcOffset(new DateTime(ToDateTime().Ticks, DateTimeKind.Local))).Ticks, DateTimeKind.Utc);
}
// Else there are no DST rules available in the system for outside the DateTime range, so just use the base offset
return new NpgsqlDateTime(Subtract(TimeZoneInfo.Local.BaseUtcOffset).Ticks, DateTimeKind.Utc);
case InternalType.FiniteUtc:
case InternalType.Infinity:
case InternalType.NegativeInfinity:
return this;
default:
throw new InvalidOperationException($"Internal Npgsql bug: unexpected value {_type} of enum {nameof(NpgsqlDateTime)}.{nameof(InternalType)}. Please file a bug.");
}
}
/// <summary>
/// Converts the value of the current <see cref="NpgsqlDateTime"/> object to local time.
/// </summary>
/// <remarks>
/// See the MSDN documentation for DateTime.ToLocalTime().
/// <b>Note:</b> this method <b>only</b> takes into account the time zone's base offset, and does
/// <b>not</b> respect daylight savings. See https://github.com/npgsql/npgsql/pull/684 for more
/// details.
/// </remarks>
public NpgsqlDateTime ToLocalTime()
{
switch (_type) {
case InternalType.FiniteUnspecified:
// Treat as UTC
case InternalType.FiniteUtc:
if (_date.DaysSinceEra >= 1 && _date.DaysSinceEra <= MaxDateTimeDay - 1)
{
// Day between 0001-01-02 and 9999-12-30, so we can use DateTime and it will always succeed
return new NpgsqlDateTime(TimeZoneInfo.ConvertTime(new DateTime(ToDateTime().Ticks, DateTimeKind.Utc), TimeZoneInfo.Local));
}
// Else there are no DST rules available in the system for outside the DateTime range, so just use the base offset
return new NpgsqlDateTime(Add(TimeZoneInfo.Local.BaseUtcOffset).Ticks, DateTimeKind.Local);
case InternalType.FiniteLocal:
case InternalType.Infinity:
case InternalType.NegativeInfinity:
return this;
default:
throw new InvalidOperationException($"Internal Npgsql bug: unexpected value {_type} of enum {nameof(NpgsqlDateTime)}.{nameof(InternalType)}. Please file a bug.");
}
}
public static NpgsqlDateTime Now => new NpgsqlDateTime(DateTime.Now);
#endregion
#region String Conversions
public override string ToString()
=> _type switch
{
InternalType.Infinity => "infinity",
InternalType.NegativeInfinity => "-infinity",
_ => $"{_date} {_time}"
};
public static NpgsqlDateTime Parse(string str)
{
if (str == null) {
throw new NullReferenceException();
}
switch (str = str.Trim().ToLowerInvariant()) {
case "infinity":
return Infinity;
case "-infinity":
return NegativeInfinity;
default:
try {
var idxSpace = str.IndexOf(' ');
var datePart = str.Substring(0, idxSpace);
if (str.Contains("bc")) {
datePart += " BC";
}
var idxSecond = str.IndexOf(' ', idxSpace + 1);
if (idxSecond == -1) {
idxSecond = str.Length;
}
var timePart = str.Substring(idxSpace + 1, idxSecond - idxSpace - 1);
return new NpgsqlDateTime(NpgsqlDate.Parse(datePart), TimeSpan.Parse(timePart));
} catch (OverflowException) {
throw;
} catch {
throw new FormatException();
}
}
}
#endregion
#region Comparisons
public bool Equals(NpgsqlDateTime other)
=> _type switch
{
InternalType.Infinity => other._type == InternalType.Infinity,
InternalType.NegativeInfinity => other._type == InternalType.NegativeInfinity,
_ => other._type == _type && _date.Equals(other._date) && _time.Equals(other._time)
};
public override bool Equals(object? obj)
=> obj is NpgsqlDateTime time && Equals(time);
public override int GetHashCode()
=> _type switch
{
InternalType.Infinity => int.MaxValue,
InternalType.NegativeInfinity => int.MinValue,
_ => _date.GetHashCode() ^ PGUtil.RotateShift(_time.GetHashCode(), 16)
};
public int CompareTo(NpgsqlDateTime other)
{
switch (_type) {
case InternalType.Infinity:
return other._type == InternalType.Infinity ? 0 : 1;
case InternalType.NegativeInfinity:
return other._type == InternalType.NegativeInfinity ? 0 : -1;
default:
switch (other._type) {
case InternalType.Infinity:
return -1;
case InternalType.NegativeInfinity:
return 1;
default:
var cmp = _date.CompareTo(other._date);
return cmp == 0 ? _time.CompareTo(other._time) : cmp;
}
}
}
public int CompareTo(object? o)
=> o == null
? 1
: o is NpgsqlDateTime npgsqlDateTime
? CompareTo(npgsqlDateTime)
: throw new ArgumentException();
public int Compare(NpgsqlDateTime x, NpgsqlDateTime y) => x.CompareTo(y);
public int Compare(object? x, object? y)
{
if (x == null)
return y == null ? 0 : -1;
if (y == null)
return 1;
if (!(x is IComparable) || !(y is IComparable))
throw new ArgumentException();
return ((IComparable)x).CompareTo(y);
}
#endregion
#region Arithmetic
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the value of the specified <see cref="NpgsqlTimeSpan"/> to the value of this instance.
/// </summary>
/// <param name="value">An NpgsqlTimeSpan interval.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the time interval represented by value.</returns>
public NpgsqlDateTime Add(in NpgsqlTimeSpan value) => AddTicks(value.UnjustifyInterval().TotalTicks);
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the value of the specified TimeSpan to the value of this instance.
/// </summary>
/// <param name="value">A positive or negative time interval.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the time interval represented by value.</returns>
public NpgsqlDateTime Add(TimeSpan value) { return AddTicks(value.Ticks); }
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of years to the value of this instance.
/// </summary>
/// <param name="value">A number of years. The value parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of years represented by value.</returns>
public NpgsqlDateTime AddYears(int value)
=> _type switch
{
InternalType.Infinity => this,
InternalType.NegativeInfinity => this,
_ => new NpgsqlDateTime(_type, _date.AddYears(value), _time)
};
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of months to the value of this instance.
/// </summary>
/// <param name="value">A number of months. The months parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and months.</returns>
public NpgsqlDateTime AddMonths(int value)
=> _type switch
{
InternalType.Infinity => this,
InternalType.NegativeInfinity => this,
_ => new NpgsqlDateTime(_type, _date.AddMonths(value), _time)
};
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of days to the value of this instance.
/// </summary>
/// <param name="value">A number of whole and fractional days. The value parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of days represented by value.</returns>
public NpgsqlDateTime AddDays(double value) => Add(TimeSpan.FromDays(value));
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of hours to the value of this instance.
/// </summary>
/// <param name="value">A number of whole and fractional hours. The value parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of hours represented by value.</returns>
public NpgsqlDateTime AddHours(double value) => Add(TimeSpan.FromHours(value));
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of minutes to the value of this instance.
/// </summary>
/// <param name="value">A number of whole and fractional minutes. The value parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of minutes represented by value.</returns>
public NpgsqlDateTime AddMinutes(double value) => Add(TimeSpan.FromMinutes(value));
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of minutes to the value of this instance.
/// </summary>
/// <param name="value">A number of whole and fractional minutes. The value parameter can be negative or positive.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of minutes represented by value.</returns>
public NpgsqlDateTime AddSeconds(double value) => Add(TimeSpan.FromSeconds(value));
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of milliseconds to the value of this instance.
/// </summary>
/// <param name="value">A number of whole and fractional milliseconds. The value parameter can be negative or positive. Note that this value is rounded to the nearest integer.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the number of milliseconds represented by value.</returns>
public NpgsqlDateTime AddMilliseconds(double value) => Add(TimeSpan.FromMilliseconds(value));
/// <summary>
/// Returns a new <see cref="NpgsqlDateTime"/> that adds the specified number of ticks to the value of this instance.
/// </summary>
/// <param name="value">A number of 100-nanosecond ticks. The value parameter can be positive or negative.</param>
/// <returns>An object whose value is the sum of the date and time represented by this instance and the time represented by value.</returns>
public NpgsqlDateTime AddTicks(long value)
=> _type switch
{
InternalType.Infinity => this,
InternalType.NegativeInfinity => this,
_ => new NpgsqlDateTime(Ticks + value, Kind),
};
public NpgsqlDateTime Subtract(in NpgsqlTimeSpan interval) => Add(-interval);
public NpgsqlTimeSpan Subtract(NpgsqlDateTime timestamp)
{
switch (_type) {
case InternalType.Infinity:
case InternalType.NegativeInfinity:
throw new InvalidOperationException("You cannot subtract infinity timestamps");
}
switch (timestamp._type) {
case InternalType.Infinity:
case InternalType.NegativeInfinity:
throw new InvalidOperationException("You cannot subtract infinity timestamps");
}
return new NpgsqlTimeSpan(0, _date.DaysSinceEra - timestamp._date.DaysSinceEra, _time.Ticks - timestamp._time.Ticks);
}
#endregion
#region Operators
public static NpgsqlDateTime operator +(NpgsqlDateTime timestamp, NpgsqlTimeSpan interval)
=> timestamp.Add(interval);
public static NpgsqlDateTime operator +(NpgsqlTimeSpan interval, NpgsqlDateTime timestamp)
=> timestamp.Add(interval);
public static NpgsqlDateTime operator -(NpgsqlDateTime timestamp, NpgsqlTimeSpan interval)
=> timestamp.Subtract(interval);
public static NpgsqlTimeSpan operator -(NpgsqlDateTime x, NpgsqlDateTime y) => x.Subtract(y);
public static bool operator ==(NpgsqlDateTime x, NpgsqlDateTime y) => x.Equals(y);
public static bool operator !=(NpgsqlDateTime x, NpgsqlDateTime y) => !(x == y);
public static bool operator <(NpgsqlDateTime x, NpgsqlDateTime y) => x.CompareTo(y) < 0;
public static bool operator >(NpgsqlDateTime x, NpgsqlDateTime y) => x.CompareTo(y) > 0;
public static bool operator <=(NpgsqlDateTime x, NpgsqlDateTime y) => x.CompareTo(y) <= 0;
public static bool operator >=(NpgsqlDateTime x, NpgsqlDateTime y) => x.CompareTo(y) >= 0;
#endregion
#region Casts
/// <summary>
/// Implicit cast of a <see cref="DateTime"/> to an <see cref="NpgsqlDateTime"/>
/// </summary>
/// <param name="dateTime">A <see cref="DateTime"/></param>
/// <returns>An equivalent <see cref="NpgsqlDateTime"/>.</returns>
public static implicit operator NpgsqlDateTime(DateTime dateTime) => ToNpgsqlDateTime(dateTime);
public static NpgsqlDateTime ToNpgsqlDateTime(DateTime dateTime) => new NpgsqlDateTime(dateTime);
/// <summary>
/// Explicit cast of an <see cref="NpgsqlDateTime"/> to a <see cref="DateTime"/>.
/// </summary>
/// <param name="npgsqlDateTime">An <see cref="NpgsqlDateTime"/>.</param>
/// <returns>An equivalent <see cref="DateTime"/>.</returns>
public static explicit operator DateTime(NpgsqlDateTime npgsqlDateTime)
=> npgsqlDateTime.ToDateTime();
#endregion
public NpgsqlDateTime Normalize() => Add(NpgsqlTimeSpan.Zero);
static InternalType KindToInternalType(DateTimeKind kind)
=> kind switch
{
DateTimeKind.Unspecified => InternalType.FiniteUnspecified,
DateTimeKind.Utc => InternalType.FiniteUtc,
DateTimeKind.Local => InternalType.FiniteLocal,
_ => throw new InvalidOperationException($"Internal Npgsql bug: unexpected value {kind} of enum {nameof(NpgsqlDateTime)}.{nameof(InternalType)}. Please file a bug.")
};
enum InternalType
{
FiniteUnspecified,
FiniteUtc,
FiniteLocal,
Infinity,
NegativeInfinity
}
}
}