1996-09-08 15:50:24 -04:00
|
|
|
# Check tz tables for consistency.
|
|
|
|
|
|
2005-07-14 14:06:15 -04:00
|
|
|
# Contributed by Paul Eggert.
|
1996-09-08 15:50:24 -04:00
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
|
FS = "\t"
|
|
|
|
|
|
|
|
|
|
if (!iso_table) iso_table = "iso3166.tab"
|
|
|
|
|
if (!zone_table) zone_table = "zone.tab"
|
|
|
|
|
if (!want_warnings) want_warnings = -1
|
|
|
|
|
|
Fix minor problems found by static checking.
Mostly this moves links so that files can be zic'ed standalone.
* antarctica (Antarctica/McMurdo): Move to australasia,
* australasia (Pacific/Johnston): Move to northamerica.
* checktab.awk: Add special case for America/Montreal, pending
the tzwinnow approach.
* northamerica (America/Anguilla, America/Dominica, America/Grenada)
(America/Guadeloupe, America/St_Barthelemy, America/Marigot)
(America/Montserrat, America/St_Kitts, America/St_Lucia)
(America/St_Vincent, America/Tortola, America/St_Thomas):
Move to southamerica.
* southamerica: Receive above-described moves.
* zic.c (writezone): Remove unused local.
2013-09-11 02:21:27 -07:00
|
|
|
# A special (and we hope temporary) case.
|
|
|
|
|
tztab["America/Montreal"] = 1
|
|
|
|
|
|
1996-09-08 15:50:24 -04:00
|
|
|
while (getline <iso_table) {
|
|
|
|
|
iso_NR++
|
|
|
|
|
if ($0 ~ /^#/) continue
|
|
|
|
|
if (NF != 2) {
|
1999-09-28 10:50:21 -04:00
|
|
|
printf "%s:%d: wrong number of columns\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
iso_table, iso_NR >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
cc = $1
|
|
|
|
|
name = $2
|
|
|
|
|
if (cc !~ /^[A-Z][A-Z]$/) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: invalid country code '%s'\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
iso_table, iso_NR, cc >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
if (cc <= cc0) {
|
1999-09-28 10:53:04 -04:00
|
|
|
if (cc == cc0) {
|
|
|
|
|
s = "duplicate";
|
|
|
|
|
} else {
|
|
|
|
|
s = "out of order";
|
|
|
|
|
}
|
|
|
|
|
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: country code '%s' is %s\n", \
|
1999-09-28 10:53:04 -04:00
|
|
|
iso_table, iso_NR, cc, s \
|
1996-09-08 15:50:24 -04:00
|
|
|
>>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
cc0 = cc
|
|
|
|
|
if (name2cc[name]) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: '%s' and '%s' have the sname name\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
iso_table, iso_NR, name2cc[name], cc \
|
|
|
|
|
>>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
name2cc[name] = cc
|
|
|
|
|
cc2name[cc] = name
|
|
|
|
|
cc2NR[cc] = iso_NR
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
zone_table = "zone.tab"
|
|
|
|
|
cc0 = ""
|
|
|
|
|
|
|
|
|
|
while (getline <zone_table) {
|
|
|
|
|
zone_NR++
|
|
|
|
|
if ($0 ~ /^#/) continue
|
|
|
|
|
if (NF != 3 && NF != 4) {
|
1999-09-28 10:50:21 -04:00
|
|
|
printf "%s:%d: wrong number of columns\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
zone_table, zone_NR >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
cc = $1
|
|
|
|
|
coordinates = $2
|
|
|
|
|
tz = $3
|
|
|
|
|
comments = $4
|
|
|
|
|
if (cc < cc0) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: country code '%s' is out of order\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
zone_table, zone_NR, cc >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
cc0 = cc
|
Move links to 'backward' if they exist only because of country codes.
* backward: Move links here from other files, if the only reason
they existed was to fill out zone.tab. Zones are now allowed to
cross national borders, so a zone now need not exist merely
because there's a national border. Sort the list consistently.
None of this changes any time stamp in the database.
* checktab.awk: Don't require that zone.tab's column 3 be unique.
* europe (Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man)
(Europe/Mariehamn, Europe/Busingen, Europe/Vatican, Europe/San_Marino)
(Arctic/Longyearbyen, Europe/Ljubljana, Europe/Podgorica)
(Europe/Sarajevo, Europe/Skopje, Europe/Zagreb, Europe/Bratislava):
* northamerica (America/St_Barthelemy, America/Marigot):
* southamerica (America/Lower_Princes, America/Kralendijk):
Move links to 'backward'.
* zone.tab: Give more details about how different rows can have
duplicate column 1 or column 3. For each link moved to 'backward',
change column 3 to be the non-backward name.
2013-08-09 02:05:40 -07:00
|
|
|
cctz = cc tz
|
|
|
|
|
cctztab[cctz] = 1
|
|
|
|
|
tztab[tz] = 1
|
|
|
|
|
tz2comments[cctz] = comments
|
1996-09-08 15:50:24 -04:00
|
|
|
tz2NR[tz] = zone_NR
|
|
|
|
|
if (cc2name[cc]) {
|
|
|
|
|
cc_used[cc]++
|
|
|
|
|
} else {
|
|
|
|
|
printf "%s:%d: %s: unknown country code\n", \
|
|
|
|
|
zone_table, zone_NR, cc >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
if (coordinates !~ /^[-+][0-9][0-9][0-5][0-9][-+][01][0-9][0-9][0-5][0-9]$/ \
|
|
|
|
|
&& coordinates !~ /^[-+][0-9][0-9][0-5][0-9][0-5][0-9][-+][01][0-9][0-9][0-5][0-9][0-5][0-9]$/) {
|
|
|
|
|
printf "%s:%d: %s: invalid coordinates\n", \
|
|
|
|
|
zone_table, zone_NR, coordinates >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
Move links to 'backward' if they exist only because of country codes.
* backward: Move links here from other files, if the only reason
they existed was to fill out zone.tab. Zones are now allowed to
cross national borders, so a zone now need not exist merely
because there's a national border. Sort the list consistently.
None of this changes any time stamp in the database.
* checktab.awk: Don't require that zone.tab's column 3 be unique.
* europe (Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man)
(Europe/Mariehamn, Europe/Busingen, Europe/Vatican, Europe/San_Marino)
(Arctic/Longyearbyen, Europe/Ljubljana, Europe/Podgorica)
(Europe/Sarajevo, Europe/Skopje, Europe/Zagreb, Europe/Bratislava):
* northamerica (America/St_Barthelemy, America/Marigot):
* southamerica (America/Lower_Princes, America/Kralendijk):
Move links to 'backward'.
* zone.tab: Give more details about how different rows can have
duplicate column 1 or column 3. For each link moved to 'backward',
change column 3 to be the non-backward name.
2013-08-09 02:05:40 -07:00
|
|
|
for (cctz in cctztab) {
|
|
|
|
|
cc = substr (cctz, 1, 2)
|
|
|
|
|
tz = substr (cctz, 3)
|
|
|
|
|
if (cc_used[cc] == 1) {
|
|
|
|
|
if (tz2comments[cctz]) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: unnecessary comment '%s'\n", \
|
Move links to 'backward' if they exist only because of country codes.
* backward: Move links here from other files, if the only reason
they existed was to fill out zone.tab. Zones are now allowed to
cross national borders, so a zone now need not exist merely
because there's a national border. Sort the list consistently.
None of this changes any time stamp in the database.
* checktab.awk: Don't require that zone.tab's column 3 be unique.
* europe (Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man)
(Europe/Mariehamn, Europe/Busingen, Europe/Vatican, Europe/San_Marino)
(Arctic/Longyearbyen, Europe/Ljubljana, Europe/Podgorica)
(Europe/Sarajevo, Europe/Skopje, Europe/Zagreb, Europe/Bratislava):
* northamerica (America/St_Barthelemy, America/Marigot):
* southamerica (America/Lower_Princes, America/Kralendijk):
Move links to 'backward'.
* zone.tab: Give more details about how different rows can have
duplicate column 1 or column 3. For each link moved to 'backward',
change column 3 to be the non-backward name.
2013-08-09 02:05:40 -07:00
|
|
|
zone_table, tz2NR[tz], \
|
|
|
|
|
tz2comments[cctz] \
|
1996-09-08 15:50:24 -04:00
|
|
|
>>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
Move links to 'backward' if they exist only because of country codes.
* backward: Move links here from other files, if the only reason
they existed was to fill out zone.tab. Zones are now allowed to
cross national borders, so a zone now need not exist merely
because there's a national border. Sort the list consistently.
None of this changes any time stamp in the database.
* checktab.awk: Don't require that zone.tab's column 3 be unique.
* europe (Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man)
(Europe/Mariehamn, Europe/Busingen, Europe/Vatican, Europe/San_Marino)
(Arctic/Longyearbyen, Europe/Ljubljana, Europe/Podgorica)
(Europe/Sarajevo, Europe/Skopje, Europe/Zagreb, Europe/Bratislava):
* northamerica (America/St_Barthelemy, America/Marigot):
* southamerica (America/Lower_Princes, America/Kralendijk):
Move links to 'backward'.
* zone.tab: Give more details about how different rows can have
duplicate column 1 or column 3. For each link moved to 'backward',
change column 3 to be the non-backward name.
2013-08-09 02:05:40 -07:00
|
|
|
if (!tz2comments[cctz]) {
|
1996-09-08 15:50:24 -04:00
|
|
|
printf "%s:%d: missing comment\n", \
|
|
|
|
|
zone_table, tz2NR[tz] >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FS = " "
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-20 19:01:21 -07:00
|
|
|
$1 ~ /^#/ { next }
|
|
|
|
|
|
1996-09-08 15:50:24 -04:00
|
|
|
{
|
2014-03-20 19:01:21 -07:00
|
|
|
tz = rules = ""
|
|
|
|
|
if ($1 == "Zone") {
|
|
|
|
|
tz = $2
|
|
|
|
|
ruleUsed[$4] = 1
|
|
|
|
|
} else if ($1 == "Link") {
|
1996-09-08 15:50:24 -04:00
|
|
|
# Ignore Link commands if source and destination basenames
|
|
|
|
|
# are identical, e.g. Europe/Istanbul versus Asia/Istanbul.
|
|
|
|
|
src = $2
|
|
|
|
|
dst = $3
|
|
|
|
|
while ((i = index(src, "/"))) src = substr(src, i+1)
|
|
|
|
|
while ((i = index(dst, "/"))) dst = substr(dst, i+1)
|
|
|
|
|
if (src != dst) tz = $3
|
2014-03-20 19:01:21 -07:00
|
|
|
} else if ($1 == "Rule") {
|
|
|
|
|
ruleDefined[$2] = 1
|
|
|
|
|
} else {
|
|
|
|
|
ruleUsed[$2] = 1
|
1996-09-08 15:50:24 -04:00
|
|
|
}
|
|
|
|
|
if (tz && tz ~ /\//) {
|
Move links to 'backward' if they exist only because of country codes.
* backward: Move links here from other files, if the only reason
they existed was to fill out zone.tab. Zones are now allowed to
cross national borders, so a zone now need not exist merely
because there's a national border. Sort the list consistently.
None of this changes any time stamp in the database.
* checktab.awk: Don't require that zone.tab's column 3 be unique.
* europe (Europe/Jersey, Europe/Guernsey, Europe/Isle_of_Man)
(Europe/Mariehamn, Europe/Busingen, Europe/Vatican, Europe/San_Marino)
(Arctic/Longyearbyen, Europe/Ljubljana, Europe/Podgorica)
(Europe/Sarajevo, Europe/Skopje, Europe/Zagreb, Europe/Bratislava):
* northamerica (America/St_Barthelemy, America/Marigot):
* southamerica (America/Lower_Princes, America/Kralendijk):
Move links to 'backward'.
* zone.tab: Give more details about how different rows can have
duplicate column 1 or column 3. For each link moved to 'backward',
change column 3 to be the non-backward name.
2013-08-09 02:05:40 -07:00
|
|
|
if (!tztab[tz]) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s: no data for '%s'\n", zone_table, tz \
|
1996-09-08 15:50:24 -04:00
|
|
|
>>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
zoneSeen[tz] = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
END {
|
2014-03-20 19:01:21 -07:00
|
|
|
for (tz in ruleDefined) {
|
|
|
|
|
if (!ruleUsed[tz]) {
|
|
|
|
|
printf "%s: Rule never used\n", tz
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
1996-09-08 15:50:24 -04:00
|
|
|
for (tz in tz2cc) {
|
|
|
|
|
if (!zoneSeen[tz]) {
|
Don't abuse "`" to mean open quote.
This was appropriate before Unicode, where "`" and "'" often balanced
in visual output, but that's been obsolete for a while.
Overall, single-quote 'like this' instead of `like this', and
double-quote "like this" or (in typeset output) “like this”
instead of ``like this''. While we're at it, fix some glitches
with hyphens versus minus versus en dash versus em dash.
* Makefile ($(MANTXTS)): Use UTF-8 locale to produce *.txt output.
* checktab.awk, tzselect.ksh:
Quote 'like this' in diagnostics, instead of `like this'.
* date.1, newctime.3, newtzset.3, time2posix.3, zic.8 (q, lq, rq):
New macros. Use them for better double-quoting in output.
* workman.sh: Tell Perl that its stdin and stdout are UTF-8.
* NEWS: Document this.
2014-06-15 13:27:37 -07:00
|
|
|
printf "%s:%d: no Zone table for '%s'\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
zone_table, tz2NR[tz], tz >>"/dev/stderr"
|
|
|
|
|
status = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (0 < want_warnings) {
|
|
|
|
|
for (cc in cc2name) {
|
|
|
|
|
if (!cc_used[cc]) {
|
1999-11-04 16:41:34 -05:00
|
|
|
printf "%s:%d: warning: " \
|
1999-09-28 10:50:21 -04:00
|
|
|
"no Zone entries for %s (%s)\n", \
|
1996-09-08 15:50:24 -04:00
|
|
|
iso_table, cc2NR[cc], cc, cc2name[cc]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit status
|
|
|
|
|
}
|