-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.py
executable file
·473 lines (328 loc) · 12.7 KB
/
build.py
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
import argparse
import io
import os
import re
import sys
from datetime import date
MIN_YEAR = 1970
MAX_YEAR = 2037
PRIMARY_DATA = [
"africa",
"antarctica",
"asia",
"australasia",
"europe",
"northamerica",
"southamerica"
]
# PARSE
tabs_or_spaces = re.compile(r"\t+ *| +")
indented_comment = re.compile(r"[\t ]+#")
# zone table
def parse_zonetable(filepath):
zonenames = set()
for line in open(filepath).readlines():
if line[0] == "#":
continue
fields = re.split(tabs_or_spaces, line.rstrip())
zonenames.add(fields[2])
return zonenames
# source file
def parse_sourcefile(filepath):
rulesets = {}
zones = {}
links = {}
parsing_zonename = None
for line in open(filepath).readlines():
if line[0] == "#" or indented_comment.match(line) is not None:
continue
line = line[0:line.find("#")].rstrip()
fields = re.split(tabs_or_spaces, line)
if parsing_zonename is not None:
if line[0:3] == "\t\t\t":
state, until = make_zonestateuntil(fields[1:])
if zonestate_in_range(until):
insert_zonestateuntil(parsing_zonename, state, until, zones)
continue
else:
parsing_zonename = None
if fields[0] == "Rule":
rulesetname = fields[1]
rule = make_rule(fields[2:])
if rule["from"] <= MAX_YEAR and (rule["to"] == "maxYear" or (MIN_YEAR - 1) <= int(rule["to"])):
insert_rule(rulesetname, rule, rulesets)
elif fields[0] == "Zone":
parsing_zonename = fields[1]
state, until = make_zonestateuntil(fields[2:])
if zonestate_in_range(until):
insert_zonestateuntil(parsing_zonename, state, until, zones)
elif fields[0] == "Link":
links[fields[2]] = fields[1]
return ( rulesets, zones, links )
def zonestate_in_range(until):
return until is None or MIN_YEAR < until["year"] or ( MIN_YEAR, "Jan", 1 ) == ( until["year"], until["month"], until["day"] )
# rulesets
def insert_rule(name, rule, rulesets):
if name in rulesets:
rulesets[name].append(rule)
else:
rulesets[name] = [ rule ]
def make_rule(fields):
year1 = int(fields[0])
year2 = year1 if fields[1] == "only" else ("maxYear" if fields[1] == "max" else int(fields[1]))
return {
"from" : year1,
"to" : year2,
"month" : fields[3],
"day" : parse_dayofmonth(fields[4]),
"time" : minutes_from_time(fields[5]),
"clock" : clock_from_char(fields[5][-1:]),
"save" : minutes_from_time(fields[6])
}
def parse_dayofmonth(string):
if string[0:4] == "last":
weekday = string[4:7]
return [ "Last", weekday ]
elif string[3:5] == ">=":
weekday = string[0:3]
after = int(string[5:])
return [ "Next", weekday, after ]
elif string[3:5] == "<=":
weekday = string[0:3]
after = int(string[5:])
return [ "Prev", weekday, after ]
else:
return [ "Day", int(string) ]
def clock_from_char(char):
if char in [ "u", "z", "g" ]:
return "Universal"
elif char == "s":
return "Standard"
else:
return "WallClock"
# zones
def insert_zonestateuntil(name, state, until, zones):
if name not in zones:
zones[name] = { "history": [], "current": None }
if until is not None:
zones[name]["history"].append(( state, until ))
else:
zones[name]["current"] = state
def make_zonestateuntil(fields):
state = {
"offset": minutes_from_time(fields[0]),
"zonerules": parse_zonerules(fields[1])
}
until = make_datetime(fields[3:7]) if len(fields) > 3 else None
return ( state, until )
def parse_zonerules(string):
if string[0:1].isalpha():
return [ "Rules", string ]
elif string == "-":
return [ "Save", 0 ]
else:
return [ "Save", minutes_from_time(string) ]
def make_datetime(fields):
return {
"year": int(fields[0]),
"month": fields[1] if len(fields) > 1 else "Jan",
"day": to_concreteday(*fields[0:3]) if len(fields) > 2 else 1,
"time": minutes_from_time(fields[3]) if len(fields) > 3 else 0,
"clock": clock_from_char(fields[3][-1:] if len(fields) > 3 else "")
}
def to_concreteday(yyyy, mmm, day):
if day[0:4] == "last":
year = int(yyyy)
month = months.index(mmm) + 1
weekday = weekdays.index(day[4:7]) + 1
return floorweekday(lastofmonth(year, month), weekday).day
elif day[3:5] == ">=":
year = int(yyyy)
month = months.index(mmm) + 1
weekday = weekdays.index(day[0:3]) + 1
after = int(day[5:])
return ceilingweekday(date(year, month, after), weekday).day
else:
return int(day)
# date helpers
months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]
weekdays = [ "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" ]
def lastofmonth(year, month):
firstofnextmonth = date(year, month + 1, 1) if month < 12 else date(year + 1, 1, 1)
return date.fromordinal(firstofnextmonth.toordinal() - 1)
def floorweekday(date_, weekday):
dayssincepreviousweekday = (date_.isoweekday() + 7 - weekday) % 7
return date.fromordinal(date_.toordinal() - dayssincepreviousweekday)
def ceilingweekday(date_, weekday):
floored = floorweekday(date_, weekday)
return floored if date_ == floored else date.fromordinal(floored.toordinal() + 7)
# time
# Rule AT = h:mm[c]
# Rule SAVE = h[:mm]
# Zone GMTOFF = [-]h:mm[:ss]
# Zone RULES = h:mm
# Zone UNTIL = h:mm[:ss][c]
def minutes_from_time(hhmmss):
hms = hhmmss.split(":")
sign, h = ( 1, int(hms[0]) ) if hms[0][0:1] != "-" else ( -1, int(hms[0][1:]) )
m = int(hms[1][0:2]) if len(hms) > 1 else 0
s = float(hms[2][0:2]) if len(hms) > 2 else 0
return sign * (h * 60 + m + int(round(s / 60.0)))
# TRANSFORM
def transform(zonenames, ( rulesets, zones, links )):
# update zones: remove zones without a current state, remove zones not in zonenames
zones = { name: zone for name, zone in zones.iteritems() if zone["current"] is not None and name in zonenames }
# update links: remove links to zones not in zonenames
links = { source: target for source, target in links.iteritems() if target in zonenames }
# update rulesets: add missing rulesets, remove unused rulesets
rulesetnames = set()
for zone in zones.itervalues():
rulesetnames.update([ rulesetname_from_zonerules(state["zonerules"]) for state, _ in zone["history"] ])
rulesetnames.add(rulesetname_from_zonerules(zone["current"]["zonerules"]))
rulesets = { name: rulesets.get(name, []) for name in rulesetnames if name is not None }
# optimization: remove empty rulesets, remove their references in zones
emptyrulesets = set([ name for name, rules in rulesets.iteritems() if not rules ])
for zone in zones.itervalues():
for state, _ in zone["history"]:
remove_referenced_rulsetnames(emptyrulesets, state)
remove_referenced_rulsetnames(emptyrulesets, zone["current"])
rulesets = { name: rules for name, rules in rulesets.iteritems() if rules }
return ( rulesets, zones, links )
def remove_referenced_rulsetnames(rulsetnames, state):
if rulesetname_from_zonerules(state["zonerules"]) in rulsetnames:
state["zonerules"] = [ "Save", 0 ]
def rulesetname_from_zonerules(zonerules):
return zonerules[1] if zonerules[0] == "Rules" else None
# PRINT
def print_filecontent(version, rulesets, zones, links):
zonenameid_pairs = [ ( name, zoneid_from_name(name) ) for name in sorted(zones.keys() + links.keys()) ]
template = open("template.elm").read()
keywords = re.compile(r"VERSION|MIN_YEAR|MAX_YEAR|ZONE_IDS|ZONE_NAME_ID_PAIRS")
substitutions = {
"VERSION": version,
"MIN_YEAR": str(MIN_YEAR),
"MAX_YEAR": str(MAX_YEAR),
"ZONE_IDS": ", ".join([ zoneid for _, zoneid in zonenameid_pairs ]),
"ZONE_NAME_ID_PAIRS": print_zonenameid_pairs(zonenameid_pairs)
}
output = [
keywords.sub(lambda m: substitutions[m.group(0)], template)
]
# rulesets
output.append("-- Rules")
for name in sorted(rulesets.keys()):
output.append(print_ruleset(name, rulesets[name]))
# zones
output.append("-- Zones")
for name in sorted(zones.keys()):
output.append(print_zone(name, zones[name]))
# links
output.append("-- Links")
for source, target in sorted(links.iteritems()):
output.append(print_link(source, target))
return "\n".join(output)
def print_ruleset(rulesetname, rules):
rulesetid = rulesetid_from_name(rulesetname)
rules_ = line_separator1.join(map(print_rule, rules))
return template_ruleset.format(rulesetid=rulesetid, rules=rules_)
def print_rule(rule):
dayofmonth = " ".join(map(str, rule["day"]))
return template_rule.format(dayofmonth=dayofmonth, **rule)
def print_zone(zonename, zone):
zoneid = zoneid_from_name(zonename)
history = line_separator3.join(map(print_zonestateuntil, zone["history"]))
current = print_zonestate(**zone["current"])
return template_zone.format(zonename=zonename, zoneid=zoneid, history=history, current=current)
def print_zonestateuntil(( state, until )):
state_ = print_zonestate(**state)
until_ = template_datetime.format(**until)
return template_zonestateuntil.format(state=state_, until=until_)
def print_zonestate(offset, zonerules):
zonerules_ = print_zonerules(zonerules)
return template_zonestate.format(offset=offset, zonerules=zonerules_)
def print_zonerules(zonerules):
if zonerules[0] == "Rules":
return "Rules {}".format(rulesetid_from_name(zonerules[1]))
else:
return " ".join(map(str, zonerules))
def print_link(source, target):
sourceid = zoneid_from_name(source)
targetid = zoneid_from_name(target)
return template_link.format(sourcename=source, targetname=target, sourceid=sourceid, targetid=targetid)
def print_zonenameid_pairs(zonenameid_pairs):
pairs = [ template_zonenameid_pair.format(k, v) for k, v in zonenameid_pairs ]
return line_separator1.join(pairs)
def rulesetid_from_name(name):
return "rules_" + name.replace("-", "_")
def zoneid_from_name(name):
return name.replace("/", "__").replace("-", "_").lower()
# templates
template_ruleset = """
{rulesetid} : List Rule
{rulesetid} =
[ {rules}
]
"""
template_rule = "Rule {from} {to} {month} ({dayofmonth}) {time} {clock} {save}"
template_zone = """
{{-| `{zonename}`
-}}
{zoneid} : () -> Time.Zone
{zoneid} _ =
fromSpecification <|
Zone
[ {history}
]
({current})
"""
template_zonestateuntil = "( {state}, {until} )"
template_zonestate = "ZoneState {offset} ({zonerules})"
template_datetime = "DateTime {year} {month} {day} {time} {clock}"
template_link = """
{{-| `{sourcename}` (alias of `{targetname}`)
-}}
{sourceid} : () -> Time.Zone
{sourceid} =
{targetid}
"""
template_zonenameid_pair = "( \"{0}\", {1} )"
line_separator1 = "\n , "
line_separator3 = "\n , "
# file
def create_textfile(filepath, filecontent):
if not os.path.exists(os.path.dirname(filepath)):
os.makedirs(os.path.dirname(filepath))
output = io.open(filepath, "w", encoding="utf-8")
output.write(unicode(filecontent, encoding="utf-8-sig"))
output.close()
# main
def main():
argparser = argparse.ArgumentParser()
argparser.add_argument("sourcedir", help="path to tzdb source directory")
argparser.add_argument("version", help="what version of tzdb is this?")
argparser.add_argument("output", help="path to destination file")
args = argparser.parse_args()
sourcedir = os.path.abspath(args.sourcedir)
if not os.path.exists(sourcedir):
print "error: sourcedir not found: " + sourcedir
sys.exit(1)
# we only want zones listed in the zone table
zonenames = parse_zonetable(os.path.join(sourcedir, "zone1970.tab"))
# parse, transform, print
rulesets = {}
zones = {}
links = {}
for filename in PRIMARY_DATA:
rulesets_, zones_, links_ = transform(zonenames, parse_sourcefile(os.path.join(sourcedir, filename)))
rulesets.update(rulesets_)
zones.update(zones_)
links.update(links_)
missingzones = zonenames - set(zones.keys())
if missingzones:
print "error: zones not found: " + ", ".join(missingzones)
sys.exit(1)
filecontent = print_filecontent(args.version, rulesets, zones, links)
# write file
create_textfile(os.path.abspath(args.output), filecontent)
if __name__ == "__main__":
main()