]> git.saurik.com Git - apt.git/blob - apt-pkg/deb/debmetaindex.h
0b1b08432b371da7ad4f85796e28e7aac2d079d5
[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/macros.h>
7
8 #include <map>
9 #include <string>
10 #include <vector>
11
12 #ifndef APT_8_CLEANER_HEADERS
13 #include <apt-pkg/sourcelist.h>
14 #endif
15 #ifndef APT_10_CLEANER_HEADERS
16 #include <apt-pkg/init.h>
17 #endif
18
19 class pkgAcquire;
20 class pkgIndexFile;
21 class debDebPkgFileIndex;
22 class IndexTarget;
23
24 class APT_HIDDEN debReleaseIndex : public metaIndex {
25 public:
26
27 class debSectionEntry
28 {
29 public:
30 debSectionEntry (std::string const &Section, bool const &IsSrc);
31 std::string const Section;
32 bool const IsSrc;
33 };
34
35 private:
36 /** \brief dpointer placeholder (for later in case we need it) */
37 void *d;
38 std::map<std::string, std::vector<debSectionEntry const*> > ArchEntries;
39 enum APT_HIDDEN { ALWAYS_TRUSTED, NEVER_TRUSTED, CHECK_TRUST } Trusted;
40
41 public:
42
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();
46
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 virtual std::vector<IndexTarget> GetIndexTargets() const;
50
51 std::string MetaIndexInfo(const char *Type) const;
52 std::string MetaIndexFile(const char *Types) const;
53 std::string MetaIndexURI(const char *Type) const;
54
55 #if APT_PKG_ABI >= 413
56 virtual
57 #endif
58 std::string LocalFileName() const;
59
60 virtual std::vector <pkgIndexFile *> *GetIndexFiles();
61
62 void SetTrusted(bool const Trusted);
63 virtual bool IsTrusted() const;
64
65 void PushSectionEntry(std::vector<std::string> const &Archs, const debSectionEntry *Entry);
66 void PushSectionEntry(std::string const &Arch, const debSectionEntry *Entry);
67 };
68
69 class APT_HIDDEN debDebFileMetaIndex : public metaIndex
70 {
71 private:
72 std::string DebFile;
73 debDebPkgFileIndex *DebIndex;
74 public:
75 virtual std::string ArchiveURI(std::string const& /*File*/) const {
76 return DebFile;
77 }
78 virtual bool GetIndexes(pkgAcquire* /*Owner*/, const bool& /*GetAll=false*/) const {
79 return true;
80 }
81 virtual std::vector<IndexTarget> GetIndexTargets() const {
82 return std::vector<IndexTarget>();
83 }
84 virtual std::vector<pkgIndexFile *> *GetIndexFiles() {
85 return Indexes;
86 }
87 virtual bool IsTrusted() const {
88 return true;
89 }
90 debDebFileMetaIndex(std::string const &DebFile);
91 virtual ~debDebFileMetaIndex() {};
92
93 };
94
95 #endif