-
Notifications
You must be signed in to change notification settings - Fork 1
/
yadog.py
242 lines (194 loc) · 7.9 KB
/
yadog.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
"""?? YaDoG: Yet Another DOcumentation Generator.
This is the top-level "main" file for YaDoG.
"""
import pdb
import sys
import os.path
import types
import microdom
import dp
import dc
import dt
import d2html
from constants import *
import sys
def info(type, value, tb):
"""?? This function is an exception hook (sys.excepthook) that automatically starts the debugger in postmortem mode if there is a tty"""
if hasattr(sys, 'ps1') or not sys.stderr.isatty():
# we are in interactive mode or we don't have a tty-like
# device, so we call the default hook
sys.__excepthook__(type, value, tb)
else:
import traceback, pdb
# we are NOT in interactive mode, print the exception...
traceback.print_exception(type, value, tb)
print
# ...then start the debugger in post-mortem mode.
pdb.pm()
sys.excepthook = info
def fileWalkFlatten(oswalk, butnot=None):
if butnot is None: butnot = []
f = []
for (path,dnames,fnames) in oswalk:
cnt = 0
# eliminate specified directories
while cnt < len(dnames):
if dnames[cnt] in butnot:
del dnames[cnt]
else: cnt+=1
for fil in fnames:
f.append(os.path.join(path,fil))
return f
oldcfg={"sections":["section","file","class","fn","var"],
"html":
{
"pageimplementers": {"class":"classpage","file":"filepage"},
"indeximplementers": { "class":"classindexpage","fileindex":"fileindexpage"}
}
}
#js
yadogcfg={"project":{'name':'YaDoG: Yet Another Documentation Generator','version':'0.0.1.0','date':"Oct 29,2009",'author':"G. Andrew Stone",'homepage':None},
"sections":["section","file","class","fn","var"],
"html":
{
"dir":"layouts/basicJson",
"skin":"yadogskin",
"pageimplementers": {"class":"jsclasspage","file":"jsfilepage"},
"nav": [ ("home","jshome"),("search","jssearch"),("idx","jsindex") ],
"indeximplementers": { "class":"jsclassindexpage","file":"jsfileindexpage","section":"jssectionindespage"},
"quicklists": {"History":"jsqhist","Sections":"jsqsec","Classes":"jsqclass","Files":"jsqfile"},
"misc": { "frame":"jsframe"}
}
}
juicedPyShellcfg={"project":{'name':'Juiced PyShell: A blending of Firefox and Python','version':'0.0.7.0','date':"Jan 13,2010",'author':"G. Andrew Stone",'homepage':None},
"sections":["section","file","class","fn","var"],
"html":
{
"dir":"layouts/basicJson",
"skin":"juicedskin",
"pageimplementers": {"class":"jsclasspage","file":"jsfilepage"},
"nav": [ ("home","jshome"),("Examples","jssection",("Examples",)), ("search","jssearch"),("idx","jsindex") ],
"indeximplementers": { "class":"jsclassindexpage","file":"jsfileindexpage","section":"jssectionindexpage"},
"quicklists": {"History":"jsqhist","Sections":"jsqsec","Classes":"jsqclass","Files":"jsqfile"},
"misc": { "frame":"jsframe"}
}
}
Lightuinocfg={"project":{'name':'Lightuino: An Arduino compatible for LEDs (and more)','version':'2.0.1.0','date':"Feb 8,2010",'author':"G. Andrew Stone",'homepage':None},
"sections":["section","file","class","fn","var"],
"html":
{
"dir":"layouts/basicJson",
"skin":"lightuinoskin",
"pageimplementers": {"class":"jsclasspage","file":"jsfilepage"},
"nav": [ ("home","jshome"),("examples","jssection",("examples",)), ("search","jssearch"),("idx","jsindex") ],
"indeximplementers": { "class":"jsclassindexpage","file":"jsfileindexpage","section":"jssectionindexpage"},
# "quicklists": {"History":"jsqhist","Sections":"jsqsec","Classes":"jsqclass","Files":"jsqfile"},
"misc": { "frame":"jsframe"}
}
}
def split(selFn,lst):
a = []
b = []
for l in lst:
if selFn(l): a.append(l)
else: b.append(l)
return (a,b)
def regularize(node,zzdepth=0):
"""?? This function ensures that the tree is complete and regular. For example it breaks descriptions into brief and desc tags.
"""
if 0: # Print the nodes
try:
t = node.pfxsfx()
print "**" + (" " *zzdepth) + t[0]
except AttributeError:
print "**" + str(" " *zzdepth) + str(node)
# Regularize the children
try:
children = node.children_
except AttributeError:
children = []
for c in children:
regularize(c,zzdepth+1)
# Combine common children (in this case sections with the same name)
lkup = {}
for c in children:
if microdom.isInstanceOf(c,microdom.MicroDom) and c.tag_ in CombinedTags: # It is a candidate to be merged
if lkup.has_key(c.tag_ + c.name): # Yes there is another tag, so it must be merged
orig = lkup[c.tag_ + c.name]
orig.merge(c)
else:
lkup[c.tag_ + c.name] = c
if microdom.isInstanceOf(node,microdom.MicroDom):
# Add an empty "type" attribute if it does not have one
if node.tag_ in TypedTags:
if not node.attributes_.has_key(AttrType):
node.attributes_[AttrType] = ""
if node.tag_ in ConstructTags:
#print str(node)
# Regularize the "brief" and "desc" children
if not node.child_.has_key(TagDesc):
# Split the children into who should go under the desc and who should go back under me
chLst = node.removeChildren()
(descChildren,myChildren) = split(lambda x: (not microdom.isInstanceOf(x,microdom.MicroDom)) or (not x.tag_ in NoDescTags) ,chLst)
#descChildren = filter(lambda x: (not microdom.isInstanceOf(x,microdom.MicroDom)) or (not x.tag_ in NoDescTags) ,node.children_)
#myChildren = filter(lambda x: not((not microdom.isInstanceOf(x,microdom.MicroDom)) or (not x.tag_ in NoDescTags)) ,node.children_)
# Reset me with new children (but all else the same)
#node.reset(node.attributes_,myChildren,None,node.parent_)
for c in myChildren:
node.addChild(c)
# Add the Desc tag
node.addChild(microdom.MicroDom({"tag_":TagDesc},descChildren,None,node))
#node.addChild(microdom.MicroDom({"tag_":TagDesc},[],None,node))
if not node.child_.has_key(TagBrief):
candidate = node.data_.split("\n")[0].split(". ")[0] # Get the first sentence in the first line
if candidate: # If there is something then use it as the brief
brief = candidate + "..."
else: # Or use the 1st sentence of the description
brief = node.child_[TagDesc].data_.split(". ")[0] + "..."
t = microdom.MicroDom({"tag_":TagBrief},[brief],None)
node.addChild(t)
# If there is no "decl" then use the name
# TODO: we could search for TagParam children to build the declaration
# But really dp.py should generate the decl
if node.tag_ in [TagFunction,TagMethod]:
if not node.child_.has_key(TagDecl):
t = microdom.MicroDom({"tag_":TagDecl},[node.name],None)
node.addChild(t)
return node
def main(prjPfx, top,butnot, cfg):
allfiles = fileWalkFlatten(os.walk(prjPfx + top),butnot)
allxml = []
for f in allfiles:
ext = os.path.splitext(f)[1]
if ext == ".py":
allxml.append(dp.extractXml(prjPfx,f))
elif ext in [".h",".hpp",".c",".pde"]: # .pde is Arduino
allxml.append(dc.extractXml(prjPfx,f))
elif ext in [".txt"]:
allxml.append(dt.extractXml(prjPfx,f))
xml = microdom.Merge("doc",allxml)
pp = xml.write()
f = open("rawdocout.xml","wb")
f.write(pp)
f.close()
print "Regularize:"
regularize(xml)
print "Regularize Complete:"
try:
os.makedirs("html")
except OSError,e: # File exists is ok
pass
pp = xml.write()
f = open("docout.xml","wb")
f.write(pp)
f.close()
d2html.gen("html",xml,cfg)
def Test():
#pdb.set_trace()
main("/me/hw/arduino/arduino-m5451-current-driver/latest/lightuino/", "", None, Lightuinocfg)
# main("/me/code/", "juicedpyshell", None, juicedPyShellcfg)
#main("/me/code/", "yadog",["kid"],yadogcfg)
# main(".")
if __name__ == "__main__":
top = sys.argv[1]
main(top)