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
|
package nokogiri;
import nokogiri.internals.*;
import org.apache.xerces.parsers.AbstractSAXParser;
import org.jruby.Ruby;
import org.jruby.RubyClass;
import org.jruby.RubyFixnum;
import org.jruby.anno.JRubyClass;
import org.jruby.anno.JRubyMethod;
import org.jruby.exceptions.RaiseException;
import org.jruby.runtime.Helpers;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import java.io.IOException;
import java.io.InputStream;
import static org.jruby.runtime.Helpers.invoke;
/**
* 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;
protected NokogiriErrorHandler errorHandler;
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 encoding)
{
// check the type of the unused encoding to match behavior of CRuby
if (!(encoding instanceof RubyFixnum)) {
throw context.getRuntime().newTypeError("encoding must be kind_of String");
}
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);
}
public final NokogiriHandler
getNokogiriHandler() { return handler; }
public final NokogiriErrorHandler
getNokogiriErrorHandler() { return errorHandler; }
/**
* 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());
}
protected static Options
defaultParseOptions(ThreadContext context)
{
return new ParserContext.Options(
RubyFixnum.fix2long(Helpers.invoke(context,
((RubyClass)context.getRuntime().getClassFromPath("Nokogiri::XML::ParseOptions"))
.getConstant("DEFAULT_XML"),
"to_i"))
);
}
@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");
}
/* TODO: how should we pass in parse options? */
ParserContext.Options options = defaultParseOptions(context);
errorHandler = new NokogiriStrictErrorHandler(runtime, options.noError, options.noWarning);
handler = new NokogiriHandler(runtime, handlerRuby, errorHandler);
preParse(runtime, handlerRuby, handler);
parser.setContentHandler(handler);
parser.setErrorHandler(handler);
parser.setEntityResolver(new NokogiriEntityResolver(runtime, errorHandler, options));
try {
parser.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);
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);
}
@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());
}
}
|