parser asynch input (Was: SAX/C++: First interface draft)

Steinar Bang sb at metis.no
Fri Dec 3 13:20:44 GMT 1999


>>>>> James Clark <jjc at jclark.com>:

> class Parser
> {
> public:
>   virtual void setLocale (const char *) = 0;
>   virtual void setEntityResolver (EntityResolver &resolver) = 0;
>   virtual void setDTDHandler (DTDHandler &handler) = 0;
>   virtual void setDocumentHandler (DocumentHandler &handler) = 0;
>   virtual void setErrorHandler (ErrorHandler &handler) = 0;

>   virtual void parse (SAXString systemId) = 0;
>   virtual void parse (const InputSource &input) = 0;
> private:
>   void operator delete (void *);
> };

I would like to add operations that can be used to "push" data to the
parser asynchronously:

class Parser
{
public:
  virtual void setLocale (const char *) = 0;
  virtual void setEntityResolver (EntityResolver &resolver) = 0;
  virtual void setDTDHandler (DTDHandler &handler) = 0;
  virtual void setDocumentHandler (DocumentHandler &handler) = 0;
  virtual void setErrorHandler (ErrorHandler &handler) = 0;

  virtual void parse (SAXString systemId) = 0;
  virtual void parse (const InputSource &input) = 0;
  virtual void asynchId(SAXString systemId) = 0; //for error reporting
  virtual void asynchPutBlock(const char* buf, int len) = 0;
private:
  void operator delete (void *);
};

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo at ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)





More information about the Xml-dev mailing list