/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2005, 2006, 2007, 2008, 2009, 2010 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_DEP_SPEC_DATA_HH #define PALUDIS_GUARD_PALUDIS_DEP_SPEC_DATA_HH 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace paludis { /** * Data for a ConditionalDepSpec. * * \since 0.26 * \ingroup g_dep_spec */ class PALUDIS_VISIBLE ConditionalDepSpecData { public: ///\name Basic operations ///\{ virtual ~ConditionalDepSpecData(); ///\} /** * Fetch ourself as a string. */ virtual std::string as_string() const = 0; /** * Fetch the result for condition_met. * * \since 0.58 takes env, package_id */ virtual bool condition_met( const Environment * const, const std::shared_ptr &) const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; /** * Fetch the result for condition_would_be_met_when. * * \since 0.58 takes env, package_id */ virtual bool condition_would_be_met_when( const Environment * const, const std::shared_ptr &, const ChangedChoices &) const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; /** * Fetch the result for condition_meetable. * * \since 0.58 takes env, package_id */ virtual bool condition_meetable( const Environment * const, const std::shared_ptr &) const PALUDIS_ATTRIBUTE((warn_unused_result)) = 0; }; /** * Data for a PackageDepSpec. * * \since 0.26 * \ingroup g_dep_spec */ class PALUDIS_VISIBLE PackageDepSpecData { public: ///\name Basic operations ///\{ virtual ~PackageDepSpecData(); ///\} /** * Fetch ourself as a string. */ virtual std::string as_string() const = 0; /** * Fetch the package name (may be a zero pointer). */ virtual std::shared_ptr package_ptr() const = 0; /** * Fetch the package name part, if wildcarded, or a zero pointer otherwise. */ virtual std::shared_ptr package_name_part_ptr() const = 0; /** * Fetch the category name part, if wildcarded, or a zero pointer otherwise. */ virtual std::shared_ptr category_name_part_ptr() const = 0; /** * Fetch the version requirements (may be a zero pointer). */ virtual std::shared_ptr version_requirements_ptr() const = 0; /** * Fetch the version requirements mode. */ virtual VersionRequirementsMode version_requirements_mode() const = 0; /** * Fetch the slot name (may be a zero pointer). */ virtual std::shared_ptr slot_requirement_ptr() const = 0; /** * Fetch the from-repository requirement (may be a zero pointer). */ virtual std::shared_ptr in_repository_ptr() const = 0; /** * Fetch the installable-to-repository requirement (may be a zero pointer). * * \since 0.32 */ virtual std::shared_ptr installable_to_repository_ptr() const = 0; /** * Fetch the from-repository requirement (may be a zero pointer). */ virtual std::shared_ptr from_repository_ptr() const = 0; /** * Fetch the installed-at-path requirement (may be a zero pointer). * * \since 0.32 */ virtual std::shared_ptr installed_at_path_ptr() const = 0; /** * Fetch the installable-to-path requirement (may be a zero pointer). * * \since 0.32 */ virtual std::shared_ptr installable_to_path_ptr() const = 0; /** * Fetch the additional requirements (may be a zero pointer). */ virtual std::shared_ptr additional_requirements_ptr() const = 0; /** * Fetch options if we're being used to construct a new PartiallyMadePackageDepSpec. * * \since 0.38 */ virtual const PartiallyMadePackageDepSpecOptions options_for_partially_made_package_dep_spec() const = 0; }; } #endif