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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
#!/usr/bin/perl -w
#
# Format changes TSV file
#
# USAGE:
# format-changes.pl --docbook-xml DOCBOOK-XML raptor-changes.tsv
#
# Copyright (C) 2010, David Beckett http://www.dajobe.org/
#
# This package is Free Software and part of Redland http://librdf.org/
#
# It is licensed under the following three licenses as alternatives:
# 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
# 2. GNU General Public License (GPL) V2 or any newer version
# 3. Apache License, V2.0 or any newer version
#
# You may not use this file except in compliance with at least one of
# the above three licenses.
#
# See LICENSE.html or LICENSE.txt at the top of this package for the
# complete terms and further detail along with the license texts for
# the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
use strict;
use File::Basename;
use IO::File;
use Getopt::Long;
use Pod::Usage;
our $program = basename $0;
our $nbsp = ' ';
sub print_start_chapter_as_docbook_xml($$$$) {
my($fh, $id, $title, $intro_para)=@_;
print $fh <<"EOT";
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
<chapter id="$id">
<title>$title</title>
<para>$intro_para</para>
EOT
}
sub print_end_chapter_as_docbook_xml($)
{
my($fh)=@_;
print $fh <<"EOT";
</chapter>
EOT
}
sub print_docbook_xml($$$@) {
my($fh, $id, $title, @list)=@_;
print $fh <<"EOT";
<section id="$id">
<title>$title</title>
EOT
print $fh <<"EOT";
</section>
EOT
}
sub print_start_section_as_docbook_xml($$$) {
my($fh, $id, $title)=@_;
print $fh <<"EOT";
<section id="$id">
<title>$title</title>
EOT
}
sub format_function_name_as_docbook_xml($) {
my($name)=@_;
my $escaped_name = $name; $escaped_name =~ s/_/-/g;
return qq{<link linkend="$escaped_name"><function>$name</function></link>};
}
sub format_type_name_as_docbook_xml($) {
my($name)=@_;
my $escaped_name = $name; $escaped_name =~ s/_/-/g;
return qq{<link linkend="$escaped_name"><type>$name</type></link>};
}
sub format_enum_name_as_docbook_xml($) {
my($name)=@_;
my $escaped_name = $name; $escaped_name =~ s/_/-/g;
return qq{<link linkend="$escaped_name:CAPS"><literal>$name</literal></link>};
}
sub format_fn_sig($$$$$) {
my($format_name, $show_sig, $fn_return, $fn_name, $fn_args)=@_;
my $formatted_name = $format_name ? format_function_name_as_docbook_xml($fn_name) : $fn_name;
return $show_sig ? $fn_return . " " . $formatted_name . $fn_args
: $formatted_name;
}
sub format_notes($$) {
my($is_inline,$notes)=@_;
if ($notes eq '') {
return $is_inline ? '' : $nbsp;
}
$notes =~ s{#((?:raptor|librdf|rasqal)\w+)}{format_type_name_as_docbook_xml($1)}ge;
$notes =~ s{#?((?:RAPTOR|LIBRDF|RASQAL)_\w+)}{format_enum_name_as_docbook_xml($1)}ge;
$notes =~ s{((?:raptor|librdf|rasqal)_\w+?)\(}{format_function_name_as_docbook_xml($1)."("}ge;
return $is_inline ? "- " . $notes : $notes;
}
sub print_functions_list_as_docbook_xml($$$$@) {
my($fh, $title, $format_name, $show_sig, @list)=@_;
print $fh <<"EOT";
<itemizedlist>
<title>Functions</title>
EOT
print $fh " <caption>$title</caption>\n"
if defined $title;
for my $item (@list) {
my($fn_return, $fn_name, $fn_args, $notes) = @$item;
my $formatted_fn = format_fn_sig($format_name, $show_sig,
$fn_return, $fn_name, $fn_args);
$notes = format_notes(1, $notes);
print $fh " <listitem><para>$formatted_fn $notes</para></listitem>\n";
}
print $fh <<"EOT";
</itemizedlist>
EOT
}
sub format_type_sig($$) {
my($format_name, $type_name)=@_;
return $format_name ? format_type_name_as_docbook_xml($type_name) : $type_name;
}
sub print_types_list_as_docbook_xml($$$$@) {
my($fh, $title, $format_name, $show_sig, @list)=@_;
print $fh <<"EOT";
<itemizedlist>
<title>Types</title>
EOT
print $fh " <caption>$title</caption>\n"
if defined $title;
for my $item (@list) {
my($type_name, $notes) = @$item;
my $formatted_fn = format_type_sig($format_name, $type_name);
$notes = format_notes(1, $notes);
print $fh " <listitem><para>$formatted_fn $notes</para></listitem>\n";
}
print $fh <<"EOT";
</itemizedlist>
EOT
}
sub print_renamed_functions_as_docbook_xml($$$$@) {
my($fh, $title, $old_function_header, $new_function_header, @list)=@_;
print $fh <<"EOT";
<table border='1'>
EOT
print $fh " <caption>$title</caption>\n"
if defined $title;
print $fh <<"EOT";
<thead>
</thead>
<tbody>
<tr>
<th>$old_function_header</th>
<th>$new_function_header</th>
<th>Notes</th>
</tr>
EOT
for my $item (@list) {
my($from, $to, $notes) = @$item;
my $formatted_name = format_function_name_as_docbook_xml($to);
$notes = format_notes(0, $notes);
print $fh " <tr valign='top'>\n <td>$from</td> <td>$formatted_name</td> <td>$notes</td>\n </tr>\n";
}
print $fh <<"EOT";
</tbody>
</table>
EOT
}
sub print_changed_functions_as_docbook_xml($$$$@) {
my($fh, $title, $old_function_header, $new_function_header, @list)=@_;
print $fh <<"EOT";
<table border='1'>
EOT
print $fh " <caption>$title</caption>\n"
if defined $title;
print $fh <<"EOT";
<thead>
</thead>
<tbody>
<tr>
<th>$old_function_header</th>
<th>$new_function_header</th>
<th>Notes</th>
</tr>
EOT
for my $item (@list) {
my($old_fn_return, $old_fn_name, $old_fn_args,
$new_fn_return, $new_fn_name, $new_fn_args, $notes) = @$item;
my $old_formatted_fn = format_fn_sig(0, 1,
$old_fn_return, $old_fn_name, $old_fn_args);
my $new_formatted_fn = format_fn_sig(1, 1,
$new_fn_return, $new_fn_name, $new_fn_args);
$notes = format_notes(0, $notes);
print $fh " <tr valign='top'>\n <td>$old_formatted_fn</td> <td>$new_formatted_fn</td> <td>$notes</td>\n </tr>\n";
}
print $fh <<"EOT";
</tbody>
</table>
EOT
}
sub print_end_section_as_docbook_xml($)
{
my($fh)=@_;
print $fh <<"EOT";
</section>
EOT
}
sub print_changed_types_as_docbook_xml($$$$@) {
my($fh, $title, $old_type_header, $new_type_header, @list)=@_;
print $fh <<"EOT";
<table border='1'>
EOT
print $fh " <caption>$title</caption>\n"
if defined $title;
print $fh <<"EOT";
<thead>
</thead>
<tbody>
<tr>
<th>$old_type_header</th>
<th>$new_type_header</th>
<th>Notes</th>
</tr>
EOT
for my $item (@list) {
my($old_type_name, $new_type_name, $notes) = @$item;
my $old_formatted_type = format_type_sig(0, $old_type_name);
my $new_formatted_type = format_type_sig(1, $new_type_name);
$notes = format_notes(0, $notes);
print $fh " <tr valign='top'>\n <td>$old_formatted_type</td> <td>$new_formatted_type</td> <td>$notes</td>\n </tr>\n";
}
print $fh <<"EOT";
</tbody>
</table>
EOT
}
# main
my $docbook_xml_file = undef;
my $usage = undef;
GetOptions(
'docbook-xml=s' => \$docbook_xml_file,
'help|h|?' => \$usage
) || pod2usage(2);
pod2usage("$program: No docbook XML output file given")
if !defined $docbook_xml_file;
pod2usage(-verbose => 2)
if $usage;
# Arguments
our($package, $file) = @ARGV;
# Read in data
# Example of Format (9 fields):
# OLD VERSION<tab>OLD RETURN<tab>OLD NAME<tab>OLD ARGS<tab>NEW VERSION<tab>NEW RETURN<tab>NEW NAME<tab>NEW ARGS<tab>NOTES
# 1.4.21 void* raptor_alloc_memory (size_t size) 1.9.0 void* raptor_alloc_memory (size_t size) -
our $expected_n_fields = 9;
my(@new_functions);
my(@deleted_functions);
my(@renamed_functions);
my(@changed_functions);
my(@new_types);
my(@deleted_types);
my(@changed_types);
our $old_version;
our $new_version;
open(IN, "<$file") or die "$program: Cannot read $file - $!\n";
while(<IN>) {
chomp;
next if /^#/;
my(@fields)=split(/\t/);
die "$program: Bad line $.: $_\n"
unless scalar(@fields) == $expected_n_fields;
if($fields[1] eq 'type') {
# Do not handle types yet.
my($old_ver, $dummy1, $old_name, $old_args, $new_ver, $dummy2, $new_name, $new_args,$notes)=@fields;
$old_version = $old_ver unless defined $old_version;
$new_version = $new_ver unless defined $new_version;
$notes = '' if $notes eq '-';
if($old_name eq '-') {
push(@new_types, [$new_name, $notes]);
} elsif($new_name eq '-') {
push(@deleted_types, [$old_name, $notes]);
} elsif($old_name eq $new_name) {
# same
} else {
# renamed and maybe something else changed - in the notes
push(@changed_types, [$old_name, $new_name, $notes]);
}
} else {
my($old_ver, $old_return, $old_name, $old_args, $new_ver, $new_return, $new_name, $new_args,$notes)=@fields;
$old_version = $old_ver unless defined $old_version;
$new_version = $new_ver unless defined $new_version;
$notes = '' if $notes eq '-';
if($old_name eq '-') {
push(@new_functions, [$new_return, $new_name, $new_args, $notes]);
} elsif($new_name eq '-') {
push(@deleted_functions, [$old_return, $old_name, $old_args, $notes]);
} elsif($old_return eq $new_return && $old_name eq $new_name &&
$old_args eq $new_args) {
# same
} elsif($old_return eq $new_return && $old_name ne $new_name &&
$old_args eq $new_args) {
# renamed but nothing else changed
push(@renamed_functions, [$old_name, $new_name, $notes]);
} else {
# something changed - args and/or return
push(@changed_functions, [$old_return, $old_name, $old_args, $new_return, $new_name, $new_args, $notes]);
}
}
}
close(IN);
# Write output
if(defined $docbook_xml_file) {
my $out_fh = new IO::File;
$out_fh->open(">$docbook_xml_file");
our $intro_title = "API Changes";
our $intro_para = <<"EOT";
This chapter describes the API changes between $package
$old_version and $new_version.
EOT
print_start_chapter_as_docbook_xml($out_fh,
'raptor-changes',
$intro_title,
$intro_para);
print_start_section_as_docbook_xml($out_fh,
'raptor-changes-intro',
"Introduction");
print $out_fh <<'EOT';
<para>
The following sections describe the function changes in the API:
additions, deletions, renames (retaining the same number of
parameters, types and return value type) and functions with more
complex changes. Changes to typedefs and structs are not described here.
</para>
EOT
print_end_section_as_docbook_xml($out_fh);
print_start_section_as_docbook_xml($out_fh,
'raptor-changes-new',
"New functions and types in $package $new_version");
print_functions_list_as_docbook_xml($out_fh,
undef, 1, 1, @new_functions);
print_types_list_as_docbook_xml($out_fh,
undef, 1, 1, @new_types);
print_end_section_as_docbook_xml($out_fh);
print_start_section_as_docbook_xml($out_fh,
'raptor-changes-deleted',
"Deleted functions and types in $package $new_version");
print_functions_list_as_docbook_xml($out_fh,
undef, 0, 0, @deleted_functions);
print_types_list_as_docbook_xml($out_fh,
undef, 1, 1, @deleted_types);
print_end_section_as_docbook_xml($out_fh);
print_start_section_as_docbook_xml($out_fh,
'raptor-changes-renamed',
"Renamed functions in $package $new_version");
print_renamed_functions_as_docbook_xml($out_fh,
undef,
"$old_version function",
"$new_version function",
@renamed_functions);
print_end_section_as_docbook_xml($out_fh);
print_start_section_as_docbook_xml($out_fh,
'raptor-changes-changed',
"Changed functions and types in $package $new_version");
print_changed_functions_as_docbook_xml($out_fh,
'Functions',
"$old_version function",
"$new_version function",
@changed_functions);
print_changed_types_as_docbook_xml($out_fh,
'Types',
"$old_version type",
"$new_version type",
@changed_types);
print_end_section_as_docbook_xml($out_fh);
print_end_chapter_as_docbook_xml($out_fh);
$out_fh->close;
}
exit 0;
__END__
=head1 NAME
process-changes - turn changes TSV into files
=head1 SYNOPSIS
process-changes [options] PACKAGE-NAME TSV-FILE
=head1 OPTIONS
=over 8
=item B<--help>
Give command help summary.
=item B<--docbook-xml> DOCBOOK-XML
Set the output docbook XML file
=back
=head1 DESCRIPTION
Turn a package's changes TSV file into docbook XML.
=cut
|