blob: a40f12b95281509efe46e88796d6344277565c42 [file] [log] [blame]
/* Copyright 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
package org.apache.xmlbeans.impl.xpath.jaxen;
import org.jaxen.BaseXPath;
import org.jaxen.JaxenException;
import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlObject;
import java.util.List;
import java.util.AbstractList;
/**
* Author: Cezar Andrei (cezar.andrei at bea.com)
* Date: Oct 10, 2003
*/
public class XBeansXPath extends BaseXPath
{
/** Construct given an XPath expression string.
*
* @param xpathExpr The XPath expression.
*
* @throws org.jaxen.JaxenException if there is a syntax error while
* parsing the expression.
*/
public XBeansXPath(String xpathExpr) throws JaxenException
{
super( xpathExpr, XBeansNavigator.getInstance() );
}
/** Select all nodes that are selectable by this XPath
* expression. If multiple nodes match, multiple nodes
* will be returned.
*
* <p>
* <b>NOTE:</b> In most cases, nodes will be returned
* in document-order, as defined by the XML Canonicalization
* specification. The exception occurs when using XPath
* expressions involving the <code>union</code> operator
* (denoted with the pipe '|' character).
* </p>
*
* @param node The node, nodeset or Context object for evaluation. This value can be null.
*
* @return The <code>node-set</code> of all items selected
* by this XPath expression.
*
* @see #selectSingleNode
*/
public List selectNodes(Object node) throws JaxenException
{
XmlCursor xc;
if (node instanceof XmlObject)
{
xc = ((XmlObject)node).newCursor();
}
else if (node instanceof XmlCursor)
{
xc = ((XmlCursor)node).newCursor();
}
else
throw new IllegalArgumentException("node must be an XmlObject or an XmlCursor, found: " + node.getClass());
((XBeansNavigator)getNavigator()).setCursor(xc);
return new ListImpl(super.selectNodes( XBeansNavigator.getBookmarkInThisPlace(xc) ));
}
private static class ListImpl extends AbstractList
{
private List _results;
private ListImpl(List results)
{
_results = results;
}
public Object get(int index)
{
if (_results==null)
return null;
return ((XBeansNavigator.JaxenNode)_results.get(index)).createCursor();
}
public int size()
{
return (_results==null ? 0 : _results.size());
}
}
}