1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
/* Expr.java --
Copyright (C) 2004,2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU Classpath 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package gnu.xml.xpath;
import java.io.IOException;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Set;
import java.util.StringTokenizer;
import javax.xml.namespace.QName;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathExpression;
import javax.xml.xpath.XPathExpressionException;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
/**
* An XPath expression.
* This can be evaluated in the context of a node to produce a result.
*
* @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>
*/
public abstract class Expr
implements XPathExpression
{
protected static final Comparator documentOrderComparator =
new DocumentOrderComparator();
protected static final DecimalFormat decimalFormat =
new DecimalFormat("####################################################" +
".####################################################",
new DecimalFormatSymbols(Locale.US));
static class ExprNodeSet implements NodeList
{
private ArrayList list;
ExprNodeSet(Collection collection)
{
if (collection instanceof ArrayList)
list = (ArrayList) collection;
else
list = new ArrayList(collection);
}
public int getLength()
{
return list.size();
}
public Node item(int index)
{
try
{
return (Node) list.get(index);
}
catch (ArrayIndexOutOfBoundsException e)
{
return null;
}
}
}
public Object evaluate(Object item, QName returnType)
throws XPathExpressionException
{
Object ret = null;
Node context = null;
if (item instanceof Node)
{
context = (Node) item;
ret = evaluate(context, 1, 1);
if (XPathConstants.STRING == returnType &&
!(ret instanceof String))
{
ret = _string(context, ret);
}
else if (XPathConstants.NUMBER == returnType &&
!(ret instanceof Double))
{
ret = new Double(_number(context, ret));
}
else if (XPathConstants.BOOLEAN == returnType &&
!(ret instanceof Boolean))
{
ret = _boolean(context, ret) ? Boolean.TRUE : Boolean.FALSE;
}
else if (XPathConstants.NODE == returnType)
{
if (ret instanceof Collection)
{
Collection ns = (Collection) ret;
switch (ns.size())
{
case 0:
ret = null;
break;
case 1:
ret = (Node) ns.iterator().next();
break;
default:
throw new XPathExpressionException("multiple nodes in node-set");
}
}
else if (ret != null)
{
throw new XPathExpressionException("return value is not a node-set");
}
}
else if (XPathConstants.NODESET == returnType)
{
if (ret != null && !(ret instanceof Collection))
{
throw new XPathExpressionException("return value is not a node-set");
}
if (ret != null)
ret = new ExprNodeSet((Collection) ret);
}
}
return ret;
}
public String evaluate(Object item)
throws XPathExpressionException
{
return (String) evaluate(item, XPathConstants.STRING);
}
public Object evaluate(InputSource source, QName returnType)
throws XPathExpressionException
{
try
{
DocumentBuilderFactory factory =
new gnu.xml.dom.JAXPFactory();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(source);
return evaluate(doc, returnType);
}
catch (ParserConfigurationException e)
{
throw new XPathExpressionException(e);
}
catch (SAXException e)
{
throw new XPathExpressionException(e);
}
catch (IOException e)
{
throw new XPathExpressionException(e);
}
}
public String evaluate(InputSource source)
throws XPathExpressionException
{
return (String) evaluate(source, XPathConstants.STRING);
}
public abstract Object evaluate(Node context, int pos, int len);
public abstract Expr clone(Object context);
public abstract boolean references(QName var);
/* -- 4.1 Node Set Functions -- */
/**
* The id function selects elements by their unique ID.
* When the argument to id is of type node-set, then the result is
* the union of the result of applying id to the string-value of each of
* the nodes in the argument node-set. When the argument to id is of any
* other type, the argument is converted to a string as if by a call to
* the string function; the string is split into a whitespace-separated
* list of tokens (whitespace is any sequence of characters matching the
* production S); the result is a node-set containing the elements in the
* same document as the context node that have a unique ID equal to any of
* the tokens in the list.
*/
public static Collection _id(Node context, Object object)
{
Set ret = new HashSet();
if (object instanceof Collection)
{
Collection nodeSet = (Collection) object;
for (Iterator i = nodeSet.iterator(); i.hasNext(); )
{
String string = stringValue((Node) i.next());
ret.addAll(_id (context, string));
}
}
else
{
Document doc = (context instanceof Document) ? (Document) context :
context.getOwnerDocument();
String string = _string(context, object);
StringTokenizer st = new StringTokenizer(string, " \t\r\n");
while (st.hasMoreTokens())
{
Node element = doc.getElementById(st.nextToken());
if (element != null)
{
ret.add(element);
}
}
}
return ret;
}
/**
* The local-name function returns the local part of the expanded-name of
* the node in the argument node-set that is first in document order. If
* the argument node-set is empty or the first node has no expanded-name,
* an empty string is returned. If the argument is omitted, it defaults to
* a node-set with the context node as its only member.
*/
public static String _local_name(Node context, Collection nodeSet)
{
if (nodeSet == null || nodeSet.isEmpty())
return "";
Node node = firstNode(nodeSet);
String ret = node.getLocalName();
return (ret == null) ? "" : ret;
}
/**
* The namespace-uri function returns the namespace URI of the
* expanded-name of the node in the argument node-set that is first in
* document order. If the argument node-set is empty, the first node has
* no expanded-name, or the namespace URI of the expanded-name is null, an
* empty string is returned. If the argument is omitted, it defaults to a
* node-set with the context node as its only member.
*/
public static String _namespace_uri(Node context, Collection nodeSet)
{
if (nodeSet == null || nodeSet.isEmpty())
return "";
Node node = firstNode(nodeSet);
String ret = node.getNamespaceURI();
return (ret == null) ? "" : ret;
}
/**
* The name function returns a string containing a QName representing the
* expanded-name of the node in the argument node-set that is first in
* document order. The QName must represent the expanded-name with respect
* to the namespace declarations in effect on the node whose expanded-name
* is being represented. Typically, this will be the QName that occurred
* in the XML source. This need not be the case if there are namespace
* declarations in effect on the node that associate multiple prefixes
* with the same namespace. However, an implementation may include
* information about the original prefix in its representation of nodes;
* in this case, an implementation can ensure that the returned string is
* always the same as the QName used in the XML source. If the argument
* node-set is empty or the first node has no expanded-name, an empty
* string is returned. If the argument it omitted, it defaults to a
* node-set with the context node as its only member.
*/
public static String _name(Node context, Collection nodeSet)
{
if (nodeSet == null || nodeSet.isEmpty())
return "";
Node node = firstNode(nodeSet);
String ret = null;
switch (node.getNodeType())
{
case Node.ATTRIBUTE_NODE:
case Node.ELEMENT_NODE:
case Node.PROCESSING_INSTRUCTION_NODE:
ret = node.getNodeName();
}
return (ret == null) ? "" : ret;
}
/**
* Returns the first node in the set in document order.
*/
static Node firstNode(Collection nodeSet)
{
List list = new ArrayList(nodeSet);
Collections.sort(list, documentOrderComparator);
return (Node) list.get(0);
}
/* -- 4.2 String Functions -- */
/**
* Implementation of the XPath <code>string</code> function.
*/
public static String _string(Node context, Object object)
{
if (object == null)
{
return stringValue(context);
}
if (object instanceof String)
{
return (String) object;
}
if (object instanceof Boolean)
{
return object.toString();
}
if (object instanceof Double)
{
double d = ((Double) object).doubleValue();
if (Double.isNaN(d))
{
return "NaN";
}
else if (d == 0.0d)
{
return "0";
}
else if (Double.isInfinite(d))
{
if (d < 0)
{
return "-Infinity";
}
else
{
return "Infinity";
}
}
else
{
String ret = decimalFormat.format(d);
if (ret.endsWith (".0"))
{
ret = ret.substring(0, ret.length() - 2);
}
return ret;
}
}
if (object instanceof Collection)
{
Collection nodeSet = (Collection) object;
if (nodeSet.isEmpty())
{
return "";
}
Node node = firstNode(nodeSet);
return stringValue(node);
}
throw new IllegalArgumentException(object.toString());
}
/* -- 4.3 Boolean Functions -- */
/**
* Implementation of the XPath <code>boolean</code> function.
*/
public static boolean _boolean(Node context, Object object)
{
if (object instanceof Boolean)
{
return ((Boolean) object).booleanValue();
}
if (object instanceof Double)
{
Double value = (Double) object;
if (value.isNaN())
return false;
return value.doubleValue() != 0.0;
}
if (object instanceof String)
{
return ((String) object).length() != 0;
}
if (object instanceof Collection)
{
return ((Collection) object).size() != 0;
}
return false; // TODO user defined types
}
/* -- 4.4 Number Functions -- */
/**
* Implementation of the XPath <code>number</code> function.
*/
public static double _number(Node context, Object object)
{
if (object == null)
{
object = Collections.singleton(context);
}
if (object instanceof Double)
{
return ((Double) object).doubleValue();
}
if (object instanceof Boolean)
{
return ((Boolean) object).booleanValue() ? 1.0 : 0.0;
}
if (object instanceof Collection)
{
// Convert node-set to string
object = stringValue((Collection) object);
}
if (object instanceof String)
{
String string = ((String) object).trim();
try
{
return Double.parseDouble(string);
}
catch (NumberFormatException e)
{
return Double.NaN;
}
}
return Double.NaN; // TODO user-defined types
}
/**
* Computes the XPath string-value of the specified node-set.
*/
public static String stringValue(Collection nodeSet)
{
StringBuffer buf = new StringBuffer();
for (Iterator i = nodeSet.iterator(); i.hasNext(); )
{
buf.append(stringValue((Node) i.next()));
}
return buf.toString();
}
/**
* Computes the XPath string-value of the specified node.
*/
public static String stringValue(Node node)
{
return stringValue(node, false);
}
static String stringValue(Node node, boolean elementMode)
{
switch (node.getNodeType())
{
case Node.DOCUMENT_NODE: // 5.1 Root Node
case Node.DOCUMENT_FRAGMENT_NODE:
case Node.ELEMENT_NODE: // 5.2 Element Nodes
StringBuffer buf = new StringBuffer();
for (Node ctx = node.getFirstChild(); ctx != null;
ctx = ctx.getNextSibling())
{
buf.append(stringValue(ctx, true));
}
return buf.toString();
case Node.TEXT_NODE: // 5.7 Text Nodes
case Node.CDATA_SECTION_NODE:
return node.getNodeValue();
case Node.ATTRIBUTE_NODE: // 5.3 Attribute Nodes
case Node.PROCESSING_INSTRUCTION_NODE: // 5.5 Processing Instruction
case Node.COMMENT_NODE: // 5.6 Comment Nodes
if (!elementMode)
{
return node.getNodeValue();
}
default:
return "";
}
}
static int intValue(Object val)
{
if (val instanceof Double)
{
Double d = (Double) val;
return d.isNaN() ? 0 : d.intValue();
}
else
return (int) Math.ceil(_number(null, val));
}
}
|