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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
|
=begin
$Id: moulinette.rb,v 1.2 2006-03-15 04:44:50 matju Exp $
convert GridFlow Documentation XML to HTML with special formatting.
GridFlow
Copyright (c) 2001,2002,2003,2004,2005 by Mathieu Bouchard
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See file ../../COPYING for further informations on licensing terms.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
=end
GF_VERSION = "0.8.1"
#$use_rexml = true
$use_rexml = false
require "gridflow"
if $use_rexml
# this is a pure ruby xml-parser
begin
require "rexml/sax2parser"
rescue LoadError
require "rexml/parsers/sax2parser"
include REXML::Parsers
end
include REXML
else
# this uses libexpat.so
require "xmlparser"
end
=begin todo
[ ] make it use the mk() function as much as possible.
[ ] make it validate
[ ] make it find the size of the pictures (and insert width/height attrs)
[ ] tune the output
[ ] fix the header of the page
=end
if nil
alias real_print print
alias real_puts puts
def print(*x); real_print "[#{caller[0]}]"; real_print *x; end
def puts (*x); real_print "[#{caller[0]}]"; real_puts *x; end
end
def warn(text)
STDERR.print "\e[1;031mWARNING:\e[0m "
STDERR.puts text
end
$escape_map={
"<" => "<",
">" => ">",
"&" => "&",
}
# hackish transcoding from unicode to iso-8859-1
def multicode(text); text.gsub(/\xc2(.)/) { $1 } end
def html_quote(text)
return nil if not text
text = text.gsub(/[<>&]/) {|x| $escape_map[x] }
text = multicode(text) if /\xc2/ =~ text
text
end
def mk(tag,*values,&block)
raise "value-list's length must be even" if values.length % 2 != 0
print "<#{tag}"
i=0
while i<values.length
print " #{values[i]}=\"#{values[i+1]}\""
i+=2
end
print ">"
(block[]; mke tag) if block
end
def mke(tag)
print "</#{tag}>"
end
def mkimg(parent,alt=nil,prefix=nil)
#STDERR.puts parent.to_s
icon = parent.contents.find {|x| XNode===x and x.tag == 'icon' }
name = parent.att["name"]
url = prefix+"/"+name+"-icon.png"
if icon and icon.att["src"]
url = icon.att["src"]
STDERR.puts "overriding #{url} with #{icon.att["src"]}"
end
url = url.sub(/,.*$/,"") # what's this for again?
warn "icon #{url} not found" if not File.exist? url
url = url.gsub(%r"#") {|x| sprintf "%%%02x", x[0] }
alt = icon.att["text"] if icon and not alt
alt = "[#{name}]"
mk(:img, :src, url, :alt, alt, :border, 0)
end
class XString < String
def show
print html_quote(gsub(/[\r\n\t ]+$/," "))
end
end
module HasOwnLayout; end
class XNode
# subclass interface:
# #show_index : print as html in index
# #show : print as html in main part of the doc
@valid_tags = {}
class<<self
attr_reader :valid_tags
def register(*args,&b)
qlass = (if b then Class.new self else self end)
qlass.class_eval(&b) if b
for k in args do XNode.valid_tags[k]=qlass end
#qlass.class_eval {
# public :show
# public :show_index
#}
end
def [](tag,att,*contents)
self.valid_tags[tag].new(tag,att,*contents)
end
end
def initialize tag, att, *contents
@tag,@att,@contents =
tag, att, contents
contents.each {|c| c.parent = self if XNode===c }
end
attr_reader :tag, :att, :contents
attr_accessor :parent
def [] i; contents[i] end
def show_index
contents.each {|x| next unless XNode===x; x.show_index }
end
# this method segfaults in ruby 1.8
# because of method lookup on Qundef or whatever.
def show
#STDERR.puts GridFlow.get_id(contents)
#STDERR.puts self
contents.each {|x|
# STDERR.puts GridFlow.get_id(x)
x.show
}
end
def inspect; "#<XNode #{tag}>"; end
def to_s; inspect; end
def << x; contents << x; x.parent=self end
end
XNode.register("documentation") {}
XNode.register(*%w( icon help arg rest )) {public
def show; end
}
XNode.register("section") {public
def show
write_black_ruler
mk(:tr) { mk(:td,:colspan,4) {
mk(:a,:name,att["name"].gsub(/ /,'_')) {}
mk(:h4) { print att["name"] }}}
contents.each {|x|
if HasOwnLayout===x then
x.show
else
mk(:tr) { mk(:td) {}; mk(:td) {}; mk(:td) { x.show }}
puts ""
end
}
mk(:tr) { mk(:td) { print " " }}
puts ""
end
def show_index
mk(:h4) {
mk(:a,:href,"#"+att["name"].gsub(/ /,'_')) {
print att["name"] }}
print "<ul>\n"
super
print "</ul>\n"
end
}
# basic text formatting nodes.
XNode.register(*%w( p i u b sup )) {public
def show
print "<#{tag}>"
super
print "</#{tag}>"
end
}
XNode.register("k") {public
def show
print "<kbd><font color=\"#007777\">" # oughta be in stylesheet?
super
print "</font></kbd>"
end
}
# explicit hyperlink on the web.
XNode.register("link") {public
def show
STDERR.puts "att = #{att.inspect}"
raise if not att['to']
print "<a href='#{att['to']}'>"
super
print att[:to] if contents.length==0
print "</a>"
end
}
XNode.register("list") {public
attr_accessor :counter
def show
self.counter = att.fetch("start"){"1"}.to_i
mk(:ul) {
super # method call on Qundef ???
}
end
}
XNode.register("li") {public
def show
mk(:li) {
print "<b>#{parent.counter}</b>", " : "
parent.counter += 1
super
}
end
}
# and "macro", "enum", "type", "use"
XNode.register("class") {public
include HasOwnLayout
def show
tag = self.tag
name = att['name'] or raise
mk(:tr) {
mk(:td,:colspan,4,:bgcolor,"#ffb080") {
mk(:b) { print " "*2, "#{tag} " }
mk(:a,:name,name) { print name }
}
}
mk(:tr) {
mk(:td) {}
mk(:td,:valign,:top) {
print "<br>\n"
help = contents.find {|x| XNode===x and x.tag == 'help' }
mkimg(self,nil,"flow_classes") if /reference|format/ =~ $file
mk(:br,:clear,"left")
2.times { mk(:br) }
if help
big = help.att['image'] || att['name']
if big[0]==?@ then big="images/help_#{big}.png" end
warn "help #{big} not found" if not File.exist?(big)
#small = big.gsub(/png$/, 'jpg').gsub(/\//, '/ic_')
mk(:a,:href,big) {
#mk(:img,:src,small,:border,0)
mk(:img,:src,"images/see_screenshot.png",:border,0)
}
end
mk(:br,:clear,"left")
mk(:br)
}#/td
mk(:td) {
print "<br>\n"
super
print "<br>"
}#/td
}#/tr
end
def show_index
icon = contents.find {|x| XNode===x && x.tag == "icon" }
if not att["name"] then
raise "name tag missing?"
end
mk(:li) { mk(:a,:href,"\#"+att["name"]) {
mkimg(self,att["cname"],"flow_classes")
}}
puts
super
end
}
def nice_table
mk(:table,:border,0,:bgcolor,:black,:cellspacing,1) {
mk(:tr) {
mk(:td,:valign,:top,:align,:left) {
mk(:table,:bgcolor,:white,:border,0,
:cellpadding,4,:cellspacing,1) {
yield }}}}
end
XNode.register("attr") {public
def show
print "<br>"
if parent.tag == "inlet" or parent.tag == "outlet"
mk(:b) {
print "#{parent.tag} #{parent.att['id']} "
}
end
print "<b>#{tag}</b> "
print "#{html_quote att['name']} <b>(</b>"
s=html_quote(att["name"])
s="<i>#{att['type']}</i> #{s}" if att['type']
print "<b>#{s}</b>"
print "<b>)</b> "
end
}
XNode.register("method") {public
if true #
def show
print "<br>"
if parent.tag == "inlet" or parent.tag == "outlet"
mk(:b) {
print "#{parent.tag} #{parent.att['id']} "
}
end
print "<b>#{tag}</b> "
print "#{html_quote att['name']} <b>(</b>"
print contents.map {|x|
next unless XNode===x
case x.tag
when "arg"
s=html_quote(x.att["name"])
s="<i>#{x.att['type']}</i> #{s}" if x.att['type']
s
when "rest"
(x.att["name"]||"") + "..."
end
}.compact.join("<b>, </b>")
print "<b>)</b> "
super
print "<br>\n"
end
else #
def show
print "<br>"
mk(:table) { mk(:tr) { mk(:td) {
name = ""
name << "#{parent.tag} #{parent.att['id']} " if \
parent.tag == "inlet" or parent.tag == "outlet"
name << tag.to_s
mk(:b) { print name.gsub(/ /," ") }
}; mk(:td) {
nice_table { mk(:tr) {
mk(:td,:width,1) { print html_quote(att['name']) }
contents.each {|x|
next unless XNode===x
case x.tag
when "arg"
mk(:td,:bgcolor,:pink) {
s = ""
if x.att["type"]
s << "<i>" << html_quote(x.att["type"]) << "</i>"
end
if x.att["name"]
s << " " << html_quote(x.att["name"])
end
s<<" " if s.length==0
mk(:b) { puts s }
}
when "rest"
mk(:td,:bgcolor,:pink) {
mk(:b) { print html_quote(x.att["name"]), "..."}
}
end
}
}}
}; mk(:td) {
super
}}}
end
end #
}
XNode.register("table") {public
def show
colors = ["#ffffff","#f0f8ff",]
rows = contents.find_all {|x| XNode===x && x.tag=="row" }
rows.each_with_index {|x,i| x.bgcolor = colors[i%2] }
mk(:tr) {
2.times { mk(:td) {} }
mk(:td) {
nice_table {
mk(:tr) {
columns = contents.find_all {|x| XNode===x && x.tag=="column" }
columns.each {|x| mk(:td,:bgcolor,"#808080") {
mk(:font,:color,"#ffffff") {
mk(:b) {
x.contents.each {|y| y.show }}}}}
}
super
}}}
end
}
XNode.register("column") {public
def show; end
}
XNode.register("row") {public
attr_accessor :bgcolor
def show
columns = parent.contents.find_all {|x| XNode===x && x.tag=="column" }
mk(:tr) { columns.each {|x| mk(:td,:bgcolor,bgcolor) {
id = x.att["id"]
case x.att["type"]
when "icon" # should fix this for non-op icons
x = "op/#{att['cname']}-icon.png"
if not File.exist? x
warn "no icon for #{att['name']} (#{x})\n"
end
mk(:img,:src,x,:border,0,:alt,att["name"])
else
if id==""
then contents.each {|x| x.show }
else
# print html_quote(att[id] || "--")
print multicode(att[id] || "--")
end
end
}}}
end
}
XNode.register("inlet","outlet") {}
#----------------------------------------------------------------#
if $use_rexml
class GFDocParser
def initialize(file)
@sax = SAX2Parser.new(File.open(file))
@xml_lists = []
@stack = [[]]
@sax.listen(:start_element) {|a,b,c,d| startElement(b,d) }
@sax.listen( :end_element) {|a,b,c| endElement(b) }
@sax.listen( :characters) {|a| @gfdoc.character(a) }
end
def do_it; @sax.parse; end
end
else
class GFDocParser
def initialize(file)
@xml = XMLParser.new("ISO-8859-1")
foo=self; @xml.instance_eval { @gfdoc=foo }
def @xml.startElement(tag,attrs) @gfdoc.startElement(tag,attrs) end
def @xml.endElement(tag) @gfdoc.endElement(tag) end
def @xml.character(text) @gfdoc.character(text) end
@file = File.open file
@xml_lists = []
@stack = [[]]
end
def do_it; @xml.parse(@file.readlines.join("\n"), true) end
def method_missing(sel,*args) @xml.send(sel,*args) end
end
end
class GFDocParser
attr_reader :stack
def startElement(tag,attrs)
if not XNode.valid_tags[tag] then
raise XMLParserError, "unknown tag #{tag}"
end
@stack<<[tag,attrs]
end
def endElement(tag)
node = XNode.valid_tags[tag].new(*@stack.pop)
@stack.last << node
end
def character(text)
if not String===@stack.last.last then
@stack.last << XString.new("")
end
@stack.last.last << text
end
end
#----------------------------------------------------------------#
def write_header(tree)
puts <<EOF
<html><head>
<!-- #{"$"}Id#{"$"} -->
<title>GridFlow #{GF_VERSION} - #{tree.att['title']}</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="gridflow.css" type="text/css">
</head>
<body bgcolor="#FFFFFF"
leftmargin="0" topmargin="0"
marginwidth="0" marginheight="0">
<table width="100%" bgcolor="white" border="0" cellspacing="2">
<tr><td colspan="4" bgcolor="#082069">
<img src="images/titre_gridflow.png" width="253" height="23">
</td></tr><tr><td> </td></tr>
EOF
write_black_ruler
puts <<EOF
<tr><td colspan="4" height="16">
<h4>GridFlow #{GF_VERSION} - #{tree.att['title']}</h4>
</td></tr>
<tr>
<td width="5%" rowspan="2"> </td>
<td width="15%" height="23"> </td>
<td width="80%" height="23"> </td>
<td width="5%" height="23"> </td>
</tr>
EOF
end
def write_black_ruler
puts <<EOF
<tr><td colspan="4" bgcolor="black">
<img src="images/black.png" width="1" height="2"></td></tr>
EOF
end
def write_footer
puts <<EOF
<td colspan="4" bgcolor="black">
<img src="images/black.png" width="1" height="2"></td></tr>
<tr><td colspan="4">
<p><font size="-1">
GridFlow #{GF_VERSION} Documentation<br>
Copyright © 2001,2002,2003,2004,2005,2006 by Mathieu Bouchard
<a href="mailto:matju@artengine.ca">matju@artengine.ca</a>
</font></p>
</td></tr></table></body></html>
EOF
end
#----------------------------------------------------------------#
$nodes = {}
XMLParserError = Exception if $use_rexml
def harvest_doc_of_class xclass, v, way
doc = case way; when:in:v.doc; when:out:v.doc_out end
tag = case way; when:in:"inlet"; when:out:"outlet" end
doc.keys.each {|sel|
text = v.doc[sel]
m=/^_(\d+)_(\w+)/.match sel.to_s
if m then
xclass << XNode[tag,{"id"=>Integer(m[1])},
XNode["method",{"name"=>m[2]},XString.new(text)]]
else
xclass << XNode["method",{"name"=>sel.to_s},XString.new(text)]
end
}
end
def harvest_doc tree
kla = {}
tree.contents.find_all {|x| XNode===x and x.tag=="section" }.each {|sex|
sex.contents.each {|y|
next unless XNode===y and y.tag=="class"
kla[y.att["name"]] = y
}
}
#STDERR.puts kla.inspect
tree << (nu=XNode["section",{"name"=>"(new documentation)"}])
tree << (un=XNode["section",{"name"=>"(undocumented)"}])
alph = GridFlow.fclasses.keys.sort
alph.each {|k|
next if /^@/=~k and GridFlow.fclasses[k.gsub(/^@/,"#")]
v = GridFlow.fclasses[k]
if v.doc then
nu << (xclass=XNode["class",{"name"=>k}])
harvest_doc_of_class xclass, v, :in
harvest_doc_of_class xclass, v, :out
elsif not kla[k] then
un << XNode["p",{},XString.new("[#{k}]")]
end
}
end
def read_one_page file
begin
STDERR.puts "reading #{file}"
parser = GFDocParser.new(file)
parser.do_it
$nodes[file] = parser.stack[0][0]
if file=="reference.xml" then harvest_doc $nodes[file] end
rescue Exception => e
puts ""
puts ""
STDERR.puts e.inspect
i = parser.stack.length-1
(STDERR.puts "\tinside <#{parser.stack[i][0]}>"; i-=1) until i<1
# strange that line numbers are doubled.
# also the byte count is offset by the line count !?!?!?
STDERR.puts "\tinside #{file}:#{parser.line/2 + 1}" +
" (column #{parser.column}," +
" byte #{parser.byteIndex - parser.line/2})"
raise "why don't you fix the documentation"
end
end
def write_one_page file
begin
$file = file
output_name = file.sub(/\.xml/,".html")
STDERR.puts "writing #{output_name}"
STDOUT.flush # bug in 1.9 ?
STDOUT.reopen output_name, "w"
tree = $nodes[file]
# tree.contents.each {|x| STDERR.puts x.inspect }
write_header(tree)
mk(:tr) { mk(:td,:colspan,2) { mk(:div,:cols,tree.att["indexcols"]||1) {
tree.show_index
puts "<br><br>"
}}}
tree.show
write_footer
puts ""
puts ""
rescue Exception => e
STDERR.puts "#{e.class}: #{e.message}"
STDERR.puts e.backtrace
end
end
$files = %w(
install.xml
reference.xml format.xml internals.xml architecture.xml)
# project_policy.xml
$files.each {|input_name| read_one_page input_name }
$files.each {|input_name| write_one_page input_name }
|