* apt-pkg/deb/debsrcrecords.cc:
[ntk/apt.git] / apt-pkg / deb / debmetaindex.h
1 // ijones, walters
2 #ifndef PKGLIB_DEBMETAINDEX_H
3 #define PKGLIB_DEBMETAINDEX_H
4
5 #include <apt-pkg/metaindex.h>
6 #include <apt-pkg/sourcelist.h>
7
8 #include <map>
9
10 class debReleaseIndex : public metaIndex {
11 public:
12
13 class debSectionEntry
14 {
15 public:
16 debSectionEntry (string const &Section, bool const &IsSrc);
17 string const Section;
18 bool const IsSrc;
19 };
20
21 private:
22 std::map<string, vector<debSectionEntry const*> > ArchEntries;
23
24 public:
25
26 debReleaseIndex(string const &URI, string const &Dist);
27 ~debReleaseIndex();
28
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();
43
44 virtual bool IsTrusted() const;
45
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);
49 };
50
51 #endif