-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate.go
351 lines (283 loc) · 7.27 KB
/
date.go
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
package pgtype
import (
"database/sql/driver"
"encoding/binary"
"encoding/json"
"fmt"
"regexp"
"strconv"
"time"
"github.com/jackc/pgx/v5/internal/pgio"
)
type DateScanner interface {
ScanDate(v Date) error
}
type DateValuer interface {
DateValue() (Date, error)
}
type Date struct {
Time time.Time
InfinityModifier InfinityModifier
Valid bool
}
func (d *Date) ScanDate(v Date) error {
*d = v
return nil
}
func (d Date) DateValue() (Date, error) {
return d, nil
}
const (
negativeInfinityDayOffset = -2147483648
infinityDayOffset = 2147483647
)
// Scan implements the database/sql Scanner interface.
func (dst *Date) Scan(src any) error {
if src == nil {
*dst = Date{}
return nil
}
switch src := src.(type) {
case string:
return scanPlanTextAnyToDateScanner{}.Scan([]byte(src), dst)
case time.Time:
*dst = Date{Time: src, Valid: true}
return nil
}
return fmt.Errorf("cannot scan %T", src)
}
// Value implements the database/sql/driver Valuer interface.
func (src Date) Value() (driver.Value, error) {
if !src.Valid {
return nil, nil
}
if src.InfinityModifier != Finite {
return src.InfinityModifier.String(), nil
}
return src.Time, nil
}
func (src Date) MarshalJSON() ([]byte, error) {
if !src.Valid {
return []byte("null"), nil
}
var s string
switch src.InfinityModifier {
case Finite:
s = src.Time.Format("2006-01-02")
case Infinity:
s = "infinity"
case NegativeInfinity:
s = "-infinity"
}
return json.Marshal(s)
}
func (dst *Date) UnmarshalJSON(b []byte) error {
var s *string
err := json.Unmarshal(b, &s)
if err != nil {
return err
}
if s == nil {
*dst = Date{}
return nil
}
switch *s {
case "infinity":
*dst = Date{Valid: true, InfinityModifier: Infinity}
case "-infinity":
*dst = Date{Valid: true, InfinityModifier: -Infinity}
default:
t, err := time.ParseInLocation("2006-01-02", *s, time.UTC)
if err != nil {
return err
}
*dst = Date{Time: t, Valid: true}
}
return nil
}
type DateCodec struct{}
func (DateCodec) FormatSupported(format int16) bool {
return format == TextFormatCode || format == BinaryFormatCode
}
func (DateCodec) PreferredFormat() int16 {
return BinaryFormatCode
}
func (DateCodec) PlanEncode(m *Map, oid uint32, format int16, value any) EncodePlan {
if _, ok := value.(DateValuer); !ok {
return nil
}
switch format {
case BinaryFormatCode:
return encodePlanDateCodecBinary{}
case TextFormatCode:
return encodePlanDateCodecText{}
}
return nil
}
type encodePlanDateCodecBinary struct{}
func (encodePlanDateCodecBinary) Encode(value any, buf []byte) (newBuf []byte, err error) {
date, err := value.(DateValuer).DateValue()
if err != nil {
return nil, err
}
if !date.Valid {
return nil, nil
}
var daysSinceDateEpoch int32
switch date.InfinityModifier {
case Finite:
tUnix := time.Date(date.Time.Year(), date.Time.Month(), date.Time.Day(), 0, 0, 0, 0, time.UTC).Unix()
dateEpoch := time.Date(2000, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
secSinceDateEpoch := tUnix - dateEpoch
daysSinceDateEpoch = int32(secSinceDateEpoch / 86400)
case Infinity:
daysSinceDateEpoch = infinityDayOffset
case NegativeInfinity:
daysSinceDateEpoch = negativeInfinityDayOffset
}
return pgio.AppendInt32(buf, daysSinceDateEpoch), nil
}
type encodePlanDateCodecText struct{}
func (encodePlanDateCodecText) Encode(value any, buf []byte) (newBuf []byte, err error) {
date, err := value.(DateValuer).DateValue()
if err != nil {
return nil, err
}
if !date.Valid {
return nil, nil
}
switch date.InfinityModifier {
case Finite:
// Year 0000 is 1 BC
bc := false
year := date.Time.Year()
if year <= 0 {
year = -year + 1
bc = true
}
yearBytes := strconv.AppendInt(make([]byte, 0, 6), int64(year), 10)
for i := len(yearBytes); i < 4; i++ {
buf = append(buf, '0')
}
buf = append(buf, yearBytes...)
buf = append(buf, '-')
if date.Time.Month() < 10 {
buf = append(buf, '0')
}
buf = strconv.AppendInt(buf, int64(date.Time.Month()), 10)
buf = append(buf, '-')
if date.Time.Day() < 10 {
buf = append(buf, '0')
}
buf = strconv.AppendInt(buf, int64(date.Time.Day()), 10)
if bc {
buf = append(buf, " BC"...)
}
case Infinity:
buf = append(buf, "infinity"...)
case NegativeInfinity:
buf = append(buf, "-infinity"...)
}
return buf, nil
}
func (DateCodec) PlanScan(m *Map, oid uint32, format int16, target any) ScanPlan {
switch format {
case BinaryFormatCode:
switch target.(type) {
case DateScanner:
return scanPlanBinaryDateToDateScanner{}
}
case TextFormatCode:
switch target.(type) {
case DateScanner:
return scanPlanTextAnyToDateScanner{}
}
}
return nil
}
type scanPlanBinaryDateToDateScanner struct{}
func (scanPlanBinaryDateToDateScanner) Scan(src []byte, dst any) error {
scanner := (dst).(DateScanner)
if src == nil {
return scanner.ScanDate(Date{})
}
if len(src) != 4 {
return fmt.Errorf("invalid length for date: %v", len(src))
}
dayOffset := int32(binary.BigEndian.Uint32(src))
switch dayOffset {
case infinityDayOffset:
return scanner.ScanDate(Date{InfinityModifier: Infinity, Valid: true})
case negativeInfinityDayOffset:
return scanner.ScanDate(Date{InfinityModifier: -Infinity, Valid: true})
default:
t := time.Date(2000, 1, int(1+dayOffset), 0, 0, 0, 0, time.UTC)
return scanner.ScanDate(Date{Time: t, Valid: true})
}
}
type scanPlanTextAnyToDateScanner struct{}
var dateRegexp = regexp.MustCompile(`^(\d{4,})-(\d\d)-(\d\d)( BC)?$`)
func (scanPlanTextAnyToDateScanner) Scan(src []byte, dst any) error {
scanner := (dst).(DateScanner)
if src == nil {
return scanner.ScanDate(Date{})
}
sbuf := string(src)
match := dateRegexp.FindStringSubmatch(sbuf)
if match != nil {
year, err := strconv.ParseInt(match[1], 10, 32)
if err != nil {
return fmt.Errorf("BUG: cannot parse date that regexp matched (year): %w", err)
}
month, err := strconv.ParseInt(match[2], 10, 32)
if err != nil {
return fmt.Errorf("BUG: cannot parse date that regexp matched (month): %w", err)
}
day, err := strconv.ParseInt(match[3], 10, 32)
if err != nil {
return fmt.Errorf("BUG: cannot parse date that regexp matched (month): %w", err)
}
// BC matched
if len(match[4]) > 0 {
year = -year + 1
}
t := time.Date(int(year), time.Month(month), int(day), 0, 0, 0, 0, time.UTC)
return scanner.ScanDate(Date{Time: t, Valid: true})
}
switch sbuf {
case "infinity":
return scanner.ScanDate(Date{InfinityModifier: Infinity, Valid: true})
case "-infinity":
return scanner.ScanDate(Date{InfinityModifier: -Infinity, Valid: true})
default:
return fmt.Errorf("invalid date format")
}
}
func (c DateCodec) DecodeDatabaseSQLValue(m *Map, oid uint32, format int16, src []byte) (driver.Value, error) {
if src == nil {
return nil, nil
}
var date Date
err := codecScan(c, m, oid, format, src, &date)
if err != nil {
return nil, err
}
if date.InfinityModifier != Finite {
return date.InfinityModifier.String(), nil
}
return date.Time, nil
}
func (c DateCodec) DecodeValue(m *Map, oid uint32, format int16, src []byte) (any, error) {
if src == nil {
return nil, nil
}
var date Date
err := codecScan(c, m, oid, format, src, &date)
if err != nil {
return nil, err
}
if date.InfinityModifier != Finite {
return date.InfinityModifier, nil
}
return date.Time, nil
}