Exheredludis/paludis/output_manager_from_environment.cc
Saleem Abdulrasool 64ba7d5be8 modernize: use default method synthesis
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.
2016-08-06 11:58:04 -07:00

97 lines
3.0 KiB
C++

/* 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
*/
#include <paludis/output_manager_from_environment.hh>
#include <paludis/util/pimp-impl.hh>
#include <paludis/util/log.hh>
#include <paludis/util/options.hh>
#include <paludis/environment.hh>
#include <paludis/create_output_manager_info.hh>
#include <paludis/standard_output_manager.hh>
using namespace paludis;
namespace paludis
{
template <>
struct Imp<OutputManagerFromEnvironment>
{
const Environment * const env;
const std::shared_ptr<const PackageID> id;
const OutputExclusivity output_exclusivity;
const ClientOutputFeatures client_output_features;
std::shared_ptr<OutputManager> result;
Imp(const Environment * const e, const std::shared_ptr<const PackageID> & i,
const OutputExclusivity x, const ClientOutputFeatures & c) :
env(e),
id(i),
output_exclusivity(x),
client_output_features(c)
{
}
};
}
OutputManagerFromEnvironment::OutputManagerFromEnvironment(
const Environment * const e,
const std::shared_ptr<const PackageID> & i,
const OutputExclusivity x,
const ClientOutputFeatures & c) :
_imp(e, i, x, c)
{
}
OutputManagerFromEnvironment::~OutputManagerFromEnvironment() = default;
const std::shared_ptr<OutputManager>
OutputManagerFromEnvironment::operator() (const Action & a)
{
if (! _imp->result)
{
CreateOutputManagerForPackageIDActionInfo info(_imp->id, a, _imp->output_exclusivity,
_imp->client_output_features);
_imp->result = _imp->env->create_output_manager(info);
}
return _imp->result;
}
const std::shared_ptr<OutputManager>
OutputManagerFromEnvironment::output_manager_if_constructed()
{
return _imp->result;
}
void
OutputManagerFromEnvironment::construct_standard_if_unconstructed()
{
if (! _imp->result)
{
Log::get_instance()->message("output_manager_from_environment.constructed_standard", ll_warning, lc_context)
<< "No output manager available, creating a standard output manager. This is probably a bug.";
_imp->result = std::make_shared<StandardOutputManager>();
}
}
namespace paludis
{
template class Pimp<OutputManagerFromEnvironment>;
}