]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
7db98ffc | 3 | // $Id: indexfile.cc,v 1.2.2.1 2003/12/24 23:09:17 mdz Exp $ |
b2e465d6 AL |
4 | /* ###################################################################### |
5 | ||
6 | Index File - Abstraction for an index of archive/souce file. | |
7 | ||
8 | ##################################################################### */ | |
9 | /*}}}*/ | |
10 | // Include Files /*{{{*/ | |
ea542140 DK |
11 | #include<config.h> |
12 | ||
e3c1cfc7 | 13 | #include <apt-pkg/configuration.h> |
b2e465d6 AL |
14 | #include <apt-pkg/indexfile.h> |
15 | #include <apt-pkg/error.h> | |
e3c1cfc7 | 16 | #include <apt-pkg/fileutl.h> |
45df0ad2 | 17 | #include <apt-pkg/aptconfiguration.h> |
453b82a3 | 18 | #include <apt-pkg/pkgcache.h> |
c9443c01 | 19 | #include <apt-pkg/pkgcachegen.h> |
453b82a3 DK |
20 | #include <apt-pkg/cacheiterators.h> |
21 | #include <apt-pkg/srcrecords.h> | |
d7a51997 | 22 | #include <apt-pkg/strutl.h> |
c9443c01 | 23 | #include <apt-pkg/progress.h> |
64b66a46 | 24 | #include <apt-pkg/deblistparser.h> |
453b82a3 | 25 | #include <apt-pkg/macros.h> |
a52f938b | 26 | |
64b66a46 | 27 | #include <apt-pkg/debindexfile.h> |
c9443c01 | 28 | |
c9443c01 | 29 | #include <sys/stat.h> |
c9443c01 | 30 | |
453b82a3 DK |
31 | #include <string> |
32 | #include <vector> | |
a52f938b | 33 | #include <clocale> |
4f333a8b | 34 | #include <cstring> |
c9443c01 | 35 | #include <memory> |
b2e465d6 AL |
36 | /*}}}*/ |
37 | ||
38 | // Global list of Item supported | |
39 | static pkgIndexFile::Type *ItmList[10]; | |
40 | pkgIndexFile::Type **pkgIndexFile::Type::GlobalList = ItmList; | |
41 | unsigned long pkgIndexFile::Type::GlobalListLen = 0; | |
42 | ||
43 | // Type::Type - Constructor /*{{{*/ | |
44 | // --------------------------------------------------------------------- | |
45 | /* */ | |
46 | pkgIndexFile::Type::Type() | |
47 | { | |
48 | ItmList[GlobalListLen] = this; | |
dd688285 DK |
49 | GlobalListLen++; |
50 | Label = NULL; | |
b2e465d6 AL |
51 | } |
52 | /*}}}*/ | |
53 | // Type::GetType - Locate the type by name /*{{{*/ | |
54 | // --------------------------------------------------------------------- | |
55 | /* */ | |
56 | pkgIndexFile::Type *pkgIndexFile::Type::GetType(const char *Type) | |
57 | { | |
58 | for (unsigned I = 0; I != GlobalListLen; I++) | |
59 | if (strcmp(GlobalList[I]->Label,Type) == 0) | |
60 | return GlobalList[I]; | |
61 | return 0; | |
e3c1cfc7 DK |
62 | } |
63 | /*}}}*/ | |
c9443c01 | 64 | pkgIndexFile::pkgIndexFile(bool const Trusted) : /*{{{*/ |
6c55f07a | 65 | d(NULL), Trusted(Trusted) |
e3c1cfc7 | 66 | { |
b2e465d6 AL |
67 | } |
68 | /*}}}*/ | |
b2e465d6 | 69 | // IndexFile::ArchiveInfo - Stub /*{{{*/ |
64b66a46 | 70 | std::string pkgIndexFile::ArchiveInfo(pkgCache::VerIterator const &Ver) const |
b2e465d6 | 71 | { |
64b66a46 DK |
72 | debDebPkgFileIndex const * const debfile = dynamic_cast<debDebPkgFileIndex const*>(this); |
73 | if (debfile != nullptr) | |
74 | return debfile->ArchiveInfo_impl(Ver); | |
8f3ba4e8 | 75 | return std::string(); |
b2e465d6 AL |
76 | } |
77 | /*}}}*/ | |
78 | // IndexFile::FindInCache - Stub /*{{{*/ | |
b2e465d6 AL |
79 | pkgCache::PkgFileIterator pkgIndexFile::FindInCache(pkgCache &Cache) const |
80 | { | |
81 | return pkgCache::PkgFileIterator(Cache); | |
82 | } | |
83 | /*}}}*/ | |
84 | // IndexFile::SourceIndex - Stub /*{{{*/ | |
65512241 DK |
85 | std::string pkgIndexFile::SourceInfo(pkgSrcRecords::Parser const &/*Record*/, |
86 | pkgSrcRecords::File const &/*File*/) const | |
b2e465d6 | 87 | { |
8f3ba4e8 | 88 | return std::string(); |
b2e465d6 AL |
89 | } |
90 | /*}}}*/ | |
45df0ad2 | 91 | // IndexFile::TranslationsAvailable - Check if will use Translation /*{{{*/ |
45df0ad2 DK |
92 | bool pkgIndexFile::TranslationsAvailable() { |
93 | return (APT::Configuration::getLanguages().empty() != true); | |
a52f938b OS |
94 | } |
95 | /*}}}*/ | |
45df0ad2 | 96 | // IndexFile::CheckLanguageCode - Check the Language Code /*{{{*/ |
5dd00edb | 97 | bool pkgIndexFile::CheckLanguageCode(const char * const Lang) |
a52f938b OS |
98 | { |
99 | if (strlen(Lang) == 2 || (strlen(Lang) == 5 && Lang[2] == '_')) | |
100 | return true; | |
101 | ||
102 | if (strcmp(Lang,"C") != 0) | |
103 | _error->Warning("Wrong language code %s", Lang); | |
104 | ||
105 | return false; | |
106 | } | |
107 | /*}}}*/ | |
45df0ad2 | 108 | // IndexFile::LanguageCode - Return the Language Code /*{{{*/ |
5dd00edb | 109 | std::string pkgIndexFile::LanguageCode() { |
668ae33a | 110 | APT_IGNORE_DEPRECATED_PUSH |
45df0ad2 DK |
111 | if (TranslationsAvailable() == false) |
112 | return ""; | |
113 | return APT::Configuration::getLanguages()[0]; | |
668ae33a | 114 | APT_IGNORE_DEPRECATED_POP |
a52f938b OS |
115 | } |
116 | /*}}}*/ | |
e3c1cfc7 DK |
117 | |
118 | // IndexTarget - Constructor /*{{{*/ | |
119 | IndexTarget::IndexTarget(std::string const &MetaKey, std::string const &ShortDesc, | |
120 | std::string const &LongDesc, std::string const &URI, bool const IsOptional, | |
653ef26c DK |
121 | bool const KeepCompressed, std::map<std::string, std::string> const &Options) : |
122 | URI(URI), Description(LongDesc), ShortDesc(ShortDesc), MetaKey(MetaKey), | |
123 | IsOptional(IsOptional), KeepCompressed(KeepCompressed), Options(Options) | |
e3c1cfc7 DK |
124 | { |
125 | } | |
126 | /*}}}*/ | |
001c76fe | 127 | std::string IndexTarget::Option(OptionKeys const EnumKey) const /*{{{*/ |
e3c1cfc7 | 128 | { |
001c76fe DK |
129 | std::string Key; |
130 | switch (EnumKey) | |
131 | { | |
132 | #define APT_CASE(X) case X: Key = #X; break | |
133 | APT_CASE(SITE); | |
134 | APT_CASE(RELEASE); | |
135 | APT_CASE(COMPONENT); | |
136 | APT_CASE(LANGUAGE); | |
137 | APT_CASE(ARCHITECTURE); | |
138 | APT_CASE(BASE_URI); | |
139 | APT_CASE(REPO_URI); | |
39c724b4 | 140 | APT_CASE(IDENTIFIER); |
8881b11e | 141 | APT_CASE(TARGET_OF); |
001c76fe | 142 | APT_CASE(CREATED_BY); |
7f2d1eef | 143 | APT_CASE(FALLBACK_OF); |
1a3a14ac | 144 | APT_CASE(PDIFFS); |
9adb9778 | 145 | APT_CASE(DEFAULTENABLED); |
d7a51997 | 146 | APT_CASE(COMPRESSIONTYPES); |
3090ae69 | 147 | APT_CASE(SOURCESENTRY); |
24e8f24e | 148 | APT_CASE(BY_HASH); |
0179cfa8 | 149 | APT_CASE(KEEPCOMPRESSEDAS); |
001c76fe | 150 | #undef APT_CASE |
8881b11e | 151 | case FILENAME: return _config->FindDir("Dir::State::lists") + URItoFileName(URI); |
3fd89e62 DK |
152 | case EXISTING_FILENAME: |
153 | std::string const filename = Option(FILENAME); | |
d7a51997 | 154 | std::vector<std::string> const types = VectorizeString(Option(COMPRESSIONTYPES), ' '); |
3fd89e62 DK |
155 | for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t) |
156 | { | |
157 | if (t->empty()) | |
158 | continue; | |
159 | std::string const file = (*t == "uncompressed") ? filename : (filename + "." + *t); | |
160 | if (FileExists(file)) | |
161 | return file; | |
162 | } | |
163 | return ""; | |
001c76fe | 164 | } |
e3c1cfc7 DK |
165 | std::map<std::string,std::string>::const_iterator const M = Options.find(Key); |
166 | if (M == Options.end()) | |
167 | return ""; | |
168 | return M->second; | |
169 | } | |
170 | /*}}}*/ | |
1a3a14ac DK |
171 | bool IndexTarget::OptionBool(OptionKeys const EnumKey) const /*{{{*/ |
172 | { | |
173 | return StringToBool(Option(EnumKey)); | |
174 | } | |
175 | /*}}}*/ | |
8881b11e DK |
176 | std::string IndexTarget::Format(std::string format) const /*{{{*/ |
177 | { | |
178 | for (std::map<std::string, std::string>::const_iterator O = Options.begin(); O != Options.end(); ++O) | |
179 | { | |
180 | format = SubstVar(format, std::string("$(") + O->first + ")", O->second); | |
181 | } | |
182 | format = SubstVar(format, "$(METAKEY)", MetaKey); | |
183 | format = SubstVar(format, "$(SHORTDESC)", ShortDesc); | |
184 | format = SubstVar(format, "$(DESCRIPTION)", Description); | |
185 | format = SubstVar(format, "$(URI)", URI); | |
186 | format = SubstVar(format, "$(FILENAME)", Option(IndexTarget::FILENAME)); | |
187 | return format; | |
188 | } | |
189 | /*}}}*/ | |
e3c1cfc7 | 190 | |
c9443c01 DK |
191 | pkgDebianIndexTargetFile::pkgDebianIndexTargetFile(IndexTarget const &Target, bool const Trusted) :/*{{{*/ |
192 | pkgDebianIndexFile(Trusted), d(NULL), Target(Target) | |
e3c1cfc7 DK |
193 | { |
194 | } | |
195 | /*}}}*/ | |
c9443c01 | 196 | std::string pkgDebianIndexTargetFile::ArchiveURI(std::string const &File) const/*{{{*/ |
e3c1cfc7 | 197 | { |
001c76fe | 198 | return Target.Option(IndexTarget::REPO_URI) + File; |
e3c1cfc7 DK |
199 | } |
200 | /*}}}*/ | |
c9443c01 | 201 | std::string pkgDebianIndexTargetFile::Describe(bool const Short) const /*{{{*/ |
e3c1cfc7 DK |
202 | { |
203 | if (Short) | |
204 | return Target.Description; | |
205 | return Target.Description + " (" + IndexFileName() + ")"; | |
206 | } | |
207 | /*}}}*/ | |
c9443c01 | 208 | std::string pkgDebianIndexTargetFile::IndexFileName() const /*{{{*/ |
e3c1cfc7 | 209 | { |
8881b11e | 210 | std::string const s = Target.Option(IndexTarget::FILENAME); |
e3c1cfc7 DK |
211 | if (FileExists(s)) |
212 | return s; | |
213 | ||
d7a51997 | 214 | std::vector<std::string> const types = VectorizeString(Target.Option(IndexTarget::COMPRESSIONTYPES), ' '); |
e3c1cfc7 DK |
215 | for (std::vector<std::string>::const_iterator t = types.begin(); t != types.end(); ++t) |
216 | { | |
217 | std::string p = s + '.' + *t; | |
218 | if (FileExists(p)) | |
219 | return p; | |
220 | } | |
221 | return s; | |
222 | } | |
223 | /*}}}*/ | |
c9443c01 | 224 | unsigned long pkgDebianIndexTargetFile::Size() const /*{{{*/ |
e3c1cfc7 DK |
225 | { |
226 | unsigned long size = 0; | |
227 | ||
228 | /* we need to ignore errors here; if the lists are absent, just return 0 */ | |
229 | _error->PushToStack(); | |
230 | ||
231 | FileFd f(IndexFileName(), FileFd::ReadOnly, FileFd::Extension); | |
232 | if (!f.Failed()) | |
233 | size = f.Size(); | |
234 | ||
235 | if (_error->PendingError() == true) | |
236 | size = 0; | |
237 | _error->RevertToStack(); | |
238 | ||
239 | return size; | |
240 | } | |
241 | /*}}}*/ | |
c9443c01 | 242 | bool pkgDebianIndexTargetFile::Exists() const /*{{{*/ |
e3c1cfc7 DK |
243 | { |
244 | return FileExists(IndexFileName()); | |
245 | } | |
246 | /*}}}*/ | |
c9443c01 DK |
247 | std::string pkgDebianIndexTargetFile::GetArchitecture() const /*{{{*/ |
248 | { | |
249 | return Target.Option(IndexTarget::ARCHITECTURE); | |
250 | } | |
251 | /*}}}*/ | |
252 | std::string pkgDebianIndexTargetFile::GetComponent() const /*{{{*/ | |
253 | { | |
254 | return Target.Option(IndexTarget::COMPONENT); | |
255 | } | |
256 | /*}}}*/ | |
257 | bool pkgDebianIndexTargetFile::OpenListFile(FileFd &Pkg, std::string const &FileName)/*{{{*/ | |
258 | { | |
259 | if (Pkg.Open(FileName, FileFd::ReadOnly, FileFd::Extension) == false) | |
260 | return _error->Error("Problem opening %s",FileName.c_str()); | |
261 | return true; | |
262 | } | |
263 | /*}}}*/ | |
264 | std::string pkgDebianIndexTargetFile::GetProgressDescription() const | |
265 | { | |
266 | return Target.Description; | |
267 | } | |
268 | ||
7f58427b DK |
269 | pkgDebianIndexRealFile::pkgDebianIndexRealFile(std::string const &pFile, bool const Trusted) :/*{{{*/ |
270 | pkgDebianIndexFile(Trusted), d(NULL) | |
c9443c01 | 271 | { |
a249b3e6 DK |
272 | if (pFile.empty()) |
273 | ; | |
274 | else if (pFile == "/nonexistent/stdin") | |
7f58427b DK |
275 | File = pFile; |
276 | else | |
277 | File = flAbsPath(pFile); | |
c9443c01 DK |
278 | } |
279 | /*}}}*/ | |
280 | // IndexRealFile::Size - Return the size of the index /*{{{*/ | |
281 | unsigned long pkgDebianIndexRealFile::Size() const | |
282 | { | |
283 | struct stat S; | |
284 | if (stat(File.c_str(),&S) != 0) | |
285 | return 0; | |
286 | return S.st_size; | |
287 | } | |
288 | /*}}}*/ | |
289 | bool pkgDebianIndexRealFile::Exists() const /*{{{*/ | |
290 | { | |
291 | return FileExists(File); | |
292 | } | |
293 | /*}}}*/ | |
294 | std::string pkgDebianIndexRealFile::Describe(bool const /*Short*/) const/*{{{*/ | |
295 | { | |
296 | return File; | |
297 | } | |
298 | /*}}}*/ | |
299 | std::string pkgDebianIndexRealFile::ArchiveURI(std::string const &/*File*/) const/*{{{*/ | |
300 | { | |
301 | return "file:" + File; | |
302 | } | |
303 | /*}}}*/ | |
304 | std::string pkgDebianIndexRealFile::IndexFileName() const /*{{{*/ | |
305 | { | |
306 | return File; | |
307 | } | |
308 | /*}}}*/ | |
309 | std::string pkgDebianIndexRealFile::GetProgressDescription() const | |
310 | { | |
311 | return File; | |
312 | } | |
313 | bool pkgDebianIndexRealFile::OpenListFile(FileFd &Pkg, std::string const &FileName)/*{{{*/ | |
314 | { | |
f41352ad | 315 | if (Pkg.Open(FileName, FileFd::ReadOnly, FileFd::Extension) == false) |
c9443c01 DK |
316 | return _error->Error("Problem opening %s",FileName.c_str()); |
317 | return true; | |
318 | } | |
319 | /*}}}*/ | |
320 | ||
321 | pkgDebianIndexFile::pkgDebianIndexFile(bool const Trusted) : pkgIndexFile(Trusted) | |
322 | { | |
323 | } | |
324 | pkgDebianIndexFile::~pkgDebianIndexFile() | |
325 | { | |
326 | } | |
327 | pkgCacheListParser * pkgDebianIndexFile::CreateListParser(FileFd &Pkg) | |
328 | { | |
329 | if (Pkg.IsOpen() == false) | |
c48ef894 | 330 | return nullptr; |
c9443c01 | 331 | _error->PushToStack(); |
7f8c0eed | 332 | pkgCacheListParser * const Parser = new debListParser(&Pkg); |
c9443c01 DK |
333 | bool const newError = _error->PendingError(); |
334 | _error->MergeWithStack(); | |
c48ef894 DK |
335 | if (newError) |
336 | { | |
337 | delete Parser; | |
338 | return nullptr; | |
339 | } | |
340 | else | |
341 | return Parser; | |
c9443c01 DK |
342 | } |
343 | bool pkgDebianIndexFile::Merge(pkgCacheGenerator &Gen,OpProgress * const Prog) | |
344 | { | |
345 | std::string const PackageFile = IndexFileName(); | |
346 | FileFd Pkg; | |
347 | if (OpenListFile(Pkg, PackageFile) == false) | |
348 | return false; | |
349 | _error->PushToStack(); | |
350 | std::unique_ptr<pkgCacheListParser> Parser(CreateListParser(Pkg)); | |
351 | bool const newError = _error->PendingError(); | |
95278287 | 352 | _error->MergeWithStack(); |
c9443c01 DK |
353 | if (newError == false && Parser == nullptr) |
354 | return true; | |
355 | if (Parser == NULL) | |
356 | return false; | |
357 | ||
358 | if (Prog != NULL) | |
359 | Prog->SubProgress(0, GetProgressDescription()); | |
360 | ||
361 | if (Gen.SelectFile(PackageFile, *this, GetArchitecture(), GetComponent(), GetIndexFlags()) == false) | |
362 | return _error->Error("Problem with SelectFile %s",PackageFile.c_str()); | |
363 | ||
364 | // Store the IMS information | |
365 | pkgCache::PkgFileIterator File = Gen.GetCurFile(); | |
366 | pkgCacheGenerator::Dynamic<pkgCache::PkgFileIterator> DynFile(File); | |
367 | File->Size = Pkg.FileSize(); | |
368 | File->mtime = Pkg.ModificationTime(); | |
369 | ||
370 | if (Gen.MergeList(*Parser) == false) | |
371 | return _error->Error("Problem with MergeList %s",PackageFile.c_str()); | |
372 | return true; | |
373 | } | |
374 | pkgCache::PkgFileIterator pkgDebianIndexFile::FindInCache(pkgCache &Cache) const | |
375 | { | |
376 | std::string const FileName = IndexFileName(); | |
377 | pkgCache::PkgFileIterator File = Cache.FileBegin(); | |
378 | for (; File.end() == false; ++File) | |
379 | { | |
380 | if (File.FileName() == NULL || FileName != File.FileName()) | |
381 | continue; | |
382 | ||
383 | struct stat St; | |
384 | if (stat(File.FileName(),&St) != 0) | |
385 | { | |
386 | if (_config->FindB("Debug::pkgCacheGen", false)) | |
387 | std::clog << "DebianIndexFile::FindInCache - stat failed on " << File.FileName() << std::endl; | |
388 | return pkgCache::PkgFileIterator(Cache); | |
389 | } | |
390 | if ((map_filesize_t)St.st_size != File->Size || St.st_mtime != File->mtime) | |
391 | { | |
392 | if (_config->FindB("Debug::pkgCacheGen", false)) | |
393 | std::clog << "DebianIndexFile::FindInCache - size (" << St.st_size << " <> " << File->Size | |
394 | << ") or mtime (" << St.st_mtime << " <> " << File->mtime | |
395 | << ") doesn't match for " << File.FileName() << std::endl; | |
396 | return pkgCache::PkgFileIterator(Cache); | |
397 | } | |
398 | return File; | |
399 | } | |
400 | ||
401 | return File; | |
402 | } | |
c8a4ce6c DK |
403 | |
404 | APT_CONST pkgIndexFile::~pkgIndexFile() {} | |
c9443c01 DK |
405 | APT_CONST pkgDebianIndexTargetFile::~pkgDebianIndexTargetFile() {} |
406 | APT_CONST pkgDebianIndexRealFile::~pkgDebianIndexRealFile() {} |