/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 .
*/
if ((m_nsmap.find(aPrefix))->second == aURI) {
m_nsmap.erase(aPrefix);
}
}
// register all namespaces stored in the namespace list for this object // with the current xpath evaluation context staticvoid lcl_registerNamespaces(
xmlXPathContextPtr ctx, const nsmap_t& nsmap)
{
OString oprefix, ouri; for (constauto& rEntry : nsmap)
{
oprefix = OUStringToOString(rEntry.first, RTL_TEXTENCODING_UTF8);
ouri = OUStringToOString(rEntry.second, RTL_TEXTENCODING_UTF8);
xmlChar const *p = reinterpret_cast<xmlChar const *>(oprefix.getStr());
xmlChar const *u = reinterpret_cast<xmlChar const *>(ouri.getStr());
(void)xmlXPathRegisterNs(ctx, p, u);
}
}
// get all ns decls on a node (and parent nodes, if any) staticvoid lcl_collectNamespaces(
nsmap_t & rNamespaces, Reference< XNode > const& xNamespaceNode)
{
DOM::CNode *const pCNode(dynamic_cast<DOM::CNode*>(xNamespaceNode.get())); if (!pCNode) { throw RuntimeException(u"Could not use the namespace node in order to collect namespace declarations."_ustr); }
// register function and variable lookup functions with the current // xpath evaluation context staticvoid lcl_registerExtensions(
xmlXPathContextPtr ctx, const extensions_t& extensions)
{ for (constauto& rExtensionRef : extensions)
{
Libxml2ExtensionHandle aHandle = rExtensionRef->getLibxml2ExtensionHandle(); if ( aHandle.functionLookupFunction != 0 )
{
xmlXPathRegisterFuncLookup(ctx, reinterpret_cast<xmlXPathFuncLookupFunc>(
sal::static_int_cast<sal_IntPtr>(aHandle.functionLookupFunction)), reinterpret_cast<void*>(
sal::static_int_cast<sal_IntPtr>(aHandle.functionData)));
} if ( aHandle.variableLookupFunction != 0 )
{
xmlXPathRegisterVariableLookup(ctx, reinterpret_cast<xmlXPathVariableLookupFunc>(
sal::static_int_cast<sal_IntPtr>(aHandle.variableLookupFunction)), reinterpret_cast<void*>(
sal::static_int_cast<sal_IntPtr>(aHandle.variableData)));
}
}
}
/** * Use an XPath string to select a nodelist.
*/
Reference< XNodeList > SAL_CALL CXPathAPI::selectNodeList( const Reference< XNode >& contextNode, const OUString& expr)
{
Reference< XXPathObject > xobj = eval(contextNode, expr); return xobj->getNodeList();
}
/** * same as selectNodeList but registers all name space declarations found on namespaceNode
*/
Reference< XNodeList > SAL_CALL CXPathAPI::selectNodeListNS( const Reference< XNode >& contextNode, const OUString& expr, const Reference< XNode >& namespaceNode)
{
lcl_collectRegisterNamespaces(*this, namespaceNode); return selectNodeList(contextNode, expr);
}
/** * Same as selectNodeList but returns the first node (if any)
*/
Reference< XNode > SAL_CALL CXPathAPI::selectSingleNode( const Reference< XNode >& contextNode, const OUString& expr)
{
Reference< XNodeList > aList = selectNodeList(contextNode, expr);
Reference< XNode > aNode = aList->item(0); return aNode;
}
/** * Same as selectSingleNode but registers all namespaces declared on * namespaceNode
*/
Reference< XNode > SAL_CALL CXPathAPI::selectSingleNodeNS( const Reference< XNode >& contextNode, const OUString& expr, const Reference< XNode >& namespaceNode )
{
lcl_collectRegisterNamespaces(*this, namespaceNode); return selectSingleNode(contextNode, expr);
}
static OUString make_error_message(const xmlError* pError)
{
OUStringBuffer buf; if (pError) { if (pError->message) {
buf.appendAscii(pError->message);
} int line = pError->line; if (line) {
buf.append("Line: " + OUString::number(static_cast<sal_Int32>(line)) + "\n");
} int column = pError->int2; if (column) {
buf.append("Column: " + OUString::number(static_cast<sal_Int32>(column)) + "\n");
}
} else {
buf.append("no error argument!");
}
OUString msg = buf.makeStringAndClear(); return msg;
}
// get the node and document
::rtl::Reference<DOM::CDocument> const pCDoc( dynamic_cast<DOM::CDocument*>(xContextNode->getOwnerDocument().get())); if (!pCDoc.is()) { throw RuntimeException(u"Interface pointer for the owner document of the xContextNode does not exist."_ustr); }
DOM::CNode *const pCNode = dynamic_cast<DOM::CNode*>(xContextNode.get()); if (!pCNode) { throw RuntimeException(u"xContextNode interface pointer does not exist."_ustr); }
::osl::MutexGuard const g(pCDoc->GetMutex()); // lock the document!
xmlNodePtr const pNode = pCNode->GetNodePtr(); if (!pNode) { throw RuntimeException(u"Node pointer for xContextNode does not exist."_ustr); }
xmlDocPtr pDoc = pNode->doc;
/* NB: workaround for #i87252#: libxml < 2.6.17 considers it an error if the context node is the empty document (i.e. its xpathCtx->doc has no children). libxml 2.6.17 does not consider it an error. Unfortunately, old libxml prints an error message to stderr, which (afaik) cannot be turned off in this case, so we handle it.
*/ if (!pDoc->children) { throw XPathException();
}
/** * same as eval but registers all namespace declarations found on namespaceNode
*/
Reference< XXPathObject > SAL_CALL CXPathAPI::evalNS( const Reference< XNode >& contextNode, const OUString& expr, const Reference< XNode >& namespaceNode)
{
lcl_collectRegisterNamespaces(*this, namespaceNode); return eval(contextNode, expr);
}
/** * uses the service manager to create an instance of the service denoted by aName. * If the returned object implements the XXPathExtension interface, it is added to the list * of extensions that are used when evaluating XPath strings with this XPathAPI instance
*/ void SAL_CALL CXPathAPI::registerExtension( const OUString& aName)
{
std::scoped_lock const g(m_Mutex);
// get extension from service manager
Reference< XXPathExtension > const xExtension(
m_xContext->getServiceManager()->createInstanceWithContext(aName, m_xContext), UNO_QUERY_THROW);
m_extensions.push_back(xExtension);
}
/** * registers the given extension instance to be used by XPath evaluations performed through this * XPathAPI instance
*/ void SAL_CALL CXPathAPI::registerExtensionInstance(
Reference< XXPathExtension> const& xExtension)
{ if (!xExtension.is()) { throw RuntimeException(u"Extension instance xExtension to be used by XPath does not exist."_ustr);
}
std::scoped_lock const g(m_Mutex);
m_extensions.push_back( xExtension );
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.