2 #ifndef PKGLIB_DEBMETAINDEX_H
3 #define PKGLIB_DEBMETAINDEX_H
5 #include <apt-pkg/metaindex.h>
6 #include <apt-pkg/macros.h>
12 #ifndef APT_8_CLEANER_HEADERS
13 #include <apt-pkg/sourcelist.h>
15 #ifndef APT_10_CLEANER_HEADERS
16 #include <apt-pkg/init.h>
21 class debDebPkgFileIndex
;
24 class APT_HIDDEN debReleaseIndex
: public metaIndex
{
30 debSectionEntry (std::string
const &Section
, bool const &IsSrc
);
31 std::string
const Section
;
36 /** \brief dpointer placeholder (for later in case we need it) */
38 std::map
<std::string
, std::vector
<debSectionEntry
const*> > ArchEntries
;
39 enum APT_HIDDEN
{ ALWAYS_TRUSTED
, NEVER_TRUSTED
, CHECK_TRUST
} Trusted
;
43 debReleaseIndex(std::string
const &URI
, std::string
const &Dist
);
44 debReleaseIndex(std::string
const &URI
, std::string
const &Dist
, bool const Trusted
);
45 virtual ~debReleaseIndex();
47 virtual std::string
ArchiveURI(std::string
const &File
) const {return URI
+ File
;};
48 virtual bool GetIndexes(pkgAcquire
*Owner
, bool const &GetAll
=false) const;
49 std::vector
<IndexTarget
*>* ComputeIndexTargets() const;
50 std::string
Info(const char *Type
, std::string
const &Section
, std::string
const &Arch
="") const;
52 std::string
MetaIndexInfo(const char *Type
) const;
53 std::string
MetaIndexFile(const char *Types
) const;
54 std::string
MetaIndexURI(const char *Type
) const;
56 #if APT_PKG_ABI >= 413
59 std::string
LocalFileName() const;
61 std::string
IndexURI(const char *Type
, std::string
const &Section
, std::string
const &Arch
="native") const;
62 std::string
IndexURISuffix(const char *Type
, std::string
const &Section
, std::string
const &Arch
="native") const;
63 std::string
SourceIndexURI(const char *Type
, const std::string
&Section
) const;
64 std::string
SourceIndexURISuffix(const char *Type
, const std::string
&Section
) const;
65 std::string
TranslationIndexURI(const char *Type
, const std::string
&Section
) const;
66 std::string
TranslationIndexURISuffix(const char *Type
, const std::string
&Section
) const;
67 virtual std::vector
<pkgIndexFile
*> *GetIndexFiles();
69 void SetTrusted(bool const Trusted
);
70 virtual bool IsTrusted() const;
72 void PushSectionEntry(std::vector
<std::string
> const &Archs
, const debSectionEntry
*Entry
);
73 void PushSectionEntry(std::string
const &Arch
, const debSectionEntry
*Entry
);
74 void PushSectionEntry(const debSectionEntry
*Entry
);
77 class APT_HIDDEN debDebFileMetaIndex
: public metaIndex
81 debDebPkgFileIndex
*DebIndex
;
83 virtual std::string
ArchiveURI(std::string
const& /*File*/) const {
86 virtual bool GetIndexes(pkgAcquire
* /*Owner*/, const bool& /*GetAll=false*/) const {
89 virtual std::vector
<pkgIndexFile
*> *GetIndexFiles() {
92 virtual bool IsTrusted() const {
95 debDebFileMetaIndex(std::string
const &DebFile
);
96 virtual ~debDebFileMetaIndex() {};