|
4 | 4 | // ReSharper disable once CheckNamespace
|
5 | 5 | namespace Npgsql.Internal.Converters;
|
6 | 6 |
|
7 |
| -sealed class DateTimeDateConverter(bool dateTimeInfinityConversions) : PgBufferedConverter<DateTime> |
| 7 | +sealed class DateOnlyDateConverter(bool dateTimeInfinityConversions) : PgBufferedConverter<DateOnly> |
8 | 8 | {
|
9 |
| - static readonly DateTime BaseValue = new(2000, 1, 1, 0, 0, 0); |
| 9 | + static readonly DateOnly BaseValue = new(2000, 1, 1); |
10 | 10 |
|
11 | 11 | public override bool CanConvert(DataFormat format, out BufferRequirements bufferRequirements)
|
12 | 12 | {
|
13 | 13 | bufferRequirements = BufferRequirements.CreateFixedSize(sizeof(int));
|
14 | 14 | return format is DataFormat.Binary;
|
15 | 15 | }
|
16 | 16 |
|
17 |
| - protected override DateTime ReadCore(PgReader reader) |
| 17 | + protected override DateOnly ReadCore(PgReader reader) |
18 | 18 | => reader.ReadInt32() switch
|
19 | 19 | {
|
20 | 20 | int.MaxValue => dateTimeInfinityConversions
|
21 |
| - ? DateTime.MaxValue |
| 21 | + ? DateOnly.MaxValue |
22 | 22 | : throw new InvalidCastException(NpgsqlStrings.CannotReadInfinityValue),
|
23 | 23 | int.MinValue => dateTimeInfinityConversions
|
24 |
| - ? DateTime.MinValue |
| 24 | + ? DateOnly.MinValue |
25 | 25 | : throw new InvalidCastException(NpgsqlStrings.CannotReadInfinityValue),
|
26 |
| - var value => BaseValue + TimeSpan.FromDays(value) |
| 26 | + var value => BaseValue.AddDays(value) |
27 | 27 | };
|
28 | 28 |
|
29 |
| - protected override void WriteCore(PgWriter writer, DateTime value) |
| 29 | + protected override void WriteCore(PgWriter writer, DateOnly value) |
30 | 30 | {
|
31 | 31 | if (dateTimeInfinityConversions)
|
32 | 32 | {
|
33 |
| - if (value == DateTime.MaxValue) |
| 33 | + if (value == DateOnly.MaxValue) |
34 | 34 | {
|
35 | 35 | writer.WriteInt32(int.MaxValue);
|
36 | 36 | return;
|
37 | 37 | }
|
38 | 38 |
|
39 |
| - if (value == DateTime.MinValue) |
| 39 | + if (value == DateOnly.MinValue) |
40 | 40 | {
|
41 | 41 | writer.WriteInt32(int.MinValue);
|
42 | 42 | return;
|
43 | 43 | }
|
44 | 44 | }
|
45 | 45 |
|
46 |
| - writer.WriteInt32((value.Date - BaseValue).Days); |
| 46 | + writer.WriteInt32(value.DayNumber - BaseValue.DayNumber); |
47 | 47 | }
|
48 | 48 | }
|
49 | 49 |
|
50 |
| -sealed class DateOnlyDateConverter(bool dateTimeInfinityConversions) : PgBufferedConverter<DateOnly> |
| 50 | +sealed class DateTimeDateConverter(bool dateTimeInfinityConversions) : PgBufferedConverter<DateTime> |
51 | 51 | {
|
52 |
| - static readonly DateOnly BaseValue = new(2000, 1, 1); |
| 52 | + static readonly DateTime BaseValue = new(2000, 1, 1, 0, 0, 0); |
53 | 53 |
|
54 | 54 | public override bool CanConvert(DataFormat format, out BufferRequirements bufferRequirements)
|
55 | 55 | {
|
56 | 56 | bufferRequirements = BufferRequirements.CreateFixedSize(sizeof(int));
|
57 | 57 | return format is DataFormat.Binary;
|
58 | 58 | }
|
59 | 59 |
|
60 |
| - protected override DateOnly ReadCore(PgReader reader) |
| 60 | + protected override DateTime ReadCore(PgReader reader) |
61 | 61 | => reader.ReadInt32() switch
|
62 | 62 | {
|
63 | 63 | int.MaxValue => dateTimeInfinityConversions
|
64 |
| - ? DateOnly.MaxValue |
| 64 | + ? DateTime.MaxValue |
65 | 65 | : throw new InvalidCastException(NpgsqlStrings.CannotReadInfinityValue),
|
66 | 66 | int.MinValue => dateTimeInfinityConversions
|
67 |
| - ? DateOnly.MinValue |
| 67 | + ? DateTime.MinValue |
68 | 68 | : throw new InvalidCastException(NpgsqlStrings.CannotReadInfinityValue),
|
69 |
| - var value => BaseValue.AddDays(value) |
| 69 | + var value => BaseValue + TimeSpan.FromDays(value) |
70 | 70 | };
|
71 | 71 |
|
72 |
| - protected override void WriteCore(PgWriter writer, DateOnly value) |
| 72 | + protected override void WriteCore(PgWriter writer, DateTime value) |
73 | 73 | {
|
74 | 74 | if (dateTimeInfinityConversions)
|
75 | 75 | {
|
76 |
| - if (value == DateOnly.MaxValue) |
| 76 | + if (value == DateTime.MaxValue) |
77 | 77 | {
|
78 | 78 | writer.WriteInt32(int.MaxValue);
|
79 | 79 | return;
|
80 | 80 | }
|
81 | 81 |
|
82 |
| - if (value == DateOnly.MinValue) |
| 82 | + if (value == DateTime.MinValue) |
83 | 83 | {
|
84 | 84 | writer.WriteInt32(int.MinValue);
|
85 | 85 | return;
|
86 | 86 | }
|
87 | 87 | }
|
88 | 88 |
|
89 |
| - writer.WriteInt32(value.DayNumber - BaseValue.DayNumber); |
| 89 | + writer.WriteInt32((value.Date - BaseValue).Days); |
90 | 90 | }
|
91 | 91 | }
|
0 commit comments