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)
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
20 # I consider the output of this program to be unrestricted. Use it as
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";
39 s/^ (.*)/$1/g; # for rfc
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
59 next unless ($intable || m
,^----- Start Table
(.*) -----,);
66 next if m
,^Hoffman
& Blanchet Standards Track \
[Page
[0-9]+\
]$,;
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;
82 die "tables tried to map a range" if $end && $map[0];
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];
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,
93 printf FH
" { 0x%06s, 0, { 0x%06s,%*s/* %s */\n 0x%06s }},\n",
94 $start, $map[0], $tab-length($line)-14, " ", $line,
97 printf FH
" { 0x%06s, 0, { 0x%06s }},%*s/* %s */\n",
98 $start, $map[0], $tab-length($line)-17, " ", $line;
100 printf FH
" { 0x%06s, 0x%06s },%*s/* %s */\n",
101 $start, $end, $tab-length($line)-11, " ", $line;
103 printf FH
" { 0x%06s },%*s/* %s */\n",
104 $start, $tab-length($line)-11, " ", $line;
107 $intable = 1 if !$intable;
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";