]>
git.saurik.com Git - apt.git/blob - apt-pkg/deb/debmetaindex.h
2 #ifndef PKGLIB_DEBMETAINDEX_H
3 #define PKGLIB_DEBMETAINDEX_H
5 #include <apt-pkg/metaindex.h>
6 #include <apt-pkg/sourcelist.h>
10 class debReleaseIndex
: public metaIndex
{
16 debSectionEntry (string
const &Section
, bool const &IsSrc
);
22 std::map
<string
, vector
<debSectionEntry
const*> > ArchEntries
;
26 debReleaseIndex(string
const &URI
, string
const &Dist
);
29 virtual string
ArchiveURI(string
const &File
) const {return URI
+ File
;};
30 virtual bool GetIndexes(pkgAcquire
*Owner
, bool const &GetAll
=false) const;
31 vector
<struct IndexTarget
*>* ComputeIndexTargets() const;
32 string
Info(const char *Type
, string
const &Section
, string
const &Arch
="") const;
33 string
MetaIndexInfo(const char *Type
) const;
34 string
MetaIndexFile(const char *Types
) const;
35 string
MetaIndexURI(const char *Type
) const;
36 string
IndexURI(const char *Type
, string
const &Section
, string
const &Arch
="native") const;
37 string
IndexURISuffix(const char *Type
, string
const &Section
, string
const &Arch
="native") const;
38 string
SourceIndexURI(const char *Type
, const string
&Section
) const;
39 string
SourceIndexURISuffix(const char *Type
, const string
&Section
) const;
40 string
TranslationIndexURI(const char *Type
, const string
&Section
) const;
41 string
TranslationIndexURISuffix(const char *Type
, const string
&Section
) const;
42 virtual vector
<pkgIndexFile
*> *GetIndexFiles();
44 virtual bool IsTrusted() const;
46 void PushSectionEntry(vector
<string
> const &Archs
, const debSectionEntry
*Entry
);
47 void PushSectionEntry(string
const &Arch
, const debSectionEntry
*Entry
);
48 void PushSectionEntry(const debSectionEntry
*Entry
);