/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 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_TAR_MERGER_HH #define PALUDIS_GUARD_PALUDIS_TAR_MERGER_HH 1 #include #include #include namespace paludis { namespace n { typedef Name compression; typedef Name environment; typedef Name fix_mtimes_before; typedef Name get_new_ids_or_minus_one; typedef Name image; typedef Name install_under; typedef Name maybe_output_manager; typedef Name merged_entries; typedef Name no_chown; typedef Name options; typedef Name permit_destination; typedef Name root; typedef Name tar_file; } /** * Parameters for a basic TarMerger. * * \see Merger * \ingroup g_repository * \nosubgrouping * \since 0.51 */ struct TarMergerParams { NamedValue compression; NamedValue environment; NamedValue fix_mtimes_before; NamedValue (const FSPath &)> > get_new_ids_or_minus_one; NamedValue image; NamedValue install_under; NamedValue > maybe_output_manager; NamedValue > merged_entries; NamedValue no_chown; NamedValue options; NamedValue permit_destination; NamedValue root; NamedValue tar_file; }; class PALUDIS_VISIBLE TarMerger : public Merger { private: Pimp _imp; protected: virtual FSPath canonicalise_root_path(const FSPath & f); virtual void add_file(const FSPath &, const FSPath &); virtual void track_install_file(const FSPath &, const FSPath &) = 0; virtual void track_install_sym(const FSPath &, const FSPath &) = 0; public: TarMerger(const TarMergerParams &); ~TarMerger(); virtual void on_file_main(bool is_check, const FSPath &, const FSPath &); virtual void on_dir_main(bool is_check, const FSPath &, const FSPath &); virtual void on_sym_main(bool is_check, const FSPath &, const FSPath &); virtual void prepare_install_under(); virtual void merge(); }; } #endif