/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh * * 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 */ #ifndef PALUDIS_GUARD_PALUDIS_DEP_ATOM_FLATTENER_HH #define PALUDIS_GUARD_PALUDIS_DEP_ATOM_FLATTENER_HH 1 #include #include #include #include #include #include #include #include #include #include /** \file * Declarations for DepSpecFlattener. * * \ingroup g_dep_spec * * \section Examples * * - \ref example_dep_spec_flattener.cc "example_dep_spec_flattener.cc" */ namespace paludis { /** * Extract the enabled components of a dep heirarchy for a particular * package. Sets, via NamedSetDepSpec, are automatically expanded. * * This template can be instantiated as: * * - DepSpecFlattener * - DepSpecFlattener * - DepSpecFlattener * * It is not suitable for heirarchies that can contain AnyDepSpec. * Any labels are discarded. * * \ingroup g_dep_spec * \since 0.26 * \nosubgrouping */ template class PALUDIS_VISIBLE DepSpecFlattener { private: Pimp > _imp; public: ///\name Visit operations ///\{ void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); void visit(const typename Heirarchy_::template NodeType::Type & node); ///\} ///\name Visit implementation operations template void handle_named_set(const NamedSetDepSpec & spec); void handle_item(const Item_ & spec); ///\} ///\name Basic operations ///\{ DepSpecFlattener( const Environment * const, const std::shared_ptr & = typename std::enable_if< std::is_same::value, std::shared_ptr >::type()); ~DepSpecFlattener(); DepSpecFlattener(const DepSpecFlattener &) = delete; DepSpecFlattener & operator= (const DepSpecFlattener &) = delete; ///\} ///\name Iterate over our dep specs ///\{ struct ConstIteratorTag; typedef WrappedForwardIterator > ConstIterator; ConstIterator begin() const; ConstIterator end() const; ///\} }; extern template class DepSpecFlattener; extern template class DepSpecFlattener; extern template class DepSpecFlattener; extern template class WrappedForwardIterator::ConstIteratorTag, const std::shared_ptr >; extern template class WrappedForwardIterator::ConstIteratorTag, const std::shared_ptr >; extern template class WrappedForwardIterator::ConstIteratorTag, const std::shared_ptr >; } #endif