/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh * Copyright (c) 2007 Piotr JaroszyƄski * * 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_REPOSITORIES_UNPACKAGED_NDBAM_UNMERGER_HH #define PALUDIS_GUARD_PALUDIS_REPOSITORIES_UNPACKAGED_NDBAM_UNMERGER_HH 1 #include #include #include #include #include #include namespace paludis { namespace n { typedef Name config_protect; typedef Name config_protect_mask; typedef Name contents_file; typedef Name environment; typedef Name ignore; typedef Name ndbam; typedef Name output_manager; typedef Name package_id; typedef Name root; } class NDBAM; struct NDBAMUnmergerOptions { NamedValue config_protect; NamedValue config_protect_mask; NamedValue contents_file; NamedValue environment; NamedValue > ignore; NamedValue ndbam; NamedValue > output_manager; NamedValue > package_id; NamedValue root; }; class PALUDIS_VISIBLE NDBAMUnmergerError : public UnmergerError { public: NDBAMUnmergerError(const std::string &) throw (); }; /** * Unmerger implementation for NDBAM. * * \ingroup g_ndbam * \since 0.26 */ class PALUDIS_VISIBLE NDBAMUnmerger : public Unmerger { private: Pimp _imp; void _add_file(const std::shared_ptr &); void _add_dir(const std::shared_ptr &); void _add_sym(const std::shared_ptr &); protected: bool config_protected(const FSPath &) const; std::string make_tidy(const FSPath &) const; void populate_unmerge_set(); void display(const std::string &) const; bool check_file(const std::shared_ptr &) const; bool check_dir(const std::shared_ptr &) const; bool check_sym(const std::shared_ptr &) const; bool check_misc(const std::shared_ptr &) const; public: ///\name Basic operations ///\{ NDBAMUnmerger(const NDBAMUnmergerOptions &); ~NDBAMUnmerger(); ///\} virtual Hook extend_hook(const Hook &) const; }; } #endif