forked from antlr/grammars-v4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso8601.g4
269 lines (236 loc) · 7.74 KB
/
iso8601.g4
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
// Copyright (C) 2020 by Student Main
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
// ISO 8601 all-in-one grammar file
// choose an entry rule on your demand
// search 'ENTRYRULE' to find all intended entry points
// reference document:
// https://www.loc.gov/standards/datetime/iso-tc154-wg5_n0038_iso_wd_8601-1_2016-02-16.pdf
grammar iso8601;
// lexer
Newline: [\r\n] -> channel(HIDDEN);
T: [Tt];
Z: [Zz];
W: [Ww];
P: [Pp];
Y: [Yy];
M: [Mm];
D: [Dd];
H: [Hh];
S: [Ss];
R: [Rr];
Digit: [0-9];
Fraction: [,.] Digit+;
// number
int_: Digit+;
dec: Digit+ Fraction?;
int2: Digit Digit;
int3: Digit Digit Digit;
int4: Digit Digit Digit Digit;
sint2p: ('+'|'-') Digit Digit+;
sint4p: ('+'|'-') Digit Digit Digit Digit+;
dec2: Digit Digit Fraction?;
// datetime element
century
: int2 # CompleteCentury
| sint2p # ExpandedCentury
;
year
: int4 # CompleteYear
| sint4p # ExpandedYear
;
month: int2;
day: int2;
ordinalDay: int3;
week: int2;
weekDay: Digit;
hour: int2;
minute: int2;
second: int2;
hourFraction: dec2;
minuteFraction: dec2;
secondFraction: dec2;
// ENTRYRULE 1926-08-17 4.1.2.2 & 4.1.2.4 a
calendarDate: calendarDateBasic | calendarDateExtended;
calendarDateBasic: year month day;
calendarDateExtended: year '-' month '-' day;
// ENTRYRULE 1926-08 4.1.2.3 a & 4.1.2.4 b
specificMonthCalendarDate: year '-' month;
// ENTRYRULE 1926 4.1.2.3 b & 4.1.2.4 c
specificYearCalendarDate: year;
// ENTRYRULE 19 (it means 20 century here) 4.1.2.3 c & 4.1.2.4 d
specificCenturyCalendarDate: century;
// ENTRYRULE 1926-229 4.1.3.2 & 4.1.3.3
ordinalDate: ordinalDateBasic | ordinalDateExtended;
ordinalDateBasic: year ordinalDay;
ordinalDateExtended: year '-' ordinalDay;
// ENTRYRULE 1926-W33-2 4.1.4.2 & 4.1.4.4 a
weekDate: weekDateBasic | weekDateExtended;
weekDateBasic: year W week weekDay;
weekDateExtended: year '-' W week '-' weekDay;
// ENTRYRULE 1926-W33 4.1.4.3 & 4.1.4.4 b
specificWeekWeekDate: specificWeekWeekDateBasic | specificWeekWeekDateExtended;
specificWeekWeekDateBasic: year W week;
specificWeekWeekDateExtended: year '-' W week;
// ENTRYRULE (any date precise to day)
datePrecise: datePreciseBasic | datePreciseExtended;
datePreciseBasic
: calendarDateBasic
| ordinalDateBasic
| weekDateBasic
;
datePreciseExtended
: calendarDateExtended
| ordinalDateExtended
| weekDateExtended
;
// ENTRYRULE (any date format)
date: dateBasic | dateExtended;
dateBasic
: datePreciseBasic
| specificMonthCalendarDate
| specificYearCalendarDate
| specificCenturyCalendarDate
| specificWeekWeekDateBasic
;
dateExtended
: datePreciseExtended
| specificMonthCalendarDate
| specificYearCalendarDate
| specificCenturyCalendarDate
| specificWeekWeekDateExtended
;
// ENTRYRULE 12:34:56.0721 4.2.2.2 & 4.2.2.4 a
localTimePrecise: localTimePreciseBasic | localTimePreciseExtended;
localTimePreciseBasic: hour minute secondFraction;
localTimePreciseExtended: hour ':' minute ':' secondFraction;
// ENTRYRULE 12:34.5 4.2.2.3 a & 4.2.2.4 b
specificMinuteLocalTime: specificMinuteLocalTimeBasic | specificMinuteLocalTimeExtended;
specificMinuteLocalTimeBasic: hour minuteFraction;
specificMinuteLocalTimeExtended: hour ':' minuteFraction;
// ENTRYRULE 12.5 (12:30:00) 4.2.2.3.b & 4.2.2.4 c
specificHourLocalTime: hourFraction;
// ENTRYRULE (time without T and timezone)
localTime: localTimeBasic | localTimeExtended;
localTimeBasic
: localTimePreciseBasic
| specificMinuteLocalTimeBasic
| specificHourLocalTime
;
localTimeExtended
: localTimePreciseExtended
| specificMinuteLocalTimeExtended
| specificHourLocalTime
;
// 4.2.4
timeZoneUtc: Z;
// ENTRYRULE +08:00 4.2.5.1
timeZone: timeZoneBasic | timeZoneExtended;
timeZoneBasic: (('+'|'-') hour minute?)|timeZoneUtc;
timeZoneExtended: (('+'|'-') hour (':' minute)?)|timeZoneUtc;
// ENTRYRULE (time with timezone without T) 4.2.5.2
localTimeAndTimeZone: localTimeAndTimeZoneBasic | localTimeAndTimeZoneExtended;
localTimeAndTimeZoneBasic: localTimeBasic timeZoneBasic;
localTimeAndTimeZoneExtended: localTimeExtended timeZoneExtended;
// ENTRYRULE (any time format)
time: T? localTime timeZone?;
// ENTRYRULE 1957-10-05T01:28:34+06:00 4.3.2
datetimePrecise: datetimePreciseBasic | datetimePreciseExtended;
datetimePreciseBasic: calendarDateBasic T localTimePreciseBasic timeZoneBasic?;
datetimePreciseExtended: calendarDateExtended T localTimePreciseExtended timeZoneExtended?;
// ENTRYRULE (any datetime format)4.3.3
datetime: datetimeBasic | datetimeExtended;
datetimeBasic: datePreciseBasic T localTimeBasic timeZoneBasic?;
datetimeExtended: datePreciseExtended T localTimeExtended timeZoneExtended?;
// ENTRYRULE (any interval format) 4.4.3.2 & 4.4.4.2.1
interval: intervalT | intervalYMD;
intervalBasic: intervalT | intervalYMDBasic;
intervalExtended: intervalT | intervalYMDExtended;
// ENTRYRULE P1Y2M3DT4H5M6.789S
intervalT
: P (int_ Y)? (int_ M)? (int_ D)? T (int_ H)? (int_ M)? dec S
| P (int_ Y)? (int_ M)? (int_ D)? T (int_ H)? dec M
| P (int_ Y)? (int_ M)? (int_ D)? T dec H
| P (int_ Y)? (int_ M)? dec D
| P (int_ Y)? dec M
| P dec Y
| P dec W
;
monthDateBasic
: month day
;
monthDateExtended
: month '-' day
;
intervalYMDTimeBasic
: monthDateBasic
| day
| datetimeBasic
| dateBasic
| localTimeBasic
;
intervalYMDTimeExtended
: monthDateExtended
| day
| datetimeExtended
| dateExtended
| localTimeExtended
| monthDateExtended
;
// ENTRYRULE P0001-02-03T00:00:00 4.4.4.2.2
intervalYMD: intervalYMDBasic | intervalYMDExtended;
intervalYMDBasic: P intervalYMDTimeBasic;
intervalYMDExtended: P intervalYMDTimeExtended;
// ENTRYRULE 1234-05-06T00:07:08/1234-05-06T00:07:09 4.4.4.1
timeBeginEnd: timeBeginEndBasic | timeBeginEndExtended;
timeBeginEndBasic: intervalYMDTimeBasic '/' intervalYMDTimeBasic;
timeBeginEndExtended: intervalYMDTimeExtended '/' intervalYMDTimeExtended;
// ENTRYRULE 1234-05-06T00:07:08/P1M 4.4.4.3
timeBeginInterval: timeBeginIntervalBasic|timeBeginIntervalExtended;
timeBeginIntervalBasic: datetimeBasic '/' intervalBasic;
timeBeginIntervalExtended: datetimeExtended '/' intervalExtended;
// ENTRYRULE P138Y/1234-05-06T00:07:09 4.4.4.4
timeIntervalEnd: timeIntervalEndBasic|timeIntervalEndExtended;
timeIntervalEndBasic: intervalBasic '/' datetimeBasic;
timeIntervalEndExtended: intervalExtended '/' datetimeExtended;
// ENTRYRULE (any duration)
duration: durationBasic | durationExtended;
durationBasic
: timeBeginEndBasic
| timeBeginIntervalBasic
| timeIntervalEndBasic
| intervalBasic
;
durationExtended
: timeBeginEndExtended
| timeBeginIntervalExtended
| timeIntervalEndExtended
| intervalExtended
;
recurringCount: R int_?;
// ENTRYRULE R12/1900-01-01T00:00:00/P4294967296S 4.5.3
recurring: recurringBasic | recurringExtended;
recurringBasic: recurringCount '/' durationBasic;
recurringExtended: recurringCount '/' durationExtended;
// try everything
// if you just want parse 1926-08-17T12:34:56+08:00
// use dateTimePrecise instead
// ENTRYRULE (everything)
iso
:
// put time before date, to mitigate confusion between century and hour
( time
| date
| datetime
| duration
| recurring
) EOF;