Exheredludis/paludis/repositories/unwritten/unwritten_id.hh
2014-09-17 20:09:50 +01:00

127 lines
6.3 KiB
C++

/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2008, 2009, 2010, 2011, 2014 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_REPOSITORIES_UNWRITTEN_UNWRITTEN_ID_HH
#define PALUDIS_GUARD_PALUDIS_REPOSITORIES_UNWRITTEN_UNWRITTEN_ID_HH 1
#include <paludis/util/named_value.hh>
#include <paludis/package_id.hh>
#include <paludis/name.hh>
#include <paludis/version_spec.hh>
namespace paludis
{
namespace n
{
typedef Name<struct name_added_by> added_by;
typedef Name<struct name_bug_ids> bug_ids;
typedef Name<struct name_comment> comment;
typedef Name<struct name_commit_id> commit_id;
typedef Name<struct name_description> description;
typedef Name<struct name_environment> environment;
typedef Name<struct name_homepage> homepage;
typedef Name<struct name_mask> mask;
typedef Name<struct name_name> name;
typedef Name<struct name_remote_ids> remote_ids;
typedef Name<struct name_removed_by> removed_by;
typedef Name<struct name_removed_from> removed_from;
typedef Name<struct name_repository> repository;
typedef Name<struct name_slot> slot;
typedef Name<struct name_version> version;
}
namespace unwritten_repository
{
class UnwrittenRepository;
struct UnwrittenIDParams
{
NamedValue<n::added_by, std::shared_ptr<const MetadataValueKey<std::string> > > added_by;
NamedValue<n::bug_ids, std::shared_ptr<const MetadataCollectionKey<Sequence<std::string> > > > bug_ids;
NamedValue<n::comment, std::shared_ptr<const MetadataValueKey<std::string> > > comment;
NamedValue<n::commit_id, std::shared_ptr<const MetadataValueKey<std::string> > > commit_id;
NamedValue<n::description, std::shared_ptr<const MetadataValueKey<std::string> > > description;
NamedValue<n::environment, const Environment *> environment;
NamedValue<n::homepage, std::shared_ptr<const MetadataSpecTreeKey<SimpleURISpecTree> > > homepage;
NamedValue<n::mask, std::shared_ptr<const Mask> > mask;
NamedValue<n::name, QualifiedPackageName> name;
NamedValue<n::remote_ids, std::shared_ptr<const MetadataCollectionKey<Sequence<std::string> > > > remote_ids;
NamedValue<n::removed_by, std::shared_ptr<const MetadataValueKey<std::string> > > removed_by;
NamedValue<n::removed_from, std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > > removed_from;
NamedValue<n::repository, RepositoryName> repository;
NamedValue<n::slot, std::shared_ptr<const MetadataValueKey<Slot> > > slot;
NamedValue<n::version, VersionSpec> version;
};
class PALUDIS_VISIBLE UnwrittenID :
public PackageID
{
private:
Pimp<UnwrittenID> _imp;
protected:
void need_keys_added() const;
void need_masks_added() const;
public:
UnwrittenID(const UnwrittenIDParams &);
~UnwrittenID();
const std::string canonical_form(const PackageIDCanonicalForm) const;
const QualifiedPackageName name() const;
const VersionSpec version() const;
const RepositoryName repository_name() const;
virtual PackageDepSpec uniquely_identifying_spec() const;
const std::shared_ptr<const MetadataValueKey<Slot> > slot_key() const;
const std::shared_ptr<const MetadataCollectionKey<KeywordNameSet> > keywords_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> >
dependencies_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> >
build_dependencies_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> >
run_dependencies_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> >
post_dependencies_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<FetchableURISpecTree> > fetches_key() const;
const std::shared_ptr<const MetadataSpecTreeKey<SimpleURISpecTree> > homepage_key() const;
const std::shared_ptr<const MetadataValueKey<std::string> > short_description_key() const;
const std::shared_ptr<const MetadataValueKey<std::string> > long_description_key() const;
const std::shared_ptr<const MetadataTimeKey> installed_time_key() const;
const std::shared_ptr<const MetadataValueKey<FSPath> > fs_location_key() const;
const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > behaviours_key() const;
const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > from_repositories_key() const;
const std::shared_ptr<const MetadataValueKey<std::shared_ptr<const Choices> > > choices_key() const;
bool supports_action(const SupportsActionTestBase &) const
PALUDIS_ATTRIBUTE((warn_unused_result));
void perform_action(Action &) const PALUDIS_ATTRIBUTE((noreturn));
bool arbitrary_less_than_comparison(const PackageID &) const
PALUDIS_ATTRIBUTE((warn_unused_result));
std::size_t extra_hash_value() const
PALUDIS_ATTRIBUTE((warn_unused_result));
virtual const std::shared_ptr<const Contents> contents() const;
};
}
}
#endif