Add.
[libidn.git] / gen-stringprep-tables.pl
blob9a026b1c254fddae16112f920d3352f333d5883c
1 #! /usr/bin/perl -w
3 # Copyright (C) 2002 Simon Josefsson
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 # 02111-1307, USA.
20 # I consider the output of this program to be unrestricted. Use it as
21 # you will.
23 use strict;
25 my ($tab) = 59;
26 my ($intable) = 0;
27 my ($tablename);
28 my ($varname);
29 my ($starheader, $header);
30 my ($profile) = "generic";
31 my ($filename) = "stringprep_${profile}.c";
32 my ($line, $start, $end, @map);
34 open(FH, ">$filename") or die "cannot open $filename for writing";
36 print FH "#include <stringprep.h>\n";
38 while(<>) {
39 s/^ (.*)/$1/g; # for rfc
40 $line = $_;
42 die "already in table" if $intable && m,^----- Start Table (.*) -----,;
43 die "not in table" if !$intable && m,^----- End Table (.*) -----,;
45 if ($intable && m,^----- End Table (.*) -----,) {
46 die "table error" unless $1 eq $tablename ||
47 ($1 eq "C.1.2" && $tablename eq "C.1.1"); # Typo in draft
48 $intable = 0;
49 print FH " { 0 },\n";
50 print FH "};\n\n";
53 if (m,^[A-Z],) {
54 $header = $line;
55 } elsif (!m,^[ -],) {
56 $header .= $line;
59 next unless ($intable || m,^----- Start Table (.*) -----,);
61 if ($intable) {
62 $_ = $line;
63 chop $line;
65 next if m,^$,;
66 next if m,^Hoffman & Blanchet Standards Track \[Page [0-9]+\]$,;
67 next if m,^\f$,;
68 next if m,RFC 3454 Preparation of Internationalized Strings December 2002,;
70 die "regexp failed on line: $line" unless
71 m,^([0-9A-F]+)(-([0-9A-F]+))?(; ([0-9A-F]+)( ([0-9A-F]+))?( ([0-9A-F]+))?( ([0-9A-F]+))?;)?,;
73 die "too many mapping targets on line: $line" if $12;
75 $start = $1;
76 $end = $3;
77 $map[0] = $5;
78 $map[1] = $7;
79 $map[2] = $9;
80 $map[3] = $11;
82 die "tables tried to map a range" if $end && $map[0];
84 if ($map[3]) {
85 printf FH " { 0x%06s, 0, { 0x%06s,%*s/* %s */\n 0x%06s, 0x%06s, 0x%06s }},\n",
86 $start, $map[0], $tab-length($line)-13, " ", $line,
87 $map[1], $map[2], $map[3];
88 } elsif ($map[2]) {
89 printf FH " { 0x%06s, 0, { 0x%06s,%*s/* %s */\n 0x%06s, 0x%06s }},\n",
90 $start, $map[0], $tab-length($line)-14, " ", $line,
91 $map[1], $map[2];
92 } elsif ($map[1]) {
93 printf FH " { 0x%06s, 0, { 0x%06s,%*s/* %s */\n 0x%06s }},\n",
94 $start, $map[0], $tab-length($line)-14, " ", $line,
95 $map[1];
96 } elsif ($map[0]) {
97 printf FH " { 0x%06s, 0, { 0x%06s }},%*s/* %s */\n",
98 $start, $map[0], $tab-length($line)-17, " ", $line;
99 } elsif ($end) {
100 printf FH " { 0x%06s, 0x%06s },%*s/* %s */\n",
101 $start, $end, $tab-length($line)-11, " ", $line;
102 } else {
103 printf FH " { 0x%06s },%*s/* %s */\n",
104 $start, $tab-length($line)-11, " ", $line;
106 } else {
107 $intable = 1 if !$intable;
108 $tablename = $1;
110 ($varname = $tablename) =~ tr/./_/;
111 $header =~ s/\n/\n * /s;
113 print FH "\n/*\n * $header */\n\n";
114 print FH "Stringprep_table_element stringprep_${profile}_${varname}\[\] = {\n";
118 close FH or die "cannot close $filename";