]>
Commit | Line | Data |
---|---|---|
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> |
ffee1c2b | 19 | #include <apt-pkg/strutl.h> |
856d3b06 | 20 | #include <apt-pkg/versionmatch.h> |
472ff00e DK |
21 | #include <apt-pkg/pkgrecords.h> |
22 | #include <apt-pkg/policy.h> | |
ffee1c2b | 23 | |
78c32596 DK |
24 | #include <vector> |
25 | ||
ffee1c2b | 26 | #include <regex.h> |
ea542140 DK |
27 | |
28 | #include <apti18n.h> | |
ffee1c2b DK |
29 | /*}}}*/ |
30 | namespace APT { | |
dc0f01f7 | 31 | // FromTask - Return all packages in the cache from a specific task /*{{{*/ |
15fc8636 | 32 | bool PackageContainerInterface::FromTask(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern, CacheSetHelper &helper) { |
bd631595 | 33 | size_t const archfound = pattern.find_last_of(':'); |
dc0f01f7 DK |
34 | std::string arch = "native"; |
35 | if (archfound != std::string::npos) { | |
36 | arch = pattern.substr(archfound+1); | |
37 | pattern.erase(archfound); | |
38 | } | |
39 | ||
40 | if (pattern[pattern.length() -1] != '^') | |
15fc8636 | 41 | return false; |
dc0f01f7 DK |
42 | pattern.erase(pattern.length()-1); |
43 | ||
bd631595 | 44 | if (unlikely(Cache.GetPkgCache() == 0 || Cache.GetDepCache() == 0)) |
15fc8636 DK |
45 | return false; |
46 | ||
47 | bool const wasEmpty = pci->empty(); | |
48 | if (wasEmpty == true) | |
49 | pci->setConstructor(TASK); | |
bd631595 | 50 | |
dc0f01f7 DK |
51 | // get the records |
52 | pkgRecords Recs(Cache); | |
53 | ||
54 | // build regexp for the task | |
55 | regex_t Pattern; | |
56 | char S[300]; | |
57 | snprintf(S, sizeof(S), "^Task:.*[, ]%s([, ]|$)", pattern.c_str()); | |
58 | if(regcomp(&Pattern,S, REG_EXTENDED | REG_NOSUB | REG_NEWLINE) != 0) { | |
59 | _error->Error("Failed to compile task regexp"); | |
15fc8636 | 60 | return false; |
dc0f01f7 DK |
61 | } |
62 | ||
15fc8636 | 63 | bool found = false; |
dc0f01f7 DK |
64 | for (pkgCache::GrpIterator Grp = Cache->GrpBegin(); Grp.end() == false; ++Grp) { |
65 | pkgCache::PkgIterator Pkg = Grp.FindPkg(arch); | |
66 | if (Pkg.end() == true) | |
67 | continue; | |
68 | pkgCache::VerIterator ver = Cache[Pkg].CandidateVerIter(Cache); | |
69 | if(ver.end() == true) | |
70 | continue; | |
71 | ||
72 | pkgRecords::Parser &parser = Recs.Lookup(ver.FileList()); | |
73 | const char *start, *end; | |
74 | parser.GetRec(start,end); | |
75 | unsigned int const length = end - start; | |
76 | char buf[length]; | |
77 | strncpy(buf, start, length); | |
78 | buf[length-1] = '\0'; | |
70e706ad DK |
79 | if (regexec(&Pattern, buf, 0, 0, 0) != 0) |
80 | continue; | |
81 | ||
15fc8636 DK |
82 | pci->insert(Pkg); |
83 | helper.showTaskSelection(Pkg, pattern); | |
84 | found = true; | |
dc0f01f7 | 85 | } |
70e706ad | 86 | regfree(&Pattern); |
dc0f01f7 | 87 | |
15fc8636 DK |
88 | if (found == false) { |
89 | helper.canNotFindTask(pci, Cache, pattern); | |
90 | pci->setConstructor(UNKNOWN); | |
91 | return false; | |
92 | } | |
93 | ||
94 | if (wasEmpty == false && pci->getConstructor() != UNKNOWN) | |
95 | pci->setConstructor(UNKNOWN); | |
dc0f01f7 | 96 | |
15fc8636 | 97 | return true; |
dc0f01f7 DK |
98 | } |
99 | /*}}}*/ | |
ffee1c2b | 100 | // FromRegEx - Return all packages in the cache matching a pattern /*{{{*/ |
15fc8636 | 101 | bool PackageContainerInterface::FromRegEx(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern, CacheSetHelper &helper) { |
6e235c66 | 102 | static const char * const isregex = ".?+*|[^$"; |
6e235c66 | 103 | if (pattern.find_first_of(isregex) == std::string::npos) |
15fc8636 DK |
104 | return false; |
105 | ||
106 | bool const wasEmpty = pci->empty(); | |
107 | if (wasEmpty == true) | |
108 | pci->setConstructor(REGEX); | |
ffee1c2b | 109 | |
6e235c66 | 110 | size_t archfound = pattern.find_last_of(':'); |
dc0f01f7 | 111 | std::string arch = "native"; |
6e235c66 DK |
112 | if (archfound != std::string::npos) { |
113 | arch = pattern.substr(archfound+1); | |
114 | if (arch.find_first_of(isregex) == std::string::npos) | |
115 | pattern.erase(archfound); | |
116 | else | |
117 | arch = "native"; | |
118 | } | |
119 | ||
bd631595 | 120 | if (unlikely(Cache.GetPkgCache() == 0)) |
15fc8636 | 121 | return false; |
bd631595 | 122 | |
9ba5aa3b DK |
123 | APT::CacheFilter::PackageNameMatchesRegEx regexfilter(pattern); |
124 | ||
15fc8636 | 125 | bool found = false; |
9ba5aa3b DK |
126 | for (pkgCache::GrpIterator Grp = Cache.GetPkgCache()->GrpBegin(); Grp.end() == false; ++Grp) { |
127 | if (regexfilter(Grp) == false) | |
ffee1c2b | 128 | continue; |
6e235c66 | 129 | pkgCache::PkgIterator Pkg = Grp.FindPkg(arch); |
78c32596 | 130 | if (Pkg.end() == true) { |
6e235c66 DK |
131 | if (archfound == std::string::npos) { |
132 | std::vector<std::string> archs = APT::Configuration::getArchitectures(); | |
133 | for (std::vector<std::string>::const_iterator a = archs.begin(); | |
134 | a != archs.end() && Pkg.end() != true; ++a) | |
135 | Pkg = Grp.FindPkg(*a); | |
78c32596 DK |
136 | } |
137 | if (Pkg.end() == true) | |
138 | continue; | |
139 | } | |
ffee1c2b | 140 | |
15fc8636 DK |
141 | pci->insert(Pkg); |
142 | helper.showRegExSelection(Pkg, pattern); | |
143 | found = true; | |
ffee1c2b | 144 | } |
ffee1c2b | 145 | |
15fc8636 DK |
146 | if (found == false) { |
147 | helper.canNotFindRegEx(pci, Cache, pattern); | |
148 | pci->setConstructor(UNKNOWN); | |
149 | return false; | |
150 | } | |
151 | ||
152 | if (wasEmpty == false && pci->getConstructor() != UNKNOWN) | |
153 | pci->setConstructor(UNKNOWN); | |
70e706ad | 154 | |
15fc8636 | 155 | return true; |
78c32596 DK |
156 | } |
157 | /*}}}*/ | |
bd631595 | 158 | // FromName - Returns the package defined by this string /*{{{*/ |
15fc8636 | 159 | pkgCache::PkgIterator PackageContainerInterface::FromName(pkgCacheFile &Cache, |
bd631595 DK |
160 | std::string const &str, CacheSetHelper &helper) { |
161 | std::string pkg = str; | |
162 | size_t archfound = pkg.find_last_of(':'); | |
163 | std::string arch; | |
164 | if (archfound != std::string::npos) { | |
165 | arch = pkg.substr(archfound+1); | |
166 | pkg.erase(archfound); | |
167 | } | |
168 | ||
169 | if (Cache.GetPkgCache() == 0) | |
170 | return pkgCache::PkgIterator(Cache, 0); | |
171 | ||
172 | pkgCache::PkgIterator Pkg(Cache, 0); | |
173 | if (arch.empty() == true) { | |
174 | pkgCache::GrpIterator Grp = Cache.GetPkgCache()->FindGrp(pkg); | |
175 | if (Grp.end() == false) | |
176 | Pkg = Grp.FindPreferredPkg(); | |
177 | } else | |
178 | Pkg = Cache.GetPkgCache()->FindPkg(pkg, arch); | |
179 | ||
180 | if (Pkg.end() == true) | |
181 | return helper.canNotFindPkgName(Cache, str); | |
182 | return Pkg; | |
183 | } | |
184 | /*}}}*/ | |
856d3b06 | 185 | // FromString - Return all packages matching a specific string /*{{{*/ |
15fc8636 DK |
186 | bool PackageContainerInterface::FromString(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string const &str, CacheSetHelper &helper) { |
187 | bool found = true; | |
48c39e32 DK |
188 | _error->PushToStack(); |
189 | ||
bd631595 DK |
190 | pkgCache::PkgIterator Pkg = FromName(Cache, str, helper); |
191 | if (Pkg.end() == false) | |
15fc8636 DK |
192 | pci->insert(Pkg); |
193 | else if (FromTask(pci, Cache, str, helper) == false && | |
194 | FromRegEx(pci, Cache, str, helper) == false) | |
195 | { | |
196 | helper.canNotFindPackage(pci, Cache, str); | |
197 | found = false; | |
48c39e32 | 198 | } |
dc0f01f7 | 199 | |
15fc8636 | 200 | if (found == true) |
48c39e32 DK |
201 | _error->RevertToStack(); |
202 | else | |
203 | _error->MergeWithStack(); | |
15fc8636 | 204 | return found; |
856d3b06 DK |
205 | } |
206 | /*}}}*/ | |
15fc8636 DK |
207 | // FromCommandLine - Return all packages specified on commandline /*{{{*/ |
208 | bool PackageContainerInterface::FromCommandLine(PackageContainerInterface * const pci, pkgCacheFile &Cache, const char **cmdline, CacheSetHelper &helper) { | |
209 | bool found = false; | |
210 | for (const char **I = cmdline; *I != 0; ++I) | |
211 | found |= PackageContainerInterface::FromString(pci, Cache, *I, helper); | |
212 | return found; | |
213 | } | |
214 | /*}}}*/ | |
215 | // FromModifierCommandLine - helper doing the work for PKG:GroupedFromCommandLine /*{{{*/ | |
216 | bool PackageContainerInterface::FromModifierCommandLine(unsigned short &modID, PackageContainerInterface * const pci, | |
217 | pkgCacheFile &Cache, const char * cmdline, | |
218 | std::list<Modifier> const &mods, CacheSetHelper &helper) { | |
219 | std::string str = cmdline; | |
220 | bool modifierPresent = false; | |
221 | for (std::list<Modifier>::const_iterator mod = mods.begin(); | |
222 | mod != mods.end(); ++mod) { | |
223 | size_t const alength = strlen(mod->Alias); | |
224 | switch(mod->Pos) { | |
225 | case Modifier::POSTFIX: | |
226 | if (str.compare(str.length() - alength, alength, | |
227 | mod->Alias, 0, alength) != 0) | |
55c59998 | 228 | continue; |
15fc8636 DK |
229 | str.erase(str.length() - alength); |
230 | modID = mod->ID; | |
55c59998 | 231 | break; |
15fc8636 DK |
232 | case Modifier::PREFIX: |
233 | continue; | |
234 | case Modifier::NONE: | |
235 | continue; | |
55c59998 | 236 | } |
15fc8636 DK |
237 | modifierPresent = true; |
238 | break; | |
239 | } | |
240 | if (modifierPresent == true) { | |
241 | bool const errors = helper.showErrors(false); | |
242 | pkgCache::PkgIterator Pkg = FromName(Cache, cmdline, helper); | |
243 | helper.showErrors(errors); | |
244 | if (Pkg.end() == false) { | |
245 | pci->insert(Pkg); | |
246 | return true; | |
247 | } | |
248 | } | |
249 | return FromString(pci, Cache, str, helper); | |
250 | } | |
251 | /*}}}*/ | |
252 | // FromModifierCommandLine - helper doing the work for VER:GroupedFromCommandLine /*{{{*/ | |
253 | bool VersionContainerInterface::FromModifierCommandLine(unsigned short &modID, | |
254 | VersionContainerInterface * const vci, | |
255 | pkgCacheFile &Cache, const char * cmdline, | |
256 | std::list<Modifier> const &mods, | |
257 | CacheSetHelper &helper) { | |
258 | Version select = NEWEST; | |
259 | std::string str = cmdline; | |
260 | bool modifierPresent = false; | |
261 | unsigned short fallback = modID; | |
262 | for (std::list<Modifier>::const_iterator mod = mods.begin(); | |
263 | mod != mods.end(); ++mod) { | |
264 | if (modID == fallback && mod->ID == fallback) | |
265 | select = mod->SelectVersion; | |
266 | size_t const alength = strlen(mod->Alias); | |
267 | switch(mod->Pos) { | |
268 | case Modifier::POSTFIX: | |
269 | if (str.compare(str.length() - alength, alength, | |
270 | mod->Alias, 0, alength) != 0) | |
bd631595 | 271 | continue; |
15fc8636 DK |
272 | str.erase(str.length() - alength); |
273 | modID = mod->ID; | |
274 | select = mod->SelectVersion; | |
275 | break; | |
276 | case Modifier::PREFIX: | |
277 | continue; | |
278 | case Modifier::NONE: | |
279 | continue; | |
bd631595 | 280 | } |
15fc8636 DK |
281 | modifierPresent = true; |
282 | break; | |
55c59998 | 283 | } |
15fc8636 DK |
284 | |
285 | if (modifierPresent == true) { | |
286 | bool const errors = helper.showErrors(false); | |
287 | bool const found = VersionContainerInterface::FromString(vci, Cache, cmdline, select, helper, true); | |
288 | helper.showErrors(errors); | |
289 | if (found == true) | |
290 | return true; | |
291 | } | |
292 | return FromString(vci, Cache, str, select, helper); | |
55c59998 DK |
293 | } |
294 | /*}}}*/ | |
856d3b06 | 295 | // FromCommandLine - Return all versions specified on commandline /*{{{*/ |
15fc8636 DK |
296 | bool VersionContainerInterface::FromCommandLine(VersionContainerInterface * const vci, |
297 | pkgCacheFile &Cache, const char **cmdline, | |
298 | Version const &fallback, CacheSetHelper &helper) { | |
299 | bool found = false; | |
bd631595 | 300 | for (const char **I = cmdline; *I != 0; ++I) |
15fc8636 DK |
301 | found |= VersionContainerInterface::FromString(vci, Cache, *I, fallback, helper); |
302 | return found; | |
55c59998 DK |
303 | } |
304 | /*}}}*/ | |
305 | // FromString - Returns all versions spedcified by a string /*{{{*/ | |
15fc8636 DK |
306 | bool VersionContainerInterface::FromString(VersionContainerInterface * const vci, |
307 | pkgCacheFile &Cache, std::string pkg, | |
308 | Version const &fallback, CacheSetHelper &helper, | |
309 | bool const onlyFromName) { | |
55c59998 DK |
310 | std::string ver; |
311 | bool verIsRel = false; | |
312 | size_t const vertag = pkg.find_last_of("/="); | |
472ff00e | 313 | if (vertag != std::string::npos) { |
55c59998 DK |
314 | ver = pkg.substr(vertag+1); |
315 | verIsRel = (pkg[vertag] == '/'); | |
316 | pkg.erase(vertag); | |
317 | } | |
bd631595 DK |
318 | PackageSet pkgset; |
319 | if (onlyFromName == false) | |
15fc8636 | 320 | PackageContainerInterface::FromString(&pkgset, Cache, pkg, helper); |
bd631595 | 321 | else { |
15fc8636 | 322 | pkgset.insert(PackageContainerInterface::FromName(Cache, pkg, helper)); |
bd631595 DK |
323 | } |
324 | ||
c8db3fff DK |
325 | bool errors = true; |
326 | if (pkgset.getConstructor() != PackageSet::UNKNOWN) | |
327 | errors = helper.showErrors(false); | |
15fc8636 DK |
328 | |
329 | bool found = false; | |
55c59998 DK |
330 | for (PackageSet::const_iterator P = pkgset.begin(); |
331 | P != pkgset.end(); ++P) { | |
472ff00e | 332 | if (vertag == std::string::npos) { |
15fc8636 | 333 | found |= VersionContainerInterface::FromPackage(vci, Cache, P, fallback, helper); |
55c59998 | 334 | continue; |
856d3b06 | 335 | } |
55c59998 DK |
336 | pkgCache::VerIterator V; |
337 | if (ver == "installed") | |
70e706ad | 338 | V = getInstalledVer(Cache, P, helper); |
55c59998 | 339 | else if (ver == "candidate") |
70e706ad | 340 | V = getCandidateVer(Cache, P, helper); |
f1a58ff8 DK |
341 | else if (ver == "newest") { |
342 | if (P->VersionList != 0) | |
343 | V = P.VersionList(); | |
344 | else | |
345 | V = helper.canNotFindNewestVer(Cache, P); | |
346 | } else { | |
55c59998 DK |
347 | pkgVersionMatch Match(ver, (verIsRel == true ? pkgVersionMatch::Release : |
348 | pkgVersionMatch::Version)); | |
349 | V = Match.Find(P); | |
350 | if (V.end() == true) { | |
351 | if (verIsRel == true) | |
352 | _error->Error(_("Release '%s' for '%s' was not found"), | |
353 | ver.c_str(), P.FullName(true).c_str()); | |
354 | else | |
355 | _error->Error(_("Version '%s' for '%s' was not found"), | |
356 | ver.c_str(), P.FullName(true).c_str()); | |
84910ad5 DK |
357 | continue; |
358 | } | |
78c32596 | 359 | } |
55c59998 DK |
360 | if (V.end() == true) |
361 | continue; | |
70e706ad | 362 | helper.showSelectedVersion(P, V, ver, verIsRel); |
15fc8636 DK |
363 | vci->insert(V); |
364 | found = true; | |
78c32596 | 365 | } |
c8db3fff DK |
366 | if (pkgset.getConstructor() != PackageSet::UNKNOWN) |
367 | helper.showErrors(errors); | |
15fc8636 | 368 | return found; |
856d3b06 DK |
369 | } |
370 | /*}}}*/ | |
fb83c1d0 | 371 | // FromPackage - versions from package based on fallback /*{{{*/ |
15fc8636 DK |
372 | bool VersionContainerInterface::FromPackage(VersionContainerInterface * const vci, |
373 | pkgCacheFile &Cache, | |
374 | pkgCache::PkgIterator const &P, | |
375 | Version const &fallback, | |
376 | CacheSetHelper &helper) { | |
84910ad5 | 377 | pkgCache::VerIterator V; |
70e706ad | 378 | bool showErrors; |
15fc8636 | 379 | bool found = false; |
84910ad5 | 380 | switch(fallback) { |
15fc8636 | 381 | case ALL: |
84910ad5 DK |
382 | if (P->VersionList != 0) |
383 | for (V = P.VersionList(); V.end() != true; ++V) | |
15fc8636 | 384 | found |= vci->insert(V); |
84910ad5 | 385 | else |
15fc8636 | 386 | helper.canNotFindAllVer(vci, Cache, P); |
84910ad5 | 387 | break; |
15fc8636 DK |
388 | case CANDANDINST: |
389 | found |= vci->insert(getInstalledVer(Cache, P, helper)); | |
390 | found |= vci->insert(getCandidateVer(Cache, P, helper)); | |
84910ad5 | 391 | break; |
15fc8636 DK |
392 | case CANDIDATE: |
393 | found |= vci->insert(getCandidateVer(Cache, P, helper)); | |
84910ad5 | 394 | break; |
15fc8636 DK |
395 | case INSTALLED: |
396 | found |= vci->insert(getInstalledVer(Cache, P, helper)); | |
84910ad5 | 397 | break; |
15fc8636 | 398 | case CANDINST: |
70e706ad DK |
399 | showErrors = helper.showErrors(false); |
400 | V = getCandidateVer(Cache, P, helper); | |
84910ad5 | 401 | if (V.end() == true) |
70e706ad DK |
402 | V = getInstalledVer(Cache, P, helper); |
403 | helper.showErrors(showErrors); | |
84910ad5 | 404 | if (V.end() == false) |
15fc8636 | 405 | found |= vci->insert(V); |
84910ad5 | 406 | else |
15fc8636 | 407 | helper.canNotFindInstCandVer(vci, Cache, P); |
84910ad5 | 408 | break; |
15fc8636 | 409 | case INSTCAND: |
70e706ad DK |
410 | showErrors = helper.showErrors(false); |
411 | V = getInstalledVer(Cache, P, helper); | |
84910ad5 | 412 | if (V.end() == true) |
70e706ad DK |
413 | V = getCandidateVer(Cache, P, helper); |
414 | helper.showErrors(showErrors); | |
84910ad5 | 415 | if (V.end() == false) |
15fc8636 | 416 | found |= vci->insert(V); |
84910ad5 | 417 | else |
15fc8636 | 418 | helper.canNotFindInstCandVer(vci, Cache, P); |
84910ad5 | 419 | break; |
15fc8636 | 420 | case NEWEST: |
84910ad5 | 421 | if (P->VersionList != 0) |
15fc8636 | 422 | found |= vci->insert(P.VersionList()); |
84910ad5 | 423 | else |
15fc8636 | 424 | helper.canNotFindNewestVer(Cache, P); |
84910ad5 DK |
425 | break; |
426 | } | |
15fc8636 | 427 | return found; |
84910ad5 DK |
428 | } |
429 | /*}}}*/ | |
856d3b06 | 430 | // getCandidateVer - Returns the candidate version of the given package /*{{{*/ |
15fc8636 | 431 | pkgCache::VerIterator VersionContainerInterface::getCandidateVer(pkgCacheFile &Cache, |
70e706ad | 432 | pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper) { |
a8ef7efd | 433 | pkgCache::VerIterator Cand; |
15fc8636 | 434 | if (Cache.IsPolicyBuilt() == true || Cache.IsDepCacheBuilt() == false) { |
bd631595 DK |
435 | if (unlikely(Cache.GetPolicy() == 0)) |
436 | return pkgCache::VerIterator(Cache); | |
a8ef7efd | 437 | Cand = Cache.GetPolicy()->GetCandidateVer(Pkg); |
2fbfb111 DK |
438 | } else { |
439 | Cand = Cache[Pkg].CandidateVerIter(Cache); | |
a8ef7efd | 440 | } |
70e706ad DK |
441 | if (Cand.end() == true) |
442 | return helper.canNotFindCandidateVer(Cache, Pkg); | |
856d3b06 DK |
443 | return Cand; |
444 | } | |
445 | /*}}}*/ | |
446 | // getInstalledVer - Returns the installed version of the given package /*{{{*/ | |
15fc8636 | 447 | pkgCache::VerIterator VersionContainerInterface::getInstalledVer(pkgCacheFile &Cache, |
70e706ad DK |
448 | pkgCache::PkgIterator const &Pkg, CacheSetHelper &helper) { |
449 | if (Pkg->CurrentVer == 0) | |
450 | return helper.canNotFindInstalledVer(Cache, Pkg); | |
856d3b06 | 451 | return Pkg.CurrentVer(); |
ffee1c2b DK |
452 | } |
453 | /*}}}*/ | |
15fc8636 | 454 | |
bd631595 DK |
455 | // canNotFindPkgName - handle the case no package has this name /*{{{*/ |
456 | pkgCache::PkgIterator CacheSetHelper::canNotFindPkgName(pkgCacheFile &Cache, | |
457 | std::string const &str) { | |
458 | if (ShowError == true) | |
cd7bbc47 | 459 | _error->Insert(ErrorType, _("Unable to locate package %s"), str.c_str()); |
bd631595 DK |
460 | return pkgCache::PkgIterator(Cache, 0); |
461 | } | |
462 | /*}}}*/ | |
70e706ad | 463 | // canNotFindTask - handle the case no package is found for a task /*{{{*/ |
15fc8636 | 464 | void CacheSetHelper::canNotFindTask(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) { |
70e706ad | 465 | if (ShowError == true) |
cd7bbc47 | 466 | _error->Insert(ErrorType, _("Couldn't find task '%s'"), pattern.c_str()); |
70e706ad DK |
467 | } |
468 | /*}}}*/ | |
469 | // canNotFindRegEx - handle the case no package is found by a regex /*{{{*/ | |
15fc8636 | 470 | void CacheSetHelper::canNotFindRegEx(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string pattern) { |
70e706ad | 471 | if (ShowError == true) |
cd7bbc47 | 472 | _error->Insert(ErrorType, _("Couldn't find any package by regex '%s'"), pattern.c_str()); |
70e706ad DK |
473 | } |
474 | /*}}}*/ | |
475 | // canNotFindPackage - handle the case no package is found from a string/*{{{*/ | |
15fc8636 | 476 | void CacheSetHelper::canNotFindPackage(PackageContainerInterface * const pci, pkgCacheFile &Cache, std::string const &str) { |
70e706ad DK |
477 | } |
478 | /*}}}*/ | |
479 | // canNotFindAllVer /*{{{*/ | |
15fc8636 | 480 | void CacheSetHelper::canNotFindAllVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, |
70e706ad DK |
481 | pkgCache::PkgIterator const &Pkg) { |
482 | if (ShowError == true) | |
edc0ef10 | 483 | _error->Insert(ErrorType, _("Can't select versions from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str()); |
70e706ad DK |
484 | } |
485 | /*}}}*/ | |
486 | // canNotFindInstCandVer /*{{{*/ | |
15fc8636 | 487 | void CacheSetHelper::canNotFindInstCandVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, |
70e706ad DK |
488 | pkgCache::PkgIterator const &Pkg) { |
489 | if (ShowError == true) | |
cd7bbc47 | 490 | _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str()); |
70e706ad DK |
491 | } |
492 | /*}}}*/ | |
cf28bcad | 493 | // canNotFindInstCandVer /*{{{*/ |
15fc8636 | 494 | void CacheSetHelper::canNotFindCandInstVer(VersionContainerInterface * const vci, pkgCacheFile &Cache, |
cf28bcad DK |
495 | pkgCache::PkgIterator const &Pkg) { |
496 | if (ShowError == true) | |
cd7bbc47 | 497 | _error->Insert(ErrorType, _("Can't select installed nor candidate version from package '%s' as it has neither of them"), Pkg.FullName(true).c_str()); |
cf28bcad DK |
498 | } |
499 | /*}}}*/ | |
70e706ad DK |
500 | // canNotFindNewestVer /*{{{*/ |
501 | pkgCache::VerIterator CacheSetHelper::canNotFindNewestVer(pkgCacheFile &Cache, | |
502 | pkgCache::PkgIterator const &Pkg) { | |
503 | if (ShowError == true) | |
cd7bbc47 | 504 | _error->Insert(ErrorType, _("Can't select newest version from package '%s' as it is purely virtual"), Pkg.FullName(true).c_str()); |
c8db3fff | 505 | return pkgCache::VerIterator(Cache, 0); |
70e706ad DK |
506 | } |
507 | /*}}}*/ | |
508 | // canNotFindCandidateVer /*{{{*/ | |
509 | pkgCache::VerIterator CacheSetHelper::canNotFindCandidateVer(pkgCacheFile &Cache, | |
510 | pkgCache::PkgIterator const &Pkg) { | |
511 | if (ShowError == true) | |
cd7bbc47 | 512 | _error->Insert(ErrorType, _("Can't select candidate version from package %s as it has no candidate"), Pkg.FullName(true).c_str()); |
c8db3fff | 513 | return pkgCache::VerIterator(Cache, 0); |
70e706ad DK |
514 | } |
515 | /*}}}*/ | |
516 | // canNotFindInstalledVer /*{{{*/ | |
517 | pkgCache::VerIterator CacheSetHelper::canNotFindInstalledVer(pkgCacheFile &Cache, | |
518 | pkgCache::PkgIterator const &Pkg) { | |
519 | if (ShowError == true) | |
cd7bbc47 | 520 | _error->Insert(ErrorType, _("Can't select installed version from package %s as it is not installed"), Pkg.FullName(true).c_str()); |
c8db3fff | 521 | return pkgCache::VerIterator(Cache, 0); |
70e706ad DK |
522 | } |
523 | /*}}}*/ | |
15fc8636 DK |
524 | // showTaskSelection /*{{{*/ |
525 | void CacheSetHelper::showTaskSelection(pkgCache::PkgIterator const &pkg, | |
526 | std::string const &pattern) { | |
527 | } | |
528 | /*}}}*/ | |
529 | // showRegExSelection /*{{{*/ | |
530 | void CacheSetHelper::showRegExSelection(pkgCache::PkgIterator const &pkg, | |
531 | std::string const &pattern) { | |
532 | } | |
533 | /*}}}*/ | |
534 | // showSelectedVersion /*{{{*/ | |
535 | void CacheSetHelper::showSelectedVersion(pkgCache::PkgIterator const &Pkg, | |
536 | pkgCache::VerIterator const Ver, | |
537 | std::string const &ver, | |
538 | bool const verIsRel) { | |
539 | } | |
540 | /*}}}*/ | |
ffee1c2b | 541 | } |