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
|
#
# Structured docset and formatters for HappyDoc.
#
# Copyright (C) 2001 by wrobell <wrobell@ite.pl>.
#
# This software comes with ABSOLUTELY NO WARRANTY.
# This is free software, and you are welcome to redistribute it
# under certain conditions. For details see COPYING file.
#
"""Contains abstract class for formatters which can output XML.
It is created for structured docsets.
"""
import string
import happydoclib.formatter.fileformatterbase
__rcs_info__={
# creation information
'module_name': '$RCSfile: xmlformatterbase.py,v $',
'creator': 'wrobell <wrobell@ite.pl>',
'project': 'HappyDoc',
'created': '24-08-2001',
# current information
'author': '$Author: doughellmann $',
'version': '$Revision: 1.1 $',
'date': '$Date: 2001/10/24 21:27:35 $',
}
class XMLFormatter(happydoclib.formatter.fileformatterbase.FileBasedFormatter):
"""Base abstract class for formatters which can output XML.
"""
def __init__(self, docset, encoding='iso-8859-1', index_file_name='index', \
file_name_ext='xml', **conf):
"""Initialize the XMLStructFormatter.
Arguments
'docset' -- the DocSet instance containing global cross-reference
information
'encoding' -- documentation file encoding (default 'iso-8859-1')
'index_file_name' -- package index filename (default 'index')
'file_name_ext' -- documentation filename extension (default 'xml')
'**conf' -- additional, optional configuration values
"""
self.debug=1
self.indent_level=0
self.indent_str=' '
self.file_name_ext=file_name_ext
self.index_file_name=index_file_name
self.encoding=encoding
self.getRootNodeName=self.getIndexFileName
self.getFilenameExtension=self.getFileNameExtension
# initialize the base class
apply(happydoclib.formatter.formatter_file.FileBasedFormatter.__init__,
(self, docset),
conf)
def getEncoding(self):
"""Returns XML file encoding. File encoding can be specified with
'encoding' formatter parameter.
"""
return self.encoding
def getIndexFileName(self):
"""Returns package index file name. This file should contain
all documentation files in current directory. Default filename
extension is appended to the end of the name. The base name
can be specified with 'index_name' formatter parameter.
"""
return self.index_file_name+'.'+self.getFileNameExtension()
def getFileNameExtension(self):
"""Returns filename extension. It can be specified with 'file_name_ext'
formatter parameter.
"""
return self.file_name_ext
def comment(self, text, output):
"""Outputs comment to the output file.
Arguments
'text' -- comment text
'output' -- output file object
"""
if self.debug: self.writeRaw('<!-- %s -->\n' % text, output)
def tag(self, name, output, attrs={}):
"""This method outputs opening tag with attributes. Method "endTag' should
be used to close the tag.
Arguments
'name' -- tag name
'output' -- output file object
'attrs' -- tag attributes; every item { key: 'value' } is rendered as 'key="value"'
"""
attr_str=self.getAttrs(attrs)
if attr_str:
self.writeRaw('%s<%s %s>\n' % (self.getIndent(), name, self.getAttrs(attrs)), output)
else:
self.writeRaw('%s<%s>\n' % (self.getIndent(), name), output)
self.incIndent()
def emptyTag(self, name, output, attrs={}):
"""Outputs empty tag.
Arguments
'name' -- tag name
'output' -- output file object
'attrs' -- tag attributes; every item { key: 'value' } is rendered as 'key="value"'
"""
attr_str=self.getAttrs(attrs)
if attr_str:
self.writeRaw('%s<%s %s/>\n' % (self.getIndent(), name, attr_str), output)
else:
self.writeRaw('%s<%s/>\n' % (self.getIndent(), name), output)
def endTag(self, name, output):
"""Outputs closing tag. Method 'tag' should be used to open the tag.
Arguments
'name' -- tag name
'output' -- output file object
"""
self.decIndent()
self.writeRaw('%s</%s>\n' % (self.getIndent(), name), output)
def writeTaggedText(self, tag, text, output):
"""Outputs text between opening and closing XML tags. For example
self.writeTaggedText('tag', 'text', output)
outputs
<tag>text</tag>
Arguments
'tag' -- tag name
'text' -- tagged text
'output' -- output file object
"""
self.tag(tag, output)
self.writeText(text, output)
self.endTag(tag, output)
def getAttrs(self, attrs):
"""Converts Python dictionary into XML attributes string.
For example
{
'attr1': 'val1',
'attr2': 'val2',
'attr3': 'val3',
}
is converted to the following string
attr1="val1" attr2="val2" attr3="val3"
Arguments
'attrs' -- dictionary with XML attributes
Returns attributes string.
"""
return string.join(map(lambda attr_item: '%s="%s"' % attr_item, attrs.items()))
def writeText(self, text, output):
"""Outputs text to XML file.
Arguments
'text' -- text to output
'output' -- output file object
"""
self.writeRaw(self.getIndent()+text+'\n', output)
# abstract methods
def processRoot(self, output, stage, rtype):
"""Method invoked by docset, when new file is opened. This method
can be used to output XML declaration, DTD, etc.
Arguments
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
'rtype' -- file type (index, module or class file)
"""
self._requiredOfSubclass('processRoot')
def processPackage(self, info, output, stage):
"""Method invoked by docset, when package is being processed.
Arguments
'info' -- package info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processPackage')
def processModule(self, info, output, stage):
"""Method invoked by docset, when module is being processed.
Arguments
'info' -- module info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processModule')
def processDocString(self, info, output, stage):
"""Method invoked by docset, when docstring is being processed.
Arguments
'info' -- docstring owner (module, class, function, etc.) info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processDocString')
def processImport(self, iinfo, minfo, output, stage):
"""Method invoked by docset, when import statement is being processed.
Arguments
'iinfo' -- imported module info object
'minfo' -- info object of module, where import statement is declared
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processImport')
def processImportSymbol(self, info, output, stage):
"""Method invoked by docset, when import symbol is being processed.
'info' -- info object of imported symbol or string with symbol name
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processImportSymbol')
def processClass(self, info, output, stage):
"""Method invoked by docset, when class is being processed.
'info' -- class info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processClass')
def processException(self, info, output, stage):
"""Method invoked by docset, when exception is being processed.
'info' -- exception info object or string with exception name
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processException')
def processFunction(self, info, output, stage):
"""Method invoked by docset, when function or class method is being processed.
'info' -- function or class method info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processFunction')
def processClassBase(self, info, cinfo, output, stage):
"""Method invoked by docset, when inherited class info of derived class is being processed.
'info' -- base class info object
'cinfo' -- derived class
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processClassBase')
def processParam(self, info, output, stage):
"""Method invoked by docset, when function or class method parameter is being processed.
Arguments
'info' -- function or class method parameter info object
'output' -- output file object
'stage' -- processing stage (one of: PRE, START, END, POST values)
"""
self._requiredOfSubclass('processParam')
def classIndex(self, info, output):
"""Method invoked by docset to process class index item.
Arguments
'info' -- class info object
'output' -- output file object
"""
self._requiredOfSubclass('classIndex')
def moduleIndex(self, info, output):
"""Method invoked by docset to process module index item.
Arguments
'info' -- module info object
'output' -- output file object
"""
self._requiredOfSubclass('moduleIndex')
def packageIndex(self, info, output):
"""Method invoked by docset to process package index item.
Arguments
'info' -- package info object
'output' -- output file object
"""
self._requiredOfSubclass('packageIndex')
# indentation is not supported yet...
def incIndent(self):
assert(self.indent_level>=0)
self.indent_level+=1
def decIndent(self):
self.indent_level-=1
assert(self.indent_level>=0)
def getIndent(self):
assert(self.indent_level>=0)
assert(self.indent_str)
#return self.indent_str*self.indent_level
return ""
|