blob: fe83e6bd520b4ba0fd11ba0610407a4ed66fabd8 [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999 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(STLHELPERS_HEADER_GUARD_1357924680)
#define STLHELPERS_HEADER_GUARD_1357924680
// Base include file. Must be first.
#include <Include/PlatformDefinitions.hpp>
#include <algorithm>
#include <functional>
/**
* Functor to delete objects, used in STL iteration algorithms.
*/
template <class T>
#if defined(XALAN_NO_NAMESPACES)
struct DeleteFunctor : public unary_function<const T*, void>
#else
struct DeleteFunctor : public std::unary_function<const T*, void>
#endif
{
#if defined(XALAN_NO_NAMESPACES)
typedef unary_function<const T*, void> BaseClassType;
#else
typedef std::unary_function<const T*, void> BaseClassType;
#endif
typedef typename BaseClassType::result_type result_type;
typedef typename BaseClassType::argument_type argument_type;
/**
* Delete the object pointed to by argument.
*
* @param thePointer pointer to object to be deleted
*/
result_type
operator()(argument_type thePointer) const
{
#if defined(XALAN_CANNOT_DELETE_CONST)
delete (T*)thePointer;
#else
delete thePointer;
#endif
}
};
#if !defined(XALAN_SGI_BASED_STL)
/**
* Functor to retrieve the key of a key-value pair in a map, used in STL
* iteration algorithms.
*/
template <class PairType>
#if defined(XALAN_NO_NAMESPACES)
struct select1st : public unary_function<PairType, PairType::first_type>
#else
struct select1st : public std::unary_function<PairType, typename PairType::first_type>
#endif
{
#if defined(XALAN_NO_NAMESPACES)
typedef unary_function<PairType, PairType::first_type> BaseClassType;
#else
typedef std::unary_function<PairType, typename PairType::first_type> BaseClassType;
#endif
typedef typename BaseClassType::result_type result_type;
typedef typename BaseClassType::argument_type argument_type;
typedef PairType value_type;
/**
* Retrieve the key of a key-value pair.
*
* @param thePair key-value pair
* @return key
*/
result_type
operator()(const argument_type& thePair) const
{
return thePair.first;
}
};
/**
* Functor to retrieve the value of a key-value pair in a map, used in STL
* iteration algorithms.
*/
template <class PairType>
#if defined(XALAN_NO_NAMESPACES)
struct select2nd : public unary_function<PairType, PairType::second_type>
#else
struct select2nd : public std::unary_function<PairType, typename PairType::second_type>
#endif
{
#if defined(XALAN_NO_NAMESPACES)
typedef unary_function<PairType, PairType::second_type> BaseClassType;
#else
typedef std::unary_function<PairType, typename PairType::second_type> BaseClassType;
#endif
typedef typename BaseClassType::result_type result_type;
typedef typename BaseClassType::argument_type argument_type;
typedef PairType value_type;
/**
* Retrieve the value of a key-value pair.
*
* @param thePair key-value pair
* @return value
*/
result_type
operator()(const argument_type& thePair) const
{
return thePair.second;
}
};
#endif
/**
* Functor to delete value objects in maps, used in STL iteration algorithms.
*/
template <class T>
#if defined(XALAN_NO_NAMESPACES)
struct MapValueDeleteFunctor : public unary_function<const typename T::value_type&, void>
#else
struct MapValueDeleteFunctor : public std::unary_function<const typename T::value_type&, void>
#endif
{
#if defined(XALAN_NO_NAMESPACES)
typedef unary_function<const typename T::value_type&, void> BaseClassType;
#else
typedef std::unary_function<const typename T::value_type&, void> BaseClassType;
#endif
typedef typename BaseClassType::result_type result_type;
typedef typename BaseClassType::argument_type argument_type;
/**
* Delete the value object in a map value pair. The value of the pair must
* be of pointer type.
*
* @param thePair key-value pair
*/
result_type
operator()(argument_type thePair) const
{
delete thePair.second;
}
};
template<class T>
MapValueDeleteFunctor<T>
makeMapValueDeleteFunctor(const T& /* theMap */)
{
return MapValueDeleteFunctor<T>();
}
/**
* This functor is designed to compare 0-terminated arrays. It substitutes
* for the default less<type*> so that pointers to arrays can be compared,
* rather than copies of arrays. For example, you might want to use C-style
* strings as keys in a map, rather than string objects. The default
* algorithm less<const char*> would just compare the pointers, and not the
* vector of characters to which it points. Using this algorithm instead of
* the default will allow the map to work as expected.
*/
template<class T>
#if defined(XALAN_NO_NAMESPACES)
struct less_null_terminated_arrays : public binary_function<const T*, const T*, bool>
#else
struct less_null_terminated_arrays : public std::binary_function<const T*, const T*, bool>
#endif
{
#if defined(XALAN_NO_NAMESPACES)
typedef binary_function<const T*, const T*, bool> BaseClassType;
#else
typedef std::binary_function<const T*, const T*, bool> BaseClassType;
#endif
typedef typename BaseClassType::result_type result_type;
typedef typename BaseClassType::first_argument_type first_argument_type;
typedef typename BaseClassType::second_argument_type second_argument_type;
/**
* Compare the values of two objects.
*
*
* @param theLHS first object to compare
* @param theRHS second object to compare
* @return true if objects are the same
*/
result_type
operator()(
first_argument_type theLHS,
second_argument_type theRHS) const
{
while(*theLHS && *theRHS)
{
if (*theLHS != *theRHS)
{
break;
}
else
{
theLHS++;
theRHS++;
}
}
return *theLHS < *theRHS ? true : false;
}
};
template<class CollectionType>
class CollectionClearGuard
{
public:
CollectionClearGuard(CollectionType& theCollection) :
m_collection(&theCollection)
{
}
~CollectionClearGuard()
{
if (m_collection != 0)
{
m_collection->clear();
}
}
void
release()
{
m_collection = 0;
}
private:
// Not implemented...
CollectionClearGuard(const CollectionClearGuard<CollectionType>&);
CollectionClearGuard<CollectionType>&
operator=(const CollectionClearGuard<CollectionType>&);
// Data members...
CollectionType* m_collection;
};
template<class CollectionType, class DeleteFunctorType>
class CollectionDeleteGuard
{
public:
CollectionDeleteGuard(CollectionType& theCollection) :
m_collection(&theCollection)
{
}
~CollectionDeleteGuard()
{
if (m_collection != 0)
{
#if !defined(XALAN_NO_NAMESPACES)
using std::for_each;
#endif
// Delete all of the objects in the temp vector.
for_each(m_collection->begin(),
m_collection->end(),
DeleteFunctorType());
}
}
void
release()
{
m_collection = 0;
}
private:
// Not implemented...
CollectionDeleteGuard(const CollectionDeleteGuard<CollectionType, DeleteFunctorType>&);
CollectionDeleteGuard<CollectionType, DeleteFunctorType>&
operator=(const CollectionDeleteGuard<CollectionType, DeleteFunctorType>&);
// Data members...
CollectionType* m_collection;
};
#endif // STLHELPERS_HEADER_GUARD_1357924680