-
Notifications
You must be signed in to change notification settings - Fork 1
/
fixc++spec
executable file
·198 lines (189 loc) · 3.3 KB
/
fixc++spec
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
#!/usr/bin/perl
#use Getopt::Long;
#use Mysql;
#use Env qw(LSBUSER LSBDBPASSWD LSBDB LSBDBHOST);
sub usage()
{
print STDERR "fixc++spec\n";
die;
}
# Uncomment to trace SQL statments
#$trace=1;
#
# 1) process the arguments
#
#GetOptions("l=s" => \$libname,
# "a=s" => \$archname);
#if( !$libname ) { usage(); }
#if( !$archname ) { usage(); }
sub
dotable()
{
print "<!--table start-->\n";
#
# Skip down to the next TITLE
#
while(<>) {
if(/<TITLE(\sID=".*")?>/i) {
$title=$_;
$id=$1;
$title=~/<TITLE.*>(.+)<\/TITLE>/i;
$title=$1;
$title=~s/std:://g;
# $title=~s/\</</g; -- now done in mklibspec
print "<TITLE$id>$title</TITLE>\n";
last;
}
if(/<\/SECT2>/) {
#fail-safe for an empty section
print $_;
return;
}
print $_;
}
#
# Process each Row in the table
#
while(<>) {
if(/<\/TABLE.*>/) {
#print STDERR $_;
print $_;
last;
}
if(/<TBODY>/) {
print $_;
#print STDERR $_;
next;
}
if(/<\/TBODY>/) {
#print STDERR $_;
print $_;
next;
}
if(/<TGROUP/) {
print $_;
#print STDERR $_;
next;
}
if(/<\/TGROUP/) {
print $_;
#print STDERR $_;
next;
}
if(/<ROW>/) {
print $_;
#print STDERR $_;
next;
}
if(/<\/ROW>/) {
print $_;
#print STDERR $_;
next;
}
#
# Process each entry in the table
#
if(/<ENTRY>/) {
print "<!--entry start-->\n";
$origline=$_;
$origline=~s/std:://g;
$entry=$origline;
#print STDERR "Entry1: $entry\n";
$entry=~/(.+)<primary>(.+)<\/primary><\/indexterm>(.+)<FOOTNOTEREF(.+)/;
$linestart=$1;
$entry=$2;
$entry2=$3;
$lineend=$4;
if( $entry eq "" ) {
$entry=$origline;
$entry=~/(.+)<primary>(.+)<\/primary><\/indexterm>(.+)<\/ENTRY>/;
$linestart=$1;
$entry=$2;
$entry2=$3;
$lineend="";
}
#print STDERR "Entry2: $entry\n";
# $entry=~s/\</</g; -- now done in mklibspec
$entry=~s/\[/[/g;
# $entry2=~s/\</</g; -- now done in mklibspec
$entry2=~s/\[/[/g;
#print STDERR "Entry3: $entry\n";
if( $entry ne "" ) {
print "$linestart<primary>$entry";
print "</primary></indexterm>$entry2";
if( $lineend ne "" ) {
print "<FOOTNOTEREF$lineend\n";
} else {
print "</ENTRY>\n";
}
} else {
print "$origline";
}
print "<!--entry end-->\n";
next;
}
print "<!--huh??-->".$_;
}
print "<!--table end-->\n";
}
while(<>) {
#
# Top level loop that looks for the tables on which to work.
#
#s/std:://g;
if(/<!--libgroup-->/) {
print $_;
$title=<>;
$title=~s/std:://g;
$group=$title;
$group=~/<TITLE>(.+)<\/TITLE>/;
#print STDERR "Title: $title\n";
#print STDERR "Group: $1\n";
$group=$1;
$title=$1;
# $title=~s/\</</g; -- now done in mklibspec
print "<TITLE>$title</TITLE>\n";
next;
}
if(/<SECT3>/) {
print $_;
$title=<>;
$title=~s/std:://g;
$group=$title;
$group=~/<TITLE>(.+)<\/TITLE>/;
#print STDERR "Title: $title\n";
#print STDERR "Group: $1\n";
$group=$1;
$title=$1;
# $title=~s/\</</g; -- now done in mklibspec
print "<TITLE>$title</TITLE>\n";
next;
}
if(/<!--classdata-->/) {
print $_;
dotable();
next;
}
if(/<!--libgroupints-->/) {
print $_;
dotable();
next;
}
if(/<!--libgroupdepints-->/) {
print $_;
dotable();
next;
}
if(/<!--libgroupdata-->/) {
print $_;
dotable();
next;
}
if(/<!--libgroupddata-->/) {
print $_;
dotable();
next;
}
#s/\</</g;
print $_;
}