home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / xmlreader.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2003-12-30  |  24KB  |  441 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.3)
  3.  
  4. '''An XML Reader is the SAX 2 name for an XML parser. XML Parsers
  5. should be based on this code. '''
  6. import handler
  7. from _exceptions import SAXNotSupportedException, SAXNotRecognizedException
  8.  
  9. class XMLReader:
  10.     """Interface for reading an XML document using callbacks.
  11.  
  12.     XMLReader is the interface that an XML parser's SAX2 driver must
  13.     implement. This interface allows an application to set and query
  14.     features and properties in the parser, to register event handlers
  15.     for document processing, and to initiate a document parse.
  16.  
  17.     All SAX interfaces are assumed to be synchronous: the parse
  18.     methods must not return until parsing is complete, and readers
  19.     must wait for an event-handler callback to return before reporting
  20.     the next event."""
  21.     
  22.     def __init__(self):
  23.         self._cont_handler = handler.ContentHandler()
  24.         self._dtd_handler = handler.DTDHandler()
  25.         self._ent_handler = handler.EntityResolver()
  26.         self._err_handler = handler.ErrorHandler()
  27.  
  28.     
  29.     def parse(self, source):
  30.         '''Parse an XML document from a system identifier or an InputSource.'''
  31.         raise NotImplementedError('This method must be implemented!')
  32.  
  33.     
  34.     def getContentHandler(self):
  35.         '''Returns the current ContentHandler.'''
  36.         return self._cont_handler
  37.  
  38.     
  39.     def setContentHandler(self, handler):
  40.         '''Registers a new object to receive document content events.'''
  41.         self._cont_handler = handler
  42.  
  43.     
  44.     def getDTDHandler(self):
  45.         '''Returns the current DTD handler.'''
  46.         return self._dtd_handler
  47.  
  48.     
  49.     def setDTDHandler(self, handler):
  50.         '''Register an object to receive basic DTD-related events.'''
  51.         self._dtd_handler = handler
  52.  
  53.     
  54.     def getEntityResolver(self):
  55.         '''Returns the current EntityResolver.'''
  56.         return self._ent_handler
  57.  
  58.     
  59.     def setEntityResolver(self, resolver):
  60.         '''Register an object to resolve external entities.'''
  61.         self._ent_handler = resolver
  62.  
  63.     
  64.     def getErrorHandler(self):
  65.         '''Returns the current ErrorHandler.'''
  66.         return self._err_handler
  67.  
  68.     
  69.     def setErrorHandler(self, handler):
  70.         '''Register an object to receive error-message events.'''
  71.         self._err_handler = handler
  72.  
  73.     
  74.     def setLocale(self, locale):
  75.         '''Allow an application to set the locale for errors and warnings.
  76.  
  77.         SAX parsers are not required to provide localization for errors
  78.         and warnings; if they cannot support the requested locale,
  79.         however, they must throw a SAX exception. Applications may
  80.         request a locale change in the middle of a parse.'''
  81.         raise SAXNotSupportedException('Locale support not implemented')
  82.  
  83.     
  84.     def getFeature(self, name):
  85.         '''Looks up and returns the state of a SAX2 feature.'''
  86.         raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
  87.  
  88.     
  89.     def setFeature(self, name, state):
  90.         '''Sets the state of a SAX2 feature.'''
  91.         raise SAXNotRecognizedException("Feature '%s' not recognized" % name)
  92.  
  93.     
  94.     def getProperty(self, name):
  95.         '''Looks up and returns the value of a SAX2 property.'''
  96.         raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  97.  
  98.     
  99.     def setProperty(self, name, value):
  100.         '''Sets the value of a SAX2 property.'''
  101.         raise SAXNotRecognizedException("Property '%s' not recognized" % name)
  102.  
  103.  
  104.  
  105. class IncrementalParser(XMLReader):
  106.     '''This interface adds three extra methods to the XMLReader
  107.     interface that allow XML parsers to support incremental
  108.     parsing. Support for this interface is optional, since not all
  109.     underlying XML parsers support this functionality.
  110.  
  111.     When the parser is instantiated it is ready to begin accepting
  112.     data from the feed method immediately. After parsing has been
  113.     finished with a call to close the reset method must be called to
  114.     make the parser ready to accept new data, either from feed or
  115.     using the parse method.
  116.  
  117.     Note that these methods must _not_ be called during parsing, that
  118.     is, after parse has been called and before it returns.
  119.  
  120.     By default, the class also implements the parse method of the XMLReader
  121.     interface using the feed, close and reset methods of the
  122.     IncrementalParser interface as a convenience to SAX 2.0 driver
  123.     writers.'''
  124.     
  125.     def __init__(self, bufsize = 2 ** 16):
  126.         self._bufsize = bufsize
  127.         XMLReader.__init__(self)
  128.  
  129.     
  130.     def parse(self, source):
  131.         import saxutils
  132.         source = saxutils.prepare_input_source(source)
  133.         self.prepareParser(source)
  134.         file = source.getByteStream()
  135.         buffer = file.read(self._bufsize)
  136.         while buffer != '':
  137.             self.feed(buffer)
  138.             buffer = file.read(self._bufsize)
  139.         self.close()
  140.  
  141.     
  142.     def feed(self, data):
  143.         '''This method gives the raw XML data in the data parameter to
  144.         the parser and makes it parse the data, emitting the
  145.         corresponding events. It is allowed for XML constructs to be
  146.         split across several calls to feed.
  147.  
  148.         feed may raise SAXException.'''
  149.         raise NotImplementedError('This method must be implemented!')
  150.  
  151.     
  152.     def prepareParser(self, source):
  153.         '''This method is called by the parse implementation to allow
  154.         the SAX 2.0 driver to prepare itself for parsing.'''
  155.         raise NotImplementedError('prepareParser must be overridden!')
  156.  
  157.     
  158.     def close(self):
  159.         '''This method is called when the entire XML document has been
  160.         passed to the parser through the feed method, to notify the
  161.         parser that there are no more data. This allows the parser to
  162.         do the final checks on the document and empty the internal
  163.         data buffer.
  164.  
  165.         The parser will not be ready to parse another document until
  166.         the reset method has been called.
  167.  
  168.         close may raise SAXException.'''
  169.         raise NotImplementedError('This method must be implemented!')
  170.  
  171.     
  172.     def reset(self):
  173.         '''This method is called after close has been called to reset
  174.         the parser so that it is ready to parse new documents. The
  175.         results of calling parse or feed after close without calling
  176.         reset are undefined.'''
  177.         raise NotImplementedError('This method must be implemented!')
  178.  
  179.  
  180.  
  181. class Locator:
  182.     '''Interface for associating a SAX event with a document
  183.     location. A locator object will return valid results only during
  184.     calls to DocumentHandler methods; at any other time, the
  185.     results are unpredictable.'''
  186.     
  187.     def getColumnNumber(self):
  188.         '''Return the column number where the current event ends.'''
  189.         return -1
  190.  
  191.     
  192.     def getLineNumber(self):
  193.         '''Return the line number where the current event ends.'''
  194.         return -1
  195.  
  196.     
  197.     def getPublicId(self):
  198.         '''Return the public identifier for the current event.'''
  199.         return None
  200.  
  201.     
  202.     def getSystemId(self):
  203.         '''Return the system identifier for the current event.'''
  204.         return None
  205.  
  206.  
  207.  
  208. class InputSource:
  209.     '''Encapsulation of the information needed by the XMLReader to
  210.     read entities.
  211.  
  212.     This class may include information about the public identifier,
  213.     system identifier, byte stream (possibly with character encoding
  214.     information) and/or the character stream of an entity.
  215.  
  216.     Applications will create objects of this class for use in the
  217.     XMLReader.parse method and for returning from
  218.     EntityResolver.resolveEntity.
  219.  
  220.     An InputSource belongs to the application, the XMLReader is not
  221.     allowed to modify InputSource objects passed to it from the
  222.     application, although it may make copies and modify those.'''
  223.     
  224.     def __init__(self, system_id = None):
  225.         self._InputSource__system_id = system_id
  226.         self._InputSource__public_id = None
  227.         self._InputSource__encoding = None
  228.         self._InputSource__bytefile = None
  229.         self._InputSource__charfile = None
  230.  
  231.     
  232.     def setPublicId(self, public_id):
  233.         '''Sets the public identifier of this InputSource.'''
  234.         self._InputSource__public_id = public_id
  235.  
  236.     
  237.     def getPublicId(self):
  238.         '''Returns the public identifier of this InputSource.'''
  239.         return self._InputSource__public_id
  240.  
  241.     
  242.     def setSystemId(self, system_id):
  243.         '''Sets the system identifier of this InputSource.'''
  244.         self._InputSource__system_id = system_id
  245.  
  246.     
  247.     def getSystemId(self):
  248.         '''Returns the system identifier of this InputSource.'''
  249.         return self._InputSource__system_id
  250.  
  251.     
  252.     def setEncoding(self, encoding):
  253.         '''Sets the character encoding of this InputSource.
  254.  
  255.         The encoding must be a string acceptable for an XML encoding
  256.         declaration (see section 4.3.3 of the XML recommendation).
  257.  
  258.         The encoding attribute of the InputSource is ignored if the
  259.         InputSource also contains a character stream.'''
  260.         self._InputSource__encoding = encoding
  261.  
  262.     
  263.     def getEncoding(self):
  264.         '''Get the character encoding of this InputSource.'''
  265.         return self._InputSource__encoding
  266.  
  267.     
  268.     def setByteStream(self, bytefile):
  269.         '''Set the byte stream (a Python file-like object which does
  270.         not perform byte-to-character conversion) for this input
  271.         source.
  272.  
  273.         The SAX parser will ignore this if there is also a character
  274.         stream specified, but it will use a byte stream in preference
  275.         to opening a URI connection itself.
  276.  
  277.         If the application knows the character encoding of the byte
  278.         stream, it should set it with the setEncoding method.'''
  279.         self._InputSource__bytefile = bytefile
  280.  
  281.     
  282.     def getByteStream(self):
  283.         '''Get the byte stream for this input source.
  284.  
  285.         The getEncoding method will return the character encoding for
  286.         this byte stream, or None if unknown.'''
  287.         return self._InputSource__bytefile
  288.  
  289.     
  290.     def setCharacterStream(self, charfile):
  291.         '''Set the character stream for this input source. (The stream
  292.         must be a Python 2.0 Unicode-wrapped file-like that performs
  293.         conversion to Unicode strings.)
  294.  
  295.         If there is a character stream specified, the SAX parser will
  296.         ignore any byte stream and will not attempt to open a URI
  297.         connection to the system identifier.'''
  298.         self._InputSource__charfile = charfile
  299.  
  300.     
  301.     def getCharacterStream(self):
  302.         '''Get the character stream for this input source.'''
  303.         return self._InputSource__charfile
  304.  
  305.  
  306.  
  307. class AttributesImpl:
  308.     
  309.     def __init__(self, attrs):
  310.         '''Non-NS-aware implementation.
  311.  
  312.         attrs should be of the form {name : value}.'''
  313.         self._attrs = attrs
  314.  
  315.     
  316.     def getLength(self):
  317.         return len(self._attrs)
  318.  
  319.     
  320.     def getType(self, name):
  321.         return 'CDATA'
  322.  
  323.     
  324.     def getValue(self, name):
  325.         return self._attrs[name]
  326.  
  327.     
  328.     def getValueByQName(self, name):
  329.         return self._attrs[name]
  330.  
  331.     
  332.     def getNameByQName(self, name):
  333.         if not self._attrs.has_key(name):
  334.             raise KeyError, name
  335.         
  336.         return name
  337.  
  338.     
  339.     def getQNameByName(self, name):
  340.         if not self._attrs.has_key(name):
  341.             raise KeyError, name
  342.         
  343.         return name
  344.  
  345.     
  346.     def getNames(self):
  347.         return self._attrs.keys()
  348.  
  349.     
  350.     def getQNames(self):
  351.         return self._attrs.keys()
  352.  
  353.     
  354.     def __len__(self):
  355.         return len(self._attrs)
  356.  
  357.     
  358.     def __getitem__(self, name):
  359.         return self._attrs[name]
  360.  
  361.     
  362.     def keys(self):
  363.         return self._attrs.keys()
  364.  
  365.     
  366.     def has_key(self, name):
  367.         return self._attrs.has_key(name)
  368.  
  369.     
  370.     def __contains__(self, name):
  371.         return self._attrs.has_key(name)
  372.  
  373.     
  374.     def get(self, name, alternative = None):
  375.         return self._attrs.get(name, alternative)
  376.  
  377.     
  378.     def copy(self):
  379.         return self.__class__(self._attrs)
  380.  
  381.     
  382.     def items(self):
  383.         return self._attrs.items()
  384.  
  385.     
  386.     def values(self):
  387.         return self._attrs.values()
  388.  
  389.  
  390.  
  391. class AttributesNSImpl(AttributesImpl):
  392.     
  393.     def __init__(self, attrs, qnames):
  394.         '''NS-aware implementation.
  395.  
  396.         attrs should be of the form {(ns_uri, lname): value, ...}.
  397.         qnames of the form {(ns_uri, lname): qname, ...}.'''
  398.         self._attrs = attrs
  399.         self._qnames = qnames
  400.  
  401.     
  402.     def getValueByQName(self, name):
  403.         for nsname, qname in self._qnames.items():
  404.             if qname == name:
  405.                 return self._attrs[nsname]
  406.                 continue
  407.         
  408.         raise KeyError, name
  409.  
  410.     
  411.     def getNameByQName(self, name):
  412.         for nsname, qname in self._qnames.items():
  413.             if qname == name:
  414.                 return nsname
  415.                 continue
  416.         
  417.         raise KeyError, name
  418.  
  419.     
  420.     def getQNameByName(self, name):
  421.         return self._qnames[name]
  422.  
  423.     
  424.     def getQNames(self):
  425.         return self._qnames.values()
  426.  
  427.     
  428.     def copy(self):
  429.         return self.__class__(self._attrs, self._qnames)
  430.  
  431.  
  432.  
  433. def _test():
  434.     XMLReader()
  435.     IncrementalParser()
  436.     Locator()
  437.  
  438. if __name__ == '__main__':
  439.     _test()
  440.  
  441.