elemliteralresult.java
来自「java jdk 1.4的源码」· Java 代码 · 共 773 行 · 第 1/2 页
JAVA
773 行
/* * The Apache Software License, Version 1.1 * * * Copyright (c) 1999 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Xalan" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation and was * originally based on software copyright (c) 1999, Lotus * Development Corporation., http://www.lotus.com. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */package org.apache.xalan.templates;//import org.w3c.dom.*;import org.apache.xml.dtm.DTM;import org.xml.sax.*;import org.xml.sax.helpers.*;import java.util.StringTokenizer;import org.apache.xml.utils.QName;import org.apache.xml.utils.NameSpace;import org.apache.xpath.XPathContext;import org.apache.xml.utils.StringToStringTable;import org.apache.xml.utils.NameSpace;import org.apache.xml.utils.StringVector;import org.apache.xalan.res.XSLTErrorResources;import org.apache.xalan.transformer.TransformerImpl;import org.apache.xalan.transformer.ResultTreeHandler;import javax.xml.transform.TransformerException;import java.io.*;import java.util.*;/** * <meta name="usage" content="advanced"/> * Implement a Literal Result Element. * @see <a href="http://www.w3.org/TR/xslt#literal-result-element">literal-result-element in XSLT Specification</a> */public class ElemLiteralResult extends ElemUse{ /** * Tells if this element represents a root element * that is also the stylesheet element. * TODO: This should be a derived class. * @serial */ private boolean isLiteralResultAsStylesheet = false; /** * Set whether this element represents a root element * that is also the stylesheet element. * * * @param b boolean flag indicating whether this element * represents a root element that is also the stylesheet element. */ public void setIsLiteralResultAsStylesheet(boolean b) { isLiteralResultAsStylesheet = b; } /** * Return whether this element represents a root element * that is also the stylesheet element. * * * @return boolean flag indicating whether this element * represents a root element that is also the stylesheet element. */ public boolean getIsLiteralResultAsStylesheet() { return isLiteralResultAsStylesheet; } /** * This function is called after everything else has been * recomposed, and allows the template to set remaining * values that may be based on some other property that * depends on recomposition. */ public void compose(StylesheetRoot sroot) throws TransformerException { super.compose(sroot); StylesheetRoot.ComposeState cstate = sroot.getComposeState(); java.util.Vector vnames = cstate.getVariableNames(); if (null != m_avts) { int nAttrs = m_avts.size(); for (int i = (nAttrs - 1); i >= 0; i--) { AVT avt = (AVT) m_avts.elementAt(i); avt.fixupVariables(vnames, cstate.getGlobalsSize()); } } } /** * The created element node will have the attribute nodes * that were present on the element node in the stylesheet tree, * other than attributes with names in the XSLT namespace. * @serial */ private Vector m_avts = null; /** List of attributes with the XSLT namespace. * @serial */ private Vector m_xslAttr = null; /** * Set a literal result attribute (AVTs only). * * @param avt literal result attribute to add (AVT only) */ public void addLiteralResultAttribute(AVT avt) { if (null == m_avts) m_avts = new Vector(); m_avts.addElement(avt); } /** * Set a literal result attribute (used for xsl attributes). * * @param att literal result attribute to add */ public void addLiteralResultAttribute(String att) { if (null == m_xslAttr) m_xslAttr = new Vector(); m_xslAttr.addElement(att); } /** * Set the "xml:space" attribute. * A text node is preserved if an ancestor element of the text node * has an xml:space attribute with a value of preserve, and * no closer ancestor element has xml:space with a value of default. * @see <a href="http://www.w3.org/TR/xslt#strip">strip in XSLT Specification</a> * @see <a href="http://www.w3.org/TR/xslt#section-Creating-Text">section-Creating-Text in XSLT Specification</a> * * @param v Enumerated value, either Constants.ATTRVAL_PRESERVE * or Constants.ATTRVAL_STRIP. */ public void setXmlSpace(AVT avt) { // This function is a bit-o-hack, I guess... addLiteralResultAttribute(avt); String val = avt.getSimpleString(); if(val.equals("default")) { super.setXmlSpace(Constants.ATTRVAL_STRIP); } else if(val.equals("preserve")) { super.setXmlSpace(Constants.ATTRVAL_PRESERVE); } // else maybe it's a real AVT, so we can't resolve it at this time. } /** * Get a literal result attribute by name. * * @param name Name of literal result attribute to get * * @return literal result attribute (AVT) */ public AVT getLiteralResultAttribute(String name) { if (null != m_avts) { int nAttrs = m_avts.size(); for (int i = (nAttrs - 1); i >= 0; i--) { AVT avt = (AVT) m_avts.elementAt(i); if (avt.getRawName().equals(name)) { return avt; } } // end for } return null; } /** * Get whether or not the passed URL is flagged by * the "extension-element-prefixes" or "exclude-result-prefixes" * properties. * @see <a href="http://www.w3.org/TR/xslt#extension-element">extension-element in XSLT Specification</a> * * @param prefix non-null reference to prefix that might be excluded.(not currently used) * @param uri reference to namespace that prefix maps to * * @return true if the prefix should normally be excluded. */ public boolean containsExcludeResultPrefix(String prefix, String uri) { if (uri == null || (null == m_excludeResultPrefixes && null == m_ExtensionElementURIs) ) return super.containsExcludeResultPrefix(prefix, uri); if (prefix.length() == 0) prefix = Constants.ATTRVAL_DEFAULT_PREFIX; // This loop is ok here because this code only runs during // stylesheet compile time. if(m_excludeResultPrefixes!=null) for (int i =0; i< m_excludeResultPrefixes.size(); i++) { if (uri.equals(getNamespaceForPrefix(m_excludeResultPrefixes.elementAt(i)))) return true; } // JJK Bugzilla 1133: Also check locally-scoped extensions if(m_ExtensionElementURIs!=null && m_ExtensionElementURIs.contains(uri)) return true; return super.containsExcludeResultPrefix(prefix, uri); } /** * Augment resolvePrefixTables, resolving the namespace aliases once * the superclass has resolved the tables. * * @throws TransformerException */ public void resolvePrefixTables() throws TransformerException { super.resolvePrefixTables(); StylesheetRoot stylesheet = getStylesheetRoot(); if ((null != m_namespace) && (m_namespace.length() > 0)) { NamespaceAlias nsa = stylesheet.getNamespaceAliasComposed(m_namespace); if (null != nsa) { m_namespace = nsa.getResultNamespace(); // String resultPrefix = nsa.getResultPrefix(); String resultPrefix = nsa.getStylesheetPrefix(); // As per xsl WG, Mike Kay if ((null != resultPrefix) && (resultPrefix.length() > 0)) m_rawName = resultPrefix + ":" + m_localName; else m_rawName = m_localName; } } if (null != m_avts) { int n = m_avts.size(); for (int i = 0; i < n; i++) { AVT avt = (AVT) m_avts.elementAt(i); // Should this stuff be a method on AVT? String ns = avt.getURI(); if ((null != ns) && (ns.length() > 0)) { NamespaceAlias nsa = stylesheet.getNamespaceAliasComposed(m_namespace); // %REVIEW% ns? if (null != nsa) { String namespace = nsa.getResultNamespace(); // String resultPrefix = nsa.getResultPrefix(); String resultPrefix = nsa.getStylesheetPrefix(); // As per XSL WG String rawName = avt.getName(); if ((null != resultPrefix) && (resultPrefix.length() > 0)) rawName = resultPrefix + ":" + rawName; avt.setURI(namespace); avt.setRawName(rawName); } } } } } /** * Return whether we need to check namespace prefixes * against the exclude result prefixes or extensions lists. * Note that this will create a new prefix table if one * has not been created already. * * NEEDSDOC ($objectName$) @return */ boolean needToCheckExclude() { if (null == m_excludeResultPrefixes && null == m_prefixTable && m_ExtensionElementURIs==null // JJK Bugzilla 1133 ) return false; else { // Create a new prefix table if one has not already been created. if (null == m_prefixTable) m_prefixTable = new Vector(); return true; } } /** * The namespace of the element to be created. * @serial */ private String m_namespace; /** * Set the namespace URI of the result element to be created. * Note that after resolvePrefixTables has been called, this will * return the aliased result namespace, not the original stylesheet * namespace. * * @param ns The Namespace URI, or the empty string if the * element has no Namespace URI. */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?