/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 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_OUTPUT_MANAGER_FACTORY_HH #define PALUDIS_GUARD_PALUDIS_OUTPUT_MANAGER_FACTORY_HH 1 #include #include #include #include #include #include #include #include #include #include namespace paludis { class PALUDIS_VISIBLE OutputManagerFactory : public Singleton { friend class Singleton; private: Pimp _imp; OutputManagerFactory(); ~OutputManagerFactory(); public: typedef std::function KeyFunction; typedef std::function ( const std::string &)> CreateChildFunction; typedef std::function > & extra_vars)> ReplaceVarsFunc; typedef std::function( const KeyFunction &, const CreateChildFunction &, const ReplaceVarsFunc & )> CreateFunction; /** * Construct a given OutputManager, or throw ConfigurationError. * * \param key_function should return the value for a given key. The * 'handler' key must return a value (e.g. 'standard'), which is used * to select the return type. Other key names are manager defined, * but typically include things like 'location' and 'keep_on_success'. * * \param create_child_function is used by, for example, * TeeOutputManager to create child streams. Given a single string, * this function returns the appropriate child. * * \param replace_vars_func should replace '%{vars}' with their * expanded forms. Variables include 'name', 'action' etc. This is * used by, for example, FileOutputManager to allow the user to * specify the output file names. */ const std::shared_ptr create( const KeyFunction & key_function, const CreateChildFunction & create_child_function, const ReplaceVarsFunc & replace_vars_func ) const PALUDIS_ATTRIBUTE((warn_unused_result)); /** * Add a manager. * * \param managers must have at least one value, and no value may be * specified more than once across all invocations. * * \param create_function is used to implement OutputManagerFactory::create. */ void add_manager( const std::shared_ptr > & managers, const CreateFunction & create_function ); struct ConstIteratorTag; typedef WrappedForwardIterator ConstIterator; ConstIterator begin_keys() const PALUDIS_ATTRIBUTE((warn_unused_result)); ConstIterator end_keys() const PALUDIS_ATTRIBUTE((warn_unused_result)); }; extern template class Pimp; extern template class Singleton; extern template class WrappedForwardIterator; } #endif