-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsp_textconv.py
executable file
·756 lines (625 loc) · 18.4 KB
/
sp_textconv.py
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
#!/usr/bin/env python
# This file is part of libsysperf.
#
# Copyright (C) 2001, 2004-2007 by Nokia Corporation.
#
# Contact: Eero Tamminen <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA
# =============================================================================
# File: sp-textconv.py
#
# Author: Simo Piiroinen
#
# -----------------------------------------------------------------------------
#
# History
#
# 14-Aug-2006 Simo Piiroinen
# - added html title control
#
# 26-Jan-2006 Simo Piiroinen
# - added preprocessor and '::INC path' directive
#
# 22-Jul-2005 Simo Piiroinen
# - added image & clickmap support
#
# 06-Jul-2005 Simo Piiroinen
# - added command line parser
#
# 29-Jun-2005 Simo Piiroinen
# - imported to libsysperf
#
# 21-Apr-2005 Simo Piiroinen
# - rewritten from scratch
# - compatible with old markup.py
# =============================================================================
import sys,os,string
# ============================================================================
# Usage And Version Query Support
# ============================================================================
TOOL_NAME = os.path.splitext(os.path.basename(sys.argv[0]))[0]
TOOL_VERS = "0.0.3"
TOOL_HELP = """\
NAME
<NAME> <VERS> -- simple text to html converter with TOC generator
SYNOPSIS
<NAME> [options]
DESCRIPTION
This tool can be used to create simple text or html documentation
with tables of content from "tagged" ascii source files.
OPTIONS
-h | --help
This help text
-V | --version
Tool version
-v | --verbose
Enable diagnostic messages
-q | --quiet
Disable warning messages
-s | --silent
Disable all messages
-f <path> | --input=<path>
Input file to use instead of stdin.
-o <path> | --output=<path>
Output file to use instead of stdout.
-m <mode> | --mode=<mode>
Default is html, or determined from output path.
EXAMPLES
% cat document.src
:: <comment row>
::HR
::TOC
Heading Level 1
===============
Heading Level 2
---------------
Heading Level 3
...............
Text content
::LINK [<link-desc>::]<link-url>
::INC <file-to-include>
::IMG <image-url>
::END
% <NAME> -f document.src -o document.txt
Writes formatted text version of document.
% <NAME> -f document.src -o document.html
Writes html version of document.
AUTHOR
Simo Piiroinen
COPYRIGHT
Copyright (C) 2001, 2004-2007 Nokia Corporation.
This is free software. You may redistribute copies of it under the
terms of the GNU General Public License v2 included with the software.
There is NO WARRANTY, to the extent permitted by law.
SEE ALSO
"""
def tool_version():
print TOOL_VERS
sys.exit(0)
def tool_usage():
s = TOOL_HELP
s = s.replace("<NAME>", TOOL_NAME)
s = s.replace("<VERS>", TOOL_VERS)
sys.stdout.write(s)
sys.exit(0)
# ============================================================================
# Message API
# ============================================================================
msg_progname = TOOL_NAME
msg_verbose = 3
def msg_emit(lev,tag,msg):
if msg_verbose >= lev:
msg = string.split(msg,"\n")
msg = map(string.rstrip, msg)
while msg and msg[-1] == "":
msg.pop()
pad = "|" + " " * (len(tag)-1)
for s in msg:
s = string.expandtabs(s)
print>>sys.stderr, "%s%s" % (tag, s)
tag = pad
def msg_fatal(msg):
msg_emit(1, msg_progname + ": FATAL: ", msg)
sys.exit(1)
def msg_error(msg):
msg_emit(2, msg_progname + ": ERROR: ", msg)
def msg_warning(msg):
msg_emit(2, msg_progname + ": Warning: ", msg)
def msg_silent():
global msg_verbose
msg_verbose = 0
def msg_more_verbose():
global msg_verbose
msg_verbose += 1
def msg_less_verbose():
global msg_verbose
msg_verbose -= 1
TXT = 0
TAG = -1
latin1_to_html = {
chr(0x22): """,
chr(0x26): "&",
chr(0x3c): "<",
chr(0x3e): ">",
chr(0xa0): " ",
chr(0xa1): "¡",
chr(0xa2): "¢",
chr(0xa3): "£",
chr(0xa4): "¤",
chr(0xa5): "¥",
chr(0xa6): "¦",
chr(0xa7): "§",
chr(0xa8): "¨",
chr(0xa9): "©",
chr(0xaa): "ª",
chr(0xab): "«",
chr(0xac): "¬",
chr(0xad): "­",
chr(0xae): "®",
chr(0xaf): "¯",
chr(0xb0): "°",
chr(0xb1): "±",
chr(0xb2): "²",
chr(0xb3): "³",
chr(0xb4): "´",
chr(0xb5): "µ",
chr(0xb6): "¶",
chr(0xb7): "·",
chr(0xb8): "¸",
chr(0xb9): "¹",
chr(0xba): "º",
chr(0xbb): "»",
chr(0xbc): "¼",
chr(0xbd): "½",
chr(0xbe): "¾",
chr(0xbf): "¿",
chr(0xc0): "À",
chr(0xc1): "Á",
chr(0xc2): "Â",
chr(0xc3): "Ã",
chr(0xc4): "Ä",
chr(0xc5): "Å",
chr(0xc6): "Æ",
chr(0xc7): "Ç",
chr(0xc8): "È",
chr(0xc9): "É",
chr(0xca): "&Eirc;",
chr(0xcb): "Ë",
chr(0xcc): "Ì",
chr(0xcd): "Í",
chr(0xce): "Î",
chr(0xcf): "Ï",
chr(0xd0): "Ð",
chr(0xd1): "Ñ",
chr(0xd2): "Ò",
chr(0xd3): "Ó",
chr(0xd4): "Ô",
chr(0xd5): "Õ",
chr(0xd6): "Ö",
chr(0xd7): "×",
chr(0xd8): "Ø",
chr(0xd9): "Ù",
chr(0xda): "Ú",
chr(0xdb): "Û",
chr(0xdc): "Ü",
chr(0xdd): "Ý",
chr(0xde): "Þ",
chr(0xdf): "ß",
chr(0xe0): "à",
chr(0xe1): "á",
chr(0xe2): "â",
chr(0xe3): "ã",
chr(0xe4): "ä",
chr(0xe5): "å",
chr(0xe6): "æ",
chr(0xe7): "ç",
chr(0xe8): "è",
chr(0xe9): "é",
chr(0xea): "ê",
chr(0xeb): "ë",
chr(0xec): "ì",
chr(0xed): "í",
chr(0xee): "î",
chr(0xef): "ï",
chr(0xf0): "ð",
chr(0xf1): "ñ",
chr(0xf2): "ò",
chr(0xf3): "ó",
chr(0xf4): "ô",
chr(0xf5): "õ",
chr(0xf6): "ö",
chr(0xf7): "÷",
chr(0xf8): "ø",
chr(0xf9): "ù",
chr(0xfa): "ú",
chr(0xfb): "û",
chr(0xfc): "ü",
chr(0xfd): "ý",
chr(0xfe): "þ",
chr(0xff): "ÿ",
}
# ----------------------------------------------------------------
def slice(txt,sep,cnt):
if txt == None:
return [None] * cnt
v = string.split(txt,sep,cnt-1)
v = map(string.strip, v)
while len(v) < cnt:
v.append(None)
return v
def rslice(txt,sep,cnt):
v = slice(txt,sep,cnt)
v.reverse()
return v
# ----------------------------------------------------------------
heading_level_lut = { '=':1, '-': 2, '.':3 }
def heading_level(text):
# if row of text consist only of "underline" chars
# return corresponding heading level
c = text[:1]
if heading_level_lut.has_key(c):
if text.count(c) == len(text):
return heading_level_lut[c]
return TXT
def preprocess(stk,txt,path):
assert not path in stk
stk.append(path)
if path == None:
srce = sys.stdin
else:
srce = open(path)
for i in srce:
i = i.rstrip()
i = i.expandtabs()
if i[:2] != "::":
txt.append(i)
continue
v = i.split()
k,v = v[0],v[1:]
if k == "::END":
break
elif k == "::INC":
p = v[0]
if p[:1] != "/":
p = os.path.join(os.path.dirname(path), p)
preprocess(stk,txt,p)
else:
txt.append(i)
assert stk.pop() == path
# ----------------------------------------------------------------
def read_file(path):
# read input lines
# - trim whitespace at eol
# - expand tabulators -> spaces
srce, stk = [],[]
preprocess(stk,srce,path)
## QUARANTINE if path == None:
## QUARANTINE srce = sys.stdin.readlines()
## QUARANTINE else:
## QUARANTINE srce = open(path).readlines()
## QUARANTINE srce = map(string.rstrip, srce)
## QUARANTINE srce = map(string.expandtabs, srce)
## QUARANTINE
## QUARANTINE i,n = 0,len(srce)
## QUARANTINE while i < n:
## QUARANTINE if srce[i] == "::END":
## QUARANTINE del srce[i:]
## QUARANTINE break
## QUARANTINE i += 1
# go through the text rows in reverse order
# so that we encounter the heading underlines
# before the heading texts
dest = []
lev = TXT
pad = ["",""]
while srce:
row = srce.pop()
# ::TAG ARGS
if row[:2] == "::":
tag,arg = slice(row,None,2)
dest.append([TAG,tag,arg])
lev = TXT
continue
# previous row was heading underline
# -> this line is heading text
if row and lev:
dest.append([lev,row,None])
continue
# if not underline, normal text
lev = heading_level(row)
if lev == TXT:
dest.append([lev,row,None])
# return rows in original order
dest.reverse()
return dest
# ----------------------------------------------------------------
def get_heading_rows(rows):
return filter(lambda x:x[0]>TXT, rows)
# ----------------------------------------------------------------
def enum_heading_rows(rows):
# generate heading numbers: 1, 1.1, 1.2, etc
clr = [0] * 10
cnt = clr[:]
for r in get_heading_rows(rows):
lev = r[0]
cnt[lev-1] += 1
cnt = cnt[:lev] + clr[lev:]
r[2] = string.join(map(str, cnt[:lev]),".")
# ----------------------------------------------------------------
# Row type predicates
def heading_p(r): return r[0] > TXT
def empty_p(r): return r[0] == TXT and not r[1]
# ----------------------------------------------------------------
def filter_empty_rows_sub(srce,temp):
while srce:
r = srce.pop()
if not empty_p(r):
temp.append(r)
continue
while srce:
n = srce.pop()
if empty_p(n):
continue
if not heading_p(n):
temp.append(r)
temp.append(n)
break
# ----------------------------------------------------------------
def filter_empty_rows(srce):
temp = []
filter_empty_rows_sub(srce, temp)
filter_empty_rows_sub(temp, srce)
# ----------------------------------------------------------------
def html_escape(text):
text = map(lambda c: latin1_to_html.get(c,c), text)
return string.join(text,"")
text = string.replace(text, "&", "&")
text = string.replace(text, "<", "<")
text = string.replace(text, ">", ">")
return text
# ----------------------------------------------------------------
def pre_on(pre, txt):
if not pre: txt = "<pre>" + txt
return 1,txt
# ----------------------------------------------------------------
def pre_off(pre, txt):
if pre: txt = "</pre>" + txt
return 0,txt
def img_html(_,arg):
if "::" in arg:
alt,img = arg.split("::",1)
else:
alt,img = "",arg
alt,img = map(string.strip, (alt,img))
base = os.path.splitext(img)[0]
cmap = base + ".cmap"
if os.path.exists(cmap):
_('<map name="%s">' % base)
for s in open(cmap):
_(s.rstrip())
_('</map>')
_('<img src="%s" usemap="#%s">'%(img,base))
else:
_('<img src="%s">'%(img))
# ----------------------------------------------------------------
def to_html(srce, title=None):
if title == None:
title = "<no title>"
# generate TOC as nested HTML lists
stk = [0]
toc = []
_ = lambda x:toc.append(x)
for lev,txt,arg in get_heading_rows(srce):
if lev == 1 and stk[-1] > 1:
_("<br><br>")
while lev < stk[-1]:
_("</ul>")
stk.pop()
if lev > stk[-1]:
_("<ul>")
stk.append(lev)
tag = "%s %s" % (arg,txt)
tag = html_escape(tag)
name = "toc_%s" % arg
href = "#doc_%s" % arg
_('<li><a name="%s"></a><a href="%s">%s</a>' % (name,href,tag))
if lev == 1: _("<br><br>")
while stk.pop() > 0:
_("</ul>")
toc = string.join(toc, "\n")
# generate HTML body from source text
dest = []
_ = lambda x:dest.append(x)
_("<html>")
_("<head>")
_("<title>")
_(html_escape(title))
_("</title>")
_("</head>")
_("<body>")
pre = 0
for lev,txt,arg in srce:
if lev == TXT:
pre,txt = pre_on(pre, html_escape(txt))
_(txt)
elif lev == TAG:
txt,tag = None,txt
if tag == "::":
pass
elif tag == "::HR":
txt = "<hr>"
elif tag == "::TOC":
pre,txt = pre_off(pre,toc)
elif tag == "::IMG":
img_html(_,arg)
elif tag == "::LINK":
arg = map(string.strip, arg.split("::",1))
link = arg.pop()
if arg:
name = arg.pop()
else:
name = link
name = html_escape(name)
txt = '<a href="%s">%s</a>' % (link, name)
else:
print>>sys.stderr, "Unknown TAG: %s" % repr(tag)
sys.exit(1)
if txt != None:
_(txt)
else:
txt = "%s %s" % (arg,txt)
name = "doc_%s" % arg
href = "#toc_%s" % arg
txt = html_escape(txt)
txt = '<a href="%s">%s</a>' % (href,txt)
txt = '<h%d>%s</h%d>' % (lev, txt, lev)
txt = '<a name="%s"></a>%s' % (name, txt)
if lev == 1:
txt = "<hr>\n" + txt
pre,txt = pre_off(pre, txt)
_(txt)
if pre:
_("</pre>")
_("</body>")
_("</html>")
_("")
return string.join(dest, "\n")
# ----------------------------------------------------------------
def to_text(srce, title="<no title>"):
# generate text TOC
stk = [0]
toc = []
_ = lambda x:toc.append(x)
for lev,txt,arg in get_heading_rows(srce):
if lev == 1 or stk[-1] == 1:
_("")
while lev < stk[-1]:
stk.pop()
if lev > stk[-1]:
stk.append(lev)
tag = "%s %s" % (arg,txt)
pad = " " * (len(stk)-1)
_(pad + tag)
toc = string.join(toc, "\n")
# re-format source text
hr = "- " * (78/2)
hr = "\n%s\n" % hr
dest = []
_ = lambda x:dest.append(x)
for lev,txt,arg in srce:
if lev == TXT:
_(txt)
elif lev == TAG:
txt,tag = None,txt
if tag == "::":
pass
elif tag == "::HR":
txt = hr
elif tag == "::IMG":
txt = "[IMAGE: %s]" % arg
elif tag == "::TOC":
txt = toc
elif tag == "::LINK":
arg = map(string.strip, arg.split("::",1))
txt = "<%s>" % arg.pop()
if arg:
txt = "%s\n%s" % (arg.pop(), txt)
else:
print>>sys.stderr, "Unknown TAG: %s" % repr(tag)
sys.exit(1)
if txt != None:
_(txt)
else:
if lev == 1: _(hr)
else: _("")
txt = "%s %s" % (arg, txt)
pad = " =-."[lev] * len(txt)
_(txt)
_(pad)
_("")
_("")
dest = string.join(dest, "\n")
i,n = 0, len(dest)
while i < n and dest[i] == "\n":
i += 1
dest = dest[i:]
return dest
# ============================================================================
# Main Entry Point
# ============================================================================
def main():
# - - - - - - - - - - - - - - - - - - - - - - - -
# defaults
# - - - - - - - - - - - - - - - - - - - - - - - -
input = None # read from stdin
output = None # write to stdout
mode = None
title = None
# - - - - - - - - - - - - - - - - - - - - - - - -
# parse command line options
# - - - - - - - - - - - - - - - - - - - - - - - -
args = sys.argv[1:]
args.reverse()
while args:
arg = args.pop()
if arg[:2] == "--":
if '=' in arg:
key,val = string.split(arg,"=",1)
else:
key,val = arg, ""
else:
key,val = arg[:2],arg[2:]
if key in ("-h", "--help"): tool_usage()
elif key in ("-V", "--version"): tool_version()
elif key in ("-v", "--verbose"): msg_more_verbose()
elif key in ("-q", "--quiet"): msg_less_verbose()
elif key in ("-s", "--silent"): msg_silent()
elif key in ("-f", "--input"): input = val or args.pop()
elif key in ("-o", "--output"): output = val or args.pop()
elif key in ("-t", "--title"): title = val or args.pop()
elif key in ("-m", "--mode"): mode = val or args.pop()
else:
msg_fatal("unknown option: %s\n(use --help for usage)\n" % repr(arg))
if not mode:
if not output or os.path.splitext(output)[1] == ".html":
mode = "html"
else:
mode = "text"
rows = read_file(input)
filter_empty_rows(rows)
enum_heading_rows(rows)
if not title:
if input:
title = input
title = os.path.basename(title)
title = os.path.splitext(title)[0]
else:
title = "<no title>"
if mode == "html":
text = to_html(rows, title)
else:
text = to_text(rows, title)
if output == None:
sys.stdout.write(text)
else:
open(output,"w").write(text)
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
print>>sys.stderr, "User Break"
sys.exit(1)
###