nothingmuch has asked for the wisdom of the Perl Monks concerning the following question:
I need to get an event/callback interface to multiple XML streams that are coming in from the network at the same time.
I would like to say
and have the parser parse as much as it can from that string, even if it's not a complete document, or balanced chunk.$parser->parse_more_data($string);
As more data becomes available, I would like to give it to the parsers, and get events from that.
Unfortunately all the parsers I've found encapsulate the read loop. One exception is XML::LibXML::SAX, which has a parse_chunk method. The problem is that the chunk needs to be a balanced string of XML, and since I don't know whether it's balanced before it's parsed (or partially parsed), I am stuck. I would like to parse the data, but I can't parse it till it's parsed. Ugh.
To further complicate things, it's difficult to know when the document is complete, because several documents come in from the stream one after another, and getting an event for the end of a document is the most reliable way to figure out when you're done.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Incremental parsing of multiple XML streams?
by redhotpenguin (Deacon) on Jan 07, 2005 at 22:20 UTC | |
by nothingmuch (Priest) on Jan 08, 2005 at 14:14 UTC | |
by nothingmuch (Priest) on Jan 08, 2005 at 23:50 UTC | |
|
•Re: Incremental parsing of multiple XML streams?
by merlyn (Sage) on Jan 07, 2005 at 22:26 UTC | |
by nothingmuch (Priest) on Jan 08, 2005 at 14:17 UTC | |
|
Re: Incremental parsing of multiple XML streams?
by paulbort (Hermit) on Jan 07, 2005 at 22:05 UTC | |
by nothingmuch (Priest) on Jan 08, 2005 at 14:13 UTC | |
|
Re: Incremental parsing of XML?
by mirod (Canon) on Jan 07, 2005 at 21:34 UTC | |
by nothingmuch (Priest) on Jan 07, 2005 at 22:01 UTC |