forked from premendrasingh/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fields.go
130 lines (106 loc) · 2.2 KB
/
fields.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
package dtfmt
import (
"errors"
"time"
)
type fieldType uint8
const (
ftYear fieldType = iota
ftDayOfYear
ftMonthOfYear
ftDayOfMonth
ftWeekyear
ftWeekOfWeekyear
ftDayOfWeek
ftHalfdayOfDay
ftHourOfHalfday
ftClockhourOfHalfday
ftClockhourOfDay
ftHourOfDay
ftMinuteOfDay
ftMinuteOfHour
ftSecondOfDay
ftSecondOfMinute
ftMillisOfDay
ftMillisOfSecond
)
func getIntField(ft fieldType, ctx *ctx, t time.Time) (int, error) {
switch ft {
case ftYear:
return ctx.year, nil
case ftDayOfYear:
return ctx.yearday, nil
case ftMonthOfYear:
return int(ctx.month), nil
case ftDayOfMonth:
return ctx.day, nil
case ftWeekyear:
return ctx.isoYear, nil
case ftWeekOfWeekyear:
return ctx.isoWeek, nil
case ftDayOfWeek:
return int(ctx.weekday), nil
case ftHalfdayOfDay:
if ctx.hour < 12 {
return 0, nil // AM
}
return 1, nil // PM
case ftHourOfHalfday:
if ctx.hour < 12 {
return ctx.hour, nil
}
return ctx.hour - 12, nil
case ftClockhourOfHalfday:
if ctx.hour < 12 {
return ctx.hour + 1, nil
}
return ctx.hour - 12 + 1, nil
case ftClockhourOfDay:
return ctx.hour + 1, nil
case ftHourOfDay:
return ctx.hour, nil
case ftMinuteOfDay:
return ctx.hour*60 + ctx.min, nil
case ftMinuteOfHour:
return ctx.min, nil
case ftSecondOfDay:
return (ctx.hour*60+ctx.min)*60 + ctx.sec, nil
case ftSecondOfMinute:
return ctx.sec, nil
case ftMillisOfDay:
return ((ctx.hour*60+ctx.min)*60+ctx.sec)*1000 + ctx.millis, nil
case ftMillisOfSecond:
return ctx.millis, nil
}
return 0, nil
}
func getTextField(ft fieldType, ctx *ctx, t time.Time) (string, error) {
switch ft {
case ftHalfdayOfDay:
if ctx.hour < 12 {
return "AM", nil
}
return "PM", nil
case ftDayOfWeek:
return ctx.weekday.String(), nil
case ftMonthOfYear:
return ctx.month.String(), nil
default:
return "", errors.New("no text field")
}
}
func getTextFieldShort(ft fieldType, ctx *ctx, t time.Time) (string, error) {
switch ft {
case ftHalfdayOfDay:
if ctx.hour < 12 {
return "AM", nil
}
return "PM", nil
case ftDayOfWeek:
return ctx.weekday.String()[:3], nil
case ftMonthOfYear:
return ctx.month.String()[:3], nil
default:
return "", errors.New("no text field")
}
}