org.xhtmlrenderer.simple.NoNamespaceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flying-saucer-core Show documentation
Show all versions of flying-saucer-core Show documentation
Flying Saucer is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code as well as Java2D output.
/*
*
* XhtmlDocument.java
* Copyright (c) 2004, 2005 Torbjoern Gannholm
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
package org.xhtmlrenderer.simple;
import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.ProcessingInstruction;
import org.xhtmlrenderer.css.extend.StylesheetFactory;
import org.xhtmlrenderer.css.extend.TreeResolver;
import org.xhtmlrenderer.css.sheet.StylesheetInfo;
import org.xhtmlrenderer.extend.NamespaceHandler;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Handles a general XML document
*
* @author Torbjoern Gannholm
*/
@ParametersAreNonnullByDefault
public class NoNamespaceHandler implements NamespaceHandler {
private static final String _namespace = "http://www.w3.org/XML/1998/namespace";
@Override
@Nonnull
@CheckReturnValue
public String getNamespace() {
return _namespace;
}
@Override
@Nonnull
@CheckReturnValue
public String getAttributeValue(Element e, String attrName) {
return e.getAttribute(attrName);
}
@Override
@Nonnull
@CheckReturnValue
public String getAttributeValue(Element e, @Nullable String namespaceURI, String attrName) {
if (namespaceURI == TreeResolver.NO_NAMESPACE) {
return e.getAttribute(attrName);
} else if (namespaceURI == null) {
if (e.getLocalName() == null) { // No namespaces
return e.getAttribute(attrName);
} else {
NamedNodeMap attrs = e.getAttributes();
int l = attrs.getLength();
for (int i = 0; i < l; i++) {
Attr attr = (Attr)attrs.item(i);
if (attrName.equals(attr.getLocalName())) {
return attr.getValue();
}
}
return "";
}
} else {
return e.getAttributeNS(namespaceURI, attrName);
}
}
@Override
@Nullable
@CheckReturnValue
public String getClass(Element e) {
return null;
}
@Override
@Nullable
@CheckReturnValue
public String getID(Element e) {
return null;
}
@Override
@Nonnull
@CheckReturnValue
public String getLang(Element e) {
return e.getAttribute("lang");
}
@Override
@Nullable
@CheckReturnValue
public String getElementStyling(Element e) {
return null;
}
@Override
@Nullable
@CheckReturnValue
public String getNonCssStyling(Element e) {
return null;
}
@Override
@Nullable
@CheckReturnValue
public String getLinkUri(Element e) {
return null;
}
@Override
@Nullable
@CheckReturnValue
public String getDocumentTitle(Document doc) {
return null;
}
@Override
@Nullable
@CheckReturnValue
public String getAnchorName(@Nullable Element e) {
return null;
}
@Override
@CheckReturnValue
public boolean isImageElement(Element e) {
return false;
}
@Override
@Nullable
@CheckReturnValue
public String getImageSourceURI(Element e) {
return null;
}
@Override
@CheckReturnValue
public boolean isFormElement(Element e) {
return false;
}
private static final Pattern _typePattern = Pattern.compile("type\\s?=\\s?");
private static final Pattern _hrefPattern = Pattern.compile("href\\s?=\\s?");
private static final Pattern _titlePattern = Pattern.compile("title\\s?=\\s?");
private static final Pattern _alternatePattern = Pattern.compile("alternate\\s?=\\s?");
private static final Pattern _mediaPattern = Pattern.compile("media\\s?=\\s?");
@Override
@Nonnull
@CheckReturnValue
public List getStylesheets(Document doc) {
List list = new ArrayList<>();
//get the processing-instructions (actually for XmlDocuments)
//type and href are required to be set
NodeList nl = doc.getChildNodes();
for (int i = 0, len = nl.getLength(); i < len; i++) {
Node node = nl.item(i);
if (node.getNodeType() != Node.PROCESSING_INSTRUCTION_NODE) continue;
ProcessingInstruction piNode = (ProcessingInstruction) node;
if (!piNode.getTarget().equals("xml-stylesheet")) continue;
StylesheetInfo info = new StylesheetInfo();
info.setOrigin(StylesheetInfo.AUTHOR);
String pi = piNode.getData();
Matcher m = _alternatePattern.matcher(pi);
if (m.matches()) {
int start = m.end();
String alternate = pi.substring(start + 1, pi.indexOf(pi.charAt(start), start + 1));
//TODO: handle alternate stylesheets
if (alternate.equals("yes")) continue;//DON'T get alternate stylesheets for now
}
m = _typePattern.matcher(pi);
if (m.find()) {
int start = m.end();
String type = pi.substring(start + 1, pi.indexOf(pi.charAt(start), start + 1));
//TODO: handle other stylesheet types
if (!type.equals("text/css")) continue;//for now
info.setType(type);
}
m = _hrefPattern.matcher(pi);
if (m.find()) {
int start = m.end();
String href = pi.substring(start + 1, pi.indexOf(pi.charAt(start), start + 1));
info.setUri(href);
}
m = _titlePattern.matcher(pi);
if (m.find()) {
int start = m.end();
String title = pi.substring(start + 1, pi.indexOf(pi.charAt(start), start + 1));
info.setTitle(title);
}
m = _mediaPattern.matcher(pi);
if (m.find()) {
int start = m.end();
String media = pi.substring(start + 1, pi.indexOf(pi.charAt(start), start + 1));
info.setMedia(media);
} else {
info.addMedium("screen");
}
list.add(info);
}
return list;
}
@Override
@Nullable
public StylesheetInfo getDefaultStylesheet(StylesheetFactory factory) {
return null;
}
}