1 """A parser for SGML, using the derived class as a static DTD."""
3 # XXX This only supports those SGML features used by HTML.
5 # XXX There should be a way to distinguish between PCDATA (parsed
6 # character data -- the normal case), RCDATA (replaceable character
7 # data -- only char and entity references and end tags are special)
8 # and CDATA (character data -- only end tags are special).
15 # Regular expressions used for parsing
17 interesting
= re
.compile('[&<]')
18 incomplete
= re
.compile('&([a-zA-Z][a-zA-Z0-9]*|#[0-9]*)?|'
23 entityref
= re
.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')
24 charref
= re
.compile('&#([0-9]+)[^0-9]')
26 starttagopen
= re
.compile('<[>a-zA-Z]')
27 shorttagopen
= re
.compile('<[a-zA-Z][-.a-zA-Z0-9]*/')
28 shorttag
= re
.compile('<([a-zA-Z][-.a-zA-Z0-9]*)/([^/]*)/')
29 piopen
= re
.compile('<\?')
30 piclose
= re
.compile('>')
31 endtagopen
= re
.compile('</[<>a-zA-Z]')
32 endbracket
= re
.compile('[<>]')
33 special
= re
.compile('<![^<>]*>')
34 commentopen
= re
.compile('<!--')
35 commentclose
= re
.compile('--[%s]*>' % string
.whitespace
)
36 tagfind
= re
.compile('[a-zA-Z][-.a-zA-Z0-9]*')
37 attrfind
= re
.compile(
38 '[%s]*([a-zA-Z_][-.a-zA-Z_0-9]*)' % string
.whitespace
39 + ('([%s]*=[%s]*' % (string
.whitespace
, string
.whitespace
))
40 + r
'(\'[^
\']*\'|
"[^"]*"|[-a-zA-Z0-9./:+*%?!\(\)_#=~]*))?')
43 # SGML parser base class -- find tags and call handler functions.
44 # Usage: p = SGMLParser(); p.feed(data); ...; p.close().
45 # The dtd is defined by deriving a class which defines methods
46 # with special names to handle tags: start_foo and end_foo to handle
47 # <foo> and </foo>, respectively, or do_foo to handle <foo> by itself.
48 # (Tags are converted to lower case for this purpose.) The data
49 # between tags is passed to the parser by calling self.handle_data()
50 # with some data as argument (the data may be split up in arbutrary
51 # chunks). Entity references are passed by calling
52 # self.handle_entityref() with the entity reference as argument.
56 # Interface -- initialize and reset this instance
57 def __init__(self, verbose=0):
58 self.verbose = verbose
61 # Interface -- reset this instance. Loses all unprocessed data
69 # For derived classes only -- enter literal mode (CDATA) till EOF
70 def setnomoretags(self):
71 self.nomoretags = self.literal = 1
73 # For derived classes only -- enter literal mode (CDATA)
74 def setliteral(self, *args):
77 # Interface -- feed some data to the parser. Call this as
78 # often as you want, with as little or as much text as you
79 # want (may include '\n'). (This just saves the text, all the
80 # processing is done by goahead().)
82 self.rawdata = self.rawdata + data
85 # Interface -- handle the remaining data
89 # Internal -- handle data as far as reasonable. May leave state
90 # and data to be processed by a subsequent call. If 'end' is
91 # true, force handling all data as if followed by EOF marker.
92 def goahead(self, end):
93 rawdata = self.rawdata
98 self.handle_data(rawdata[i:n])
101 match = interesting.search(rawdata, i)
102 if match: j = match.start(0)
104 if i < j: self.handle_data(rawdata[i:j])
107 if rawdata[i] == '<':
108 if starttagopen.match(rawdata, i):
110 self.handle_data(rawdata[i])
113 k = self.parse_starttag(i)
117 if endtagopen.match(rawdata, i):
118 k = self.parse_endtag(i)
123 if commentopen.match(rawdata, i):
125 self.handle_data(rawdata[i])
128 k = self.parse_comment(i)
132 if piopen.match(rawdata, i):
134 self.handle_data(rawdata[i])
141 match = special.match(rawdata, i)
144 self.handle_data(rawdata[i])
149 elif rawdata[i] == '&':
150 match = charref.match(rawdata, i)
152 name = match.group(1)
153 self.handle_charref(name)
155 if rawdata[i-1] != ';': i = i-1
157 match = entityref.match(rawdata, i)
159 name = match.group(1)
160 self.handle_entityref(name)
162 if rawdata[i-1] != ';': i = i-1
165 raise RuntimeError, 'neither < nor & ??'
166 # We get here only if incomplete matches but
168 match = incomplete.match(rawdata, i)
170 self.handle_data(rawdata[i])
175 break # Really incomplete
176 self.handle_data(rawdata[i:j])
180 self.handle_data(rawdata[i:n])
182 self.rawdata = rawdata[i:]
183 # XXX if end: check for empty stack
185 # Internal -- parse comment, return length or -1 if not terminated
186 def parse_comment(self, i):
187 rawdata = self.rawdata
188 if rawdata[i:i+4] <> '<!--':
189 raise RuntimeError, 'unexpected call to handle_comment'
190 match = commentclose.search(rawdata, i+4)
194 self.handle_comment(rawdata[i+4: j])
198 # Internal -- parse processing instr, return length or -1 if not terminated
199 def parse_pi(self, i):
200 rawdata = self.rawdata
201 if rawdata[i:i+2] <> '<?':
202 raise RuntimeError, 'unexpected call to handle_pi'
203 match = piclose.search(rawdata, i+2)
207 self.handle_pi(rawdata[i+2: j])
211 # Internal -- handle starttag, return length or -1 if not terminated
212 def parse_starttag(self, i):
213 rawdata = self.rawdata
214 if shorttagopen.match(rawdata, i):
215 # SGML shorthand: <tag/data/ == <tag>data</tag>
216 # XXX Can data contain &... (entity or char refs)?
217 # XXX Can data contain < or > (tag characters)?
218 # XXX Can there be whitespace before the first /?
219 match = shorttag.match(rawdata, i)
222 tag, data = match.group(1, 2)
223 tag = string.lower(tag)
224 self.finish_shorttag(tag, data)
227 # XXX The following should skip matching quotes (' or ")
228 match
= endbracket
.search(rawdata
, i
+1)
232 # Now parse the data between i+1 and j into a tag and attrs
234 if rawdata
[i
:i
+2] == '<>':
235 # SGML shorthand: <> == <last open tag seen>
239 match
= tagfind
.match(rawdata
, i
+1)
241 raise RuntimeError, 'unexpected call to parse_starttag'
243 tag
= string
.lower(rawdata
[i
+1:k
])
246 match
= attrfind
.match(rawdata
, k
)
248 attrname
, rest
, attrvalue
= match
.group(1, 2, 3)
251 elif attrvalue
[:1] == '\'' == attrvalue
[-1:] or \
252 attrvalue
[:1] == '"' == attrvalue
[-1:]:
253 attrvalue
= attrvalue
[1:-1]
254 attrs
.append((string
.lower(attrname
), attrvalue
))
256 if rawdata
[j
] == '>':
258 self
.finish_starttag(tag
, attrs
)
261 # Internal -- parse endtag
262 def parse_endtag(self
, i
):
263 rawdata
= self
.rawdata
264 match
= endbracket
.search(rawdata
, i
+1)
268 tag
= string
.lower(string
.strip(rawdata
[i
+2:j
]))
269 if rawdata
[j
] == '>':
271 self
.finish_endtag(tag
)
274 # Internal -- finish parsing of <tag/data/ (same as <tag>data</tag>)
275 def finish_shorttag(self
, tag
, data
):
276 self
.finish_starttag(tag
, [])
277 self
.handle_data(data
)
278 self
.finish_endtag(tag
)
280 # Internal -- finish processing of start tag
281 # Return -1 for unknown tag, 0 for open-only tag, 1 for balanced tag
282 def finish_starttag(self
, tag
, attrs
):
284 method
= getattr(self
, 'start_' + tag
)
285 except AttributeError:
287 method
= getattr(self
, 'do_' + tag
)
288 except AttributeError:
289 self
.unknown_starttag(tag
, attrs
)
292 self
.handle_starttag(tag
, method
, attrs
)
295 self
.stack
.append(tag
)
296 self
.handle_starttag(tag
, method
, attrs
)
299 # Internal -- finish processing of end tag
300 def finish_endtag(self
, tag
):
302 found
= len(self
.stack
) - 1
304 self
.unknown_endtag(tag
)
307 if tag
not in self
.stack
:
309 method
= getattr(self
, 'end_' + tag
)
310 except AttributeError:
311 self
.unknown_endtag(tag
)
313 self
.report_unbalanced(tag
)
315 found
= len(self
.stack
)
316 for i
in range(found
):
317 if self
.stack
[i
] == tag
: found
= i
318 while len(self
.stack
) > found
:
321 method
= getattr(self
, 'end_' + tag
)
322 except AttributeError:
325 self
.handle_endtag(tag
, method
)
327 self
.unknown_endtag(tag
)
330 # Overridable -- handle start tag
331 def handle_starttag(self
, tag
, method
, attrs
):
334 # Overridable -- handle end tag
335 def handle_endtag(self
, tag
, method
):
338 # Example -- report an unbalanced </...> tag.
339 def report_unbalanced(self
, tag
):
341 print '*** Unbalanced </' + tag
+ '>'
342 print '*** Stack:', self
.stack
344 # Example -- handle character reference, no need to override
345 def handle_charref(self
, name
):
347 n
= string
.atoi(name
)
348 except string
.atoi_error
:
349 self
.unknown_charref(name
)
351 if not 0 <= n
<= 255:
352 self
.unknown_charref(name
)
354 self
.handle_data(chr(n
))
356 # Definition of entities -- derived classes may override
358 {'lt': '<', 'gt': '>', 'amp': '&', 'quot': '"', 'apos': '\''}
360 # Example -- handle entity reference, no need to override
361 def handle_entityref(self
, name
):
362 table
= self
.entitydefs
363 if table
.has_key(name
):
364 self
.handle_data(table
[name
])
366 self
.unknown_entityref(name
)
369 # Example -- handle data, should be overridden
370 def handle_data(self
, data
):
373 # Example -- handle comment, could be overridden
374 def handle_comment(self
, data
):
377 # Example -- handle processing instruction, could be overridden
378 def handle_pi(self
, data
):
381 # To be overridden -- handlers for unknown objects
382 def unknown_starttag(self
, tag
, attrs
): pass
383 def unknown_endtag(self
, tag
): pass
384 def unknown_charref(self
, ref
): pass
385 def unknown_entityref(self
, ref
): pass
388 class TestSGMLParser(SGMLParser
):
390 def __init__(self
, verbose
=0):
392 SGMLParser
.__init
__(self
, verbose
)
394 def handle_data(self
, data
):
395 self
.testdata
= self
.testdata
+ data
396 if len(`self
.testdata`
) >= 70:
403 print 'data:', `data`
405 def handle_comment(self
, data
):
409 r
= r
[:32] + '...' + r
[-32:]
412 def unknown_starttag(self
, tag
, attrs
):
415 print 'start tag: <' + tag
+ '>'
417 print 'start tag: <' + tag
,
418 for name
, value
in attrs
:
419 print name
+ '=' + '"' + value
+ '"',
422 def unknown_endtag(self
, tag
):
424 print 'end tag: </' + tag
+ '>'
426 def unknown_entityref(self
, ref
):
428 print '*** unknown entity ref: &' + ref
+ ';'
430 def unknown_charref(self
, ref
):
432 print '*** unknown char ref: &#' + ref
+ ';'
435 SGMLParser
.close(self
)
439 def test(args
= None):
445 if args
and args
[0] == '-s':
449 klass
= TestSGMLParser
466 if f
is not sys
.stdin
:
475 if __name__
== '__main__':