]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
b2e465d6 AL |
3 | /* ###################################################################### |
4 | ||
5 | Index File - Abstraction for an index of archive/source file. | |
6 | ||
a52f938b | 7 | There are 4 primary sorts of index files, all represented by this |
b2e465d6 AL |
8 | class: |
9 | ||
10 | Binary index files | |
a52f938b | 11 | Binary translation files |
1e3f4083 | 12 | Binary index files describing the local system |
b2e465d6 AL |
13 | Source index files |
14 | ||
15 | They are all bundled together here, and the interfaces for | |
16 | sources.list, acquire, cache gen and record parsing all use this class | |
1e3f4083 | 17 | to access the underlying representation. |
b2e465d6 AL |
18 | |
19 | ##################################################################### */ | |
20 | /*}}}*/ | |
21 | #ifndef PKGLIB_INDEXFILE_H | |
22 | #define PKGLIB_INDEXFILE_H | |
23 | ||
b2e465d6 AL |
24 | #include <apt-pkg/srcrecords.h> |
25 | #include <apt-pkg/pkgrecords.h> | |
453b82a3 DK |
26 | #include <apt-pkg/pkgcache.h> |
27 | #include <apt-pkg/cacheiterators.h> | |
472ff00e | 28 | #include <apt-pkg/macros.h> |
0a843901 | 29 | |
e3c1cfc7 | 30 | #include <map> |
453b82a3 DK |
31 | #include <string> |
32 | ||
a4f6bdc8 DK |
33 | #ifndef APT_8_CLEANER_HEADERS |
34 | using std::string; | |
35 | #endif | |
453b82a3 | 36 | #ifndef APT_10_CLEANER_HEADERS |
b2e465d6 | 37 | class pkgAcquire; |
453b82a3 DK |
38 | #endif |
39 | ||
b2e465d6 | 40 | class pkgCacheGenerator; |
c9443c01 | 41 | class pkgCacheListParser; |
b2e465d6 | 42 | class OpProgress; |
472ff00e | 43 | |
e3c1cfc7 DK |
44 | class IndexTarget /*{{{*/ |
45 | /** \brief Information about an index file. */ | |
46 | { | |
47 | public: | |
48 | /** \brief A URI from which the index file can be downloaded. */ | |
49 | std::string URI; | |
50 | ||
51 | /** \brief A description of the index file. */ | |
52 | std::string Description; | |
53 | ||
54 | /** \brief A shorter description of the index file. */ | |
55 | std::string ShortDesc; | |
56 | ||
57 | /** \brief The key by which this index file should be | |
58 | looked up within the meta index file. */ | |
59 | std::string MetaKey; | |
60 | ||
61 | /** \brief Is it okay if the file isn't found in the meta index */ | |
62 | bool IsOptional; | |
63 | ||
653ef26c DK |
64 | /** \brief If the file is downloaded compressed, do not unpack it */ |
65 | bool KeepCompressed; | |
66 | ||
001c76fe DK |
67 | /** \brief options with which this target was created |
68 | Prefer the usage of #Option if at all possible. | |
69 | Beware: Not all of these options are intended for public use */ | |
e3c1cfc7 DK |
70 | std::map<std::string, std::string> Options; |
71 | ||
72 | IndexTarget(std::string const &MetaKey, std::string const &ShortDesc, | |
73 | std::string const &LongDesc, std::string const &URI, bool const IsOptional, | |
653ef26c | 74 | bool const KeepCompressed, std::map<std::string, std::string> const &Options); |
e3c1cfc7 | 75 | |
001c76fe DK |
76 | enum OptionKeys { |
77 | SITE, | |
78 | RELEASE, | |
79 | COMPONENT, | |
80 | LANGUAGE, | |
81 | ARCHITECTURE, | |
82 | BASE_URI, | |
83 | REPO_URI, | |
84 | CREATED_BY, | |
8881b11e DK |
85 | TARGET_OF, |
86 | FILENAME, | |
3fd89e62 | 87 | EXISTING_FILENAME, |
1a3a14ac | 88 | PDIFFS, |
d7a51997 | 89 | COMPRESSIONTYPES, |
9adb9778 | 90 | DEFAULTENABLED, |
3090ae69 | 91 | SOURCESENTRY, |
24e8f24e | 92 | BY_HASH, |
0179cfa8 | 93 | KEEPCOMPRESSEDAS, |
7f2d1eef | 94 | FALLBACK_OF, |
39c724b4 | 95 | IDENTIFIER, |
001c76fe DK |
96 | }; |
97 | std::string Option(OptionKeys const Key) const; | |
1a3a14ac | 98 | bool OptionBool(OptionKeys const Key) const; |
8881b11e | 99 | std::string Format(std::string format) const; |
e3c1cfc7 DK |
100 | }; |
101 | /*}}}*/ | |
102 | ||
b2e465d6 AL |
103 | class pkgIndexFile |
104 | { | |
6c55f07a | 105 | void * const d; |
7db98ffc MZ |
106 | protected: |
107 | bool Trusted; | |
e3c1cfc7 | 108 | |
b2e465d6 AL |
109 | public: |
110 | ||
111 | class Type | |
112 | { | |
113 | public: | |
e3c1cfc7 | 114 | |
b2e465d6 AL |
115 | // Global list of Items supported |
116 | static Type **GlobalList; | |
117 | static unsigned long GlobalListLen; | |
c9443c01 | 118 | static Type *GetType(const char * const Type) APT_PURE; |
b2e465d6 AL |
119 | |
120 | const char *Label; | |
121 | ||
c9443c01 DK |
122 | virtual pkgRecords::Parser *CreatePkgParser(pkgCache::PkgFileIterator const &/*File*/) const {return 0;}; |
123 | virtual pkgSrcRecords::Parser *CreateSrcPkgParser(std::string const &/*File*/) const {return 0;}; | |
b2e465d6 | 124 | Type(); |
0432d731 | 125 | virtual ~Type() {}; |
b2e465d6 AL |
126 | }; |
127 | ||
128 | virtual const Type *GetType() const = 0; | |
129 | ||
130 | // Return descriptive strings of various sorts | |
c9443c01 | 131 | virtual std::string ArchiveInfo(pkgCache::VerIterator const &Ver) const; |
8f3ba4e8 | 132 | virtual std::string SourceInfo(pkgSrcRecords::Parser const &Record, |
b2e465d6 | 133 | pkgSrcRecords::File const &File) const; |
c9443c01 | 134 | virtual std::string Describe(bool const Short = false) const = 0; |
b2e465d6 AL |
135 | |
136 | // Interface for acquire | |
c9443c01 | 137 | virtual std::string ArchiveURI(std::string const &/*File*/) const {return std::string();}; |
b2e465d6 AL |
138 | |
139 | // Interface for the record parsers | |
140 | virtual pkgSrcRecords::Parser *CreateSrcParser() const {return 0;}; | |
141 | ||
142 | // Interface for the Cache Generator | |
143 | virtual bool Exists() const = 0; | |
144 | virtual bool HasPackages() const = 0; | |
145 | virtual unsigned long Size() const = 0; | |
c9443c01 | 146 | virtual bool Merge(pkgCacheGenerator &/*Gen*/, OpProgress* const /*Prog*/) { return true; }; |
b2e465d6 | 147 | virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const; |
7db98ffc | 148 | |
5dd00edb DK |
149 | APT_DEPRECATED_MSG("These methods make no sense anymore with multi-language support") static bool TranslationsAvailable(); |
150 | /* No intern need for this method anymore as the check for correctness | |
151 | is already done in getLanguages(). Note also that this check is | |
152 | rather bad (doesn't take three character like ast into account).*/ | |
153 | APT_DEPRECATED_MSG("These methods make no sense anymore with multi-language support") static bool CheckLanguageCode(const char * const Lang); | |
154 | /* As we have now possibly more than one LanguageCode this method is | |
155 | superseeded by a) private classmembers or b) getLanguages() */ | |
156 | APT_DEPRECATED_MSG("These methods make no sense anymore with multi-language support") static std::string LanguageCode(); | |
a52f938b | 157 | |
7db98ffc | 158 | bool IsTrusted() const { return Trusted; }; |
e3c1cfc7 | 159 | |
c9443c01 | 160 | explicit pkgIndexFile(bool const Trusted); |
c8a4ce6c | 161 | virtual ~pkgIndexFile(); |
b2e465d6 AL |
162 | }; |
163 | ||
c9443c01 DK |
164 | class pkgDebianIndexFile : public pkgIndexFile |
165 | { | |
166 | protected: | |
167 | virtual std::string IndexFileName() const = 0; | |
168 | virtual std::string GetComponent() const = 0; | |
169 | virtual std::string GetArchitecture() const = 0; | |
170 | virtual std::string GetProgressDescription() const = 0; | |
171 | virtual uint8_t GetIndexFlags() const = 0; | |
172 | virtual bool OpenListFile(FileFd &Pkg, std::string const &FileName) = 0; | |
173 | APT_HIDDEN virtual pkgCacheListParser * CreateListParser(FileFd &Pkg); | |
174 | ||
175 | public: | |
176 | virtual bool Merge(pkgCacheGenerator &Gen, OpProgress* const Prog) APT_OVERRIDE; | |
177 | virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const APT_OVERRIDE; | |
178 | ||
258b9e51 | 179 | explicit pkgDebianIndexFile(bool const Trusted); |
c9443c01 DK |
180 | virtual ~pkgDebianIndexFile(); |
181 | }; | |
182 | ||
183 | class pkgDebianIndexTargetFile : public pkgDebianIndexFile | |
e3c1cfc7 | 184 | { |
6c55f07a | 185 | void * const d; |
e3c1cfc7 DK |
186 | protected: |
187 | IndexTarget const Target; | |
188 | ||
c9443c01 DK |
189 | virtual std::string IndexFileName() const APT_OVERRIDE; |
190 | virtual std::string GetComponent() const APT_OVERRIDE; | |
191 | virtual std::string GetArchitecture() const APT_OVERRIDE; | |
192 | virtual std::string GetProgressDescription() const APT_OVERRIDE; | |
193 | virtual bool OpenListFile(FileFd &Pkg, std::string const &FileName) APT_OVERRIDE; | |
194 | ||
195 | public: | |
196 | virtual std::string ArchiveURI(std::string const &File) const APT_OVERRIDE; | |
197 | virtual std::string Describe(bool const Short = false) const APT_OVERRIDE; | |
198 | virtual bool Exists() const APT_OVERRIDE; | |
199 | virtual unsigned long Size() const APT_OVERRIDE; | |
200 | ||
201 | pkgDebianIndexTargetFile(IndexTarget const &Target, bool const Trusted); | |
202 | virtual ~pkgDebianIndexTargetFile(); | |
203 | }; | |
204 | ||
205 | class pkgDebianIndexRealFile : public pkgDebianIndexFile | |
206 | { | |
207 | void * const d; | |
208 | protected: | |
209 | std::string File; | |
e3c1cfc7 | 210 | |
c9443c01 DK |
211 | virtual std::string IndexFileName() const APT_OVERRIDE; |
212 | virtual std::string GetProgressDescription() const APT_OVERRIDE; | |
213 | virtual bool OpenListFile(FileFd &Pkg, std::string const &FileName) APT_OVERRIDE; | |
e3c1cfc7 | 214 | public: |
c9443c01 | 215 | virtual std::string Describe(bool const /*Short*/ = false) const APT_OVERRIDE; |
3b302846 DK |
216 | virtual bool Exists() const APT_OVERRIDE; |
217 | virtual unsigned long Size() const APT_OVERRIDE; | |
c9443c01 | 218 | virtual std::string ArchiveURI(std::string const &/*File*/) const APT_OVERRIDE; |
e3c1cfc7 | 219 | |
c9443c01 DK |
220 | pkgDebianIndexRealFile(std::string const &File, bool const Trusted); |
221 | virtual ~pkgDebianIndexRealFile(); | |
e3c1cfc7 DK |
222 | }; |
223 | ||
b2e465d6 | 224 | #endif |