1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
/**
* (The MIT License)
*
* Copyright (c) 2008 - 2011:
*
* * {Aaron Patterson}[http://tenderlovemaking.com]
* * {Mike Dalessio}[http://mike.daless.io]
* * {Charles Nutter}[http://blog.headius.com]
* * {Sergio Arbeo}[http://www.serabe.com]
* * {Patrick Mahoney}[http://polycrystal.org]
* * {Yoko Harada}[http://yokolet.blogspot.com]
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* 'Software'), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package nokogiri;
import static org.jruby.runtime.Helpers.invoke;
import java.io.IOException;
import java.io.InputStream;
import org.apache.xerces.parsers.AbstractSAXParser;
import org.jruby.Ruby;
import org.jruby.RubyClass;
import org.jruby.RubyFixnum;
import org.jruby.RubyModule;
import org.jruby.RubyObjectAdapter;
import org.jruby.anno.JRubyClass;
import org.jruby.anno.JRubyMethod;
import org.jruby.exceptions.RaiseException;
import org.jruby.javasupport.JavaEmbedUtils;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import org.xml.sax.ContentHandler;
import org.xml.sax.ErrorHandler;
import org.xml.sax.SAXException;
import org.xml.sax.SAXNotRecognizedException;
import org.xml.sax.SAXNotSupportedException;
import org.xml.sax.SAXParseException;
import nokogiri.internals.NokogiriHandler;
import nokogiri.internals.NokogiriHelpers;
import nokogiri.internals.ParserContext;
import nokogiri.internals.XmlSaxParser;
/**
* Base class for the SAX parsers.
*
* @author Patrick Mahoney <pat@polycrystal.org>
* @author Yoko Harada <yokolet@gmail.com>
*/
@JRubyClass(name="Nokogiri::XML::SAX::ParserContext")
public class XmlSaxParserContext extends ParserContext {
protected static final String FEATURE_NAMESPACES =
"http://xml.org/sax/features/namespaces";
protected static final String FEATURE_NAMESPACE_PREFIXES =
"http://xml.org/sax/features/namespace-prefixes";
protected static final String FEATURE_LOAD_EXTERNAL_DTD =
"http://apache.org/xml/features/nonvalidating/load-external-dtd";
protected static final String FEATURE_CONTINUE_AFTER_FATAL_ERROR =
"http://apache.org/xml/features/continue-after-fatal-error";
protected AbstractSAXParser parser;
protected NokogiriHandler handler;
private boolean replaceEntities = true;
private boolean recovery = false;
public XmlSaxParserContext(final Ruby ruby, RubyClass rubyClass) {
super(ruby, rubyClass);
}
protected void initialize(Ruby runtime) {
try {
parser = createParser();
}
catch (SAXException se) {
// Unexpected failure in XML subsystem
RaiseException ex = runtime.newRuntimeError(se.toString());
ex.initCause(se);
throw ex;
}
}
/**
* Create and return a copy of this object.
*
* @return a clone of this object
*/
@Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
protected AbstractSAXParser createParser() throws SAXException {
XmlSaxParser parser = new XmlSaxParser();
parser.setFeature(FEATURE_NAMESPACE_PREFIXES, true);
parser.setFeature(FEATURE_LOAD_EXTERNAL_DTD, false);
return parser;
}
/**
* Create a new parser context that will parse the string
* <code>data</code>.
*/
@JRubyMethod(name="memory", meta=true)
public static IRubyObject parse_memory(ThreadContext context,
IRubyObject klazz,
IRubyObject data) {
final Ruby runtime = context.runtime;
XmlSaxParserContext ctx = newInstance(runtime, (RubyClass) klazz);
ctx.initialize(runtime);
ctx.setStringInputSource(context, data, runtime.getNil());
return ctx;
}
/**
* Create a new parser context that will read from the file
* <code>data</code> and parse.
*/
@JRubyMethod(name="file", meta=true)
public static IRubyObject parse_file(ThreadContext context,
IRubyObject klazz,
IRubyObject data) {
final Ruby runtime = context.runtime;
XmlSaxParserContext ctx = newInstance(runtime, (RubyClass) klazz);
ctx.initialize(context.getRuntime());
ctx.setInputSourceFile(context, data);
return ctx;
}
/**
* Create a new parser context that will read from the IO or
* StringIO <code>data</code> and parse.
*
* TODO: Currently ignores encoding <code>enc</code>.
*/
@JRubyMethod(name="io", meta=true)
public static IRubyObject parse_io(ThreadContext context,
IRubyObject klazz,
IRubyObject data,
IRubyObject enc) {
//int encoding = (int)enc.convertToInteger().getLongValue();
final Ruby runtime = context.runtime;
XmlSaxParserContext ctx = newInstance(runtime, (RubyClass) klazz);
ctx.initialize(runtime);
ctx.setIOInputSource(context, data, runtime.getNil());
return ctx;
}
/**
* Create a new parser context that will read from a raw input stream.
* Meant to be run in a separate thread by XmlSaxPushParser.
*/
static XmlSaxParserContext parse_stream(final Ruby runtime, RubyClass klazz, InputStream stream) {
XmlSaxParserContext ctx = newInstance(runtime, klazz);
ctx.initialize(runtime);
ctx.setInputSource(stream);
return ctx;
}
private static XmlSaxParserContext newInstance(final Ruby runtime, final RubyClass klazz) {
return (XmlSaxParserContext) NokogiriService.XML_SAXPARSER_CONTEXT_ALLOCATOR.allocate(runtime, klazz);
}
/**
* Set a property of the underlying parser.
*/
protected void setProperty(String key, Object val)
throws SAXNotRecognizedException, SAXNotSupportedException {
parser.setProperty(key, val);
}
protected void setContentHandler(ContentHandler handler) {
parser.setContentHandler(handler);
}
protected void setErrorHandler(ErrorHandler handler) {
parser.setErrorHandler(handler);
}
public final NokogiriHandler getNokogiriHandler() { return handler; }
/**
* Perform any initialization prior to parsing with the handler
* <code>handlerRuby</code>. Convenience hook for subclasses.
*/
protected void preParse(Ruby runtime, IRubyObject handlerRuby, NokogiriHandler handler) {
((XmlSaxParser) parser).setXmlDeclHandler(handler);
if (recovery) {
try {
parser.setFeature(FEATURE_CONTINUE_AFTER_FATAL_ERROR, true);
}
catch (Exception e) {
// Unexpected failure in XML subsystem
throw runtime.newRuntimeError(e.getMessage());
}
}
}
protected void postParse(Ruby runtime, IRubyObject handlerRuby, NokogiriHandler handler) {
// noop
}
protected void do_parse() throws SAXException, IOException {
parser.parse(getInputSource());
}
@JRubyMethod
public IRubyObject parse_with(ThreadContext context, IRubyObject handlerRuby) {
final Ruby runtime = context.getRuntime();
if(!invoke(context, handlerRuby, "respond_to?", runtime.newSymbol("document")).isTrue()) {
throw runtime.newArgumentError("argument must respond_to document");
}
NokogiriHandler handler = this.handler = new NokogiriHandler(runtime, handlerRuby);
preParse(runtime, handlerRuby, handler);
setContentHandler(handler);
setErrorHandler(handler);
try{
setProperty("http://xml.org/sax/properties/lexical-handler", handler);
}
catch (Exception ex) {
throw runtime.newRuntimeError("Problem while creating XML SAX Parser: " + ex.toString());
}
try{
try {
do_parse();
}
catch (SAXParseException ex) {
// A bad document (<foo><bar></foo>) should call the
// error handler instead of raising a SAX exception.
// However, an EMPTY document should raise a RuntimeError.
// This is a bit kludgy, but AFAIK SAX doesn't distinguish
// between empty and bad whereas Nokogiri does.
String message = ex.getMessage();
if (message != null && message.contains("Premature end of file.") && stringDataSize < 1) {
throw runtime.newRuntimeError("couldn't parse document: " + message);
}
handler.error(ex);
}
}
catch (SAXException ex) {
// Unexpected failure in XML subsystem
throw runtime.newRuntimeError(ex.getMessage());
}
catch (IOException ex) {
throw runtime.newIOErrorFromException(ex);
}
postParse(runtime, handlerRuby, handler);
//maybeTrimLeadingAndTrailingWhitespace(context, handlerRuby);
return runtime.getNil();
}
/**
* Can take a boolean assignment.
*
* @param context
* @param value
* @return
*/
@JRubyMethod(name = "replace_entities=")
public IRubyObject set_replace_entities(ThreadContext context, IRubyObject value) {
replaceEntities = value.isTrue();
return this;
}
@JRubyMethod(name="replace_entities")
public IRubyObject get_replace_entities(ThreadContext context) {
return context.runtime.newBoolean(replaceEntities);
}
/**
* Can take a boolean assignment.
*
* @param context
* @param value
* @return
*/
@JRubyMethod(name = "recovery=")
public IRubyObject set_recovery(ThreadContext context, IRubyObject value) {
recovery = value.isTrue();
return this;
}
@JRubyMethod(name="recovery")
public IRubyObject get_recovery(ThreadContext context) {
return context.runtime.newBoolean(recovery);
}
/**
* If the handler's document is a FragmentHandler, attempt to trim
* leading and trailing whitespace.
*
* This is a bit hackish and depends heavily on the internals of
* FragmentHandler.
*/
protected void maybeTrimLeadingAndTrailingWhitespace(ThreadContext context, IRubyObject parser) {
RubyObjectAdapter adapter = JavaEmbedUtils.newObjectAdapter();
RubyModule mod = context.getRuntime().getClassFromPath("Nokogiri::XML::FragmentHandler");
IRubyObject handler = adapter.getInstanceVariable(parser, "@document");
if (handler == null || handler.isNil() || !adapter.isKindOf(handler, mod))
return;
IRubyObject stack = adapter.getInstanceVariable(handler, "@stack");
if (stack == null || stack.isNil())
return;
// doc is finally a DocumentFragment whose nodes we can check
IRubyObject doc = adapter.callMethod(stack, "first");
if (doc == null || doc.isNil())
return;
IRubyObject children;
for (;;) {
children = adapter.callMethod(doc, "children");
IRubyObject first = adapter.callMethod(children, "first");
if (NokogiriHelpers.isBlank(first)) adapter.callMethod(first, "unlink");
else break;
}
for (;;) {
children = adapter.callMethod(doc, "children");
IRubyObject last = adapter.callMethod(children, "last");
if (NokogiriHelpers.isBlank(last)) adapter.callMethod(last, "unlink");
else break;
}
// While we have a document, normalize it.
((XmlNode) doc).normalize();
}
@JRubyMethod(name="column")
public IRubyObject column(ThreadContext context) {
final Integer number = handler.getColumn();
if (number == null) return context.getRuntime().getNil();
return RubyFixnum.newFixnum(context.getRuntime(), number.longValue());
}
@JRubyMethod(name="line")
public IRubyObject line(ThreadContext context) {
final Integer number = handler.getLine();
if (number == null) return context.getRuntime().getNil();
return RubyFixnum.newFixnum(context.getRuntime(), number.longValue());
}
}
|