"""A parser for HTML and XHTML."""# This file is based on sgmllib.py, but the API is slightly different.# XXX There should be a way to distinguish between PCDATA (parsed# character data -- the normal case), RCDATA (replaceable character# data -- only char and entity references and end tags are special)# and CDATA (character data -- only end tags are special).importreimport_markupbasefromhtmlimportunescape__all__=['HTMLParser']# Regular expressions used for parsinginteresting_normal=re.compile('[&<]')incomplete=re.compile('&[a-zA-Z#]')entityref=re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]')charref=re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]')starttagopen=re.compile('<[a-zA-Z]')piclose=re.compile('>')commentclose=re.compile(r'--\s*>')# Note:# 1) if you change tagfind/attrfind remember to update locatestarttagend too;# 2) if you change tagfind/attrfind and/or locatestarttagend the parser will# explode, so don't do it.# see http://www.w3.org/TR/html5/tokenization.html#tag-open-state# and http://www.w3.org/TR/html5/tokenization.html#tag-name-statetagfind_tolerant=re.compile(r'([a-zA-Z][^\t\n\r\f />\x00]*)(?:\s|/(?!>))*')attrfind_tolerant=re.compile(r'((?<=[\'"\s/])[^\s/>][^\s/=>]*)(\s*=+\s*'r'(\'[^\']*\'|"[^"]*"|(?![\'"])[^>\s]*))?(?:\s|/(?!>))*')locatestarttagend_tolerant=re.compile(r""" <[a-zA-Z][^\t\n\r\f />\x00]* # tag name (?:[\s/]* # optional whitespace before attribute name (?:(?<=['"\s/])[^\s/>][^\s/=>]* # attribute name (?:\s*=+\s* # value indicator (?:'[^']*' # LITA-enclosed value |"[^"]*" # LIT-enclosed value |(?!['"])[^>\s]* # bare value ) \s* # possibly followed by a space )?(?:\s|/(?!>))* )* )? \s* # trailing whitespace""",re.VERBOSE)endendtag=re.compile('>')# the HTML 5 spec, section 8.1.2.2, doesn't allow spaces between# </ and the tag name, so maybe this should be fixedendtagfind=re.compile(r'</\s*([a-zA-Z][-.a-zA-Z0-9:_]*)\s*>')classHTMLParser(_markupbase.ParserBase):"""Find tags and other markup and call handler functions. Usage: p = HTMLParser() p.feed(data) ... p.close() Start tags are handled by calling self.handle_starttag() or self.handle_startendtag(); end tags by self.handle_endtag(). The data between tags is passed from the parser to the derived class by calling self.handle_data() with the data as argument (the data may be split up in arbitrary chunks). If convert_charrefs is True the character references are converted automatically to the corresponding Unicode character (and self.handle_data() is no longer split in chunks), otherwise they are passed by calling self.handle_entityref() or self.handle_charref() with the string containing respectively the named or numeric reference as the argument. """CDATA_CONTENT_ELEMENTS=("script","style")def__init__(self,*,convert_charrefs=True):"""Initialize and reset this instance. If convert_charrefs is True (the default), all character references are automatically converted to the corresponding Unicode characters. """self.convert_charrefs=convert_charrefsself.reset()defreset(self):"""Reset this instance. Loses all unprocessed data."""self.rawdata=''self.lasttag='???'self.interesting=interesting_normalself.cdata_elem=None_markupbase.ParserBase.reset(self)deffeed(self,data):r"""Feed data to the parser. Call this as often as you want, with as little or as much text as you want (may include '\n'). """self.rawdata=self.rawdata+dataself.goahead(0)defclose(self):"""Handle any buffered data."""self.goahead(1)__starttag_text=Nonedefget_starttag_text(self):"""Return full source of start tag: '<...>'."""returnself.__starttag_textdefset_cdata_mode(self,elem):self.cdata_elem=elem.lower()self.interesting=re.compile(r'</\s*%s\s*>'%self.cdata_elem,re.I)defclear_cdata_mode(self):self.interesting=interesting_normalself.cdata_elem=None# Internal -- handle data as far as reasonable. May leave state# and data to be processed by a subsequent call. If 'end' is# true, force handling all data as if followed by EOF marker.defgoahead(self,end):rawdata=self.rawdatai=0n=len(rawdata)whilei<n:ifself.convert_charrefsandnotself.cdata_elem:j=rawdata.find('<',i)ifj<0:# if we can't find the next <, either we are at the end# or there's more text incoming. If the latter is True,# we can't pass the text to handle_data in case we have# a charref cut in half at end. Try to determine if# this is the case before proceeding by looking for an# & near the end and see if it's followed by a space or ;.amppos=rawdata.rfind('&',max(i,n-34))if(amppos>=0andnotre.compile(r'[\s;]').search(rawdata,amppos)):break# wait till we get all the textj=nelse:match=self.interesting.search(rawdata,i)# < or &ifmatch:j=match.start()else:ifself.cdata_elem:breakj=nifi<j:ifself.convert_charrefsandnotself.cdata_elem:self.handle_data(unescape(rawdata[i:j]))else:self.handle_data(rawdata[i:j])i=self.updatepos(i,j)ifi==n:breakstartswith=rawdata.startswithifstartswith('<',i):ifstarttagopen.match(rawdata,i):# < + letterk=self.parse_starttag(i)elifstartswith("</",i):k=self.parse_endtag(i)elifstartswith("<!--",i):k=self.parse_comment(i)elifstartswith("<?",i):k=self.parse_pi(i)elifstartswith("<!",i):k=self.parse_html_declaration(i)elif(i+1)<n:self.handle_data("<")k=i+1else:breakifk<0:ifnotend:breakk=rawdata.find('>',i+1)ifk<0:k=rawdata.find('<',i+1)ifk<0:k=i+1else:k+=1ifself.convert_charrefsandnotself.cdata_elem:self.handle_data(unescape(rawdata[i:k]))else:self.handle_data(rawdata[i:k])i=self.updatepos(i,k)elifstartswith("&#",i):match=charref.match(rawdata,i)ifmatch:name=match.group()[2:-1]self.handle_charref(name)k=match.end()ifnotstartswith(';',k-1):k=k-1i=self.updatepos(i,k)continueelse:if";"inrawdata[i:]:# bail by consuming &#self.handle_data(rawdata[i:i+2])i=self.updatepos(i,i+2)breakelifstartswith('&',i):match=entityref.match(rawdata,i)ifmatch:name=match.group(1)self.handle_entityref(name)k=match.end()ifnotstartswith(';',k-1):k=k-1i=self.updatepos(i,k)continuematch=incomplete.match(rawdata,i)ifmatch:# match.group() will contain at least 2 charsifendandmatch.group()==rawdata[i:]:k=match.end()ifk<=i:k=ni=self.updatepos(i,i+1)# incompletebreakelif(i+1)<n:# not the end of the buffer, and can't be confused# with some other constructself.handle_data("&")i=self.updatepos(i,i+1)else:breakelse:assert0,"interesting.search() lied"# end whileifendandi<nandnotself.cdata_elem:ifself.convert_charrefsandnotself.cdata_elem:self.handle_data(unescape(rawdata[i:n]))else:self.handle_data(rawdata[i:n])i=self.updatepos(i,n)self.rawdata=rawdata[i:]# Internal -- parse html declarations, return length or -1 if not terminated# See w3.org/TR/html5/tokenization.html#markup-declaration-open-state# See also parse_declaration in _markupbasedefparse_html_declaration(self,i):rawdata=self.rawdataassertrawdata[i:i+2]=='<!',('unexpected call to ''parse_html_declaration()')ifrawdata[i:i+4]=='<!--':# this case is actually already handled in goahead()returnself.parse_comment(i)elifrawdata[i:i+3]=='<![':returnself.parse_marked_section(i)elifrawdata[i:i+9].lower()=='<!doctype':# find the closing >gtpos=rawdata.find('>',i+9)ifgtpos==-1:return-1self.handle_decl(rawdata[i+2:gtpos])returngtpos+1else:returnself.parse_bogus_comment(i)# Internal -- parse bogus comment, return length or -1 if not terminated# see http://www.w3.org/TR/html5/tokenization.html#bogus-comment-statedefparse_bogus_comment(self,i,report=1):rawdata=self.rawdataassertrawdata[i:i+2]in('<!','</'),('unexpected call to ''parse_comment()')pos=rawdata.find('>',i+2)ifpos==-1:return-1ifreport:self.handle_comment(rawdata[i+2:pos])returnpos+1# Internal -- parse processing instr, return end or -1 if not terminateddefparse_pi(self,i):rawdata=self.rawdataassertrawdata[i:i+2]=='<?','unexpected call to parse_pi()'match=piclose.search(rawdata,i+2)# >ifnotmatch:return-1j=match.start()self.handle_pi(rawdata[i+2:j])j=match.end()returnj# Internal -- handle starttag, return end or -1 if not terminateddefparse_starttag(self,i):self.__starttag_text=Noneendpos=self.check_for_whole_start_tag(i)ifendpos<0:returnendposrawdata=self.rawdataself.__starttag_text=rawdata[i:endpos]# Now parse the data between i+1 and j into a tag and attrsattrs=[]match=tagfind_tolerant.match(rawdata,i+1)assertmatch,'unexpected call to parse_starttag()'k=match.end()self.lasttag=tag=match.group(1).lower()whilek<endpos:m=attrfind_tolerant.match(rawdata,k)ifnotm:breakattrname,rest,attrvalue=m.group(1,2,3)ifnotrest:attrvalue=Noneelifattrvalue[:1]=='\''==attrvalue[-1:]or \
attrvalue[:1]=='"'==attrvalue[-1:]:attrvalue=attrvalue[1:-1]ifattrvalue:attrvalue=unescape(attrvalue)attrs.append((attrname.lower(),attrvalue))k=m.end()end=rawdata[k:endpos].strip()ifendnotin(">","/>"):self.handle_data(rawdata[i:endpos])returnendposifend.endswith('/>'):# XHTML-style empty tag: <span attr="value" />self.handle_startendtag(tag,attrs)else:self.handle_starttag(tag,attrs)iftaginself.CDATA_CONTENT_ELEMENTS:self.set_cdata_mode(tag)returnendpos# Internal -- check to see if we have a complete starttag; return end# or -1 if incomplete.defcheck_for_whole_start_tag(self,i):rawdata=self.rawdatam=locatestarttagend_tolerant.match(rawdata,i)ifm:j=m.end()next=rawdata[j:j+1]ifnext==">":returnj+1ifnext=="/":ifrawdata.startswith("/>",j):returnj+2ifrawdata.startswith("/",j):# buffer boundaryreturn-1# else bogus inputifj>i:returnjelse:returni+1ifnext=="":# end of inputreturn-1ifnextin("abcdefghijklmnopqrstuvwxyz=/""ABCDEFGHIJKLMNOPQRSTUVWXYZ"):# end of input in or before attribute value, or we have the# '/' from a '/>' endingreturn-1ifj>i:returnjelse:returni+1raiseAssertionError("we should not get here!")# Internal -- parse endtag, return end or -1 if incompletedefparse_endtag(self,i):rawdata=self.rawdataassertrawdata[i:i+2]=="</","unexpected call to parse_endtag"match=endendtag.search(rawdata,i+1)# >ifnotmatch:return-1gtpos=match.end()match=endtagfind.match(rawdata,i)# </ + tag + >ifnotmatch:ifself.cdata_elemisnotNone:self.handle_data(rawdata[i:gtpos])returngtpos# find the name: w3.org/TR/html5/tokenization.html#tag-name-statenamematch=tagfind_tolerant.match(rawdata,i+2)ifnotnamematch:# w3.org/TR/html5/tokenization.html#end-tag-open-stateifrawdata[i:i+3]=='</>':returni+3else:returnself.parse_bogus_comment(i)tagname=namematch.group(1).lower()# consume and ignore other stuff between the name and the ># Note: this is not 100% correct, since we might have things like# </tag attr=">">, but looking for > after the name should cover# most of the cases and is much simplergtpos=rawdata.find('>',namematch.end())self.handle_endtag(tagname)returngtpos+1elem=match.group(1).lower()# script or styleifself.cdata_elemisnotNone:ifelem!=self.cdata_elem:self.handle_data(rawdata[i:gtpos])returngtposself.handle_endtag(elem)self.clear_cdata_mode()returngtpos# Overridable -- finish processing of start+end tag: <tag.../>defhandle_startendtag(self,tag,attrs):self.handle_starttag(tag,attrs)self.handle_endtag(tag)# Overridable -- handle start tagdefhandle_starttag(self,tag,attrs):pass# Overridable -- handle end tagdefhandle_endtag(self,tag):pass# Overridable -- handle character referencedefhandle_charref(self,name):pass# Overridable -- handle entity referencedefhandle_entityref(self,name):pass# Overridable -- handle datadefhandle_data(self,data):pass# Overridable -- handle commentdefhandle_comment(self,data):pass# Overridable -- handle declarationdefhandle_decl(self,decl):pass# Overridable -- handle processing instructiondefhandle_pi(self,data):passdefunknown_decl(self,data):pass