/usr/include/xalanc/XPath/XPathEvaluator.hpp is in libxalan-c-dev 1.11-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#if !defined(XPATHEVALUATOR_HEADER_GUARD_1357924680)
#define XPATHEVALUATOR_HEADER_GUARD_1357924680
#include <xalanc/XPath/XPathDefinitions.hpp>
#if defined(XALAN_AUTO_PTR_REQUIRES_DEFINITION)
#include <xalanc/XPath/XObjectFactory.hpp>
#include <xalanc/XPath/XPathFactoryDefault.hpp>
#include <xalanc/XPath/XPathConstructionContextDefault.hpp>
#include <xalanc/XPath/XPathExecutionContextDefault.hpp>
#endif
#include <xalanc/Include/XalanMemMgrAutoPtr.hpp>
#include <xalanc/XalanDOM/XalanDOMString.hpp>
XALAN_CPP_NAMESPACE_BEGIN
#if !defined(XALAN_AUTO_PTR_REQUIRES_DEFINITION)
class XObjectFactory;
class XPathFactoryDefault;
class XPathConstructionContextDefault;
class XPathExecutionContextDefault;
#endif
class DOMSupport;
class NodeRefList;
class PrefixResolver;
class XalanNode;
class XalanElement;
class XObjectPtr;
class XPath;
class XPathEnvSupport;
class XPathExecutionContext;
class XALAN_XPATH_EXPORT XPathEvaluator
{
public:
// Static initializer to be called before any instances are
// created. The call is _not_ thread-safe, you must only call
// it once, unless you have called terminate previously, and
// you want to re-initialize the library.
static void
initialize(MemoryManager& theManager XALAN_DEFAULT_MEMMGR);
// Static terminator to be called after all instances
// are destroyed. The call is _not_ thread-safe. Once
// terminated, you can call initialize() again, to
// re-initialize the library.
static void
terminate();
XPathEvaluator(MemoryManager& theManager XALAN_DEFAULT_MEMMGR);
~XPathEvaluator();
/**
* Evaluate the supplied XPath expression, within the given context. If
* the expression doesn't select a node, 0 is returned. If it selects
* more than one node, only the first is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param namespaceNode A node to use for namespace prefix resolution.
* @return A pointer to the node selected by the expression, if any.
*/
XalanNode*
selectSingleNode(
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath expression, within the given context. If
* the expression doesn't select a node, 0 is returned. If it selects
* more than one node, only the first is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return A pointer to the node selected by the expression, if any.
*/
XalanNode*
selectSingleNode(
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const PrefixResolver& prefixResolver);
/**
* Evaluate the supplied XPath, within the given context. If
* the expression doesn't select a node, 0 is returned. If it selects
* more than one node, only the first is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param namespaceNode A node to use for namespace prefix resolution.
* @return A pointer to the node selected by the expression, if any.
*/
XalanNode*
selectSingleNode(
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath, within the given context. If
* the expression doesn't select a node, 0 is returned. If it selects
* more than one node, only the first is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return A pointer to the node selected by the expression, if any.
*/
XalanNode*
selectSingleNode(
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const PrefixResolver& prefixResolver);
/**
* Evaluate the supplied XPath expression, within the given context. If
* the expression doesn't select a node, an empty list is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param namespaceNode A node to use for namespace prefix resolution.
* @return A list of selected nodes.
*/
NodeRefList&
selectNodeList(
NodeRefList& result,
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath expression, within the given context. If
* the expression doesn't select a node, an empty list is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return A list of selected nodes.
*/
NodeRefList&
selectNodeList(
NodeRefList& result,
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const PrefixResolver& prefixResolver);
/**
* Evaluate the supplied XPath, within the given context. If
* the expression doesn't select a node, an empty list is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param namespaceNode A node to use for namespace prefix resolution.
* @return A list of selected nodes.
*/
NodeRefList&
selectNodeList(
NodeRefList& result,
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath, within the given context. If
* the expression doesn't select a node, an empty list is returned.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return A list of selected nodes.
*/
NodeRefList&
selectNodeList(
NodeRefList& result,
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const PrefixResolver& prefixResolver);
/**
* Evaluate the supplied XPath expression, within the given context. The
* result is returned as a generalized object. The object will be
* destroyed when the user's copy of the returned XObjectPtr goes out of
* scope, or when the XPathEvaluator goes out of scope or another expression
* is evaluated.
*
* The user's XObjectPtr copy _must_ no longer be in scope when the XPathEvaluator
* instance goes out of scope, or another expression is evaluated.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param namespaceNode A node to use for namespace prefix resolution.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath expression, within the given context. The
* result is returned as a generalized object. The object will be
* destroyed when the user's copy of the returned XObjectPtr goes out of
* scope, or when the XPathEvaluator goes out of scope or another expression
* is evaluated.
*
* The user's XObjectPtr copy _must_ no longer be in scope when the XPathEvaluator
* instance goes out of scope, or another expression is evaluated.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const PrefixResolver& prefixResolver);
/**
* Evaluate the supplied XPath expression, within the given context. The
* result is returned as a generalized object. The object will be
* destroyed when the user's copy of the returned XObjectPtr goes out of
* scope, or when the XPathEvaluator goes out of scope or another expression
* is evaluated.
*
* The user's XObjectPtr copy _must_ no longer be in scope when the XPathEvaluator
* instance goes out of scope, or another expression is evaluated.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param namespaceNode A node to use for namespace prefix resolution.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const XalanElement* namespaceNode = 0);
/**
* Evaluate the supplied XPath expression, within the given context. The
* result is returned as a generalized object. The object will be
* destroyed when the user's copy of the returned XObjectPtr goes out of
* scope, or when the XPathEvaluator goes out of scope or another expression
* is evaluated.
*
* The user's XObjectPtr copy _must_ no longer be in scope when the XPathEvaluator
* instance goes out of scope, or another expression is evaluated.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath A reference to a compiled XPath expression.
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const PrefixResolver& prefixResolver);
/**
* Compile an XPath expression into an object which can be used multiple times.
* Call destroyXPath() when finished with the instance. Otherwise, the object
* will be destroyed when the XPathEvaluator instance goes out of scope. Since
* no PrefixResolver is supplied, the XPath expression may not contain any
* namespace prefixes.
*
* @param xpathString The XPath expression to evaluate
* @return A pointer to an XPath instance.
*/
XPath*
createXPath(const XalanDOMChar* xpathString);
/**
* Compile an XPath expression into an object which can be used multiple times.
* Call destroyXPath() when finished with the instance. Otherwise, the object
* will be destroyed when the XPathEvaluator instance goes out of scope.
*
* @param xpathString The XPath expression to evaluate
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param namespaceNode A node to use for namespace prefix resolution.
* @return A pointer to an XPath instance.
*/
XPath*
createXPath(
const XalanDOMChar* xpathString,
DOMSupport& domSupport,
const XalanElement* namespaceNode);
/**
* Compile an XPath expression into an object which can be used multiple times.
* Call destroyXPath() when finished with the instance. Otherwise, the object
* will be destroyed when the XPathEvaluator instance goes out of scope.
*
* @param xpathString The XPath expression to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @return A pointer to an XPath instance.
*/
XPath*
createXPath(
const XalanDOMChar* xpathString,
const PrefixResolver& prefixResolver);
/**
* Destory a compiled XPath instance. The instance must have
* been created using createXPath().
*
* @param theXPath The XPath instance to destroy
* @return true if the instance was successfully destroyed
*/
bool
destroyXPath(XPath* theXPath);
XPathExecutionContext&
getExecutionContext();
private:
/**
* A helper function to evaluate the supplied XPath expression, within
* the given context.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpathString The XPath expression to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @param envSupport The XPathEnvSupport instance to use.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XalanDOMChar* xpathString,
const PrefixResolver& prefixResolver,
XPathEnvSupport& envSupport);
/**
* A helper function to evaluate the supplied XPath expression, within
* the given context.
*
* @param domSupport An instance of the corresponding DOMSupport-derived for the DOM implementation being used.
* @param contextNode The source tree context node
* @param xpath The XPath to evaluate
* @param prefixResolver A prefix resolver instance to use for namespace prefix resolution.
* @param envSupport The XPathEnvSupport instance to use.
* @return The result of evaluting the XPath expression.
*/
XObjectPtr
evaluate(
DOMSupport& domSupport,
XalanNode* contextNode,
const XPath& xpath,
const PrefixResolver& prefixResolver,
XPathEnvSupport& envSupport);
// Data members...
const XalanMemMgrAutoPtr<XObjectFactory> m_xobjectFactory;
const XalanMemMgrAutoPtr<XPathFactoryDefault> m_xpathFactory;
const XalanMemMgrAutoPtr<XPathConstructionContextDefault> m_constructionContext;
const XalanMemMgrAutoPtr<XPathExecutionContextDefault> m_executionContext;
MemoryManager& m_memoryManager;
};
XALAN_CPP_NAMESPACE_END
#endif // XPATHEVALUATOR_HEADER_GUARD_1357924680
|