/*
* reserved comment block
* DO NOT REMOVE OR ALTER!
*/
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* $Id: Extensions.java,v 1.2.4.1 2005/09/10 18:53:32 jeffsuttor Exp $
*/
/**
* This class contains many of the Xalan-supplied extensions.
* It is accessed by specifying a namespace URI as follows:
* <pre>
* xmlns:xalan="http://xml.apache.org/xalan"
* </pre>
* @xsl.usage general
*/
public class Extensions
{
/**
* Constructor Extensions
*
*/
/**
* This method is an extension that implements as a Xalan extension
* the node-set function also found in xt and saxon.
* If the argument is a Result Tree Fragment, then <code>nodeset</code>
* returns a node-set consisting of a single root node as described in
* section 11.1 of the XSLT 1.0 Recommendation. If the argument is a
* node-set, <code>nodeset</code> returns a node-set. If the argument
* is a string, number, or boolean, then <code>nodeset</code> returns
* a node-set consisting of a single root node with a single text node
* child that is the result of calling the XPath string() function on the
* passed parameter. If the argument is anything else, then a node-set
* is returned consisting of a single root node with a single text node
* child that is the result of calling the java <code>toString()</code>
* method on the passed argument.
* Most of the
* actual work here is done in <code>MethodResolver</code> and
* <code>XRTreeFrag</code>.
* @param myProcessor Context passed by the extension processor
* @param rtf Argument in the stylesheet to the nodeset extension function
*
* NEEDSDOC ($objectName$) @return
*/
{
if (rtf instanceof NodeIterator)
{
}
else
{
{
}
{
}
{
}
else
{
}
// This no longer will work right since the DTM.
// Document myDoc = myProcessor.getContextNode().getOwnerDocument();
try
{
}
catch(ParserConfigurationException pce)
{
}
}
}
/**
* Returns the intersection of two node-sets.
*
* @param nl1 NodeList for first node-set
* @param nl2 NodeList for second node-set
* @return a NodeList containing the nodes in nl1 that are also in nl2
*
* Note: The usage of this extension function in the xalan namespace
* is deprecated. Please use the same function in the EXSLT sets extension
*/
{
}
/**
* Returns the difference between two node-sets.
*
* @param nl1 NodeList for first node-set
* @param nl2 NodeList for second node-set
* @return a NodeList containing the nodes in nl1 that are not in nl2
*
* Note: The usage of this extension function in the xalan namespace
* is deprecated. Please use the same function in the EXSLT sets extension
*/
{
}
/**
* Returns node-set containing distinct string values.
*
* @param nl NodeList for node-set
* @return a NodeList with nodes from nl containing distinct string values.
* In other words, if more than one node in nl contains the same string value,
* only include the first such node found.
*
* Note: The usage of this extension function in the xalan namespace
* is deprecated. Please use the same function in the EXSLT sets extension
*/
{
}
/**
* Returns true if both node-sets contain the same set of nodes.
*
* @param nl1 NodeList for first node-set
* @param nl2 NodeList for second node-set
* @return true if nl1 and nl2 contain exactly the same set of nodes.
*/
{
return false;
{
return false;
}
return true;
}
/**
* Returns the result of evaluating the argument as a string containing
* an XPath expression. Used where the XPath expression is not known until
* run-time. The expression is evaluated as if the run-time value of the
* argument appeared in place of the evaluate function call at compile time.
*
* @param myContext an <code>ExpressionContext</code> passed in by the
* extension mechanism. This must be an XPathContext.
* @param xpathExpr The XPath expression to be evaluated.
* @return the XObject resulting from evaluating the XPath
*
* @throws SAXNotSupportedException
*
* Note: The usage of this extension function in the xalan namespace
* is deprecated. Please use the same function in the EXSLT dynamic extension
*/
throws SAXNotSupportedException
{
}
/**
* Returns a NodeSet containing one text node for each token in the first argument.
* Delimiters are specified in the second argument.
* Tokens are determined by a call to <code>StringTokenizer</code>.
* If the first argument is an empty string or contains only delimiters, the result
* will be an empty NodeSet.
*
* Contributed to XalanJ1 by <a href="mailto:benoit.cerrina@writeme.com">Benoit Cerrina</a>.
*
* @param toTokenize The string to be split into text tokens.
* @param delims The delimiters to use.
* @return a NodeSet as described above.
*/
{
synchronized (doc)
{
while (lTokenizer.hasMoreTokens())
{
}
}
return resultSet;
}
/**
* Returns a NodeSet containing one text node for each token in the first argument.
* Delimiters are whitespace. That is, the delimiters that are used are tab (	),
* linefeed (
), return (
), and space ( ).
* Tokens are determined by a call to <code>StringTokenizer</code>.
* If the first argument is an empty string or contains only delimiters, the result
* will be an empty NodeSet.
*
* Contributed to XalanJ1 by <a href="mailto:benoit.cerrina@writeme.com">Benoit Cerrina</a>.
*
* @param toTokenize The string to be split into text tokens.
* @return a NodeSet as described above.
*/
{
}
/**
* Return a Node of basic debugging information from the
* EnvironmentCheck utility about the Java environment.
*
* <p>Simply calls the {@link com.sun.org.apache.xalan.internal.xslt.EnvironmentCheck}
* utility to grab info about the Java environment and CLASSPATH,
* etc., and then returns the resulting Node. Stylesheets can
* then maniuplate this data or simply xsl:copy-of the Node. Note
* that we first attempt to load the more advanced
* org.apache.env.Which utility by reflection; only if that fails
* to we still use the internal version. Which is available from
* <a href="http://xml.apache.org/commons/">http://xml.apache.org/commons/</a>.</p>
*
* <p>We throw a WrappedRuntimeException in the unlikely case
* that reading information from the environment throws us an
* exception. (Is this really the best thing to do?)</p>
*
* @param myContext an <code>ExpressionContext</code> passed in by the
* extension mechanism. This must be an XPathContext.
* @return a Node as described above.
*/
{
try
{
}
catch(ParserConfigurationException pce)
{
}
try
{
// First use reflection to try to load Which, which is a
// better version of EnvironmentCheck
if (null != resultNode)
return resultNode;
// If reflection failed, fallback to our internal EnvironmentCheck
envChecker = null;
}
catch(Exception e)
{
}
return resultNode;
}
/**
* Private worker method to attempt to use org.apache.env.Which.
*
* @param myContext an <code>ExpressionContext</code> passed in by the
* extension mechanism. This must be an XPathContext.
* @param factoryDocument providing createElement services, etc.
* @return a Node with environment info; null if any error
*/
{
try
{
// Use reflection to try to find xml-commons utility 'Which'
return null;
// Fully qualify names since this is the only method they're used in
// Call the method with our Hashtable, common options, and ignore return value
// Create a parent to hold the report and append hash to it
return resultNode;
}
catch (Throwable t)
{
// Simply return null; no need to report error
return null;
}
}
/**
* This class is not loaded until first referenced (see Java Language
*
* The static members are created when this class is first referenced, as a
* lazy initialization not needing checking against null or any
* synchronization.
*
*/
private static class DocumentHolder
{
// Reuse the Document object to reduce memory usage.
static
{
try
{
}
catch(ParserConfigurationException pce)
{
}
}
}
}