]> git.saurik.com Git - apt.git/blame - apt-pkg/cacheset.cc
allow individual targets to be kept compressed
[apt.git] / apt-pkg / cacheset.cc
CommitLineData
ffee1c2b
DK
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* ######################################################################
4
5 Simple wrapper around a std::set to provide a similar interface to
7959c5ed
DK
6 a set of cache structures as to the complete set of all structures
7 in the pkgCache. Currently only Package is supported.
ffee1c2b
DK
8
9 ##################################################################### */
10 /*}}}*/
11// Include Files /*{{{*/
ea542140
DK
12#include <config.h>
13
78c32596 14#include <apt-pkg/aptconfiguration.h>
472ff00e 15#include <apt-pkg/cachefile.h>
9ba5aa3b 16#include <apt-pkg/cachefilter.h>
8fde7239 17#include <apt-pkg/cacheset.h>
ffee1c2b 18#include <apt-pkg/error.h>
856d3b06 19#include <apt-pkg/versionmatch.h>
472ff00e
DK
20#include <apt-pkg/pkgrecords.h>
21#include <apt-pkg/policy.h>
453b82a3
DK
22#include <apt-pkg/cacheiterators.h>
23#include <apt-pkg/configuration.h>
24#include <apt-pkg/depcache.h>
25#include <apt-pkg/macros.h>
26#include <apt-pkg/pkgcache.h>
fdff5b03 27#include <apt-pkg/fileutl.h>
ffee1c2b 28
453b82a3
DK
29#include <stddef.h>
30#include <stdio.h>
31#include <string.h>
ffee1c2b 32#include <regex.h>
453b82a3
DK
33#include <list>
34#include <string>
35#include <vector>
ea542140
DK
36
37#include <apti18n.h>
ffee1c2b
DK
38 /*}}}*/
39namespace APT {
1e064088
DK
40// PackageFrom - selecting the appropriate method for package selection /*{{{*/
41bool CacheSetHelper::PackageFrom(enum PkgSelector const select, PackageContainerInterface * const pci,
42 pkgCacheFile &Cache, std::string const &pattern) {
43 switch (select) {
44 case UNKNOWN: return false;
45 case REGEX: return PackageFromRegEx(pci, Cache, pattern);
46 case TASK: return PackageFromTask(pci, Cache, pattern);
47 case FNMATCH: return PackageFromFnmatch(pci, Cache, pattern);
48 case PACKAGENAME: return PackageFromPackageName(pci, Cache, pattern);
49 case STRING: return PackageFromString(pci, Cache, pattern);
50 }
51 return false;
52}
53 /*}}}*/
54// PackageFromTask - Return all packages in the cache from a specific task /*{{{*/
55bool CacheSetHelper::PackageFromTask(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) {
bd631595 56 size_t const archfound = pattern.find_last_of(':');
dc0f01f7
DK
57 std::string arch = "native";
58 if (archfound != std::string::npos) {
59 arch = pattern.substr(archfound+1);
60 pattern.erase(archfound);
61 }
62
63 if (pattern[pattern.length() -1] != '^')
15fc8636 64 return false;
dc0f01f7
DK
65 pattern.erase(pattern.length()-1);
66
bd631595 67 if (unlikely(Cache.GetPkgCache() == 0 || Cache.GetDepCache() == 0))
15fc8636
DK
68 return false;
69
70 bool const wasEmpty = pci->empty();
71 if (wasEmpty == true)
fdba4d53 72 pci->setConstructor(CacheSetHelper::TASK);
bd631595 73
dc0f01f7
DK
74 // get the records
75 pkgRecords Recs(Cache);
76
77 // build regexp for the task
78 regex_t Pattern;
79 char S[300];
80 snprintf(S, sizeof(S), "^Task:.*[, ]%s([, ]|$)", pattern.c_str());
81 if(regcomp(&Pattern,S, REG_EXTENDED | REG_NOSUB | REG_NEWLINE) != 0) {
82 _error->Error("Failed to compile task regexp");
15fc8636 83 return false;
dc0f01f7
DK
84 }
85
15fc8636 86 bool found = false;
dc0f01f7
DK
87 for (pkgCache::GrpIterator Grp = Cache->GrpBegin(); Grp.end() == false; ++Grp) {
88 pkgCache::PkgIterator Pkg = Grp.FindPkg(arch);
89 if (Pkg.end() == true)
90 continue;
91 pkgCache::VerIterator ver = Cache[Pkg].CandidateVerIter(Cache);
92 if(ver.end() == true)
93 continue;
94
95 pkgRecords::Parser &parser = Recs.Lookup(ver.FileList());
96 const char *start, *end;
97 parser.GetRec(start,end);
98 unsigned int const length = end - start;
62d8a765
DK
99 if (unlikely(length == 0))
100 continue;
dc0f01f7
DK
101 char buf[length];
102 strncpy(buf, start, length);
103 buf[length-1] = '\0';
70e706ad
DK
104 if (regexec(&Pattern, buf, 0, 0, 0) != 0)
105 continue;
106
15fc8636 107 pci->insert(Pkg);
1e064088 108 showPackageSelection(Pkg, CacheSetHelper::TASK, pattern);
15fc8636 109 found = true;
dc0f01f7 110 }
70e706ad 111 regfree(&Pattern);
dc0f01f7 112
15fc8636 113 if (found == false) {
1e064088 114 canNotFindPackage(CacheSetHelper::TASK, pci, Cache, pattern);
fdba4d53 115 pci->setConstructor(CacheSetHelper::UNKNOWN);
15fc8636
DK
116 return false;
117 }
118
fdba4d53
DK
119 if (wasEmpty == false && pci->getConstructor() != CacheSetHelper::UNKNOWN)
120 pci->setConstructor(CacheSetHelper::UNKNOWN);
dc0f01f7 121
15fc8636 122 return true;
dc0f01f7
DK
123}
124 /*}}}*/
1e064088
DK
125// PackageFromRegEx - Return all packages in the cache matching a pattern /*{{{*/
126bool CacheSetHelper::PackageFromRegEx(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) {
6e235c66 127 static const char * const isregex = ".?+*|[^$";
6e235c66 128 if (pattern.find_first_of(isregex) == std::string::npos)
15fc8636
DK
129 return false;
130
131 bool const wasEmpty = pci->empty();
132 if (wasEmpty == true)
fdba4d53 133 pci->setConstructor(CacheSetHelper::REGEX);
ffee1c2b 134
6e235c66 135 size_t archfound = pattern.find_last_of(':');
dc0f01f7 136 std::string arch = "native";
6e235c66
DK
137 if (archfound != std::string::npos) {
138 arch = pattern.substr(archfound+1);
139 if (arch.find_first_of(isregex) == std::string::npos)
140 pattern.erase(archfound);
141 else
142 arch = "native";
143 }
144
bd631595 145 if (unlikely(Cache.GetPkgCache() == 0))
15fc8636 146 return false;
bd631595 147
9ba5aa3b
DK
148 APT::CacheFilter::PackageNameMatchesRegEx regexfilter(pattern);
149
15fc8636 150 bool found = false;
9ba5aa3b
DK
151 for (pkgCache::GrpIterator Grp = Cache.GetPkgCache()->GrpBegin(); Grp.end() == false; ++Grp) {
152 if (regexfilter(Grp) == false)
ffee1c2b 153 continue;
6e235c66 154 pkgCache::PkgIterator Pkg = Grp.FindPkg(arch);
78c32596 155 if (Pkg.end() == true) {
6e235c66
DK
156 if (archfound == std::string::npos) {
157 std::vector<std::string> archs = APT::Configuration::getArchitectures();
158 for (std::vector<std::string>::const_iterator a = archs.begin();
159 a != archs.end() && Pkg.end() != true; ++a)
160 Pkg = Grp.FindPkg(*a);
78c32596
DK
161 }
162 if (Pkg.end() == true)
163 continue;
164 }
ffee1c2b 165
15fc8636 166 pci->insert(Pkg);
1e064088 167 showPackageSelection(Pkg, CacheSetHelper::REGEX, pattern);
15fc8636 168 found = true;
ffee1c2b 169 }
ffee1c2b 170
15fc8636 171 if (found == false) {
1e064088 172 canNotFindPackage(CacheSetHelper::REGEX, pci, Cache, pattern);
fdba4d53 173 pci->setConstructor(CacheSetHelper::UNKNOWN);
15fc8636
DK
174 return false;
175 }
176
fdba4d53
DK
177 if (wasEmpty == false && pci->getConstructor() != CacheSetHelper::UNKNOWN)
178 pci->setConstructor(CacheSetHelper::UNKNOWN);
b9179170
MV
179
180 return true;
181}
182 /*}}}*/
1e064088
DK
183// PackageFromFnmatch - Returns the package defined by this fnmatch /*{{{*/
184bool CacheSetHelper::PackageFromFnmatch(PackageContainerInterface * const pci,
185 pkgCacheFile &Cache, std::string pattern)
b9179170
MV
186{
187 static const char * const isfnmatch = ".?*[]!";
188 if (pattern.find_first_of(isfnmatch) == std::string::npos)
189 return false;
190
191 bool const wasEmpty = pci->empty();
192 if (wasEmpty == true)
fdba4d53 193 pci->setConstructor(CacheSetHelper::FNMATCH);
b9179170
MV
194
195 size_t archfound = pattern.find_last_of(':');
196 std::string arch = "native";
197 if (archfound != std::string::npos) {
198 arch = pattern.substr(archfound+1);
199 if (arch.find_first_of(isfnmatch) == std::string::npos)
200 pattern.erase(archfound);
201 else
202 arch = "native";
203 }
204
205 if (unlikely(Cache.GetPkgCache() == 0))
206 return false;
207
208 APT::CacheFilter::PackageNameMatchesFnmatch filter(pattern);
209
210 bool found = false;
211 for (pkgCache::GrpIterator Grp = Cache.GetPkgCache()->GrpBegin(); Grp.end() == false; ++Grp) {
212 if (filter(Grp) == false)
213 continue;
214 pkgCache::PkgIterator Pkg = Grp.FindPkg(arch);
215 if (Pkg.end() == true) {
216 if (archfound == std::string::npos) {
217 std::vector<std::string> archs = APT::Configuration::getArchitectures();
218 for (std::vector<std::string>::const_iterator a = archs.begin();
219 a != archs.end() && Pkg.end() != true; ++a)
220 Pkg = Grp.FindPkg(*a);
221 }
222 if (Pkg.end() == true)
223 continue;
224 }
225
226 pci->insert(Pkg);
1e064088 227 showPackageSelection(Pkg, CacheSetHelper::FNMATCH, pattern);
b9179170
MV
228 found = true;
229 }
230
231 if (found == false) {
1e064088 232 canNotFindPackage(CacheSetHelper::FNMATCH, pci, Cache, pattern);
fdba4d53 233 pci->setConstructor(CacheSetHelper::UNKNOWN);
b9179170
MV
234 return false;
235 }
236
fdba4d53
DK
237 if (wasEmpty == false && pci->getConstructor() != CacheSetHelper::UNKNOWN)
238 pci->setConstructor(CacheSetHelper::UNKNOWN);
70e706ad 239
15fc8636 240 return true;
78c32596
DK
241}
242 /*}}}*/
1e064088
DK
243// PackageFromName - Returns the package defined by this string /*{{{*/
244pkgCache::PkgIterator CacheSetHelper::PackageFromName(pkgCacheFile &Cache,
245 std::string const &str) {
bd631595
DK
246 std::string pkg = str;
247 size_t archfound = pkg.find_last_of(':');
248 std::string arch;
249 if (archfound != std::string::npos) {
250 arch = pkg.substr(archfound+1);
251 pkg.erase(archfound);
252 }
253
254 if (Cache.GetPkgCache() == 0)
255 return pkgCache::PkgIterator(Cache, 0);
256
257 pkgCache::PkgIterator Pkg(Cache, 0);
258 if (arch.empty() == true) {
259 pkgCache::GrpIterator Grp = Cache.GetPkgCache()->FindGrp(pkg);
260 if (Grp.end() == false)
261 Pkg = Grp.FindPreferredPkg();
262 } else
263 Pkg = Cache.GetPkgCache()->FindPkg(pkg, arch);
264
265 if (Pkg.end() == true)
1e064088 266 return canNotFindPkgName(Cache, str);
bd631595
DK
267 return Pkg;
268}
269 /*}}}*/
1e064088
DK
270// PackageFromPackageName - Returns the package defined by this string /*{{{*/
271bool CacheSetHelper::PackageFromPackageName(PackageContainerInterface * const pci, pkgCacheFile &Cache,
272 std::string pkg) {
2f0d4029
DK
273 if (unlikely(Cache.GetPkgCache() == 0))
274 return false;
275
276 size_t const archfound = pkg.find_last_of(':');
277 std::string arch;
278 if (archfound != std::string::npos) {
279 arch = pkg.substr(archfound+1);
280 pkg.erase(archfound);
f1d86c0e
DK
281 if (arch == "all" || arch == "native")
282 arch = _config->Find("APT::Architecture");
2f0d4029
DK
283 }
284
285 pkgCache::GrpIterator Grp = Cache.GetPkgCache()->FindGrp(pkg);
286 if (Grp.end() == false) {
287 if (arch.empty() == true) {
288 pkgCache::PkgIterator Pkg = Grp.FindPreferredPkg();
289 if (Pkg.end() == false)
290 {
291 pci->insert(Pkg);
292 return true;
293 }
294 } else {
295 bool found = false;
296 // for 'linux-any' return the first package matching, for 'linux-*' return all matches
297 bool const isGlobal = arch.find('*') != std::string::npos;
298 APT::CacheFilter::PackageArchitectureMatchesSpecification pams(arch);
299 for (pkgCache::PkgIterator Pkg = Grp.PackageList(); Pkg.end() == false; Pkg = Grp.NextPkg(Pkg)) {
300 if (pams(Pkg) == false)
301 continue;
302 pci->insert(Pkg);
303 found = true;
304 if (isGlobal == false)
305 break;
306 }
307 if (found == true)
308 return true;
309 }
310 }
311
1e064088 312 pkgCache::PkgIterator Pkg = canNotFindPkgName(Cache, pkg);
2f0d4029
DK
313 if (Pkg.end() == true)
314 return false;
315
316 pci->insert(Pkg);
317 return true;
318}
319 /*}}}*/
1e064088
DK
320// PackageFromString - Return all packages matching a specific string /*{{{*/
321bool CacheSetHelper::PackageFromString(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string const &str) {
15fc8636 322 bool found = true;
48c39e32
DK
323 _error->PushToStack();
324
1e064088
DK
325 if (PackageFrom(CacheSetHelper::PACKAGENAME, pci, Cache, str) == false &&
326 PackageFrom(CacheSetHelper::TASK, pci, Cache, str) == false &&
fdba4d53 327 // FIXME: hm, hm, regexp/fnmatch incompatible?
1e064088
DK
328 PackageFrom(CacheSetHelper::FNMATCH, pci, Cache, str) == false &&
329 PackageFrom(CacheSetHelper::REGEX, pci, Cache, str) == false)
15fc8636 330 {
1e064088 331 canNotFindPackage(CacheSetHelper::PACKAGENAME, pci, Cache, str);
15fc8636 332 found = false;
48c39e32 333 }
dc0f01f7 334
15fc8636 335 if (found == true)
48c39e32
DK
336 _error->RevertToStack();
337 else
338 _error->MergeWithStack();
15fc8636 339 return found;
856d3b06
DK
340}
341 /*}}}*/
1e064088
DK
342// PackageFromCommandLine - Return all packages specified on commandline /*{{{*/
343bool CacheSetHelper::PackageFromCommandLine(PackageContainerInterface * const pci, pkgCacheFile &Cache, const char **cmdline) {
15fc8636
DK
344 bool found = false;
345 for (const char **I = cmdline; *I != 0; ++I)
1e064088 346 found |= PackageFrom(CacheSetHelper::PACKAGENAME, pci, Cache, *I);
15fc8636
DK
347 return found;
348}
349 /*}}}*/
350// FromModifierCommandLine - helper doing the work for PKG:GroupedFromCommandLine /*{{{*/
1e064088 351bool CacheSetHelper::PackageFromModifierCommandLine(unsigned short &modID, PackageContainerInterface * const pci,
15fc8636 352 pkgCacheFile &Cache, const char * cmdline,
1e064088 353 std::list<PkgModifier> const &mods) {
15fc8636 354 std::string str = cmdline;
e6a12579 355 unsigned short fallback = modID;
15fc8636 356 bool modifierPresent = false;
1e064088 357 for (std::list<PkgModifier>::const_iterator mod = mods.begin();
15fc8636
DK
358 mod != mods.end(); ++mod) {
359 size_t const alength = strlen(mod->Alias);
360 switch(mod->Pos) {
1e064088 361 case PkgModifier::POSTFIX:
15fc8636
DK
362 if (str.compare(str.length() - alength, alength,
363 mod->Alias, 0, alength) != 0)
55c59998 364 continue;
15fc8636
DK
365 str.erase(str.length() - alength);
366 modID = mod->ID;
55c59998 367 break;
1e064088 368 case PkgModifier::PREFIX:
15fc8636 369 continue;
1e064088 370 case PkgModifier::NONE:
15fc8636 371 continue;
55c59998 372 }
15fc8636
DK
373 modifierPresent = true;
374 break;
375 }
376 if (modifierPresent == true) {
1e064088
DK
377 bool const errors = showErrors(false);
378 bool const found = PackageFrom(PACKAGENAME, pci, Cache, cmdline);
379 showErrors(errors);
380 if (found == true) {
e6a12579 381 modID = fallback;
15fc8636
DK
382 return true;
383 }
384 }
1e064088 385 return PackageFrom(CacheSetHelper::PACKAGENAME, pci, Cache, str);
15fc8636
DK
386}
387 /*}}}*/
388// FromModifierCommandLine - helper doing the work for VER:GroupedFromCommandLine /*{{{*/
389bool VersionContainerInterface::FromModifierCommandLine(unsigned short &modID,
390 VersionContainerInterface * const vci,
391 pkgCacheFile &Cache, const char * cmdline,
392 std::list<Modifier> const &mods,
393 CacheSetHelper &helper) {
fdba4d53 394 CacheSetHelper::VerSelector select = CacheSetHelper::NEWEST;
15fc8636 395 std::string str = cmdline;
d99854ca
DK
396 if (unlikely(str.empty() == true))
397 return false;
15fc8636
DK
398 bool modifierPresent = false;
399 unsigned short fallback = modID;
400 for (std::list<Modifier>::const_iterator mod = mods.begin();
401 mod != mods.end(); ++mod) {
402 if (modID == fallback && mod->ID == fallback)
403 select = mod->SelectVersion;
404 size_t const alength = strlen(mod->Alias);
405 switch(mod->Pos) {
406 case Modifier::POSTFIX:
d99854ca
DK
407 if (str.length() <= alength ||
408 str.compare(str.length() - alength, alength, mod->Alias, 0, alength) != 0)
bd631595 409 continue;
15fc8636
DK
410 str.erase(str.length() - alength);
411 modID = mod->ID;
412 select = mod->SelectVersion;
413 break;
414 case Modifier::PREFIX:
415 continue;
416 case Modifier::NONE:
417 continue;
bd631595 418 }
15fc8636
DK
419 modifierPresent = true;
420 break;
55c59998 421 }
15fc8636
DK
422 if (modifierPresent == true) {
423 bool const errors = helper.showErrors(false);
424 bool const found = VersionContainerInterface::FromString(vci, Cache, cmdline, select, helper, true);
425 helper.showErrors(errors);
e6a12579
DK
426 if (found == true) {
427 modID = fallback;
15fc8636 428 return true;
e6a12579 429 }
15fc8636
DK
430 }
431 return FromString(vci, Cache, str, select, helper);
55c59998
DK
432}
433 /*}}}*/
856d3b06 434// FromCommandLine - Return all versions specified on commandline /*{{{*/
15fc8636
DK
435bool VersionContainerInterface::FromCommandLine(VersionContainerInterface * const vci,
436 pkgCacheFile &Cache, const char **cmdline,
fdba4d53
DK
437 CacheSetHelper::VerSelector const fallback,
438 CacheSetHelper &helper) {
15fc8636 439 bool found = false;
bd631595 440 for (const char **I = cmdline; *I != 0; ++I)
15fc8636
DK
441 found |= VersionContainerInterface::FromString(vci, Cache, *I, fallback, helper);
442 return found;
55c59998
DK
443}
444 /*}}}*/
445// FromString - Returns all versions spedcified by a string /*{{{*/
15fc8636
DK
446bool VersionContainerInterface::FromString(VersionContainerInterface * const vci,
447 pkgCacheFile &Cache, std::string pkg,
fdba4d53
DK
448 CacheSetHelper::VerSelector const fallback,
449 CacheSetHelper &helper,
15fc8636 450 bool const onlyFromName) {
1e064088
DK
451 PackageSet pkgset;
452 if(FileExists(pkg)) {
453 helper.PackageFrom(CacheSetHelper::STRING, &pkgset, Cache, pkg);
454 if(pkgset.empty() == true)
455 return false;
456 return VersionContainerInterface::FromPackage(vci, Cache, pkgset.begin(), fallback, helper);
457 }
fdff5b03 458
55c59998
DK
459 std::string ver;
460 bool verIsRel = false;
461 size_t const vertag = pkg.find_last_of("/=");
472ff00e 462 if (vertag != std::string::npos) {
55c59998
DK
463 ver = pkg.substr(vertag+1);
464 verIsRel = (pkg[vertag] == '/');
465 pkg.erase(vertag);
466 }
bd631595 467 if (onlyFromName == false)
1e064088 468 helper.PackageFrom(CacheSetHelper::STRING, &pkgset, Cache, pkg);
bd631595 469 else {
1e064088 470 helper.PackageFrom(CacheSetHelper::PACKAGENAME, &pkgset, Cache, pkg);
bd631595
DK
471 }
472
c8db3fff 473 bool errors = true;
fdba4d53 474 if (pkgset.getConstructor() != CacheSetHelper::UNKNOWN)
c8db3fff 475 errors = helper.showErrors(false);
15fc8636
DK
476
477 bool found = false;
55c59998
DK
478 for (PackageSet::const_iterator P = pkgset.begin();
479 P != pkgset.end(); ++P) {
472ff00e 480 if (vertag == std::string::npos) {
15fc8636 481 found |= VersionContainerInterface::FromPackage(vci, Cache, P, fallback, helper);
55c59998 482 continue;
856d3b06 483 }
55c59998
DK
484 pkgCache::VerIterator V;
485 if (ver == "installed")
70e706ad 486 V = getInstalledVer(Cache, P, helper);
55c59998 487 else if (ver == "candidate")
70e706ad 488 V = getCandidateVer(Cache, P, helper);
f1a58ff8
DK
489 else if (ver == "newest") {
490 if (P->VersionList != 0)
491 V = P.VersionList();
492 else
fdba4d53 493 V = helper.canNotGetVersion(CacheSetHelper::NEWEST, Cache, P);
f1a58ff8 494 } else {
55c59998
DK
495 pkgVersionMatch Match(ver, (verIsRel == true ? pkgVersionMatch::Release :
496 pkgVersionMatch::Version));
497 V = Match.Find(P);
498 if (V.end() == true) {
499 if (verIsRel == true)
500 _error->Error(_("Release '%s' for '%s' was not found"),
501 ver.c_str(), P.FullName(true).c_str());
502 else
503 _error->Error(_("Version '%s' for '%s' was not found"),
504 ver.c_str(), P.FullName(true).c_str());
84910ad5
DK
505 continue;
506 }
78c32596 507 }
55c59998
DK
508 if (V.end() == true)
509 continue;
fdba4d53
DK
510 if (verIsRel == true)
511 helper.showVersionSelection(P, V, CacheSetHelper::RELEASE, ver);
512 else
513 helper.showVersionSelection(P, V, CacheSetHelper::VERSIONNUMBER, ver);
15fc8636
DK
514 vci->insert(V);
515 found = true;
78c32596 516 }
fdba4d53 517 if (pkgset.getConstructor() != CacheSetHelper::UNKNOWN)
c8db3fff 518 helper.showErrors(errors);
15fc8636 519 return found;
856d3b06
DK
520}
521 /*}}}*/
fb83c1d0 522// FromPackage - versions from package based on fallback /*{{{*/
15fc8636
DK
523bool VersionContainerInterface::FromPackage(VersionContainerInterface * const vci,
524 pkgCacheFile &Cache,
525 pkgCache::PkgIterator const &P,
fdba4d53 526 CacheSetHelper::VerSelector const fallback,
15fc8636 527 CacheSetHelper &helper) {
84910ad5 528 pkgCache::VerIterator V;
70e706ad 529 bool showErrors;
15fc8636 530 bool found = false;
84910ad5 531 switch(fallback) {
fdba4d53 532 case CacheSetHelper::ALL:
84910ad5
DK
533 if (P->VersionList != 0)
534 for (V = P.VersionList(); V.end() != true; ++V)
15fc8636 535 found |= vci->insert(V);
84910ad5 536 else
fdba4d53 537 helper.canNotFindVersion(CacheSetHelper::ALL, vci, Cache, P);
84910ad5 538 break;
fdba4d53 539 case CacheSetHelper::CANDANDINST:
15fc8636
DK
540 found |= vci->insert(getInstalledVer(Cache, P, helper));
541 found |= vci->insert(getCandidateVer(Cache, P, helper));
84910ad5 542 break;
fdba4d53 543 case CacheSetHelper::CANDIDATE:
15fc8636 544 found |= vci->insert(getCandidateVer(Cache, P, helper));
84910ad5 545 break;
fdba4d53 546 case CacheSetHelper::INSTALLED:
15fc8636 547 found |= vci->insert(getInstalledVer(Cache, P, helper));
84910ad5 548 break;
fdba4d53 549 case CacheSetHelper::CANDINST:
70e706ad
DK
550 showErrors = helper.showErrors(false);
551 V = getCandidateVer(Cache, P, helper);
84910ad5 552 if (V.end() == true)
70e706ad
DK
553 V = getInstalledVer(Cache, P, helper);
554 helper.showErrors(showErrors);
84910ad5 555 if (V.end() == false)
15fc8636 556 found |= vci->insert(V);
84910ad5 557 else
fdba4d53 558 helper.canNotFindVersion(CacheSetHelper::CANDINST, vci, Cache, P);
84910ad5 559 break;
fdba4d53 560 case CacheSetHelper::INSTCAND:
70e706ad
DK
561 showErrors = helper.showErrors(false);
562 V = getInstalledVer(Cache, P, helper);
84910ad5 563 if (V.end() == true)
70e706ad
DK
564 V = getCandidateVer(Cache, P, helper);
565 helper.showErrors(showErrors);
84910ad5 566 if (V.end() == false)
15fc8636 567 found |= vci->insert(V);
84910ad5 568 else
fdba4d53 569 helper.canNotFindVersion(CacheSetHelper::INSTCAND, vci, Cache, P);
84910ad5 570 break;
fdba4d53 571 case CacheSetHelper::NEWEST:
84910ad5 572 if (P->VersionList != 0)
15fc8636 573 found |= vci->insert(P.VersionList());
84910ad5 574 else
fdba4d53 575 helper.canNotFindVersion(CacheSetHelper::NEWEST, vci, Cache, P);
84910ad5 576 break;
fdba4d53
DK
577 case CacheSetHelper::RELEASE:
578 case CacheSetHelper::VERSIONNUMBER:
579 // both make no sense here, so always false
580 return false;
84910ad5 581 }
15fc8636 582 return found;
84910ad5
DK
583}
584 /*}}}*/
856d3b06 585// getCandidateVer - Returns the candidate version of the given package /*{{{*/
15fc8636 586pkgCache::VerIterator VersionContainerInterface::getCandidateVer(pkgCacheFile &Cache,
70e706ad 587 pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper) {
a8ef7efd 588 pkgCache::VerIterator Cand;
15fc8636 589 if (Cache.IsPolicyBuilt() == true || Cache.IsDepCacheBuilt() == false) {
bd631595
DK
590 if (unlikely(Cache.GetPolicy() == 0))
591 return pkgCache::VerIterator(Cache);
a8ef7efd 592 Cand = Cache.GetPolicy()->GetCandidateVer(Pkg);
2fbfb111
DK
593 } else {
594 Cand = Cache[Pkg].CandidateVerIter(Cache);
a8ef7efd 595 }
70e706ad 596 if (Cand.end() == true)
fdba4d53 597 return helper.canNotGetVersion(CacheSetHelper::CANDIDATE, Cache, Pkg);
856d3b06
DK
598 return Cand;
599}
600 /*}}}*/
601// getInstalledVer - Returns the installed version of the given package /*{{{*/
15fc8636 602pkgCache::VerIterator VersionContainerInterface::getInstalledVer(pkgCacheFile &Cache,
70e706ad
DK
603 pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper) {
604 if (Pkg->CurrentVer == 0)
fdba4d53 605 return helper.canNotGetVersion(CacheSetHelper::INSTALLED, Cache, Pkg);
856d3b06 606 return Pkg.CurrentVer();
ffee1c2b
DK
607}
608 /*}}}*/
15fc8636 609
fdba4d53
DK
610// canNotFindPackage - with the given selector and pattern /*{{{*/
611void CacheSetHelper::canNotFindPackage(enum PkgSelector const select,
612 PackageContainerInterface * const pci, pkgCacheFile &Cache,
613 std::string const &pattern) {
614 switch (select) {
586d8704 615APT_IGNORE_DEPRECATED_PUSH
fdba4d53
DK
616 case REGEX: canNotFindRegEx(pci, Cache, pattern); break;
617 case TASK: canNotFindTask(pci, Cache, pattern); break;
618 case FNMATCH: canNotFindFnmatch(pci, Cache, pattern); break;
619 case PACKAGENAME: canNotFindPackage(pci, Cache, pattern); break;
1e064088 620 case STRING: canNotFindPackage(pci, Cache, pattern); break;
fdba4d53 621 case UNKNOWN: break;
586d8704 622APT_IGNORE_DEPRECATED_POP
fdba4d53 623 }
bd631595 624}
70e706ad 625// canNotFindTask - handle the case no package is found for a task /*{{{*/
65512241 626void CacheSetHelper::canNotFindTask(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) {
70e706ad 627 if (ShowError == true)
cd7bbc47 628 _error->Insert(ErrorType, _("Couldn't find task '%s'"), pattern.c_str());
70e706ad
DK
629}
630 /*}}}*/
631// canNotFindRegEx - handle the case no package is found by a regex /*{{{*/
65512241 632void CacheSetHelper::canNotFindRegEx(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) {
70e706ad 633 if (ShowError == true)
cd7bbc47 634 _error->Insert(ErrorType, _("Couldn't find any package by regex '%s'"), pattern.c_str());
70e706ad 635}
fdba4d53 636 /*}}}*/
16724b66 637// canNotFindFnmatch - handle the case no package is found by a fnmatch /*{{{*/
b58f28d4 638 void CacheSetHelper::canNotFindFnmatch(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string pattern) {
16724b66
MV
639 if (ShowError == true)
640 _error->Insert(ErrorType, _("Couldn't find any package by glob '%s'"), pattern.c_str());
641}
fdba4d53 642 /*}}}*/
70e706ad 643// canNotFindPackage - handle the case no package is found from a string/*{{{*/
a02db58f 644APT_CONST void CacheSetHelper::canNotFindPackage(PackageContainerInterface * const /*pci*/, pkgCacheFile &/*Cache*/, std::string const &/*str*/) {
70e706ad
DK
645}
646 /*}}}*/
fdba4d53
DK
647 /*}}}*/
648// canNotFindPkgName - handle the case no package has this name /*{{{*/
649pkgCache::PkgIterator CacheSetHelper::canNotFindPkgName(pkgCacheFile &Cache,
650 std::string const &str) {
651 if (ShowError == true)
652 _error->Insert(ErrorType, _("Unable to locate package %s"), str.c_str());
653 return pkgCache::PkgIterator(Cache, 0);
654}
655 /*}}}*/
656// canNotFindVersion - for package by selector /*{{{*/
657void CacheSetHelper::canNotFindVersion(enum VerSelector const select, VersionContainerInterface * const vci, pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg)
658{
659 switch (select) {
586d8704 660APT_IGNORE_DEPRECATED_PUSH
fdba4d53
DK
661 case ALL: canNotFindAllVer(vci, Cache, Pkg); break;
662 case INSTCAND: canNotFindInstCandVer(vci, Cache, Pkg); break;
663 case CANDINST: canNotFindCandInstVer(vci, Cache, Pkg); break;
664 case NEWEST: canNotFindNewestVer(Cache, Pkg); break;
665 case CANDIDATE: canNotFindCandidateVer(Cache, Pkg); break;
666 case INSTALLED: canNotFindInstalledVer(Cache, Pkg); break;
586d8704 667APT_IGNORE_DEPRECATED_POP
fdba4d53
DK
668 case CANDANDINST: canNotGetCandInstVer(Cache, Pkg); break;
669 case RELEASE:
670 case VERSIONNUMBER:
671 // invalid in this branch
672 break;
673 }
674}
70e706ad 675// canNotFindAllVer /*{{{*/
65512241 676void CacheSetHelper::canNotFindAllVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &/*Cache*/,
70e706ad
DK
677 pkgCache::PkgIterator const &Pkg) {
678 if (ShowError == true)
edc0ef10 679 _error->Insert(ErrorType, _("Can't select versions from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str());
70e706ad
DK
680}
681 /*}}}*/
682// canNotFindInstCandVer /*{{{*/
fdba4d53 683void CacheSetHelper::canNotFindInstCandVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &Cache,
70e706ad 684 pkgCache::PkgIterator const &Pkg) {
fdba4d53 685 canNotGetInstCandVer(Cache, Pkg);
70e706ad
DK
686}
687 /*}}}*/
cf28bcad 688// canNotFindInstCandVer /*{{{*/
fdba4d53 689void CacheSetHelper::canNotFindCandInstVer(VersionContainerInterface * const /*vci*/, pkgCacheFile &Cache,
cf28bcad 690 pkgCache::PkgIterator const &Pkg) {
fdba4d53 691 canNotGetCandInstVer(Cache, Pkg);
cf28bcad
DK
692}
693 /*}}}*/
fdba4d53
DK
694 /*}}}*/
695// canNotGetVersion - for package by selector /*{{{*/
696pkgCache::VerIterator CacheSetHelper::canNotGetVersion(enum VerSelector const select, pkgCacheFile &Cache, pkgCache::PkgIterator const &Pkg) {
697 switch (select) {
586d8704 698APT_IGNORE_DEPRECATED_PUSH
fdba4d53
DK
699 case NEWEST: return canNotFindNewestVer(Cache, Pkg);
700 case CANDIDATE: return canNotFindCandidateVer(Cache, Pkg);
701 case INSTALLED: return canNotFindInstalledVer(Cache, Pkg);
586d8704 702APT_IGNORE_DEPRECATED_POP
fdba4d53
DK
703 case CANDINST: return canNotGetCandInstVer(Cache, Pkg);
704 case INSTCAND: return canNotGetInstCandVer(Cache, Pkg);
705 case ALL:
706 case CANDANDINST:
707 case RELEASE:
708 case VERSIONNUMBER:
709 // invalid in this branch
710 return pkgCache::VerIterator(Cache, 0);
711 }
712 return pkgCache::VerIterator(Cache, 0);
713}
70e706ad
DK
714// canNotFindNewestVer /*{{{*/
715pkgCache::VerIterator CacheSetHelper::canNotFindNewestVer(pkgCacheFile &Cache,
716 pkgCache::PkgIterator const &Pkg) {
717 if (ShowError == true)
cd7bbc47 718 _error->Insert(ErrorType, _("Can't select newest version from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str());
c8db3fff 719 return pkgCache::VerIterator(Cache, 0);
70e706ad
DK
720}
721 /*}}}*/
722// canNotFindCandidateVer /*{{{*/
723pkgCache::VerIterator CacheSetHelper::canNotFindCandidateVer(pkgCacheFile &Cache,
724 pkgCache::PkgIterator const &Pkg) {
725 if (ShowError == true)
cd7bbc47 726 _error->Insert(ErrorType, _("Can't select candidate version from package %s as it has no candidate"), Pkg.FullName(true).c_str());
c8db3fff 727 return pkgCache::VerIterator(Cache, 0);
70e706ad
DK
728}
729 /*}}}*/
730// canNotFindInstalledVer /*{{{*/
731pkgCache::VerIterator CacheSetHelper::canNotFindInstalledVer(pkgCacheFile &Cache,
732 pkgCache::PkgIterator const &Pkg) {
733 if (ShowError == true)
cd7bbc47 734 _error->Insert(ErrorType, _("Can't select installed version from package %s as it is not installed"), Pkg.FullName(true).c_str());
c8db3fff 735 return pkgCache::VerIterator(Cache, 0);
70e706ad
DK
736}
737 /*}}}*/
fdba4d53
DK
738// canNotFindInstCandVer /*{{{*/
739pkgCache::VerIterator CacheSetHelper::canNotGetInstCandVer(pkgCacheFile &Cache,
740 pkgCache::PkgIterator const &Pkg) {
741 if (ShowError == true)
742 _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str());
743 return pkgCache::VerIterator(Cache, 0);
744}
745 /*}}}*/
746// canNotFindInstCandVer /*{{{*/
747pkgCache::VerIterator CacheSetHelper::canNotGetCandInstVer(pkgCacheFile &Cache,
748 pkgCache::PkgIterator const &Pkg) {
749 if (ShowError == true)
750 _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str());
751 return pkgCache::VerIterator(Cache, 0);
752}
753 /*}}}*/
754 /*}}}*/
755// showPackageSelection - by selector and given pattern /*{{{*/
2b4cead3 756void CacheSetHelper::showPackageSelection(pkgCache::PkgIterator const &pkg, enum PkgSelector const select,
fdba4d53
DK
757 std::string const &pattern) {
758 switch (select) {
586d8704 759APT_IGNORE_DEPRECATED_PUSH
fdba4d53
DK
760 case REGEX: showRegExSelection(pkg, pattern); break;
761 case TASK: showTaskSelection(pkg, pattern); break;
762 case FNMATCH: showFnmatchSelection(pkg, pattern); break;
586d8704 763APT_IGNORE_DEPRECATED_POP
fdba4d53 764 case PACKAGENAME: /* no suprises here */ break;
1e064088 765 case STRING: /* handled by the special cases */ break;
fdba4d53
DK
766 case UNKNOWN: break;
767 }
768}
15fc8636 769// showTaskSelection /*{{{*/
a02db58f 770APT_CONST void CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const &/*pkg*/,
65512241 771 std::string const &/*pattern*/) {
15fc8636
DK
772}
773 /*}}}*/
774// showRegExSelection /*{{{*/
a02db58f 775APT_CONST void CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const &/*pkg*/,
65512241 776 std::string const &/*pattern*/) {
15fc8636
DK
777}
778 /*}}}*/
16724b66 779// showFnmatchSelection /*{{{*/
b58f28d4
MV
780APT_CONST void CacheSetHelper::showFnmatchSelection(pkgCache::PkgIterator const &/*pkg*/,
781 std::string const &/*pattern*/) {
16724b66
MV
782}
783 /*}}}*/
fdba4d53
DK
784 /*}}}*/
785// showVersionSelection /*{{{*/
2b4cead3 786void CacheSetHelper::showVersionSelection(pkgCache::PkgIterator const &Pkg,
fdba4d53
DK
787 pkgCache::VerIterator const &Ver, enum VerSelector const select, std::string const &pattern) {
788 switch (select) {
586d8704 789APT_IGNORE_DEPRECATED_PUSH
fdba4d53
DK
790 case RELEASE:
791 showSelectedVersion(Pkg, Ver, pattern, true);
792 break;
793 case VERSIONNUMBER:
794 showSelectedVersion(Pkg, Ver, pattern, false);
795 break;
586d8704 796APT_IGNORE_DEPRECATED_POP
fdba4d53
DK
797 case NEWEST:
798 case CANDIDATE:
799 case INSTALLED:
800 case CANDINST:
801 case INSTCAND:
802 case ALL:
803 case CANDANDINST:
804 // not really suprises, but in fact: just not implemented
805 break;
806 }
807}
a02db58f 808APT_CONST void CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const &/*Pkg*/,
65512241
DK
809 pkgCache::VerIterator const /*Ver*/,
810 std::string const &/*ver*/,
811 bool const /*verIsRel*/) {
15fc8636
DK
812}
813 /*}}}*/
c8a4ce6c
DK
814
815CacheSetHelper::CacheSetHelper(bool const ShowError, GlobalError::MsgType ErrorType) :
6c55f07a 816 ShowError(ShowError), ErrorType(ErrorType), d(NULL) {}
c8a4ce6c
DK
817CacheSetHelper::~CacheSetHelper() {}
818
6c55f07a
DK
819PackageContainerInterface::PackageContainerInterface() : ConstructedBy(CacheSetHelper::UNKNOWN), d(NULL) {}
820PackageContainerInterface::PackageContainerInterface(CacheSetHelper::PkgSelector const by) : ConstructedBy(by), d(NULL) {}
821PackageContainerInterface& PackageContainerInterface::operator=(PackageContainerInterface const &other) {
822 if (this != &other)
823 this->ConstructedBy = other.ConstructedBy;
824 return *this;
825}
c8a4ce6c
DK
826PackageContainerInterface::~PackageContainerInterface() {}
827
6c55f07a 828PackageUniverse::PackageUniverse(pkgCache * const Owner) : _cont(Owner), d(NULL) { }
c8a4ce6c
DK
829PackageUniverse::~PackageUniverse() {}
830
6c55f07a
DK
831VersionContainerInterface::VersionContainerInterface() : d(NULL) {}
832VersionContainerInterface& VersionContainerInterface::operator=(VersionContainerInterface const &) {
833 return *this;
834}
835
c8a4ce6c 836VersionContainerInterface::~VersionContainerInterface() {}
ffee1c2b 837}