blob: 9efcb12bdadeec1f5223c22bf3e503ec7a143036 [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999-2002 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/>.
*/
#if !defined(XPATHFUNCTIONTABLE_HEADER_GUARD_1357924680)
#define XPATHFUNCTIONTABLE_HEADER_GUARD_1357924680
// Base include file. Must be first.
#include <XPath/XPathDefinitions.hpp>
#include <algorithm>
#include <map>
#include <XalanDOM/XalanDOMString.hpp>
#include <Include/STLHelper.hpp>
#include <XPath/Function.hpp>
#include <XPath/XalanXPathException.hpp>
/**
* Exception class thrown when an unknown function is encountered
*/
class XALAN_XPATH_EXPORT XPathExceptionFunctionNotAvailable : public XalanXPathException
{
public:
XPathExceptionFunctionNotAvailable(
int theFunctionName,
const XalanNode* styleNode = 0);
XPathExceptionFunctionNotAvailable(
const XalanDOMString& theFunctionName,
const XalanNode* styleNode = 0);
~XPathExceptionFunctionNotAvailable();
};
/**
* Class defines a table of functions that can be called in XPath expresions.
*/
class XALAN_XPATH_EXPORT XPathFunctionTable
{
public:
#if defined(XALAN_NO_NAMESPACES)
typedef vector<const Function*> CollectionType;
typedef map<XalanDOMString,
int,
less<XalanDOMString> > FunctionNameIndexMapType;
#else
typedef std::vector<const Function*> CollectionType;
typedef std::map<XalanDOMString, int> FunctionNameIndexMapType;
#endif
typedef DeleteFunctor<Function> DeleteFunctorType;
/**
* Constructor.
*
* @param fCreateTable If true, the internal table will be created. Otherwise, CreateTable() must be called.
*/
XPathFunctionTable(bool fCreateTable = true);
~XPathFunctionTable();
/**
* Set up the internal table.
*/
void
CreateTable();
/**
* Destroy the internal table.
*/
void
DestroyTable();
/**
* Retrieve the function object for a specified function name.
*
* @param theFunctionName name of function
* @return function named
*/
const Function&
operator[](const XalanDOMString& theFunctionName) const
{
FunctionNameIndexMapType::const_iterator i =
m_FunctionNameIndex.find(theFunctionName);
if (i != m_FunctionNameIndex.end())
{
return *m_FunctionCollection[(*i).second];
}
else
{
throw XPathExceptionFunctionNotAvailable(theFunctionName);
}
}
/**
* Retrieve the function object for a specified function ID number.
*
* @param theFunctionID ID number of the function
* @return function named
*/
const Function&
operator[](int theFunctionID) const
{
if (theFunctionID >= 0 &&
CollectionType::size_type(theFunctionID) < m_FunctionCollection.size())
{
return *m_FunctionCollection[theFunctionID];
}
else
{
throw XPathExceptionFunctionNotAvailable(theFunctionID);
}
}
enum { InvalidFunctionNumberID = -1 };
/**
* Map a function ID to the corresponding name.
*
* @param theFunctionID The ID number of the function
* @return The name of the function, or an empty string if the function doesn't exist.
*/
const XalanDOMString
idToName(int theFunctionID) const
{
XalanDOMString theName;
if (theFunctionID >= 0 &&
CollectionType::size_type(theFunctionID) < m_FunctionCollection.size())
{
FunctionNameIndexMapType::const_iterator i =
m_FunctionNameIndex.begin();
while (i != m_FunctionNameIndex.end())
{
if ((*i).second == theFunctionID)
{
theName = (*i).first;
break;
}
}
}
return theName;
}
/**
* Map a function name to the corresponding ID number.
*
* @param theName name of function
* @return The ID number of function, or InvalidFunctionNumberID if the function doesn't exist.
*/
int
nameToID(const XalanDOMString& theName) const
{
const FunctionNameIndexMapType::const_iterator i =
m_FunctionNameIndex.find(theName);
if (i != m_FunctionNameIndex.end())
{
return (*i).second;
}
else
{
return InvalidFunctionNumberID;
}
}
/**
* Insert a named function into the function table.
*
* @param theFunctionName name of function
* @param theFunction function object corresponding to name
*/
void
InstallFunction(
const XalanDOMString& theFunctionName,
const Function& theFunction);
/**
* Remove a named function from the function table.
*
* @param theFunctionName name of function
* @return true if the function was found and removed.
*/
bool
UninstallFunction(const XalanDOMString& theFunctionName);
/**
* Whether a named function is in the function table.
*
* @param theFunctionName name of function
* @return true if function is in table
*/
bool
isInstalledFunction(const XalanDOMString& theFunctionName) const
{
if (m_FunctionNameIndex.find(theFunctionName) != m_FunctionNameIndex.end())
{
return true;
}
else
{
return false;
}
}
#if defined(XALAN_NO_MEMBER_TEMPLATES)
#if defined(XALAN_NO_NAMESPACES)
typedef vector<XalanDOMString> InstalledFunctionNameVectorType;
#else
typedef std::vector<XalanDOMString> InstalledFunctionNameVectorType;
#endif
/**
* Add a list of the names of installed functions to a vector of names.
*
* @param theVector vector of function name strings added to
*/
void
getInstalledFunctionNames(InstalledFunctionNameVectorType& theVector) const
{
FunctionNameIndexMapType::const_iterator i =
m_FunctionNameIndex.begin();
while(i != m_FunctionNameIndex.end())
{
theVector.push_back((*i).first);
++i;
}
}
#else
/**
* Add a list of the names of installed functions to a vector of names.
*
* @param theIterator function table iterator to append names to
*/
template<class OutputIteratorType>
void
getInstalledFunctionNames(OutputIteratorType theIterator) const
{
FunctionNameIndexMapType::const_iterator i =
m_FunctionNameIndex.begin();
while(i != m_FunctionNameIndex.end())
{
*theIterator = (*i).first;
++i;
++theIterator;
}
}
#endif
private:
CollectionType m_FunctionCollection;
FunctionNameIndexMapType m_FunctionNameIndex;
};
#endif // XPATHFUNCTIONTABLE_HEADER_GUARD_1357924680