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 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
|
#! /usr/bin/python3
# -*- coding: UTF-8 -*-
import sys
import re
import commands
import warnings
errors = 0
def warn(msg, error=None):
global errors
errors += 1
if error is None:
warnings.warn("-- "+str(errors)+" --\n "+msg, RuntimeWarning, 2)
else:
warnings.warn("-- "+str(errors)+" --\n "+msg+
"\n error was "+str(error), RuntimeWarning, 2)
#fu
# beware, stupid python interprets backslashes in repl only partially!
def s(string, pattern, repl, count=0):
return re.sub(pattern, repl, string, count)
def m(string, pattern):
return re.match(pattern, string)
def sorted_keys(dict):
keys = dict.keys()
keys.sort()
return keys
# we make up a few formatter routines to help in the processing:
def html2docbook(text):
""" the C comment may contain html markup - simulate with docbook tags """
return (
s(s(s(s(s(s(s(s(s(s(s(text,
r"<br\s*/?>",""),
r"(</?)em>",r"\1emphasis>"),
r"<code>","<userinput>"),
r"</code>","</userinput>"),
r"<link>","<function>"),
r"</link>","</function>"),
r"(?s)\s*</screen>","</screen>"),
# r"<ul>","</para><itemizedlist>"),
# r"</ul>","</itemizedlist><para>"),
# r"<li>","<listitem><para>"),
# r"</li>","</para></listitem>\n"),
r"<ul>","</para><programlisting>\n"),
r"</ul>","</programlisting><para>"),
r"<li>",""),
r"</li>",""))
def paramdef2html(text):
return s(s(s(s(s(text,
r"\s+<paramdef>", r"\n<nobr>"),
r"<paramdef>",r"<nobr>"),
r"</paramdef>",r"</nobr>"),
r"<parameters>",r"\n <code>"),
r"</parameters>",r"</code>\n")
def section2html(text):
mapping = { "<screen>" : "<pre>", "</screen>" : "</pre>",
"<para>" : "<p>", "</para>" : "</p>" ,
"<function>" : "<link>", "</function>" : "</link>" }
for m in mapping:
text = text.replace(m, mapping[m])
return text
def html(text):
return section2html(paramdef2html(text))
def cdata1(text):
return text.replace("&", "&")
def cdata31(text):
text = text.replace("<","<")
return text.replace(">",">")
def cdata3(text):
return cdata31(cdata1(text))
def cdata43(text):
return text.replace("\"", """)
def cdata41(text):
return cdata43(cdata31(text))
def cdata4(text):
return cdata43(cdata3(text))
def markup_as_screen41 (text):
""" used for non-star lines in comment blocks """
return " <screen> " + s(cdata41(text), r"(?m)^", r" ") +" </screen> "
def file_comment2section(text):
""" convert a C comment into a series of <para> and <screen> parts """
return ("<para>\n"+
s(s(s(s(s(s(s(text,
r"(?s){<([\w\.\-]+\@[\w\.\-]+\w\w)>",
r"<\1>"),
r"(?mx) ^\s?\s?\s? ([^\*\s]+ .*) $",
lambda x : markup_as_screen41 (x.group(1))),
r"(?mx) ^\s*[*]\s* $", r" \n</para><para>\n"),
r"(?mx) ^\s?\s?\s?\* (.*) $", r" \1 "),
r"(?sx) </screen>(\s*)<screen> ", r"\1"),
r"(?sx) <([^<>\;]+\@[^<>\;]+)> ", r"<email>\1</email>"),
r"(?sx) \<\;([^<>\&\;]+\@[^<>\&\;]+)\>\; ",
r"<email>\1</email>") + "\n</para>")
def func_comment2section(text):
""" convert a C comment into a series of <para> and <screen> parts
and sanitize a few markups already present in the comment text
"""
return ("<para>\n"+
s(s(s(s(s(s(s(s(s(s(s(text,
r"<c>",r"<code>"), r"</c>", r"</code>"),
r"(?mx) ^\s?\s?\s? ([^\*\s]+.*)",
lambda x: markup_as_screen41 (x.group(1))),
r"(?mx) ^\s?\s?\s?\* (.*) $", r" <br /> \1"),
r"(?mx) ^\s*<br\s*\/>\s* $", r"\n</para><para>\n"),
r"<<",r"<"), r">>",r">"),
r"(?sx) (</?para>\s*)<br\s*\/?>",r"\1"),
r"(?sx) (</?para>\s*)<br\s*\/?>",r"\1"),
r"(?sx) (<br\s*\/?>\s*)<br\s*\/?>",r"\1"),
r"(?sx) <\/screen>(\s*)<screen>",r"\1") + "\n</para>")
def markup_link_syntax(text):
""" markup the link-syntax ` => somewhere ` in the text block """
return (
s(s(s(s(text,
r"(?mx) (^|\s)\=\>\"([^\"]*)\"", r"\1<link>\2</link>"),
r"(?mx) (^|\s)\=\>\'([^\"]*)\'", r"\1<link>\2</link>"),
r"(?mx) (^|\s)\=\>\s(\w[\w.]*\w)\b", r"\1<link>\2</link>"),
r"(?mx) (^|\s)\=\>\s([^\s\,\.\!\?\:\;\<\>\&\'\=\-]+)",
r"\1<link>\2</link>"))
def this_function_link(text, name):
return s(text, r"(?sx) (T|t)his \s (function|procedure) ", lambda x
: "<function>"+x.group(1)+"he "+name+" "+x.group(2)+"</function>")
# -----------------------------------------------------------------------
class Options:
var = {}
def __getattr__(self, name):
if not name in self.var: return None
return self.var[name]
def __setattr__(self, name, value):
self.var[name] = value
#end
o = Options()
o.verbose = 0
o.version = s( commands.getoutput(
""" grep -i "^version *:" *.spec 2>/dev/null |
sed -e "s/[Vv]ersion *: *//" """), r"\s*",r"")
o.package = s(commands.getoutput(
""" grep -i "^name *:" *.spec 2>/dev/null |
sed -e "s/[Nn]ame *: *//" """), r"\s*",r"")
if not len(o.version):
o.version = commands.getoutput(""" date +%Y.%m.%d """)
if not len(o.package):
o.package = "_project"
o.suffix = "-doc3"
o.mainheader = o.package+".h"
class File:
def __init__(self, filename):
self.name = filename
self.mainheader = o.mainheader
self.authors = ""
self.copyright = ""
def __getattr__(self, name):
""" defend against program to break on uninited members """
if name in self.__dict__: return self.__dict__[name]
warn("no such member: "+name); return None
def set_author(self, text):
if self.authors:
self.authors += "\n"
self.authors += text
return text
def set_copyright(self, text):
self.copyright = text
return text
class InputFiles:
""" for each set of input files we can create an object
it does correspond with a single html-output page and
a single docbook <reference> master page to be output
"""
def __init__(self):
# the id will tell us in which order
# we did meet each function definition
self.id = 1000
self.files = [] # file_list
self.funcs = [] # func_list: of hidden class FuncDeclaration
self.file = None # current file
def new_File(self, name):
self.file = File(name)
self.files.append(self.file)
return self.file
def next_id(self):
id = self.id ; self.id += 1
return id
def add_function_declaration(self, comment, prototype):
class FuncDeclaration: # note that both decl.comment and
pass # decl.prototype are in cdata1 format
func = FuncDeclaration()
func.file = self.file
func.comment = s(comment, # need to take out email-style markups
r"<([\w\.\-]+\@[\w\.\-]+\w\w)>", r"<\1>")
func.prototype = prototype
func.id = all.next_id()
self.funcs.append(func)
# print id
return prototype
def scan_options (options, list):
def encode(text):
return s(s(text, r"¬", r"&#AC;"), r"\*/",r"¬")
def decode(text):
return s(text, r"¬", r"*/")
for name in options:
found = m(name, r"^(\w+)=(.*)")
if found:
o.var[found.group(1)] = found.group(2)
continue
#else
try:
input = open(name, "r")
except IOError as error:
warn(#...... (scan_options) ...............
"can not open input file: "+name, error)
continue
text = input.read() ; input.close()
text = encode (cdata1 (text))
file = list.new_File(name)
# cut per-function comment block
text = s(text, r"(?x) [/][*][*](?=\s) ([^¬]+) ¬ ([^\{\}\;\#]+) [\{\;]",
lambda x : list.add_function_declaration(
decode(x.group(1)), decode(x.group(2))))
# cut per-file comment block
found = m(text, r"(?sx) [/][*]+(?=\s) ([^¬]+) ¬ "
r"(?:\s*\#define\s*\S+)*"
r"(\s*\#include\s*<[^<>]*>(?:\s*//[^\n]*)?)")
if found:
file.comment = decode(found.group(1))
file.include = cdata31(found.group(2))
else:
file.comment = None
file.include = None
found = m(text, r"(?sx) ^ [/][*]+(?=\s) ([^¬]+) ¬ ")
if found:
file.comment = decode(found.group(1))
#fi
# throw away the rest - further processing on memorized strings only
return None
all = InputFiles()
scan_options (sys.argv[1:], all)
if not o.docbookfile:
o.docbookfile = o.package+o.suffix+".docbook"
if not o.libhtmlfile:
o.libhtmlfile = o.package+o.suffix+".html"
if not o.dumpdocfile:
o.dumpdocfile = o.package+o.suffix+".dxml"
# ...........................................................................
# check out information in the file.comment section
def all_files_comment2section(list):
for file in list:
if file.comment is None: continue
file.section = file_comment2section(file.comment)
file.section = s(
file.section, r"(?sx) \b[Aa]uthor\s*:(.*</email>) ", lambda x
: "<author>" + file.set_author(x.group(1)) + "</author>")
file.section = s(
file.section, r"(?sx) \b[Cc]opyright\s*:([^<>]*)</para> ",lambda x
: "<copyright>" + file.set_copyright(x.group(1)) + "</copyright>")
# if "file" in file.name: print >> sys.stderr, file.comment # 2.3
#od
all_files_comment2section(all.files)
# -----------------------------------------------------------------------
class Function:
" <prespec>void* </><namespec>hello</><namespec> (int) const</callspec> "
def __init__(self):
self.prespec = ""
self.namespec = ""
self.callspec = ""
self.name = ""
# def set(self, **defines):
# name = defines.keys()[0]
# self.__dict__[name] = defines[name]
# return defines[name]
# def cut(self, **defines):
# name = defines.keys()[0]
# self.__dict__[name] += defines[name]
# return ""
def __getattr__(self, name):
""" defend against program exit on members being not inited """
if name in self.__dict__: return self.__dict__[name]
warn("no such member: "+name); return None
def dict(self):
return self.__dict__
def dict_sorted_keys(self):
keys = self.__dict__.keys()
keys.sort()
return keys
def parse(self, prototype):
found = m(prototype, r"(?sx) ^(.*[^.]) \b(\w[\w.]*\w)\b (\s*\(.*) $ ")
if found:
self.prespec = found.group(1).lstrip()
self.namespec = found.group(2)
self.callspec = found.group(3).lstrip()
self.name = self.namespec.strip()
return self.name
return None
# pass 1 of per-func strings ...............................................
# (a) cut prototype into prespec/namespec/callspec
# (b) cut out first line of comment as headline information
# (c) sanitize rest of comment block into proper docbook formatted .body
#
# do this while copying strings from all.funcs to function_list
# and remember the original order in name_list
def markup_callspec(text):
return (
s(s(s(s(s(text,
r"(?sx) ^([^\(\)]*)\(", r"\1<parameters>(<paramdef>",1),
r"(?sx) \)([^\(\)]*)$", r"</paramdef>)</parameters>\1",1),
r"(?sx) , ", r"</paramdef>,<paramdef>"),
r"(?sx) <paramdef>(\s+) ", r"\1<paramdef>"),
r"(?sx) (\s+)</paramdef>", r"</paramdef>\1"))
def parse_all_functions(func_list): # list of FunctionDeclarations
""" parse all FunctionDeclarations and create a list of Functions """
list = []
for func in all.funcs:
function = Function()
if not function.parse (func.prototype): continue
list.append(function)
function.body = markup_link_syntax(func.comment)
if "\n" not in function.body: # single-line comment is the head
function.head = function.body
function.body = ""
else: # cut comment in first-line and only keep the rest as descr body
function.head = s(function.body, r"(?sx) ^([^\n]*\n).*",r"\1",1)
function.body = s(function.body, r"(?sx) ^[^\n]*\n", r"", 1)
#fi
if m(function.head, r"(?sx) ^\s*$ "): # empty head line, autofill here
function.head = s("("+func.file.name+")", r"[.][.][/]", r"")
function.body = func_comment2section(function.body)
function.src = func # keep a back reference
# add extra docbook markups to callspec in $fn-hash
function.callspec = markup_callspec (function.callspec)
#od
return list
function_list = parse_all_functions(all.funcs)
def examine_head_anchors(func_list):
""" .into tells later steps which func-name is the leader of a man
page and that this func should add its descriptions over there. """
for function in func_list:
function.into = None
function.seealso = None
found = m(function.head, r"(?sx) ^ \s* <link>(\w[\w.]*\w)<\/link>")
# if found and found.group(1) in func_list.names:
if found and found.group(1):
function.into = found.group(1)
def set_seealso(f, value):
f.seealso = value
return value
function.head = s(function.head, r"(.*)also:(.*)", lambda x
: set_seealso(function, x.group(2)) and x.group(1))
if function.seealso and None:
print("function[" + function.name + "].seealso=" + function.seealso)
examine_head_anchors(function_list)
# =============================================================== HTML =====
def find_by_name(func_list, name):
for func in func_list:
if func.name == name:
return func
#od
return None
#fu
class HtmlFunction:
def __init__(self, func):
self.src = func.src
self.into = func.into
self.name = func.name
self.toc_line = paramdef2html(
" <td valign=\"top\"><code>"+func.prespec+"</code></td>\n"+
" <td valign=\"top\"> </td>\n"+
" <td valign=\"top\"><a href=\"#"+func.name+"\">\n"+
" <code>"+func.namespec+"</code>"+
" </a></td>\n"+
" <td valign=\"top\"> </td>\n"+
" <td valign=\"top\">"+func.callspec+"</td>\n")
self.synopsis = paramdef2html(
" <code>"+func.prespec+"</code>\n"+
" <br /><b><code>"+func.namespec+"</code></b>\n"+
" <code>"+func.callspec+"</code>\n")
self.anchor = "<a name=\""+func.name+"\" />"
self.section = "<para><em> "+func.head+"\n"+ \
"\n</em></para>"+section2html(func.body)
#class
class HtmlFunctionFamily(HtmlFunction):
def __init__(page, func):
HtmlFunction.__init__(page, func)
page.toc_line_list = [ page.toc_line ]
# page.html_txt = page.synopsis
page.synopsis_list = [ page.synopsis ]
page.anchor_list = [ page.anchor ]
page.section_list = [ this_function_link(page.section, func.name) ]
def ensure_name(text, name):
adds = "<small><code>"+name+"</code></small> -"
match = r"(?sx) .*>[^<>]*\b" + name + r"\b[^<>]*<.*"
found = m(text, match)
if found: return text
found = m(text, r".*<p(ara)?>.*")
if found: return s(text, r"(<p(ara)?>)", r"\1"+adds, 1)
return adds+text
def combined_html_pages(func_list):
""" and now add descriptions of non-leader entries (html-mode) """
combined = {}
for func in func_list: # assemble leader pages
if func.into is not None: continue
combined[func.name] = HtmlFunctionFamily(func)
for func in func_list:
if func.into is None: continue
if func.into not in combined :
warn(#......... (combine_html_pages) ..............
"function '"+func.name+"'s into => '"+func.into+
"\n: no such target function: "+func.into)
combined[func.name] = HtmlFunctionFamily(func)
continue
#fi
page = HtmlFunction(func)
into = combined[func.into]
into.toc_line_list.append( page.toc_line )
into.anchor_list.append( page.anchor )
into.synopsis_list.append( page.synopsis )
into.section_list.append(
s(ensure_name(this_function_link(section2html( func.body ),
func.name), func.name),
r"(?sx) (</?para>\s*) <br\s*\/>", r"\1"))
return combined.values()
html_pages = combined_html_pages(function_list)
def html_resolve_links_on_page(text, list):
""" link ref-names of a page with its endpoint on the same html page"""
def html_link (name , extra):
""" make <link>s to <href> of correct target or make it <code> """
if find_by_name(list, name) is None:
return "<code>"+name+extra+"</code>"
else:
return "<a href=\"#"+name+"\"><code>"+name+extra+"</code></a>"
#fu html_link
return s(s(text, r"(?sx) <link>(\w+)([^<>]*)<\/link> ",
lambda x : html_link(x.group(1),x.group(2))),
r"(?sx) \-\> ", r"<small>-></small>") # just sanitize..
#fu html_resolve_links
class HtmlPage:
def __init__(self):
self.toc = ""
self.txt = ""
self.package = o.package
self.version = o.version
def page_text(self):
""" render .toc and .txt parts into proper <html> page """
T = ""
T += "<html><head>"
T += "<title>"+self.package+"autodoc documentation </title>"
T += "</head>\n<body>\n"
T += "\n<h1>"+self.package+" <small><small><i>- "+self.version
T += "</i></small></small></h1>"
T += "\n<table border=0 cellspacing=2 cellpadding=0>"
T += self.toc
T += "\n</table>"
T += "\n<h3>Documentation</h3>\n\n<dl>"
T += html_resolve_links_on_page(self.txt, function_list)
T += "\n</dl>\n</body></html>\n"
return T
def add_page_map(self, list):
""" generate the index-block at the start of the onepage-html file """
keys = list.keys()
keys.sort()
for name in keys:
self.toc += "<tr valign=\"top\">\n"+ \
"\n</tr><tr valign=\"top\">\n".join(
list[name].toc_line_list)+"</tr>\n"
self.txt += "\n<dt>"+" ".join(list[name].anchor_list)
self.txt += "\n"+"\n<br />".join(list[name].synopsis_list)+"<dt>"
self.txt += "\n<dd>\n"+"\n".join(list[name].section_list)
self.txt += ("\n<p align=\"right\">"+
"<small>("+list[name].src.file.name+")</small>"+
"</p></dd>")
def add_page_list(self, functions):
""" generate the index-block at the start of the onepage-html file """
mapp = {}
for func in functions:
mapp[func.name] = func
#od
self.add_page_map(mapp)
#end
html = HtmlPage()
# html.add_function_dict(Fn)
# html.add_function_list(Fn.sort.values())
html.add_page_list(html_pages)
# and finally print the html-formatted output
try:
F = open(o.libhtmlfile, "w")
except IOError as error:
warn(# ............. open(o.libhtmlfile, "w") ..............
"can not open html output file: "+o.libhtmlfile, error)
else:
print(html.page_text(), file=F)
F.close()
#fi
# ========================================================== DOCBOOK =====
# let's go for the pure docbook, a reference type master for all man pages
class RefPage:
def __init__(self, func):
""" initialize the fields needed for a man page entry - the fields are
named after the docbook-markup that encloses (!!) the text we store
the entries like X.refhint = "hello" will be printed therefore as
<refhint>hello</refhint>. Names with underscores are only used as
temporaries but they are memorized, perhaps for later usage. """
self.refhint = "\n<!--========= "+func.name+" (3) ===========-->\n"
self.refentry = None
self.refentry_date = o.version.strip() # //refentryinfo/date
self.refentry_productname = o.package.strip() # //refentryinfo/prod*
self.refentry_title = None # //refentryinfo/title
self.refentryinfo = None # override
self.manvolnum = "3" # //refmeta/manvolnum
self.refentrytitle = None # //refmeta/refentrytitle
self.refmeta = None # override
self.refpurpose = None # //refnamediv/refpurpose
self.refname = None # //refnamediv/refname
self.refname_list = []
self.refnamediv = None # override
self.mainheader = func.src.file.mainheader
self.includes = func.src.file.include
self.funcsynopsisinfo = "" # //funcsynopsisdiv/funcsynopsisinfo
self.funcsynopsis = None # //funcsynopsisdiv/funcsynopsis
self.funcsynopsis_list = []
self.description = None
self.description_list = []
# optional sections
self.authors_list = [] # //sect1[authors]/listitem
self.authors = None # override
self.copyright = None
self.copyright_list = []
self.seealso = None
self.seealso_list = []
if func.seealso:
self.seealso_list.append(func.seealso)
# func.func references
self.func = func
self.file_authors = None
if func.src.file.authors:
self.file_authors = func.src.file.authors
self.file_copyright = None
if func.src.file.copyright:
self.file_copyright = func.src.file.copyright
#fu
def refentryinfo_text(page):
""" the manvol formatter wants to render a footer line and header line
on each manpage and such info is set in <refentryinfo> """
if page.refentryinfo:
return page.refentryinfo
if page.refentry_date and \
page.refentry_productname and \
page.refentry_title: return (
"\n <date>"+page.refentry_date+"</date>"+
"\n <productname>"+page.refentry_productname+"</productname>"+
"\n <title>"+page.refentry_title+"</title>")
if page.refentry_date and \
page.refentry_productname: return (
"\n <date>"+page.refentry_date+"</date>"+
"\n <productname>"+page.refentry_productname+"</productname>")
return ""
def refmeta_text(page):
""" the manvol formatter needs to know the filename of the manpage to
be made up and these parts are set in <refmeta> actually """
if page.refmeta:
return page.refmeta
if page.manvolnum and page.refentrytitle:
return (
"\n <refentrytitle>"+page.refentrytitle+"</refentrytitle>"+
"\n <manvolnum>"+page.manvolnum+"</manvolnum>")
if page.manvolnum and page.func.name:
return (
"\n <refentrytitle>"+page.func.name+"</refentrytitle>"+
"\n <manvolnum>"+page.manvolnum+"</manvolnum>")
return ""
def refnamediv_text(page):
""" the manvol formatter prints a header line with a <refpurpose> line
and <refname>'d functions that are described later. For each of
the <refname>s listed here, a mangpage is generated, and for each
of the <refname>!=<refentrytitle> then a symlink is created """
if page.refnamediv:
return page.refnamediv
if page.refpurpose and page.refname:
return ("\n <refname>"+page.refname+'</refname>'+
"\n <refpurpose>"+page.refpurpose+" </refpurpose>")
if page.refpurpose and page.refname_list:
T = ""
for refname in page.refname_list:
T += "\n <refname>"+refname+'</refname>'
T += "\n <refpurpose>"+page.refpurpose+" </refpurpose>"
return T
return ""
def funcsynopsisdiv_text(page):
""" refsynopsisdiv shall be between the manvol mangemaent information
and the reference page description blocks """
T=""
if page.funcsynopsis:
T += "\n<funcsynopsis>"
if page.funcsynopsisinfo:
T += "\n<funcsynopsisinfo>"+ page.funcsynopsisinfo + \
"\n</funcsynopsisinfo>\n"
T += page.funcsynopsis + \
"\n</funcsynopsis>\n"
if page.funcsynopsis_list:
T += "\n<funcsynopsis>"
if page.funcsynopsisinfo:
T += "\n<funcsynopsisinfo>"+ page.funcsynopsisinfo + \
"\n</funcsynopsisinfo>\n"
for funcsynopsis in page.funcsynopsis_list:
T += funcsynopsis
T += "\n</funcsynopsis>\n"
#fi
return T
def description_text(page):
""" the description section on a manpage is the main part. Here
it is generated from the per-function comment area. """
if page.description:
return page.description
if page.description_list:
T = ""
for description in page.description_list:
if not description: continue
T += description
if T: return T
return ""
def authors_text(page):
""" part of the footer sections on a manpage and a description of
original authors. We prever an itimizedlist to let the manvol
show a nice vertical aligment of authors of this ref item """
if page.authors:
return page.authors
if page.authors_list:
T = "<itemizedlist>"
previous=""
for authors in page.authors_list:
if not authors: continue
if previous == authors: continue
T += "\n <listitem><para>"+authors+"</para></listitem>"
previous = authors
T += "</itemizedlist>"
return T
if page.authors:
return page.authors
return ""
def copyright_text(page):
""" the copyright section is almost last on a manpage and purely
optional. We list the part of the per-file copyright info """
if page.copyright:
return page.copyright
""" we only return the first valid instead of merging them """
if page.copyright_list:
T = ""
for copyright in page.copyright_list:
if not copyright: continue
return copyright # !!!
return ""
def seealso_text(page):
""" the last section on a manpage is called 'SEE ALSO' usually and
contains a comma-separated list of references. Some manpage
viewers can parse these and convert them into hyperlinks """
if page.seealso:
return page.seealso
if page.seealso_list:
T = ""
for seealso in page.seealso_list:
if not seealso: continue
if T: T += ", "
T += seealso
if T: return T
return ""
def refentry_text(page, id=None):
""" combine fields into a proper docbook refentry """
if id is None:
id = page.refentry
if id:
T = '<refentry id="'+id+'">'
else:
T = '<refentry>' # this is an error
if page.refentryinfo_text():
T += "\n<refentryinfo>"+ page.refentryinfo_text()+ \
"\n</refentryinfo>\n"
if page.refmeta_text():
T += "\n<refmeta>"+ page.refmeta_text() + \
"\n</refmeta>\n"
if page.refnamediv_text():
T += "\n<refnamediv>"+ page.refnamediv_text() + \
"\n</refnamediv>\n"
if page.funcsynopsisdiv_text():
T += "\n<refsynopsisdiv>\n"+ page.funcsynopsisdiv_text()+ \
"\n</refsynopsisdiv>\n"
if page.description_text():
T += "\n<refsect1><title>Description</title> " + \
page.description_text() + "\n</refsect1>"
if page.authors_text():
T += "\n<refsect1><title>Author</title> " + \
page.authors_text() + "\n</refsect1>"
if page.copyright_text():
T += "\n<refsect1><title>Copyright</title> " + \
page.copyright_text() + "\n</refsect1>\n"
if page.seealso_text():
T += "\n<refsect1><title>See Also</title><para> " + \
page.seealso_text() + "\n</para></refsect1>\n"
T += "\n</refentry>\n"
return T
#fu
#end
# -----------------------------------------------------------------------
class FunctionRefPage(RefPage):
def reinit(page):
""" here we parse the input function for its values """
if page.func.into:
page.refhint = "\n <!-- see "+page.func.into+" -->\n"
#fi
page.refentry = page.func.name # //refentry@id
page.refentry_title = page.func.name.strip() # //refentryinfo/title
page.refentrytitle = page.func.name # //refmeta/refentrytitle
if page.includes:
page.funcsynopsisinfo += "\n"+page.includes
if not page.funcsynopsisinfo:
page.funcsynopsisinfo="\n"+' #include <'+page.mainheader+'>'
page.refpurpose = page.func.head
page.refname = page.func.name
def funcsynopsis_of(func):
return (
"\n <funcprototype>\n <funcdef>"+func.prespec+
" <function>"+func.name+"</function></funcdef>"+
"\n"+s(s(s(func.callspec,
r"<parameters>\s*\(",r" "),
r"\)\s*</parameters>",r" "),
r"</paramdef>\s*,\s*",r"</paramdef>\n ")+
" </funcprototype>")
page.funcsynopsis = funcsynopsis_of(page.func)
page.description = (
html2docbook(this_function_link(page.func.body, page.func.name)))
if page.file_authors:
def add_authors(page, ename, email):
page.authors_list.append( ename+' '+email )
return ename+email
s(page.file_authors,
r"(?sx) \s* ([^<>]*) (<email>[^<>]*</email>) ", lambda x
: add_authors(page, x.group(1), x.group(2)))
#fi
if page.file_copyright:
page.copyright = "<screen>\n"+page.file_copyright+"</screen>\n"
#fi
return page
def __init__(page,func):
RefPage.__init__(page, func)
FunctionRefPage.reinit(page)
def refpage_list_from_function_list(funclist):
list = []
mapp = {}
for func in funclist:
mapp[func.name] = func
#od
for func in funclist:
page = FunctionRefPage(func)
if func.into and func.into not in mapp:
warn (# ............ (refpage_list_from_function_list) .......
"page '"+page.func.name+"' has no target => "+
"'"+page.func.into+"'"
"\n: going to reset .into of Function '"+page.func.name+"'")
func.into = None
#fi
list.append(FunctionRefPage(func))
return list
#fu
# ordered list of pages
refpage_list = refpage_list_from_function_list(function_list)
class FunctionFamilyRefPage(RefPage):
def __init__(self, page):
RefPage.__init__(self, page.func)
self.seealso_list = [] # reset
self.refhint_list = []
def refhint_list_text(page):
T = ""
for hint in page.refhint_list:
T += hint
return T
def refentry_text(page):
return page.refhint_list_text() + "\n" + \
RefPage.refentry_text(page)
pass
def docbook_pages_recombine(pagelist):
""" take a list of RefPages and create a new list where sections are
recombined in a way that their description is listed on the same
page and the manvol formatter creates symlinks to the combined
function description page - use the attribute 'into' to guide the
processing here as each of these will be removed from the output
list. If no into-pages are there then the returned list should
render to the very same output text like the input list would do """
list = []
combined = {}
for orig in pagelist:
if orig.func.into: continue
page = FunctionFamilyRefPage(orig)
combined[orig.func.name] = page ; list.append(page)
page.refentry = orig.refentry # //refentry@id
page.refentry_title = orig.refentrytitle # //refentryinfo/title
page.refentrytitle = orig.refentrytitle # //refmeta/refentrytitle
page.includes = orig.includes
page.funcsynopsisinfo = orig.funcsynopsisinfo
page.refpurpose = orig.refpurpose
if orig.refhint:
page.refhint_list.append( orig.refhint )
if orig.refname:
page.refname_list.append( orig.refname )
elif orig.refname_list:
page.refname_list.extend( orig.refname_list )
if orig.funcsynopsis:
page.funcsynopsis_list.append( orig.funcsynopsis )
elif orig.refname_list:
page.funcsynopsis_list.extend( orig.funcsynopsis_list )
if orig.description:
page.description_list.append( orig.description )
elif orig.refname_list:
page.description_list.extend( orig.description_list )
if orig.seealso:
page.seealso_list.append( orig.seealso )
elif orig.seealso_list:
page.seealso_list.extend( orig.seealso_list )
if orig.authors:
page.authors_list.append( orig.authors )
elif orig.authors_list:
page.authors_list.extend( orig.authors_list )
if orig.copyright:
page.copyright_list.append( orig.copyright )
elif orig.refname_list:
page.copyright_list.extend( orig.copyright_list )
#od
for orig in pagelist:
if not orig.func.into: continue
if orig.func.into not in combined:
warn("page for '"+orig.func.name+
"' has no target => '"+orig.func.into+"'")
page = FunctionFamilyRefPage(orig)
else:
page = combined[orig.func.into]
if orig.refname:
page.refname_list.append( orig.refname )
elif orig.refname_list:
page.refname_list.extend( orig.refname_list )
if orig.funcsynopsis:
page.funcsynopsis_list.append( orig.funcsynopsis )
elif orig.refname_list:
page.funcsynopsis_list.extend( orig.funcsynopsis_list )
if orig.description:
page.description_list.append( orig.description )
elif orig.refname_list:
page.description_list.extend( orig.description_list )
if orig.seealso:
page.seealso_list.append( orig.seealso )
elif orig.seealso_list:
page.seealso_list.extend( orig.seealso_list )
if orig.authors:
page.authors_list.append( orig.authors )
elif orig.authors_list:
page.authors_list.extend( orig.authors_list )
if orig.copyright:
page.copyright_list.append( orig.copyright )
elif orig.refname_list:
page.copyright_list.extend( orig.copyright_list )
#od
return list
#fu
combined_pages = docbook_pages_recombine(pagelist = refpage_list)
# -----------------------------------------------------------------------
class HeaderRefPage(RefPage):
pass
def docbook_refpages_perheader(page_list): # headerlist
" creating the per-header manpage - a combination of function man pages "
header = {}
for page in page_list:
assert not page.func.into
file = page.func.src.file.mainheader # short for the mainheader index
if file not in header:
header[file] = HeaderRefPage(page.func)
header[file].id = s(file, r"[^\w\.]","-")
header[file].refentry = header[file].id
header[file].refentryinfo = None
header[file].refentry_date = page.refentry_date
header[file].refentry_productname = (
"the library "+page.refentry_productname)
header[file].manvolnum = page.manvolnum
header[file].refentrytitle = file
header[file].funcsynopsis = ""
if 1: # or += or if not header[file].refnamediv:
header[file].refpurpose = " library "
header[file].refname = header[file].id
if not header[file].funcsynopsisinfo and page.funcsynopsisinfo:
header[file].funcsynopsisinfo = page.funcsynopsisinfo
if page.funcsynopsis:
header[file].funcsynopsis += "\n"+page.funcsynopsis
if not header[file].copyright and page.copyright:
header[file].copyright = page.copyright
if not header[file].authors and page.authors:
header[file].authors = page.authors
if not header[file].authors and page.authors_list:
header[file].authors_list = page.authors_list
if not header[file].description:
found = m(commands.getoutput("cat "+o.package+".spec"),
r"(?s)\%description\b([^\%]*)\%")
if found:
header[file].description = found.group(1)
elif not header[file].description:
header[file].description = "<para>" + (
page.refentry_productname + " library") + "</para>";
#fi
#fi
#od
return header#list
#fu
def leaders(pagelist):
list = []
for page in pagelist:
if page.func.into : continue
list.append(page)
return list
header_refpages = docbook_refpages_perheader(leaders(refpage_list))
# -----------------------------------------------------------------------
# printing the docbook file is a two-phase process - we spit out the
# leader pages first - later we add more pages with _refstart pointing
# to the leader page, so that xmlto will add the functions there. Only the
# leader page contains some extra info needed for troff page processing.
doctype = '<!DOCTYPE reference PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"'
doctype += "\n "
doctype += '"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">'+"\n"
try:
F = open(o.docbookfile,"w")
except IOError as error:
warn("can not open docbook output file: "+o.docbookfile, error)
else:
print(doctype + '<reference><title>Manual Pages</title>', file=F)
for page in combined_pages:
print(page.refentry_text(), file=F)
#od
for page in header_refpages.values():
if not page.refentry: continue
print("\n<!-- _______ "+page.id+" _______ -->" + page.refentry_text(), file=F)
#od
print("\n</reference>\n", file=F)
F.close()
#fi
# _____________________________________________________________________
try:
F = open( o.dumpdocfile, "w")
except IOError as error:
warn ("can not open"+o.dumpdocfile,error)
else:
for func in function_list:
name = func.name
print("<fn id=\""+name+"\">"+"<!-- FOR \""+name+"\" -->\n", file=F)
for H in sorted_keys(func.dict()):
print("<"+H+" name=\""+name+"\">" + str(func.dict()[H]) + "</"+H+">", file=F)
#od
print("</fn><!-- END \""+name+"\" -->\n\n", file=F)
#od
F.close();
#fi
if errors: sys.exit(errors)
|