/* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* * Copyright (c) 2007, 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 */ #ifndef PALUDIS_GUARD_PALUDIS_REPOSITORIES_UNPACKAGED_NDBAM_HH #define PALUDIS_GUARD_PALUDIS_REPOSITORIES_UNPACKAGED_NDBAM_HH 1 #include #include #include #include #include #include #include #include #include #include #include #include namespace paludis { namespace n { typedef Name fs_location; typedef Name magic; typedef Name mutex; typedef Name name; typedef Name package_id; typedef Name slot; typedef Name version; } struct NDBAMEntry { NamedValue fs_location; NamedValue magic; NamedValue > mutex; NamedValue name; NamedValue > package_id; NamedValue slot; NamedValue version; }; /** * NDBAM provides a partial implementation of a Repository for installed packages using * a Paludis-defined on-disk format. It is used by unpackaged repositories and exndbam, * where the format can be defined by us. NDBAM is designed to reduce unnecessary disk * access and to reduce the need for global locking. * * \ingroup g_ndbam * \since 0.26 */ class PALUDIS_VISIBLE NDBAM { private: Pimp _imp; public: ///\name Basic operations ///\{ /** * Constructor. * * \param version_options \since 0.38 */ NDBAM(const FSPath &, const std::function & check_format, const std::string & preferred_format, const VersionSpecOptions & version_options); ~NDBAM(); ///\} ///\name Repository method implementations ///\{ std::shared_ptr category_names() PALUDIS_ATTRIBUTE((warn_unused_result)); std::shared_ptr package_names( const CategoryNamePart & c) PALUDIS_ATTRIBUTE((warn_unused_result)); std::shared_ptr category_names_containing_package( const PackageNamePart &) const PALUDIS_ATTRIBUTE((warn_unused_result)); bool has_package_named(const QualifiedPackageName &) PALUDIS_ATTRIBUTE((warn_unused_result)); bool has_category_named(const CategoryNamePart &) PALUDIS_ATTRIBUTE((warn_unused_result)); std::shared_ptr entries(const QualifiedPackageName &) PALUDIS_ATTRIBUTE((warn_unused_result)); void add_entry(const QualifiedPackageName &, const FSPath &); void remove_entry(const QualifiedPackageName &, const FSPath &); ///\} /** * Parse the contents file for a given ID, using the provided callbacks. */ void parse_contents(const PackageID &, const std::function &)> & on_file, const std::function &)> & on_dir, const std::function &)> & on_sym ) const; /** * Index a newly added QualifiedPackageName, using the provided data directory * name part. */ void index(const QualifiedPackageName &, const std::string &) const; /** * Deindex a QualifiedPackageName that no longer has any versions installed. */ void deindex(const QualifiedPackageName &) const; }; } #endif