Convert a number of destructors to default synthesized functions. Try to inline a few instances into the header. It should be possible to inline all of them, however, gcc seems to emit a number of warnings. Furthermore, some of the destructors are pure-virtualed, but provide an implementation. Placing the definition into the header causes ODR violations.
109 lines
3.1 KiB
C++
109 lines
3.1 KiB
C++
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
|
|
|
|
/*
|
|
* Copyright (c) 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
|
|
*/
|
|
|
|
#include <paludis/repositories/unpackaged/unpackaged_stripper.hh>
|
|
#include <paludis/util/pimp-impl.hh>
|
|
#include <paludis/util/make_named_values.hh>
|
|
#include <paludis/output_manager.hh>
|
|
#include <ostream>
|
|
|
|
using namespace paludis;
|
|
using namespace paludis::unpackaged_repositories;
|
|
|
|
namespace paludis
|
|
{
|
|
template <>
|
|
struct Imp<UnpackagedStripper>
|
|
{
|
|
UnpackagedStripperOptions options;
|
|
|
|
Imp(const UnpackagedStripperOptions & o) :
|
|
options(o)
|
|
{
|
|
}
|
|
};
|
|
}
|
|
|
|
UnpackagedStripper::UnpackagedStripper(const UnpackagedStripperOptions & options) :
|
|
Stripper(make_named_values<StripperOptions>(
|
|
n::compress_splits() = options.compress_splits(),
|
|
n::debug_dir() = options.debug_dir(),
|
|
n::dwarf_compression() = options.dwarf_compression(),
|
|
n::image_dir() = options.image_dir(),
|
|
n::split() = options.split(),
|
|
n::strip() = options.strip()
|
|
)),
|
|
_imp(options)
|
|
{
|
|
}
|
|
|
|
UnpackagedStripper::~UnpackagedStripper() = default;
|
|
|
|
void
|
|
UnpackagedStripper::on_enter_dir(const FSPath &)
|
|
{
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::on_leave_dir(const FSPath &)
|
|
{
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::on_strip(const FSPath & f)
|
|
{
|
|
_imp->options.output_manager()->stdout_stream()
|
|
<< strip_action_desc() << " "
|
|
<< f.strip_leading(_imp->options.image_dir()) << std::endl;
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::on_split(const FSPath & f, const FSPath & g)
|
|
{
|
|
_imp->options.output_manager()->stdout_stream()
|
|
<< split_action_desc() << " "
|
|
<< f.strip_leading(_imp->options.image_dir())
|
|
<< " -> " << g.strip_leading(_imp->options.image_dir()) << std::endl;
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::on_dwarf_compress(const FSPath & f)
|
|
{
|
|
_imp->options.output_manager()->stdout_stream()
|
|
<< dwarf_compress_desc() << " "
|
|
<< f.strip_leading(_imp->options.image_dir()) << std::endl;
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::on_unknown(const FSPath & f)
|
|
{
|
|
_imp->options.output_manager()->stdout_stream()
|
|
<< unknown_action_desc() << " "
|
|
<< f.strip_leading(_imp->options.image_dir()) << std::endl;
|
|
}
|
|
|
|
void
|
|
UnpackagedStripper::strip()
|
|
{
|
|
_imp->options.output_manager()->stdout_stream()
|
|
<< ">>> Stripping inside " << _imp->options.image_dir() << std::endl;
|
|
Stripper::strip();
|
|
}
|
|
|