Class: Nokogiri::XML::SAX::PushParser
- Inherits:
-
Object
- Object
- Nokogiri::XML::SAX::PushParser
- Defined in:
- lib/nokogiri/xml/sax/push_parser.rb,
lib/nokogiri/ffi/xml/sax/push_parser.rb,
ext/nokogiri/xml_sax_push_parser.c
Overview
PushParser can parse a document that is fed to it manually. It must be given a SAX::Document object which will be called with SAX events as the document is being parsed.
Calling PushParser#<< writes XML to the parser, calling any SAX callbacks it can.
PushParser#finish tells the parser that the document is finished and calls the end_document SAX method.
Example:
parser = PushParser.new(Class.new(XML::SAX::Document) {
def start_document
puts "start document called"
end
}.new)
parser << "<div>hello<"
parser << "/div>"
parser.finish
Instance Attribute Summary collapse
-
#cstruct ⇒ Object
:nodoc:.
-
#document ⇒ Object
The Nokogiri::XML::SAX::Document on which the PushParser will be operating.
Instance Method Summary collapse
-
#finish ⇒ Object
Finish the parsing.
-
#initialize(doc = XML::SAX::Document.new, file_name = nil, encoding = 'UTF-8') ⇒ PushParser
constructor
Create a new PushParser with
doc
as the SAX Document, providing an optionalfile_name
andencoding
. - #options ⇒ Object
- #options=(options) ⇒ Object
-
#write(chunk, last_chunk = false) ⇒ Object
(also: #<<)
Write a
chunk
of XML to the PushParser.
Constructor Details
#initialize(doc = XML::SAX::Document.new, file_name = nil, encoding = 'UTF-8') ⇒ PushParser
Create a new PushParser with doc
as the SAX Document, providing an optional file_name
and encoding
34 35 36 37 38 39 40 41 |
# File 'lib/nokogiri/xml/sax/push_parser.rb', line 34 def initialize(doc = XML::SAX::Document.new, file_name = nil, encoding = 'UTF-8') @document = doc @encoding = encoding @sax_parser = XML::SAX::Parser.new(doc) ## Create our push parser context initialize_native(@sax_parser, file_name) end |
Instance Attribute Details
#cstruct ⇒ Object
:nodoc:
6 7 8 |
# File 'lib/nokogiri/ffi/xml/sax/push_parser.rb', line 6 def cstruct @cstruct end |
#document ⇒ Object
The Nokogiri::XML::SAX::Document on which the PushParser will be operating
29 30 31 |
# File 'lib/nokogiri/xml/sax/push_parser.rb', line 29 def document @document end |
Instance Method Details
#finish ⇒ Object
Finish the parsing. This method is only necessary for Nokogiri::XML::SAX::Document#end_document to be called.
54 55 56 |
# File 'lib/nokogiri/xml/sax/push_parser.rb', line 54 def finish write '', true end |
#options ⇒ Object
80 81 82 |
# File 'ext/nokogiri/xml_sax_push_parser.c', line 80 def cstruct[:options] end |
#options=(options) ⇒ Object
88 89 90 91 92 93 |
# File 'ext/nokogiri/xml_sax_push_parser.c', line 88 def () if LibXML.xmlCtxtUseOptions(cstruct, ) != 0 raise RuntimeError, "Cannot set XML parser context options" end nil end |
#write(chunk, last_chunk = false) ⇒ Object Also known as: <<
Write a chunk
of XML to the PushParser. Any callback methods that can be called will be called immidiately.
46 47 48 |
# File 'lib/nokogiri/xml/sax/push_parser.rb', line 46 def write chunk, last_chunk = false native_write(chunk, last_chunk) end |