Class: Nokogiri::XML::SAX::ParserContext
- Inherits:
-
Object
- Object
- Nokogiri::XML::SAX::ParserContext
- Defined in:
- lib/nokogiri/xml/sax/parser_context.rb,
ext/nokogiri/xml_sax_parser_context.c
Overview
Context for XML SAX parsers. This class is usually not instantiated by the user. Instead, you should be looking at Nokogiri::XML::SAX::Parser
Direct Known Subclasses
Class Method Summary collapse
-
.parse_file(filename) ⇒ Object
Parse file given
filename
. -
.parse_io(io, encoding) ⇒ Object
Parse
io
object withencoding
. -
.parse_memory(data) ⇒ Object
Parse the XML stored in memory in
data
. - .new(thing, encoding = "UTF-8") ⇒ Object
Instance Method Summary collapse
-
#column ⇒ Object
Get the current column the parser context is processing.
-
#line ⇒ Object
Get the current line the parser context is processing.
-
#parse_with(sax_handler) ⇒ Object
Use
sax_handler
and parse the current document. -
#recovery ⇒ Object
Should this parser recover from structural errors? It will not stop processing file on structural errors if set to true.
-
#recovery=(boolean) ⇒ Object
Should this parser recover from structural errors? It will not stop processing file on structural errors if set to true.
-
#replace_entities ⇒ Object
Should this parser replace entities? & will get converted to ‘&’ if set to true.
-
#replace_entities=(boolean) ⇒ Object
Should this parser replace entities? & will get converted to ‘&’ if set to true.
Class Method Details
.parse_file(filename) ⇒ Object
Parse file given filename
76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 76
static VALUE
parse_file(VALUE klass, VALUE filename)
{
xmlParserCtxtPtr ctxt = xmlCreateFileParserCtxt(StringValueCStr(filename));
if (ctxt->sax) {
xmlFree(ctxt->sax);
ctxt->sax = NULL;
}
return noko_xml_sax_parser_context_wrap(klass, ctxt);
}
|
.parse_io(io, encoding) ⇒ Object
Parse io
object with encoding
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 48
static VALUE
parse_io(VALUE klass, VALUE io, VALUE encoding)
{
xmlParserCtxtPtr ctxt;
xmlCharEncoding enc = (xmlCharEncoding)NUM2INT(encoding);
if (!rb_respond_to(io, id_read)) {
rb_raise(rb_eTypeError, "argument expected to respond to :read");
}
ctxt = xmlCreateIOParserCtxt(NULL, NULL,
(xmlInputReadCallback)noko_io_read,
(xmlInputCloseCallback)noko_io_close,
(void *)io, enc);
if (ctxt->sax) {
xmlFree(ctxt->sax);
ctxt->sax = NULL;
}
return noko_xml_sax_parser_context_wrap(klass, ctxt);
}
|
.parse_memory(data) ⇒ Object
Parse the XML stored in memory in data
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 95
static VALUE
parse_memory(VALUE klass, VALUE data)
{
xmlParserCtxtPtr ctxt;
Check_Type(data, T_STRING);
if (!(int)RSTRING_LEN(data)) {
rb_raise(rb_eRuntimeError, "data cannot be empty");
}
ctxt = xmlCreateMemoryParserCtxt(StringValuePtr(data),
(int)RSTRING_LEN(data));
if (ctxt->sax) {
xmlFree(ctxt->sax);
ctxt->sax = NULL;
}
return noko_xml_sax_parser_context_wrap(klass, ctxt);
}
|
Instance Method Details
#column ⇒ Object
Get the current column the parser context is processing.
230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 230
static VALUE
column(VALUE self)
{
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
xmlParserInputPtr io;
io = ctxt->input;
if (io) {
return INT2NUM(io->col);
}
return Qnil;
}
|
#line ⇒ Object
Get the current line the parser context is processing.
211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 211
static VALUE
line(VALUE self)
{
xmlParserInputPtr io;
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
io = ctxt->input;
if (io) {
return INT2NUM(io->line);
}
return Qnil;
}
|
#parse_with(sax_handler) ⇒ Object
Use sax_handler
and parse the current document
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 143
static VALUE
parse_with(VALUE self, VALUE sax_handler)
{
xmlParserCtxtPtr ctxt;
xmlSAXHandlerPtr sax;
if (!rb_obj_is_kind_of(sax_handler, cNokogiriXmlSaxParser)) {
rb_raise(rb_eArgError, "argument must be a Nokogiri::XML::SAX::Parser");
}
ctxt = noko_xml_sax_parser_context_unwrap(self);
sax = noko_sax_handler_unwrap(sax_handler);
ctxt->sax = sax;
ctxt->userData = (void *)NOKOGIRI_SAX_TUPLE_NEW(ctxt, sax_handler);
xmlSetStructuredErrorFunc(NULL, NULL);
rb_ensure(parse_doc, (VALUE)ctxt, parse_doc_finalize, (VALUE)ctxt);
return Qnil;
}
|
#recovery ⇒ Object
Should this parser recover from structural errors? It will not stop processing file on structural errors if set to true
272 273 274 275 276 277 278 279 280 281 282 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 272
static VALUE
get_recovery(VALUE self)
{
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
if (ctxt->recovery == 0) {
return Qfalse;
} else {
return Qtrue;
}
}
|
#recovery=(boolean) ⇒ Object
Should this parser recover from structural errors? It will not stop processing file on structural errors if set to true
251 252 253 254 255 256 257 258 259 260 261 262 263 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 251
static VALUE
set_recovery(VALUE self, VALUE value)
{
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
if (value == Qfalse) {
ctxt->recovery = 0;
} else {
ctxt->recovery = 1;
}
return value;
}
|
#replace_entities ⇒ Object
Should this parser replace entities? & will get converted to ‘&’ if set to true
194 195 196 197 198 199 200 201 202 203 204 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 194
static VALUE
get_replace_entities(VALUE self)
{
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
if (0 == ctxt->replaceEntities) {
return Qfalse;
} else {
return Qtrue;
}
}
|
#replace_entities=(boolean) ⇒ Object
Should this parser replace entities? & will get converted to ‘&’ if set to true
173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'ext/nokogiri/xml_sax_parser_context.c', line 173
static VALUE
set_replace_entities(VALUE self, VALUE value)
{
xmlParserCtxtPtr ctxt = noko_xml_sax_parser_context_unwrap(self);
if (Qfalse == value) {
ctxt->replaceEntities = 0;
} else {
ctxt->replaceEntities = 1;
}
return value;
}
|