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.
205 lines
6.3 KiB
C++
205 lines
6.3 KiB
C++
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
|
|
|
|
/*
|
|
* Copyright (c) 2007, 2008, 2009, 2010, 2011, 2013 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_key.hh>
|
|
#include <paludis/repositories/unpackaged/unpackaged_id.hh>
|
|
#include <paludis/util/pimp-impl.hh>
|
|
#include <paludis/util/set.hh>
|
|
#include <paludis/util/make_named_values.hh>
|
|
#include <paludis/choice.hh>
|
|
#include <paludis/elike_choices.hh>
|
|
#include <paludis/comma_separated_dep_parser.hh>
|
|
#include <paludis/comma_separated_dep_pretty_printer.hh>
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
using namespace paludis;
|
|
using namespace paludis::unpackaged_repositories;
|
|
|
|
namespace paludis
|
|
{
|
|
template <>
|
|
struct Imp<UnpackagedDependencyKey>
|
|
{
|
|
const Environment * const env;
|
|
const std::shared_ptr<const DependencySpecTree> value;
|
|
const std::shared_ptr<const DependenciesLabelSequence> labels;
|
|
|
|
const std::string raw_name;
|
|
const std::string human_name;
|
|
const MetadataKeyType type;
|
|
|
|
Imp(const Environment * const e, const std::string & v,
|
|
const std::shared_ptr<const DependenciesLabelSequence> & l,
|
|
const std::string & r, const std::string & h, const MetadataKeyType t) :
|
|
env(e),
|
|
value(CommaSeparatedDepParser::parse(env, v)),
|
|
labels(l),
|
|
raw_name(r),
|
|
human_name(h),
|
|
type(t)
|
|
{
|
|
}
|
|
};
|
|
}
|
|
|
|
UnpackagedDependencyKey::UnpackagedDependencyKey(const Environment * const env,
|
|
const std::string & r, const std::string & h, const MetadataKeyType t,
|
|
const std::shared_ptr<const DependenciesLabelSequence> & l,
|
|
const std::string & v) :
|
|
_imp(env, v, l, r, h, t)
|
|
{
|
|
}
|
|
|
|
UnpackagedDependencyKey::~UnpackagedDependencyKey() = default;
|
|
|
|
const std::shared_ptr<const DependencySpecTree>
|
|
UnpackagedDependencyKey::parse_value() const
|
|
{
|
|
return _imp->value;
|
|
}
|
|
|
|
const std::string
|
|
UnpackagedDependencyKey::raw_name() const
|
|
{
|
|
return _imp->raw_name;
|
|
}
|
|
|
|
const std::string
|
|
UnpackagedDependencyKey::human_name() const
|
|
{
|
|
return _imp->human_name;
|
|
}
|
|
|
|
MetadataKeyType
|
|
UnpackagedDependencyKey::type() const
|
|
{
|
|
return _imp->type;
|
|
}
|
|
|
|
const std::string
|
|
UnpackagedDependencyKey::pretty_print_value(
|
|
const PrettyPrinter & printer, const PrettyPrintOptions & options) const
|
|
{
|
|
CommaSeparatedDepPrettyPrinter p(printer, options);
|
|
_imp->value->top()->accept(p);
|
|
return p.result();
|
|
}
|
|
|
|
const std::shared_ptr<const DependenciesLabelSequence>
|
|
UnpackagedDependencyKey::initial_labels() const
|
|
{
|
|
return _imp->labels;
|
|
}
|
|
|
|
namespace paludis
|
|
{
|
|
template <>
|
|
struct Imp<UnpackagedChoicesKey>
|
|
{
|
|
const Environment * const env;
|
|
const UnpackagedID * const id;
|
|
|
|
mutable std::mutex mutex;
|
|
mutable std::shared_ptr<Choices> value;
|
|
|
|
const std::string raw_name;
|
|
const std::string human_name;
|
|
const MetadataKeyType type;
|
|
|
|
Imp(const Environment * const e, const UnpackagedID * const i,
|
|
const std::string & r, const std::string & h, const MetadataKeyType t) :
|
|
env(e),
|
|
id(i),
|
|
raw_name(r),
|
|
human_name(h),
|
|
type(t)
|
|
{
|
|
}
|
|
};
|
|
}
|
|
|
|
UnpackagedChoicesKey::UnpackagedChoicesKey(const Environment * const env, const std::string & r, const std::string & h,
|
|
const MetadataKeyType t, const UnpackagedID * const id) :
|
|
_imp(env, id, r, h, t)
|
|
{
|
|
}
|
|
|
|
UnpackagedChoicesKey::~UnpackagedChoicesKey() = default;
|
|
|
|
const std::shared_ptr<const Choices>
|
|
UnpackagedChoicesKey::parse_value() const
|
|
{
|
|
std::unique_lock<std::mutex> lock(_imp->mutex);
|
|
if (! _imp->value)
|
|
{
|
|
_imp->value = std::make_shared<Choices>();
|
|
std::shared_ptr<Choice> build_options(std::make_shared<Choice>(make_named_values<ChoiceParams>(
|
|
n::consider_added_or_changed() = false,
|
|
n::contains_every_value() = false,
|
|
n::hidden() = false,
|
|
n::hide_description() = false,
|
|
n::human_name() = canonical_build_options_human_name(),
|
|
n::prefix() = canonical_build_options_prefix(),
|
|
n::raw_name() = canonical_build_options_raw_name(),
|
|
n::show_with_no_prefix() = false
|
|
)));
|
|
|
|
Tribool strip(indeterminate);
|
|
if (_imp->id->strip_key())
|
|
strip = _imp->id->strip_key()->parse_value();
|
|
|
|
build_options->add(std::make_shared<ELikeSymbolsChoiceValue>(_imp->id->shared_from_this(), _imp->env, build_options,
|
|
strip.is_true() ? escvp_strip : strip.is_false() ? escvp_preserve : last_escvp));
|
|
|
|
build_options->add(std::make_shared<ELikeDwarfCompressionChoiceValue>(_imp->id->shared_from_this(),
|
|
_imp->env,
|
|
build_options));
|
|
|
|
ELikeWorkChoiceValueParameter preserve_work(last_ewcvp);
|
|
if (_imp->id->preserve_work_key())
|
|
preserve_work = _imp->id->preserve_work_key()->parse_value() ? ewcvp_preserve : ewcvp_leave;
|
|
|
|
build_options->add(std::make_shared<ELikeWorkChoiceValue>(_imp->id->shared_from_this(), _imp->env, build_options, preserve_work));
|
|
|
|
_imp->value->add(build_options);
|
|
}
|
|
|
|
return _imp->value;
|
|
}
|
|
|
|
const std::string
|
|
UnpackagedChoicesKey::raw_name() const
|
|
{
|
|
return _imp->raw_name;
|
|
}
|
|
|
|
const std::string
|
|
UnpackagedChoicesKey::human_name() const
|
|
{
|
|
return _imp->human_name;
|
|
}
|
|
|
|
MetadataKeyType
|
|
UnpackagedChoicesKey::type() const
|
|
{
|
|
return _imp->type;
|
|
}
|
|
|