Exheredludis/paludis/util/digest_registry.cc
Saleem Abdulrasool c321fbf443 paludis: mark visibility on a few extern templates
Give the explicit template specializations default visibility.  This is needed
to build the cave client with clang with hidden visibility.
2016-11-28 20:19:05 -08:00

89 lines
2.4 KiB
C++

/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2011, 2012 David Leverton
*
* This file is part of the Paludis package manager. Paludis is free software;
* you can redistribute it and/or modify it under the terms of the GNU General
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <paludis/util/digest_registry.hh>
#include <paludis/util/pimp-impl.hh>
#include <paludis/util/singleton-impl.hh>
#include <paludis/util/wrapped_forward_iterator-impl.hh>
#include <map>
using namespace paludis;
namespace
{
typedef std::map<std::string, DigestRegistry::Function> FunctionMap;
}
namespace paludis
{
template <>
struct WrappedForwardIteratorTraits<DigestRegistry::AlgorithmsConstIteratorTag>
{
typedef FunctionMap::const_iterator UnderlyingIterator;
};
template <>
struct Imp<DigestRegistry>
{
FunctionMap functions;
};
}
DigestRegistry::DigestRegistry()
{
}
DigestRegistry::~DigestRegistry() = default;
DigestRegistry::Function
DigestRegistry::get(const std::string & algo) const
{
FunctionMap::const_iterator it(_imp->functions.find(algo));
if (_imp->functions.end() == it)
return Function();
return it->second;
}
DigestRegistry::AlgorithmsConstIterator
DigestRegistry::begin_algorithms() const
{
return AlgorithmsConstIterator(_imp->functions.begin());
}
DigestRegistry::AlgorithmsConstIterator
DigestRegistry::end_algorithms() const
{
return AlgorithmsConstIterator(_imp->functions.end());
}
void
DigestRegistry::register_function(const std::string & algo, const Function & func)
{
_imp->functions.insert(std::make_pair(algo, func));
}
namespace paludis
{
template class Pimp<DigestRegistry>;
template class Singleton<DigestRegistry>;
template class PALUDIS_VISIBLE WrappedForwardIterator<DigestRegistry::AlgorithmsConstIteratorTag, const std::pair<const std::string, DigestRegistry::Function> >;
}