}
//
// Scripting language invocation.
//
Interpreter interpreter = getInterpreter(type);
if (interpreter == null)
// Can't find interpreter so just skip this script block.
continue;
try {
String href = XLinkSupport.getXLinkHref(script);
String desc = null;
Reader reader = null;
if (href.length() > 0) {
desc = href;
// External script.
ParsedURL purl = new ParsedURL(script.getBaseURI(), href);
checkCompatibleScriptURL(type, purl);
InputStream is = purl.openStream();
String mediaType = purl.getContentTypeMediaType();
String enc = purl.getContentTypeCharset();
if (enc != null) {
try {
reader = new InputStreamReader(is, enc);
} catch (UnsupportedEncodingException uee) {
enc = null;
}
}
if (reader == null) {
if (APPLICATION_ECMASCRIPT.equals(mediaType)) {
// No encoding was specified in the MIME type, so
// infer it according to RFC 4329.
if (purl.hasContentTypeParameter("version")) {
// Future versions of application/ecmascript
// are not supported, so skip this script
// element if the version parameter is present.
continue;
}
PushbackInputStream pbis =
new PushbackInputStream(is, 8);
byte[] buf = new byte[4];
int read = pbis.read(buf);
if (read > 0) {
pbis.unread(buf, 0, read);
if (read >= 2) {
if (buf[0] == (byte)0xff &&
buf[1] == (byte)0xfe) {
if (read >= 4 && buf[2] == 0 &&
buf[3] == 0) {
enc = "UTF32-LE";
pbis.skip(4);
} else {
enc = "UTF-16LE";
pbis.skip(2);
}
} else if (buf[0] == (byte)0xfe &&
buf[1] == (byte)0xff) {
enc = "UTF-16BE";
pbis.skip(2);
} else if (read >= 3
&& buf[0] == (byte)0xef
&& buf[1] == (byte)0xbb
&& buf[2] == (byte)0xbf) {
enc = "UTF-8";
pbis.skip(3);
} else if (read >= 4 && buf[0] == 0 &&
buf[1] == 0 &&
buf[2] == (byte)0xfe &&
buf[3] == (byte)0xff) {
enc = "UTF-32BE";
pbis.skip(4);
}
}
if (enc == null) {
enc = "UTF-8";
}
}
reader = new InputStreamReader(pbis, enc);
} else {
reader = new InputStreamReader(is);
}
}
} else {
checkCompatibleScriptURL(type, docPURL);
DocumentLoader dl = bridgeContext.getDocumentLoader();
Element e = script;
SVGDocument d = (SVGDocument)e.getOwnerDocument();
int line = dl.getLineNumber(script);
desc = Messages.formatMessage
(INLINE_SCRIPT_DESCRIPTION,
new Object [] {d.getURL(),
"<"+script.getNodeName()+">",
new Integer(line)});
// Inline script.
Node n = script.getFirstChild();
if (n != null) {
StringBuffer sb = new StringBuffer();
while (n != null) {
if (n.getNodeType() == Node.CDATA_SECTION_NODE
|| n.getNodeType() == Node.TEXT_NODE)
sb.append(n.getNodeValue());
n = n.getNextSibling();
}
reader = new StringReader(sb.toString());
} else {
continue;
}
}
interpreter.evaluate(reader, desc);
} catch (IOException e) {
if (userAgent != null) {
userAgent.displayError(e);
}