mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
a7123f0edf
1999-10-01 Andreas Jaeger <aj@suse.de> * locale/programs/ld-collate.c (insert_value): Add cast to avoid warning. * intl/finddomain.c (_nl_find_domain): Likewise. 1999-09-30 Andreas Schwab <schwab@suse.de> * sysdeps/unix/sysv/linux/alpha/ioperm.c: Disable debug messages. 1999-09-30 Andreas Jaeger <aj@suse.de> * sysdeps/i386/lshift.S: Correct assembler commands to fix warnings. * sysdeps/i386/rshift.S: Likewise. * sysdeps/i386/strchrnul.S: Likewise. * sysdeps/i386/strchr.S: Likewise. Patch by Michael Deutschmann <michael@talamasca.wkpowerlink.com>, PR libc/1339. 1999-09-30 Andreas Jaeger <aj@suse.de> * manual/examples/pipe.c: Close other end of pipe to make example work. 1999-10-01 Ulrich Drepper <drepper@cygnus.com> * timezone/checktab.awk: Update from tzcode1999g. * timezone/tzselect.ksh: Likewise. * timezone/africa: Update from tzdata1999g. * timezone/asia: Likewise. * timezone/australasia: Likewise. * timezone/europe: Likewise. * timezone/northamerica: Likewise. * timezone/southamerica: Likewise. * timezone/iso3166.tab: Likewise. * timezone/zone.tab: Likewise. been renamed to getipnodebyname. Move flags around.
160 lines
3.4 KiB
Awk
160 lines
3.4 KiB
Awk
# Check tz tables for consistency.
|
|
|
|
# @(#)checktab.awk 1.5
|
|
|
|
# Contributed by Paul Eggert <eggert@twinsun.com>.
|
|
|
|
BEGIN {
|
|
FS = "\t"
|
|
|
|
if (!iso_table) iso_table = "iso3166.tab"
|
|
if (!zone_table) zone_table = "zone.tab"
|
|
if (!want_warnings) want_warnings = -1
|
|
|
|
while (getline <iso_table) {
|
|
iso_NR++
|
|
if ($0 ~ /^#/) continue
|
|
if (NF != 2) {
|
|
printf "%s:%d: wrong number of columns\n", \
|
|
iso_table, iso_NR >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
cc = $1
|
|
name = $2
|
|
if (cc !~ /^[A-Z][A-Z]$/) {
|
|
printf "%s:%d: invalid country code `%s'\n", \
|
|
iso_table, iso_NR, cc >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
if (cc <= cc0) {
|
|
if (cc == cc0) {
|
|
s = "duplicate";
|
|
} else {
|
|
s = "out of order";
|
|
}
|
|
|
|
printf "%s:%d: country code `%s' is %s\n", \
|
|
iso_table, iso_NR, cc, s \
|
|
>>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
cc0 = cc
|
|
if (name2cc[name]) {
|
|
printf "%s:%d: `%s' and `%s' have the sname name\n", \
|
|
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) {
|
|
printf "%s:%d: wrong number of columns\n", \
|
|
zone_table, zone_NR >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
cc = $1
|
|
coordinates = $2
|
|
tz = $3
|
|
comments = $4
|
|
if (cc < cc0) {
|
|
printf "%s:%d: country code `%s' is out of order\n", \
|
|
zone_table, zone_NR, cc >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
cc0 = cc
|
|
if (tz2cc[tz]) {
|
|
printf "%s:%d: %s: duplicate TZ column\n", \
|
|
zone_table, zone_NR, tz >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
tz2cc[tz] = cc
|
|
tz2comments[tz] = comments
|
|
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
|
|
}
|
|
}
|
|
|
|
for (tz in tz2cc) {
|
|
if (cc_used[tz2cc[tz]] == 1) {
|
|
if (tz2comments[tz]) {
|
|
printf "%s:%d: unnecessary comment `%s'\n", \
|
|
zone_table, tz2NR[tz], tz2comments[tz] \
|
|
>>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
} else {
|
|
if (!tz2comments[tz]) {
|
|
printf "%s:%d: missing comment\n", \
|
|
zone_table, tz2NR[tz] >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
FS = " "
|
|
}
|
|
|
|
{
|
|
tz = ""
|
|
if ($1 == "Zone") tz = $2
|
|
if ($1 == "Link") {
|
|
# 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
|
|
}
|
|
if (tz && tz ~ /\//) {
|
|
if (!tz2cc[tz]) {
|
|
printf "%s: no data for `%s'\n", zone_table, tz \
|
|
>>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
zoneSeen[tz] = 1
|
|
}
|
|
}
|
|
|
|
END {
|
|
for (tz in tz2cc) {
|
|
if (!zoneSeen[tz]) {
|
|
printf "%s:%d: no Zone table for `%s'\n", \
|
|
zone_table, tz2NR[tz], tz >>"/dev/stderr"
|
|
status = 1
|
|
}
|
|
}
|
|
|
|
if (0 < want_warnings) {
|
|
for (cc in cc2name) {
|
|
if (!cc_used[cc]) {
|
|
printf "%s:%d: warning:" \
|
|
"no Zone entries for %s (%s)\n", \
|
|
iso_table, cc2NR[cc], cc, cc2name[cc]
|
|
}
|
|
}
|
|
}
|
|
|
|
exit status
|
|
}
|