blob: faab9a3a3185b1688a3641572b4c5c9489319975 [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 2000 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xalan" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
#include "FunctionDocument.hpp"
#include <XalanDOM/XalanNode.hpp>
#include <XalanDOM/XalanDocument.hpp>
#include <PlatformSupport/DOMStringHelper.hpp>
#include <PlatformSupport/PrefixResolver.hpp>
#include <DOMSupport/DOMServices.hpp>
#include <XPath/XObjectFactory.hpp>
FunctionDocument::FunctionDocument()
{
}
FunctionDocument::~FunctionDocument()
{
}
typedef XPathExecutionContext::BorrowReturnMutableNodeRefList BorrowReturnMutableNodeRefList;
static void
getDoc(
XPathExecutionContext& executionContext,
const XalanDOMString& uri,
const XalanDOMString& base,
BorrowReturnMutableNodeRefList& mnl)
{
XalanDOMString localURI(uri);
XalanDocument* newDoc = executionContext.getSourceDocument(localURI);
if(newDoc == 0)
{
if(length(localURI) == 0)
{
assert(executionContext.getPrefixResolver() != 0);
localURI = executionContext.getPrefixResolver()->getURI();
}
try
{
newDoc = executionContext.parseXML(localURI, base);
}
catch(...)
{
}
if(newDoc == 0)
{
XalanDOMString theMessage(TranscodeFromLocalCodePage("Cannot load requested doc: "));
theMessage += localURI;
if (length(base) > 0)
{
theMessage += TranscodeFromLocalCodePage(" (Base URI: ");
theMessage += base;
theMessage += TranscodeFromLocalCodePage(")");
}
executionContext.warn(theMessage);
}
}
if(newDoc != 0)
{
mnl->addNodeInDocOrder(newDoc, executionContext);
}
}
inline void
getDoc(
XPathExecutionContext& executionContext,
const XalanDOMString& uri,
BorrowReturnMutableNodeRefList& mnl)
{
getDoc(executionContext, uri, XalanDOMString(), mnl);
}
inline void
getDoc(
XPathExecutionContext& executionContext,
const XalanDOMString& uri,
const XalanNode* resolver,
BorrowReturnMutableNodeRefList& mnl)
{
assert(resolver != 0);
const XalanDocument* const ownerDocument = XalanNode::DOCUMENT_NODE == resolver->getNodeType() ?
#if defined(XALAN_OLD_STYLE_CASTS)
(const XalanDocument*)resolver :
#else
static_cast<const XalanDocument*>(resolver) :
#endif
resolver->getOwnerDocument();
getDoc(executionContext, uri, executionContext.findURIFromDoc(ownerDocument), mnl);
}
XObjectPtr
FunctionDocument::execute(
XPathExecutionContext& executionContext,
XalanNode* context,
const XObjectPtr arg1,
const Locator* /* locator */) const
{
assert(arg1.null() == false);
if (arg1->getType() == XObject::eTypeNodeSet)
{
return doExecute(executionContext, context, arg1, 0, 1);
}
else
{
XalanDOMString base;
assert(executionContext.getPrefixResolver() != 0);
base = executionContext.getPrefixResolver()->getURI();
return doExecute(executionContext, context, arg1, &base, 1);
}
}
XObjectPtr
FunctionDocument::execute(
XPathExecutionContext& executionContext,
XalanNode* context,
const XObjectPtr arg1,
const XObjectPtr arg2,
const Locator* locator) const
{
assert(arg1.null() == false && arg2.null() == false);
XalanDOMString base;
if (context == 0)
{
executionContext.error(
"The document() function requires a non-null context node!",
context,
locator);
return XObjectPtr();
}
else
{
if(XObject::eTypeNodeSet == arg2->getType())
{
const NodeRefListBase& nodeset = arg2->nodeset();
if (nodeset.getLength() == 0)
{
executionContext.warn("Ignoring the empty node-set provided as the second argument to the function document().",
context);
assert(executionContext.getPrefixResolver() != 0);
base = executionContext.getPrefixResolver()->getURI();
}
else
{
XalanNode* const baseNode = nodeset.item(0);
assert(baseNode != 0);
XalanDocument* const baseDoc = XalanNode::DOCUMENT_NODE == baseNode->getNodeType() ?
#if defined(XALAN_OLD_STYLE_CASTS)
(XalanDocument*)baseNode :
#else
static_cast<XalanDocument*>(baseNode) :
#endif
baseNode->getOwnerDocument();
base = executionContext.findURIFromDoc(baseDoc);
}
}
else
{
base = arg2->str();
}
}
return doExecute(executionContext, context, arg1, &base, 2);
}
XObjectPtr
FunctionDocument::doExecute(
XPathExecutionContext& executionContext,
XalanNode* /* context */,
const XObjectPtr arg,
XalanDOMString* base,
int argCount) const
{
typedef XPathExecutionContext::BorrowReturnMutableNodeRefList BorrowReturnMutableNodeRefList;
// This list will hold the nodes...
BorrowReturnMutableNodeRefList mnl(executionContext);
const XObject::eObjectType theType = arg->getType();
const NodeRefListBase::size_type nRefs = XObject::eTypeNodeSet == theType ?
arg->nodeset().getLength()
: 1;
for(NodeRefListBase::size_type i = 0; i < nRefs; i++)
{
assert(XObject::eTypeNodeSet != theType ||
arg->nodeset().item(i) != 0);
const XalanNode* resolver = 0;
XalanDOMString ref;
if (theType != XObject::eTypeNodeSet)
{
ref = arg->str();
}
else
{
resolver = arg->nodeset().item(i);
assert(resolver != 0);
ref = DOMServices::getNodeData(*resolver);
}
// This is the case where the function was called with
// an empty string, which refers to the stylesheet itself.
if (nRefs == 1 && isEmpty(ref) == true && argCount == 1)
{
if (base != 0)
{
clear(*base);
}
ref = executionContext.getPrefixResolver()->getURI();
}
if(!isEmpty(ref))
{
// From http://www.ics.uci.edu/pub/ietf/uri/rfc1630.txt
// A partial form can be distinguished from an absolute form in that the
// latter must have a colon and that colon must occur before any slash
// characters. Systems not requiring partial forms should not use any
// unencoded slashes in their naming schemes. If they do, absolute URIs
// will still work, but confusion may result.
const XalanDOMString::size_type theLength = length(ref);
const XalanDOMString::size_type indexOfColon = indexOf(ref, XalanUnicode::charColon);
XalanDOMString::size_type indexOfSlash = indexOf(ref, XalanUnicode::charSolidus);
#if defined(WIN32)
const XalanDOMString::size_type indexOfBackSlash = indexOf(ref, XalanUnicode::charReverseSolidus);
if(indexOfBackSlash > indexOfSlash && indexOfBackSlash < theLength)
{
indexOfSlash = indexOfBackSlash;
}
#endif
if(indexOfColon < theLength &&
indexOfSlash < theLength &&
indexOfColon < indexOfSlash)
{
// The ref is absolute...
getDoc(executionContext, ref, mnl);
}
else
{
// The ref is relative. If there was a base URI
// provided, use that...
if (base != 0)
{
getDoc(executionContext, ref, *base, mnl);
}
else
{
// If there's no resolver, then try using the
// relative ref...
if (resolver == 0)
{
getDoc(executionContext, ref, mnl);
}
else
{
getDoc(executionContext, ref, resolver, mnl);
}
}
}
}
}
assert(mnl->checkForDuplicates() == false);
return executionContext.getXObjectFactory().createNodeSet(mnl);
}
#if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
Function*
#else
FunctionDocument*
#endif
FunctionDocument::clone() const
{
return new FunctionDocument(*this);
}
const XalanDOMString
FunctionDocument::getError() const
{
return StaticStringToDOMString(XALAN_STATIC_UCODE_STRING("The document() function accepts one or two arguments!"));
}