-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakedoc
executable file
·354 lines (303 loc) · 9.42 KB
/
makedoc
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
#!/usr/bin/perl
# ------------------------------------------------------------------------
# $Id$
# ------------------------------------------------------------------------
use strict;
use warnings;
use lib qw(main);
use Tiarra::Encoding;
use IO::File;
use File::Find;
use Template;
use TiarraDoc;
my $unijp_init = Tiarra::Encoding->new;
my $conf_outputs = {
sample => {
output => 'sample.conf',
sections => qr/(^|,)important($|,)/,
include_defaults => 1,
},
all => {
output => 'all.conf',
sections => qr/^/, # all
include_defaults => 1,
},
};
my $stdout_charset = 'utf8';
my $conf_charset = 'utf8';
my $html_charset = 'utf8';
if (!-f 'tiarra' || !-d 'main' || !-d 'module') {
die "run this script on tiarra's directory.\n";
}
mkdir 'doc';
&makeconf;
&makehtml_mods_toc;
&makehtml_mods;
exit;
sub makeconf {
# module下の.pmを検索
my @modules;
find(sub {
if (-f $_ && $_ =~ m/\.pm$/) {
push @modules, $File::Find::name;
}
},'module');
my $unijp = Tiarra::Encoding->new;
foreach my $genre (qw(sample all)) {
my $output = $conf_outputs->{$genre};
my $sections = $output->{sections};
print "*** Generating $output->{output}... ***\n";
my $t = Template->new("doc-src/$genre.conf.in");
foreach my $conf (DocParser::Module->new('doc-src/conf-main.tdoc')->makeconf) {
print $conf->[0]." : ".$unijp->set($conf->[1])->$stdout_charset."\n";
$t->expand($conf->[0] => $unijp->set($conf->[2])->$conf_charset);
}
map {
my @confs = DocParser::Module->new($_)->makeconf;
foreach my $conf (@confs) {
unless ($output->{include_defaults} &&
$conf->[3]->header->{default} eq 'on') {
next unless ($conf->[3]->header->{section} || '') =~ /$sections/;
}
print $conf->[0]." : ".$unijp->set($conf->[1])->$stdout_charset."\n";
$t->modules->add(module => $unijp->set($conf->[2])->$conf_charset);
}
} sort @modules;
my $fh = IO::File->new($output->{output}, 'w');
$fh->print($t->str);
}
}
our $classify_modules_CACHE;
sub classify_modules {
# 一度実行したら、その結果がキャッシュされる。
if (defined($_ = $classify_modules_CACHE)) {
return $_;
}
my $classified = {}; # {グループ名 => [それに含まれるモジュールのDocPod]}
my $classify = sub {
my $doc = shift;
my $groupname = do {
if ($doc->pkg_name =~ m/^(.+?)::/) {
$1;
}
else {
'';
}
};
my $vec = $classified->{$groupname};
if (!defined $vec) {
$vec = $classified->{$groupname} = [];
}
push @$vec,$doc;
};
# module下の.pmを検索
find(sub {
if (-f $_ && $_ =~ m/\.pm$/) {
my $parser = DocParser->new($_);
my $doc = eval {
$parser->getdoc;
}; if ($@) {
die "ERROR[$_]: $@\n";
}
# 分類
$classify->($doc) if defined $doc;
}
},'module');
# ソート
foreach (keys %$classified) {
@{$classified->{$_}} =
map { $_->[1] }
sort { $a->[0] cmp $b->[0] }
map { [$_->pkg_name, $_]; } @{$classified->{$_}};
}
$classify_modules_CACHE = $classified;
$classified;
}
sub makehtml_mods {
# ファイルはグループ毎に作られる点に注意。
# すなわち、まず最初に全てのモジュールをグループに分類する必要がある。
my $classified = &classify_modules; # {グループ名 => [それに含まれるモジュールのDocPod]}
mkdir 'doc/module';
my $unijp = Tiarra::Encoding->new;
my $t = Template->new('doc-src/contents.html');
while (my ($groupname,$docpods) = each %$classified) {
my $group_path =
join('',
'module/',
$groupname eq '' ? 'UNCLASSIFIED' : $groupname,
'.html');
print "*** Generating doc/$group_path... ***\n";
$t->reset;
$t->expand(
group_name => _escapeHTML($groupname),
css_path => '../default.css',
);
my $last_docpod = $docpods->[-1];
foreach my $docpod (@$docpods) {
print " parsing and translating ".$docpod->pkg_name."\n";
# 空行はそのまま出力。
# key: valueの行は、<span id="key">と<span id="value">で出力。
# そのkeyの頭に'-'が付いていたら、単にその'-'を消す。
#
# '#'で始まる行は、<p id="comment">で出力するが、以下の特殊なルールに従う。
# 1. '#'の行が連続している場合、それらの行を一つのグループにまとめる。
# 2. 各グループ内で'#'に後続する共通の数のスペースを取り除く。
# 3. 取り除いた後、'#'後にスペースがまだ残っているなら、それを に置換する。
#
# 例:
# # foo
# # bar {
# # baz
# # }
# ↓
# <p id="comment">
# foo<br />
# bar {<br />
# baz<br />
# }<br />
# </p>
my $html = ''; # 文字コードはUTF-8
my @lines = split /\n/,$docpod->content;
for (my $i = 0; $i < @lines; $i++) {
my $line = $lines[$i];
if ($line eq '') {
#$html .= "<br />\n";
}
elsif ($line =~ m/^\s*#/) {
# グループ作成
my @group;
for (; $i < @lines; $i++) {
if ($lines[$i] =~ m/^\s*#/) {
# これはブロックの続き。
(my $stripped = $lines[$i]) =~ s/^\s*#//;
# タブは4つのスペースに変換。この動作は後で修正するかも知れない。
$stripped =~ s/\t/ /g;
push @group,$stripped;
}
else {
$i--;
last; # ここで終わり
}
}
# 共通する先頭のスペースを除去。すなわち各行について先頭のスペースの個数を数え、
# その最小値を削るべきスペースの数とする。
my $spaces_to_remove;
foreach (@group) {
m/^(\s*)/;
if (defined $1) {
my $n_spaces = length($1);
if (defined $spaces_to_remove) {
$spaces_to_remove = $n_spaces
if $spaces_to_remove > $n_spaces;
}
else {
$spaces_to_remove = $n_spaces;
}
}
}
if (defined $spaces_to_remove) {
@group = map {
s/^\s{$spaces_to_remove}//; $_;
} @group;
}
# それでも残っている先頭のスペースを に置換。
@group = map {
s{^(\s*)(.*)}{
my $spc = ' ' x length($1);
my $txt = _escapeHTML($2);
$spc . $txt;
}e;
$_;
} @group;
$html .= qq{<p class="comment">\n};
$html .= join('',
map {
"$_<br />\n";
} @group);
$html .= qq{</p>\n};
}
elsif ($line =~ m/^-?(.+?)\s*:\s*(.*)$/) {
my ($key,$value) = ($1,$2);
$html .= qq{<div class="element"><span class="key">$key</span>:<span class="value">$value</span></div>\n};
} elsif ($line =~ m/^(.+?)\s*\{\s*$/) {
$html .= qq{<div class="block element"><span class="block key">$1</span>\n};
$html .= qq{<div class="block content">\n};
} elsif ($line =~ m/^\}\s*$/) {
$html .= qq{</div></div>\n};
}
}
# テンプレを展開
$t->module->expand(
content_name => _escapeHTML($docpod->pkg_name),
description => _escapeHTML($unijp->set($docpod->header('info'))->$html_charset),
content => $unijp->set($html)->$html_charset);
$t->toc_individual->add(
mod_name => _escapeHTML($docpod->pkg_name),
description => _escapeHTML($unijp->set($docpod->header('info'))->$html_charset),
);
# これが最後の要素でなければ、hrを追加する。
if ($docpod != $last_docpod) {
$t->module->hr->add;
}
$t->module->add;
}
# ファイルに出力
my $fh = IO::File->new("doc/$group_path",'w');
$fh->print($t->str);
}
}
sub makehtml_mods_toc {
print "*** Generating doc/module-toc.html... ***\n";
my $t = Template->new('doc-src/module-toc.html');
my $classified = &classify_modules; # {グループ名 => [それに含まれるモジュールのDocPod]}
# module-group.tdocを読んで、各グループの説明を取得する。
my $groups = DocParser->new('doc-src/module-group.tdoc');
foreach my $groupname_key (sort {$a cmp $b} keys %$classified) {
my $groupname = $groupname_key ne '' ? $groupname_key : 'UNCLASSIFIED';
my $description = do {
# このグループに対して、説明が定義されているか?
my $groupdoc = $groups->getdoc($groupname);
if (defined $groupdoc) {
my $description = $groupdoc->header->{description};
defined $description ? $description : '';
}
else {
'';
}
};
if ($description eq '') {
warn "group $groupname don't have description.";
}
my $unijp = Tiarra::Encoding->new;
my $group_path = "module/$groupname.html";
$t->toc_group->expand(
map{ _escapeHTML($_) }
group_path => $unijp->set($group_path)->$html_charset,
group_name => $unijp->set($groupname)->$html_charset,
description => $unijp->set($description)->$html_charset,
);
# 各モジュール名とその説明を展開~
foreach my $moddoc (@{$classified->{$groupname_key}}) {
print $moddoc->pkg_name." belongs to the group `".$groupname."'\n";
$t->toc_group->toc_individual->add(
map{ _escapeHTML($_) }
group_path => $unijp->set($group_path)->$html_charset,
mod_name => $unijp->set($moddoc->pkg_name)->$html_charset,
description => $unijp->set($moddoc->header->{info} || '')->$html_charset,
);
}
$t->toc_group->add;
}
my $fh = IO::File->new('doc/module-toc.html','w');
$fh->print($t->str);
}
sub _escapeHTML
{
my $val = shift;
$val =~ s/&/&/g;
$val =~ s/</</g;
$val =~ s/>/>/g;
$val =~ s/"/"/g;
$val =~ s/'/'/g;
$val;
}