-
-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy pathparser.go
executable file
·165 lines (159 loc) · 3.88 KB
/
parser.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
package carbon
import (
"strconv"
"time"
)
// Parse parses a standard time string as a Carbon instance.
// 将标准格式时间字符串解析成 Carbon 实例
func Parse(value string, timezone ...string) *Carbon {
c := NewCarbon()
if value == "" {
return nil
}
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[0])
}
if c.HasError() {
return c
}
switch value {
case "now":
return Now(c.Timezone())
case "yesterday":
return Yesterday(c.Timezone())
case "tomorrow":
return Tomorrow(c.Timezone())
}
for _, layout := range defaultLayouts {
if tt, err := time.ParseInLocation(layout, value, c.loc); err == nil {
c.time = tt
c.layout = layout
return c
}
}
c.Error = failedParseError(value)
return c
}
// ParseByFormat parses a time string as a Carbon instance by format.
// 通过格式模板将时间字符串解析成 Carbon 实例
func ParseByFormat(value, format string, timezone ...string) *Carbon {
c := NewCarbon()
if value == "" {
return nil
}
if format == "" {
c.Error = emptyFormatError()
return c
}
c = ParseByLayout(value, format2layout(format), timezone...)
if c.HasError() {
c.Error = invalidFormatError(value, format)
}
return c
}
// ParseByLayout parses a time string as a Carbon instance by layout.
// 通过布局模板将时间字符串解析成 Carbon 实例
func ParseByLayout(value, layout string, timezone ...string) *Carbon {
c := NewCarbon()
if value == "" {
return nil
}
if layout == "" {
c.Error = emptyLayoutError()
return c
}
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[0])
}
if c.HasError() {
return c
}
if layout == TimestampLayout {
ts, err := strconv.ParseInt(value, 10, 64)
if err != nil {
c.Error = invalidTimestampError(value)
return c
}
return CreateFromTimestamp(ts, c.Timezone())
}
if layout == TimestampMilliLayout {
ts, err := strconv.ParseInt(value, 10, 64)
if err != nil {
c.Error = invalidTimestampError(value)
return c
}
return CreateFromTimestampMilli(ts, c.Timezone())
}
if layout == TimestampMicroLayout {
ts, err := strconv.ParseInt(value, 10, 64)
if err != nil {
c.Error = invalidTimestampError(value)
return c
}
return CreateFromTimestampMicro(ts, c.Timezone())
}
if layout == TimestampNanoLayout {
ts, err := strconv.ParseInt(value, 10, 64)
if err != nil {
c.Error = invalidTimestampError(value)
return c
}
return CreateFromTimestampNano(ts, c.Timezone())
}
tt, err := time.ParseInLocation(layout, value, c.loc)
if err != nil {
c.Error = invalidLayoutError(value, layout)
return c
}
c.time = tt
c.layout = layout
return c
}
// ParseWithLayouts parses time string with layouts as a Carbon instance.
// 通过自定义布局模板将时间字符串解析成 Carbon 实例
func ParseWithLayouts(value string, layouts []string, timezone ...string) *Carbon {
c := NewCarbon()
if value == "" {
return nil
}
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[0])
}
if c.HasError() {
return c
}
if len(layouts) == 0 {
return Parse(value, timezone...)
}
for _, layout := range layouts {
if tt, err := time.ParseInLocation(layout, value, c.loc); err == nil {
c.time = tt
c.layout = layout
return c
}
}
c.Error = failedParseError(value)
return c
}
// ParseWithFormats parses time string with formats as a Carbon instance.
// 通过自定义格式模板将时间字符串解析成 Carbon 实例
func ParseWithFormats(value string, formats []string, timezone ...string) *Carbon {
c := NewCarbon()
if value == "" {
return nil
}
if len(timezone) > 0 {
c.loc, c.Error = getLocationByTimezone(timezone[0])
}
if c.HasError() {
return c
}
if len(formats) == 0 {
return Parse(value, timezone...)
}
var layouts []string
for _, format := range formats {
layouts = append(layouts, format2layout(format))
}
return ParseWithLayouts(value, layouts, timezone...)
}