]>
Commit | Line | Data |
---|---|---|
1164783d AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
ea7f6363 | 3 | // $Id: apt-cache.cc,v 1.72 2004/04/30 04:34:03 mdz Exp $ |
1164783d AL |
4 | /* ###################################################################### |
5 | ||
e1b74f61 | 6 | apt-cache - Manages the cache files |
1164783d | 7 | |
e1b74f61 | 8 | apt-cache provides some functions fo manipulating the cache files. |
b2e465d6 | 9 | It uses the command line interface common to all the APT tools. |
1164783d AL |
10 | |
11 | Returns 100 on failure, 0 on success. | |
12 | ||
13 | ##################################################################### */ | |
14 | /*}}}*/ | |
15 | // Include Files /*{{{*/ | |
ea542140 DK |
16 | #include<config.h> |
17 | ||
453b82a3 | 18 | #include <apt-pkg/algorithms.h> |
6007c1d4 | 19 | #include <apt-pkg/cachefile.h> |
8fde7239 | 20 | #include <apt-pkg/cacheset.h> |
08e8f724 | 21 | #include <apt-pkg/cmndline.h> |
453b82a3 | 22 | #include <apt-pkg/error.h> |
472ff00e | 23 | #include <apt-pkg/fileutl.h> |
453b82a3 DK |
24 | #include <apt-pkg/indexfile.h> |
25 | #include <apt-pkg/init.h> | |
26 | #include <apt-pkg/metaindex.h> | |
9dbb421f | 27 | #include <apt-pkg/pkgrecords.h> |
453b82a3 | 28 | #include <apt-pkg/pkgsystem.h> |
b2e465d6 | 29 | #include <apt-pkg/policy.h> |
453b82a3 DK |
30 | #include <apt-pkg/progress.h> |
31 | #include <apt-pkg/sourcelist.h> | |
b2e465d6 | 32 | #include <apt-pkg/sptr.h> |
453b82a3 DK |
33 | #include <apt-pkg/srcrecords.h> |
34 | #include <apt-pkg/strutl.h> | |
35 | #include <apt-pkg/tagfile.h> | |
36 | #include <apt-pkg/version.h> | |
37 | #include <apt-pkg/cacheiterators.h> | |
38 | #include <apt-pkg/configuration.h> | |
39 | #include <apt-pkg/depcache.h> | |
40 | #include <apt-pkg/macros.h> | |
41 | #include <apt-pkg/mmap.h> | |
42 | #include <apt-pkg/pkgcache.h> | |
31367812 | 43 | |
b9179170 | 44 | #include <apt-private/private-cacheset.h> |
453b82a3 | 45 | #include <apt-private/private-cmndline.h> |
b9179170 | 46 | |
9dbb421f | 47 | #include <regex.h> |
453b82a3 | 48 | #include <stddef.h> |
3e94da1b | 49 | #include <stdio.h> |
453b82a3 DK |
50 | #include <stdlib.h> |
51 | #include <unistd.h> | |
472ff00e | 52 | #include <algorithm> |
453b82a3 DK |
53 | #include <cstring> |
54 | #include <iomanip> | |
55 | #include <iostream> | |
56 | #include <list> | |
57 | #include <map> | |
58 | #include <set> | |
59 | #include <string> | |
60 | #include <vector> | |
ea542140 DK |
61 | |
62 | #include <apti18n.h> | |
1164783d AL |
63 | /*}}}*/ |
64 | ||
8f312f45 AL |
65 | using namespace std; |
66 | ||
b2e465d6 AL |
67 | // LocalitySort - Sort a version list by package file locality /*{{{*/ |
68 | // --------------------------------------------------------------------- | |
69 | /* */ | |
c3ccac92 | 70 | static int LocalityCompare(const void *a, const void *b) |
b2e465d6 AL |
71 | { |
72 | pkgCache::VerFile *A = *(pkgCache::VerFile **)a; | |
73 | pkgCache::VerFile *B = *(pkgCache::VerFile **)b; | |
74 | ||
75 | if (A == 0 && B == 0) | |
76 | return 0; | |
77 | if (A == 0) | |
78 | return 1; | |
79 | if (B == 0) | |
80 | return -1; | |
81 | ||
82 | if (A->File == B->File) | |
83 | return A->Offset - B->Offset; | |
84 | return A->File - B->File; | |
85 | } | |
86 | ||
c3ccac92 | 87 | static void LocalitySort(pkgCache::VerFile **begin, |
b2e465d6 AL |
88 | unsigned long Count,size_t Size) |
89 | { | |
90 | qsort(begin,Count,Size,LocalityCompare); | |
91 | } | |
a52f938b | 92 | |
c3ccac92 | 93 | static void LocalitySort(pkgCache::DescFile **begin, |
a52f938b OS |
94 | unsigned long Count,size_t Size) |
95 | { | |
96 | qsort(begin,Count,Size,LocalityCompare); | |
97 | } | |
b2e465d6 | 98 | /*}}}*/ |
cc718e9a AL |
99 | // UnMet - Show unmet dependencies /*{{{*/ |
100 | // --------------------------------------------------------------------- | |
101 | /* */ | |
c3ccac92 | 102 | static bool ShowUnMet(pkgCache::VerIterator const &V, bool const Important) |
cc718e9a | 103 | { |
cc718e9a | 104 | bool Header = false; |
018f1533 | 105 | for (pkgCache::DepIterator D = V.DependsList(); D.end() == false;) |
cc718e9a AL |
106 | { |
107 | // Collect or groups | |
108 | pkgCache::DepIterator Start; | |
109 | pkgCache::DepIterator End; | |
110 | D.GlobOr(Start,End); | |
cc718e9a | 111 | |
018f1533 AL |
112 | // Important deps only |
113 | if (Important == true) | |
114 | if (End->Type != pkgCache::Dep::PreDepends && | |
7146a53c | 115 | End->Type != pkgCache::Dep::Depends) |
018f1533 | 116 | continue; |
6ebaae9a DK |
117 | |
118 | // Skip conflicts and replaces | |
359e46db | 119 | if (End.IsNegative() == true) |
6ebaae9a DK |
120 | continue; |
121 | ||
cc718e9a AL |
122 | // Verify the or group |
123 | bool OK = false; | |
124 | pkgCache::DepIterator RealStart = Start; | |
125 | do | |
126 | { | |
127 | // See if this dep is Ok | |
128 | pkgCache::Version **VList = Start.AllTargets(); | |
129 | if (*VList != 0) | |
130 | { | |
131 | OK = true; | |
132 | delete [] VList; | |
133 | break; | |
134 | } | |
135 | delete [] VList; | |
136 | ||
137 | if (Start == End) | |
138 | break; | |
f7f0d6c7 | 139 | ++Start; |
cc718e9a AL |
140 | } |
141 | while (1); | |
142 | ||
143 | // The group is OK | |
144 | if (OK == true) | |
145 | continue; | |
146 | ||
147 | // Oops, it failed.. | |
148 | if (Header == false) | |
b2e465d6 | 149 | ioprintf(cout,_("Package %s version %s has an unmet dep:\n"), |
6ebaae9a | 150 | V.ParentPkg().FullName(true).c_str(),V.VerStr()); |
cc718e9a AL |
151 | Header = true; |
152 | ||
153 | // Print out the dep type | |
154 | cout << " " << End.DepType() << ": "; | |
155 | ||
156 | // Show the group | |
157 | Start = RealStart; | |
158 | do | |
159 | { | |
75ce2062 | 160 | cout << Start.TargetPkg().FullName(true); |
cc718e9a AL |
161 | if (Start.TargetVer() != 0) |
162 | cout << " (" << Start.CompType() << " " << Start.TargetVer() << | |
163 | ")"; | |
164 | if (Start == End) | |
165 | break; | |
166 | cout << " | "; | |
f7f0d6c7 | 167 | ++Start; |
cc718e9a AL |
168 | } |
169 | while (1); | |
170 | ||
171 | cout << endl; | |
6ebaae9a DK |
172 | } |
173 | return true; | |
174 | } | |
c3ccac92 | 175 | static bool UnMet(CommandLine &CmdL) |
6ebaae9a DK |
176 | { |
177 | bool const Important = _config->FindB("APT::Cache::Important",false); | |
178 | ||
179 | pkgCacheFile CacheFile; | |
180 | if (unlikely(CacheFile.GetPkgCache() == NULL)) | |
181 | return false; | |
182 | ||
183 | if (CmdL.FileSize() <= 1) | |
184 | { | |
f7f0d6c7 | 185 | for (pkgCache::PkgIterator P = CacheFile.GetPkgCache()->PkgBegin(); P.end() == false; ++P) |
6ebaae9a DK |
186 | for (pkgCache::VerIterator V = P.VersionList(); V.end() == false; ++V) |
187 | if (ShowUnMet(V, Important) == false) | |
188 | return false; | |
189 | } | |
190 | else | |
191 | { | |
65f81081 | 192 | CacheSetHelperVirtuals helper(true, GlobalError::NOTICE); |
c4cca791 DK |
193 | APT::VersionList verset = APT::VersionList::FromCommandLine(CacheFile, CmdL.FileList + 1, |
194 | APT::VersionList::CANDIDATE, helper); | |
195 | for (APT::VersionList::iterator V = verset.begin(); V != verset.end(); ++V) | |
6ebaae9a DK |
196 | if (ShowUnMet(V, Important) == false) |
197 | return false; | |
198 | } | |
cc718e9a AL |
199 | return true; |
200 | } | |
201 | /*}}}*/ | |
1164783d AL |
202 | // DumpPackage - Show a dump of a package record /*{{{*/ |
203 | // --------------------------------------------------------------------- | |
204 | /* */ | |
c3ccac92 | 205 | static bool DumpPackage(CommandLine &CmdL) |
d9eb210e DK |
206 | { |
207 | pkgCacheFile CacheFile; | |
cd7bbc47 | 208 | APT::CacheSetHelper helper(true, GlobalError::NOTICE); |
c4cca791 | 209 | APT::PackageList pkgset = APT::PackageList::FromCommandLine(CacheFile, CmdL.FileList + 1, helper); |
1164783d | 210 | |
c4cca791 | 211 | for (APT::PackageList::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg) |
78c32596 | 212 | { |
75ce2062 | 213 | cout << "Package: " << Pkg.FullName(true) << endl; |
b2e465d6 | 214 | cout << "Versions: " << endl; |
f7f0d6c7 | 215 | for (pkgCache::VerIterator Cur = Pkg.VersionList(); Cur.end() != true; ++Cur) |
03e39e59 AL |
216 | { |
217 | cout << Cur.VerStr(); | |
f7f0d6c7 | 218 | for (pkgCache::VerFileIterator Vf = Cur.FileList(); Vf.end() == false; ++Vf) |
a52f938b OS |
219 | cout << " (" << Vf.File().FileName() << ")"; |
220 | cout << endl; | |
f7f0d6c7 | 221 | for (pkgCache::DescIterator D = Cur.DescriptionList(); D.end() == false; ++D) |
a52f938b OS |
222 | { |
223 | cout << " Description Language: " << D.LanguageCode() << endl | |
224 | << " File: " << D.FileList().File().FileName() << endl | |
225 | << " MD5: " << D.md5() << endl; | |
226 | } | |
b2e465d6 | 227 | cout << endl; |
03e39e59 AL |
228 | } |
229 | ||
1164783d AL |
230 | cout << endl; |
231 | ||
232 | cout << "Reverse Depends: " << endl; | |
f7f0d6c7 | 233 | for (pkgCache::DepIterator D = Pkg.RevDependsList(); D.end() != true; ++D) |
b2e465d6 | 234 | { |
75ce2062 | 235 | cout << " " << D.ParentPkg().FullName(true) << ',' << D.TargetPkg().FullName(true); |
b2e465d6 | 236 | if (D->Version != 0) |
b1b663d1 | 237 | cout << ' ' << DeNull(D.TargetVer()) << endl; |
b2e465d6 AL |
238 | else |
239 | cout << endl; | |
240 | } | |
241 | ||
1164783d | 242 | cout << "Dependencies: " << endl; |
f7f0d6c7 | 243 | for (pkgCache::VerIterator Cur = Pkg.VersionList(); Cur.end() != true; ++Cur) |
1164783d AL |
244 | { |
245 | cout << Cur.VerStr() << " - "; | |
f7f0d6c7 | 246 | for (pkgCache::DepIterator Dep = Cur.DependsList(); Dep.end() != true; ++Dep) |
75ce2062 | 247 | cout << Dep.TargetPkg().FullName(true) << " (" << (int)Dep->CompareOp << " " << DeNull(Dep.TargetVer()) << ") "; |
1164783d AL |
248 | cout << endl; |
249 | } | |
250 | ||
251 | cout << "Provides: " << endl; | |
f7f0d6c7 | 252 | for (pkgCache::VerIterator Cur = Pkg.VersionList(); Cur.end() != true; ++Cur) |
1164783d AL |
253 | { |
254 | cout << Cur.VerStr() << " - "; | |
f7f0d6c7 | 255 | for (pkgCache::PrvIterator Prv = Cur.ProvidesList(); Prv.end() != true; ++Prv) |
75ce2062 | 256 | cout << Prv.ParentPkg().FullName(true) << " "; |
1164783d | 257 | cout << endl; |
8efa2a3b AL |
258 | } |
259 | cout << "Reverse Provides: " << endl; | |
f7f0d6c7 | 260 | for (pkgCache::PrvIterator Prv = Pkg.ProvidesList(); Prv.end() != true; ++Prv) |
75ce2062 | 261 | cout << Prv.OwnerPkg().FullName(true) << " " << Prv.OwnerVer().VerStr() << endl; |
1164783d AL |
262 | } |
263 | ||
264 | return true; | |
265 | } | |
266 | /*}}}*/ | |
267 | // Stats - Dump some nice statistics /*{{{*/ | |
268 | // --------------------------------------------------------------------- | |
269 | /* */ | |
65512241 | 270 | static bool Stats(CommandLine &) |
1164783d | 271 | { |
d9eb210e DK |
272 | pkgCacheFile CacheFile; |
273 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
274 | if (unlikely(Cache == NULL)) | |
275 | return false; | |
276 | ||
277 | cout << _("Total package names: ") << Cache->Head().GroupCount << " (" << | |
278 | SizeToStr(Cache->Head().GroupCount*Cache->Head().GroupSz) << ')' << endl | |
279 | << _("Total package structures: ") << Cache->Head().PackageCount << " (" << | |
280 | SizeToStr(Cache->Head().PackageCount*Cache->Head().PackageSz) << ')' << endl; | |
b2e465d6 | 281 | |
1164783d AL |
282 | int Normal = 0; |
283 | int Virtual = 0; | |
284 | int NVirt = 0; | |
285 | int DVirt = 0; | |
286 | int Missing = 0; | |
d9eb210e | 287 | pkgCache::PkgIterator I = Cache->PkgBegin(); |
f7f0d6c7 | 288 | for (;I.end() != true; ++I) |
1164783d AL |
289 | { |
290 | if (I->VersionList != 0 && I->ProvidesList == 0) | |
291 | { | |
292 | Normal++; | |
293 | continue; | |
294 | } | |
295 | ||
296 | if (I->VersionList != 0 && I->ProvidesList != 0) | |
297 | { | |
298 | NVirt++; | |
299 | continue; | |
300 | } | |
301 | ||
302 | if (I->VersionList == 0 && I->ProvidesList != 0) | |
303 | { | |
304 | // Only 1 provides | |
305 | if (I.ProvidesList()->NextProvides == 0) | |
306 | { | |
307 | DVirt++; | |
308 | } | |
309 | else | |
310 | Virtual++; | |
311 | continue; | |
312 | } | |
313 | if (I->VersionList == 0 && I->ProvidesList == 0) | |
314 | { | |
315 | Missing++; | |
316 | continue; | |
317 | } | |
318 | } | |
db0db9fe CP |
319 | cout << _(" Normal packages: ") << Normal << endl; |
320 | cout << _(" Pure virtual packages: ") << Virtual << endl; | |
321 | cout << _(" Single virtual packages: ") << DVirt << endl; | |
322 | cout << _(" Mixed virtual packages: ") << NVirt << endl; | |
b2e465d6 | 323 | cout << _(" Missing: ") << Missing << endl; |
1164783d | 324 | |
d9eb210e DK |
325 | cout << _("Total distinct versions: ") << Cache->Head().VersionCount << " (" << |
326 | SizeToStr(Cache->Head().VersionCount*Cache->Head().VersionSz) << ')' << endl; | |
327 | cout << _("Total distinct descriptions: ") << Cache->Head().DescriptionCount << " (" << | |
328 | SizeToStr(Cache->Head().DescriptionCount*Cache->Head().DescriptionSz) << ')' << endl; | |
329 | cout << _("Total dependencies: ") << Cache->Head().DependsCount << " (" << | |
330 | SizeToStr(Cache->Head().DependsCount*Cache->Head().DependencySz) << ')' << endl; | |
f826cfaa | 331 | |
d9eb210e DK |
332 | cout << _("Total ver/file relations: ") << Cache->Head().VerFileCount << " (" << |
333 | SizeToStr(Cache->Head().VerFileCount*Cache->Head().VerFileSz) << ')' << endl; | |
334 | cout << _("Total Desc/File relations: ") << Cache->Head().DescFileCount << " (" << | |
335 | SizeToStr(Cache->Head().DescFileCount*Cache->Head().DescFileSz) << ')' << endl; | |
336 | cout << _("Total Provides mappings: ") << Cache->Head().ProvidesCount << " (" << | |
337 | SizeToStr(Cache->Head().ProvidesCount*Cache->Head().ProvidesSz) << ')' << endl; | |
f826cfaa AL |
338 | |
339 | // String list stats | |
340 | unsigned long Size = 0; | |
341 | unsigned long Count = 0; | |
d9eb210e DK |
342 | for (pkgCache::StringItem *I = Cache->StringItemP + Cache->Head().StringList; |
343 | I!= Cache->StringItemP; I = Cache->StringItemP + I->NextItem) | |
f826cfaa AL |
344 | { |
345 | Count++; | |
d9eb210e | 346 | Size += strlen(Cache->StrP + I->String) + 1; |
f826cfaa | 347 | } |
db0db9fe | 348 | cout << _("Total globbed strings: ") << Count << " (" << SizeToStr(Size) << ')' << endl; |
b2e465d6 AL |
349 | |
350 | unsigned long DepVerSize = 0; | |
f7f0d6c7 | 351 | for (pkgCache::PkgIterator P = Cache->PkgBegin(); P.end() == false; ++P) |
b2e465d6 | 352 | { |
f7f0d6c7 | 353 | for (pkgCache::VerIterator V = P.VersionList(); V.end() == false; ++V) |
b2e465d6 | 354 | { |
f7f0d6c7 | 355 | for (pkgCache::DepIterator D = V.DependsList(); D.end() == false; ++D) |
b2e465d6 AL |
356 | { |
357 | if (D->Version != 0) | |
358 | DepVerSize += strlen(D.TargetVer()) + 1; | |
359 | } | |
360 | } | |
361 | } | |
db0db9fe | 362 | cout << _("Total dependency version space: ") << SizeToStr(DepVerSize) << endl; |
b2e465d6 | 363 | |
f826cfaa AL |
364 | unsigned long Slack = 0; |
365 | for (int I = 0; I != 7; I++) | |
d9eb210e | 366 | Slack += Cache->Head().Pools[I].ItemSize*Cache->Head().Pools[I].Count; |
db0db9fe | 367 | cout << _("Total slack space: ") << SizeToStr(Slack) << endl; |
f826cfaa AL |
368 | |
369 | unsigned long Total = 0; | |
d9eb210e DK |
370 | Total = Slack + Size + Cache->Head().DependsCount*Cache->Head().DependencySz + |
371 | Cache->Head().VersionCount*Cache->Head().VersionSz + | |
372 | Cache->Head().PackageCount*Cache->Head().PackageSz + | |
373 | Cache->Head().VerFileCount*Cache->Head().VerFileSz + | |
374 | Cache->Head().ProvidesCount*Cache->Head().ProvidesSz; | |
db0db9fe | 375 | cout << _("Total space accounted for: ") << SizeToStr(Total) << endl; |
f826cfaa | 376 | |
83d89a9f AL |
377 | return true; |
378 | } | |
379 | /*}}}*/ | |
1164783d AL |
380 | // Dump - show everything /*{{{*/ |
381 | // --------------------------------------------------------------------- | |
b2e465d6 | 382 | /* This is worthless except fer debugging things */ |
65512241 | 383 | static bool Dump(CommandLine &) |
1164783d | 384 | { |
d9eb210e DK |
385 | pkgCacheFile CacheFile; |
386 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
387 | if (unlikely(Cache == NULL)) | |
388 | return false; | |
389 | ||
b9179170 | 390 | std::cout << "Using Versioning System: " << Cache->VS->Label << std::endl; |
b2e465d6 | 391 | |
f7f0d6c7 | 392 | for (pkgCache::PkgIterator P = Cache->PkgBegin(); P.end() == false; ++P) |
1164783d | 393 | { |
b9179170 | 394 | std::cout << "Package: " << P.FullName(true) << std::endl; |
f7f0d6c7 | 395 | for (pkgCache::VerIterator V = P.VersionList(); V.end() == false; ++V) |
1164783d | 396 | { |
b9179170 MV |
397 | std::cout << " Version: " << V.VerStr() << std::endl; |
398 | std::cout << " File: " << V.FileList().File().FileName() << std::endl; | |
f7f0d6c7 | 399 | for (pkgCache::DepIterator D = V.DependsList(); D.end() == false; ++D) |
b9179170 MV |
400 | std::cout << " Depends: " << D.TargetPkg().FullName(true) << ' ' << |
401 | DeNull(D.TargetVer()) << std::endl; | |
f7f0d6c7 | 402 | for (pkgCache::DescIterator D = V.DescriptionList(); D.end() == false; ++D) |
a52f938b | 403 | { |
b9179170 MV |
404 | std::cout << " Description Language: " << D.LanguageCode() << std::endl |
405 | << " File: " << D.FileList().File().FileName() << std::endl | |
406 | << " MD5: " << D.md5() << std::endl; | |
a52f938b | 407 | } |
1164783d AL |
408 | } |
409 | } | |
410 | ||
f7f0d6c7 | 411 | for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F.end() == false; ++F) |
1164783d | 412 | { |
b9179170 MV |
413 | std::cout << "File: " << F.FileName() << std::endl; |
414 | std::cout << " Type: " << F.IndexType() << std::endl; | |
415 | std::cout << " Size: " << F->Size << std::endl; | |
416 | std::cout << " ID: " << F->ID << std::endl; | |
417 | std::cout << " Flags: " << F->Flags << std::endl; | |
418 | std::cout << " Time: " << TimeRFC1123(F->mtime) << std::endl; | |
419 | std::cout << " Archive: " << DeNull(F.Archive()) << std::endl; | |
420 | std::cout << " Component: " << DeNull(F.Component()) << std::endl; | |
421 | std::cout << " Version: " << DeNull(F.Version()) << std::endl; | |
422 | std::cout << " Origin: " << DeNull(F.Origin()) << std::endl; | |
423 | std::cout << " Site: " << DeNull(F.Site()) << std::endl; | |
424 | std::cout << " Label: " << DeNull(F.Label()) << std::endl; | |
425 | std::cout << " Architecture: " << DeNull(F.Architecture()) << std::endl; | |
1164783d AL |
426 | } |
427 | ||
428 | return true; | |
429 | } | |
430 | /*}}}*/ | |
431 | // DumpAvail - Print out the available list /*{{{*/ | |
432 | // --------------------------------------------------------------------- | |
b2e465d6 AL |
433 | /* This is needed to make dpkg --merge happy.. I spent a bit of time to |
434 | make this run really fast, perhaps I went a little overboard.. */ | |
65512241 | 435 | static bool DumpAvail(CommandLine &) |
1164783d | 436 | { |
d9eb210e DK |
437 | pkgCacheFile CacheFile; |
438 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
439 | if (unlikely(Cache == NULL || CacheFile.BuildPolicy() == false)) | |
b2e465d6 | 440 | return false; |
d9eb210e DK |
441 | |
442 | unsigned long Count = Cache->HeaderP->PackageCount+1; | |
fe648919 AL |
443 | pkgCache::VerFile **VFList = new pkgCache::VerFile *[Count]; |
444 | memset(VFList,0,sizeof(*VFList)*Count); | |
b2e465d6 AL |
445 | |
446 | // Map versions that we want to write out onto the VerList array. | |
f7f0d6c7 | 447 | for (pkgCache::PkgIterator P = Cache->PkgBegin(); P.end() == false; ++P) |
b2e465d6 AL |
448 | { |
449 | if (P->VersionList == 0) | |
5b8c90bf AL |
450 | continue; |
451 | ||
b2e465d6 AL |
452 | /* Find the proper version to use. If the policy says there are no |
453 | possible selections we return the installed version, if available.. | |
454 | This prevents dselect from making it obsolete. */ | |
d9eb210e | 455 | pkgCache::VerIterator V = CacheFile.GetPolicy()->GetCandidateVer(P); |
b2e465d6 | 456 | if (V.end() == true) |
ad00ae81 | 457 | { |
b2e465d6 AL |
458 | if (P->CurrentVer == 0) |
459 | continue; | |
460 | V = P.CurrentVer(); | |
ad00ae81 | 461 | } |
1164783d | 462 | |
b2e465d6 | 463 | pkgCache::VerFileIterator VF = V.FileList(); |
f7f0d6c7 | 464 | for (; VF.end() == false ; ++VF) |
b2e465d6 AL |
465 | if ((VF.File()->Flags & pkgCache::Flag::NotSource) == 0) |
466 | break; | |
467 | ||
468 | /* Okay, here we have a bit of a problem.. The policy has selected the | |
469 | currently installed package - however it only exists in the | |
470 | status file.. We need to write out something or dselect will mark | |
471 | the package as obsolete! Thus we emit the status file entry, but | |
472 | below we remove the status line to make it valid for the | |
473 | available file. However! We only do this if their do exist *any* | |
474 | non-source versions of the package - that way the dselect obsolete | |
475 | handling works OK. */ | |
476 | if (VF.end() == true) | |
1164783d | 477 | { |
f7f0d6c7 | 478 | for (pkgCache::VerIterator Cur = P.VersionList(); Cur.end() != true; ++Cur) |
b2e465d6 | 479 | { |
f7f0d6c7 | 480 | for (VF = Cur.FileList(); VF.end() == false; ++VF) |
b2e465d6 AL |
481 | { |
482 | if ((VF.File()->Flags & pkgCache::Flag::NotSource) == 0) | |
483 | { | |
484 | VF = V.FileList(); | |
485 | break; | |
486 | } | |
487 | } | |
488 | ||
489 | if (VF.end() == false) | |
490 | break; | |
491 | } | |
ad00ae81 | 492 | } |
b2e465d6 AL |
493 | |
494 | VFList[P->ID] = VF; | |
495 | } | |
496 | ||
fe648919 | 497 | LocalitySort(VFList,Count,sizeof(*VFList)); |
ad00ae81 | 498 | |
b2e465d6 | 499 | // Iterate over all the package files and write them out. |
d9eb210e | 500 | char *Buffer = new char[Cache->HeaderP->MaxVerFileSize+10]; |
b2e465d6 AL |
501 | for (pkgCache::VerFile **J = VFList; *J != 0;) |
502 | { | |
d9eb210e | 503 | pkgCache::PkgFileIterator File(*Cache,(*J)->File + Cache->PkgFileP); |
b2e465d6 | 504 | if (File.IsOk() == false) |
ad00ae81 | 505 | { |
b2e465d6 AL |
506 | _error->Error(_("Package file %s is out of sync."),File.FileName()); |
507 | break; | |
508 | } | |
bd432be3 | 509 | |
b2e465d6 AL |
510 | FileFd PkgF(File.FileName(),FileFd::ReadOnly); |
511 | if (_error->PendingError() == true) | |
512 | break; | |
513 | ||
514 | /* Write all of the records from this package file, since we | |
515 | already did locality sorting we can now just seek through the | |
516 | file in read order. We apply 1 more optimization here, since often | |
517 | there will be < 1 byte gaps between records (for the \n) we read that | |
518 | into the next buffer and offset a bit.. */ | |
519 | unsigned long Pos = 0; | |
520 | for (; *J != 0; J++) | |
521 | { | |
d9eb210e | 522 | if ((*J)->File + Cache->PkgFileP != File) |
b2e465d6 | 523 | break; |
bd432be3 | 524 | |
b2e465d6 AL |
525 | const pkgCache::VerFile &VF = **J; |
526 | ||
bd432be3 | 527 | // Read the record and then write it out again. |
b2e465d6 AL |
528 | unsigned long Jitter = VF.Offset - Pos; |
529 | if (Jitter > 8) | |
1164783d | 530 | { |
b2e465d6 AL |
531 | if (PkgF.Seek(VF.Offset) == false) |
532 | break; | |
533 | Jitter = 0; | |
534 | } | |
535 | ||
536 | if (PkgF.Read(Buffer,VF.Size + Jitter) == false) | |
537 | break; | |
538 | Buffer[VF.Size + Jitter] = '\n'; | |
539 | ||
540 | // See above.. | |
541 | if ((File->Flags & pkgCache::Flag::NotSource) == pkgCache::Flag::NotSource) | |
542 | { | |
543 | pkgTagSection Tags; | |
67c3067f | 544 | TFRewriteData RW[] = {{"Status", NULL, NULL},{"Config-Version", NULL, NULL},{NULL, NULL, NULL}}; |
b2e465d6 AL |
545 | const char *Zero = 0; |
546 | if (Tags.Scan(Buffer+Jitter,VF.Size+1) == false || | |
547 | TFRewrite(stdout,Tags,&Zero,RW) == false) | |
548 | { | |
549 | _error->Error("Internal Error, Unable to parse a package record"); | |
550 | break; | |
551 | } | |
552 | fputc('\n',stdout); | |
553 | } | |
554 | else | |
555 | { | |
556 | if (fwrite(Buffer+Jitter,VF.Size+1,1,stdout) != 1) | |
557 | break; | |
558 | } | |
559 | ||
560 | Pos = VF.Offset + VF.Size; | |
1164783d | 561 | } |
b2e465d6 AL |
562 | |
563 | fflush(stdout); | |
564 | if (_error->PendingError() == true) | |
565 | break; | |
ad00ae81 AL |
566 | } |
567 | ||
b2e465d6 AL |
568 | delete [] Buffer; |
569 | delete [] VFList; | |
570 | return !_error->PendingError(); | |
349cd3b8 AL |
571 | } |
572 | /*}}}*/ | |
3de4647b | 573 | // ShowDepends - Helper for printing out a dependency tree /*{{{*/ |
c3ccac92 | 574 | static bool ShowDepends(CommandLine &CmdL, bool const RevDepends) |
349cd3b8 | 575 | { |
d9eb210e DK |
576 | pkgCacheFile CacheFile; |
577 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
578 | if (unlikely(Cache == NULL)) | |
579 | return false; | |
78c32596 | 580 | |
65f81081 | 581 | CacheSetHelperVirtuals helper(false); |
c4cca791 | 582 | APT::VersionList verset = APT::VersionList::FromCommandLine(CacheFile, CmdL.FileList + 1, APT::VersionList::CANDIDATE, helper); |
3de4647b | 583 | if (verset.empty() == true && helper.virtualPkgs.empty() == true) |
f23fc0e0 | 584 | return _error->Error(_("No packages found")); |
3de4647b | 585 | std::vector<bool> Shown(Cache->Head().PackageCount); |
78c32596 | 586 | |
fe1af091 DK |
587 | bool const Recurse = _config->FindB("APT::Cache::RecurseDepends", false); |
588 | bool const Installed = _config->FindB("APT::Cache::Installed", false); | |
589 | bool const Important = _config->FindB("APT::Cache::Important", false); | |
3de4647b | 590 | bool const ShowDepType = _config->FindB("APT::Cache::ShowDependencyType", RevDepends == false); |
173c98da | 591 | bool const ShowVersion = _config->FindB("APT::Cache::ShowVersion", false); |
fe1af091 DK |
592 | bool const ShowPreDepends = _config->FindB("APT::Cache::ShowPre-Depends", true); |
593 | bool const ShowDepends = _config->FindB("APT::Cache::ShowDepends", true); | |
594 | bool const ShowRecommends = _config->FindB("APT::Cache::ShowRecommends", Important == false); | |
595 | bool const ShowSuggests = _config->FindB("APT::Cache::ShowSuggests", Important == false); | |
596 | bool const ShowReplaces = _config->FindB("APT::Cache::ShowReplaces", Important == false); | |
597 | bool const ShowConflicts = _config->FindB("APT::Cache::ShowConflicts", Important == false); | |
598 | bool const ShowBreaks = _config->FindB("APT::Cache::ShowBreaks", Important == false); | |
599 | bool const ShowEnhances = _config->FindB("APT::Cache::ShowEnhances", Important == false); | |
a5032f84 | 600 | bool const ShowOnlyFirstOr = _config->FindB("APT::Cache::ShowOnlyFirstOr", false); |
3de4647b DK |
601 | |
602 | while (verset.empty() != true) | |
b2e465d6 | 603 | { |
3de4647b DK |
604 | pkgCache::VerIterator Ver = *verset.begin(); |
605 | verset.erase(verset.begin()); | |
606 | pkgCache::PkgIterator Pkg = Ver.ParentPkg(); | |
607 | Shown[Pkg->ID] = true; | |
608 | ||
75ce2062 | 609 | cout << Pkg.FullName(true) << endl; |
3de4647b DK |
610 | |
611 | if (RevDepends == true) | |
612 | cout << "Reverse Depends:" << endl; | |
613 | for (pkgCache::DepIterator D = RevDepends ? Pkg.RevDependsList() : Ver.DependsList(); | |
f7f0d6c7 | 614 | D.end() == false; ++D) |
b2e465d6 | 615 | { |
fe1af091 DK |
616 | switch (D->Type) { |
617 | case pkgCache::Dep::PreDepends: if (!ShowPreDepends) continue; break; | |
618 | case pkgCache::Dep::Depends: if (!ShowDepends) continue; break; | |
619 | case pkgCache::Dep::Recommends: if (!ShowRecommends) continue; break; | |
620 | case pkgCache::Dep::Suggests: if (!ShowSuggests) continue; break; | |
b9179170 | 621 | case pkgCache::Dep::Replaces: if (!ShowReplaces) continue; break; case pkgCache::Dep::Conflicts: if (!ShowConflicts) continue; break; |
fe1af091 DK |
622 | case pkgCache::Dep::DpkgBreaks: if (!ShowBreaks) continue; break; |
623 | case pkgCache::Dep::Enhances: if (!ShowEnhances) continue; break; | |
624 | } | |
625 | ||
3de4647b | 626 | pkgCache::PkgIterator Trg = RevDepends ? D.ParentPkg() : D.TargetPkg(); |
eba2b51d AL |
627 | |
628 | if((Installed && Trg->CurrentVer != 0) || !Installed) | |
629 | { | |
630 | ||
a5032f84 | 631 | if ((D->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or && ShowOnlyFirstOr == false) |
eba2b51d AL |
632 | cout << " |"; |
633 | else | |
634 | cout << " "; | |
b2e465d6 | 635 | |
eba2b51d | 636 | // Show the package |
fe1af091 DK |
637 | if (ShowDepType == true) |
638 | cout << D.DepType() << ": "; | |
eba2b51d | 639 | if (Trg->VersionList == 0) |
173c98da | 640 | cout << "<" << Trg.FullName(true) << ">"; |
eba2b51d | 641 | else |
173c98da DK |
642 | cout << Trg.FullName(true); |
643 | if (ShowVersion == true && D->Version != 0) | |
644 | cout << " (" << pkgCache::CompTypeDeb(D->CompareOp) << ' ' << D.TargetVer() << ')'; | |
645 | cout << std::endl; | |
646 | ||
3de4647b DK |
647 | if (Recurse == true && Shown[Trg->ID] == false) |
648 | { | |
649 | Shown[Trg->ID] = true; | |
650 | verset.insert(APT::VersionSet::FromPackage(CacheFile, Trg, APT::VersionSet::CANDIDATE, helper)); | |
651 | } | |
eba2b51d AL |
652 | |
653 | } | |
b2e465d6 AL |
654 | |
655 | // Display all solutions | |
656 | SPtrArray<pkgCache::Version *> List = D.AllTargets(); | |
d9eb210e | 657 | pkgPrioSortList(*Cache,List); |
b2e465d6 AL |
658 | for (pkgCache::Version **I = List; *I != 0; I++) |
659 | { | |
d9eb210e DK |
660 | pkgCache::VerIterator V(*Cache,*I); |
661 | if (V != Cache->VerP + V.ParentPkg()->VersionList || | |
b2e465d6 AL |
662 | V->ParentPkg == D->Package) |
663 | continue; | |
75ce2062 | 664 | cout << " " << V.ParentPkg().FullName(true) << endl; |
3de4647b DK |
665 | |
666 | if (Recurse == true && Shown[V.ParentPkg()->ID] == false) | |
667 | { | |
668 | Shown[V.ParentPkg()->ID] = true; | |
669 | verset.insert(APT::VersionSet::FromPackage(CacheFile, V.ParentPkg(), APT::VersionSet::CANDIDATE, helper)); | |
670 | } | |
b2e465d6 | 671 | } |
a5032f84 DK |
672 | |
673 | if (ShowOnlyFirstOr == true) | |
674 | while ((D->CompareOp & pkgCache::Dep::Or) == pkgCache::Dep::Or) ++D; | |
b2e465d6 | 675 | } |
3de4647b DK |
676 | } |
677 | ||
678 | for (APT::PackageSet::const_iterator Pkg = helper.virtualPkgs.begin(); | |
679 | Pkg != helper.virtualPkgs.end(); ++Pkg) | |
680 | cout << '<' << Pkg.FullName(true) << '>' << endl; | |
681 | ||
3e94da1b AL |
682 | return true; |
683 | } | |
92fcbfc1 | 684 | /*}}}*/ |
3de4647b DK |
685 | // Depends - Print out a dependency tree /*{{{*/ |
686 | // --------------------------------------------------------------------- | |
687 | /* */ | |
c3ccac92 | 688 | static bool Depends(CommandLine &CmdL) |
3de4647b DK |
689 | { |
690 | return ShowDepends(CmdL, false); | |
691 | } | |
692 | /*}}}*/ | |
693 | // RDepends - Print out a reverse dependency tree /*{{{*/ | |
eba2b51d AL |
694 | // --------------------------------------------------------------------- |
695 | /* */ | |
c3ccac92 | 696 | static bool RDepends(CommandLine &CmdL) |
eba2b51d | 697 | { |
3de4647b | 698 | return ShowDepends(CmdL, true); |
eba2b51d | 699 | } |
3e94da1b | 700 | /*}}}*/ |
fff4b7f3 AL |
701 | // xvcg - Generate a graph for xvcg /*{{{*/ |
702 | // --------------------------------------------------------------------- | |
703 | // Code contributed from Junichi Uekawa <dancer@debian.org> on 20 June 2002. | |
704 | ||
c3ccac92 | 705 | static bool XVcg(CommandLine &CmdL) |
fff4b7f3 | 706 | { |
d9eb210e DK |
707 | pkgCacheFile CacheFile; |
708 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
709 | if (unlikely(Cache == NULL)) | |
710 | return false; | |
711 | ||
fff4b7f3 AL |
712 | bool GivenOnly = _config->FindB("APT::Cache::GivenOnly",false); |
713 | ||
714 | /* Normal packages are boxes | |
715 | Pure Provides are triangles | |
716 | Mixed are diamonds | |
717 | rhomb are missing packages*/ | |
718 | const char *Shapes[] = {"ellipse","triangle","box","rhomb"}; | |
719 | ||
720 | /* Initialize the list of packages to show. | |
721 | 1 = To Show | |
722 | 2 = To Show no recurse | |
723 | 3 = Emitted no recurse | |
724 | 4 = Emitted | |
725 | 0 = None */ | |
726 | enum States {None=0, ToShow, ToShowNR, DoneNR, Done}; | |
727 | enum TheFlags {ForceNR=(1<<0)}; | |
d9eb210e DK |
728 | unsigned char *Show = new unsigned char[Cache->Head().PackageCount]; |
729 | unsigned char *Flags = new unsigned char[Cache->Head().PackageCount]; | |
730 | unsigned char *ShapeMap = new unsigned char[Cache->Head().PackageCount]; | |
fff4b7f3 AL |
731 | |
732 | // Show everything if no arguments given | |
733 | if (CmdL.FileList[1] == 0) | |
d9eb210e | 734 | for (unsigned long I = 0; I != Cache->Head().PackageCount; I++) |
fff4b7f3 AL |
735 | Show[I] = ToShow; |
736 | else | |
d9eb210e | 737 | for (unsigned long I = 0; I != Cache->Head().PackageCount; I++) |
fff4b7f3 | 738 | Show[I] = None; |
d9eb210e | 739 | memset(Flags,0,sizeof(*Flags)*Cache->Head().PackageCount); |
fff4b7f3 AL |
740 | |
741 | // Map the shapes | |
f7f0d6c7 | 742 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
fff4b7f3 AL |
743 | { |
744 | if (Pkg->VersionList == 0) | |
745 | { | |
746 | // Missing | |
747 | if (Pkg->ProvidesList == 0) | |
748 | ShapeMap[Pkg->ID] = 0; | |
749 | else | |
750 | ShapeMap[Pkg->ID] = 1; | |
751 | } | |
752 | else | |
753 | { | |
754 | // Normal | |
755 | if (Pkg->ProvidesList == 0) | |
756 | ShapeMap[Pkg->ID] = 2; | |
757 | else | |
758 | ShapeMap[Pkg->ID] = 3; | |
759 | } | |
760 | } | |
3c977245 | 761 | |
fff4b7f3 | 762 | // Load the list of packages from the command line into the show list |
cd7bbc47 | 763 | APT::CacheSetHelper helper(true, GlobalError::NOTICE); |
3c977245 DK |
764 | std::list<APT::PackageSet::Modifier> mods; |
765 | mods.push_back(APT::PackageSet::Modifier(0, ",", APT::PackageSet::Modifier::POSTFIX)); | |
766 | mods.push_back(APT::PackageSet::Modifier(1, "^", APT::PackageSet::Modifier::POSTFIX)); | |
767 | std::map<unsigned short, APT::PackageSet> pkgsets = | |
cd7bbc47 | 768 | APT::PackageSet::GroupedFromCommandLine(CacheFile, CmdL.FileList + 1, mods, 0, helper); |
3c977245 DK |
769 | |
770 | for (APT::PackageSet::const_iterator Pkg = pkgsets[0].begin(); | |
771 | Pkg != pkgsets[0].end(); ++Pkg) | |
772 | Show[Pkg->ID] = ToShow; | |
773 | for (APT::PackageSet::const_iterator Pkg = pkgsets[1].begin(); | |
774 | Pkg != pkgsets[1].end(); ++Pkg) | |
fff4b7f3 | 775 | { |
fff4b7f3 | 776 | Show[Pkg->ID] = ToShow; |
3c977245 | 777 | Flags[Pkg->ID] |= ForceNR; |
fff4b7f3 | 778 | } |
3c977245 | 779 | |
fff4b7f3 AL |
780 | // Little header |
781 | cout << "graph: { title: \"packages\"" << endl << | |
782 | "xmax: 700 ymax: 700 x: 30 y: 30" << endl << | |
783 | "layout_downfactor: 8" << endl; | |
784 | ||
785 | bool Act = true; | |
786 | while (Act == true) | |
787 | { | |
788 | Act = false; | |
f7f0d6c7 | 789 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
fff4b7f3 AL |
790 | { |
791 | // See we need to show this package | |
792 | if (Show[Pkg->ID] == None || Show[Pkg->ID] >= DoneNR) | |
793 | continue; | |
794 | ||
795 | //printf ("node: { title: \"%s\" label: \"%s\" }\n", Pkg.Name(), Pkg.Name()); | |
796 | ||
797 | // Colour as done | |
798 | if (Show[Pkg->ID] == ToShowNR || (Flags[Pkg->ID] & ForceNR) == ForceNR) | |
799 | { | |
800 | // Pure Provides and missing packages have no deps! | |
801 | if (ShapeMap[Pkg->ID] == 0 || ShapeMap[Pkg->ID] == 1) | |
802 | Show[Pkg->ID] = Done; | |
803 | else | |
804 | Show[Pkg->ID] = DoneNR; | |
805 | } | |
806 | else | |
807 | Show[Pkg->ID] = Done; | |
808 | Act = true; | |
809 | ||
810 | // No deps to map out | |
811 | if (Pkg->VersionList == 0 || Show[Pkg->ID] == DoneNR) | |
812 | continue; | |
813 | ||
814 | pkgCache::VerIterator Ver = Pkg.VersionList(); | |
f7f0d6c7 | 815 | for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false; ++D) |
fff4b7f3 AL |
816 | { |
817 | // See if anything can meet this dep | |
818 | // Walk along the actual package providing versions | |
819 | bool Hit = false; | |
820 | pkgCache::PkgIterator DPkg = D.TargetPkg(); | |
821 | for (pkgCache::VerIterator I = DPkg.VersionList(); | |
f7f0d6c7 | 822 | I.end() == false && Hit == false; ++I) |
fff4b7f3 | 823 | { |
d9eb210e | 824 | if (Cache->VS->CheckDep(I.VerStr(),D->CompareOp,D.TargetVer()) == true) |
fff4b7f3 AL |
825 | Hit = true; |
826 | } | |
827 | ||
828 | // Follow all provides | |
829 | for (pkgCache::PrvIterator I = DPkg.ProvidesList(); | |
f7f0d6c7 | 830 | I.end() == false && Hit == false; ++I) |
fff4b7f3 | 831 | { |
d9eb210e | 832 | if (Cache->VS->CheckDep(I.ProvideVersion(),D->CompareOp,D.TargetVer()) == false) |
fff4b7f3 AL |
833 | Hit = true; |
834 | } | |
835 | ||
836 | ||
837 | // Only graph critical deps | |
838 | if (D.IsCritical() == true) | |
839 | { | |
75ce2062 | 840 | printf ("edge: { sourcename: \"%s\" targetname: \"%s\" class: 2 ",Pkg.FullName(true).c_str(), D.TargetPkg().FullName(true).c_str() ); |
fff4b7f3 AL |
841 | |
842 | // Colour the node for recursion | |
843 | if (Show[D.TargetPkg()->ID] <= DoneNR) | |
844 | { | |
845 | /* If a conflicts does not meet anything in the database | |
846 | then show the relation but do not recurse */ | |
359e46db | 847 | if (Hit == false && D.IsNegative() == true) |
fff4b7f3 AL |
848 | { |
849 | if (Show[D.TargetPkg()->ID] == None && | |
850 | Show[D.TargetPkg()->ID] != ToShow) | |
851 | Show[D.TargetPkg()->ID] = ToShowNR; | |
852 | } | |
853 | else | |
854 | { | |
855 | if (GivenOnly == true && Show[D.TargetPkg()->ID] != ToShow) | |
856 | Show[D.TargetPkg()->ID] = ToShowNR; | |
857 | else | |
858 | Show[D.TargetPkg()->ID] = ToShow; | |
859 | } | |
860 | } | |
861 | ||
862 | // Edge colour | |
863 | switch(D->Type) | |
864 | { | |
865 | case pkgCache::Dep::Conflicts: | |
866 | printf("label: \"conflicts\" color: lightgreen }\n"); | |
867 | break; | |
308c7d30 IJ |
868 | case pkgCache::Dep::DpkgBreaks: |
869 | printf("label: \"breaks\" color: lightgreen }\n"); | |
870 | break; | |
fff4b7f3 AL |
871 | case pkgCache::Dep::Obsoletes: |
872 | printf("label: \"obsoletes\" color: lightgreen }\n"); | |
873 | break; | |
874 | ||
875 | case pkgCache::Dep::PreDepends: | |
876 | printf("label: \"predepends\" color: blue }\n"); | |
877 | break; | |
878 | ||
879 | default: | |
880 | printf("}\n"); | |
881 | break; | |
882 | } | |
883 | } | |
884 | } | |
885 | } | |
886 | } | |
887 | ||
888 | /* Draw the box colours after the fact since we can not tell what colour | |
889 | they should be until everything is finished drawing */ | |
f7f0d6c7 | 890 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
fff4b7f3 AL |
891 | { |
892 | if (Show[Pkg->ID] < DoneNR) | |
893 | continue; | |
894 | ||
895 | if (Show[Pkg->ID] == DoneNR) | |
75ce2062 | 896 | printf("node: { title: \"%s\" label: \"%s\" color: orange shape: %s }\n", Pkg.FullName(true).c_str(), Pkg.FullName(true).c_str(), |
fff4b7f3 AL |
897 | Shapes[ShapeMap[Pkg->ID]]); |
898 | else | |
75ce2062 | 899 | printf("node: { title: \"%s\" label: \"%s\" shape: %s }\n", Pkg.FullName(true).c_str(), Pkg.FullName(true).c_str(), |
fff4b7f3 AL |
900 | Shapes[ShapeMap[Pkg->ID]]); |
901 | ||
902 | } | |
03496041 DK |
903 | |
904 | delete[] Show; | |
905 | delete[] Flags; | |
906 | delete[] ShapeMap; | |
907 | ||
fff4b7f3 AL |
908 | printf("}\n"); |
909 | return true; | |
910 | } | |
911 | /*}}}*/ | |
3e94da1b AL |
912 | // Dotty - Generate a graph for Dotty /*{{{*/ |
913 | // --------------------------------------------------------------------- | |
914 | /* Dotty is the graphvis program for generating graphs. It is a fairly | |
915 | simple queuing algorithm that just writes dependencies and nodes. | |
916 | http://www.research.att.com/sw/tools/graphviz/ */ | |
c3ccac92 | 917 | static bool Dotty(CommandLine &CmdL) |
3e94da1b | 918 | { |
d9eb210e DK |
919 | pkgCacheFile CacheFile; |
920 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
921 | if (unlikely(Cache == NULL)) | |
922 | return false; | |
923 | ||
3e94da1b AL |
924 | bool GivenOnly = _config->FindB("APT::Cache::GivenOnly",false); |
925 | ||
926 | /* Normal packages are boxes | |
927 | Pure Provides are triangles | |
928 | Mixed are diamonds | |
929 | Hexagons are missing packages*/ | |
930 | const char *Shapes[] = {"hexagon","triangle","box","diamond"}; | |
931 | ||
932 | /* Initialize the list of packages to show. | |
933 | 1 = To Show | |
934 | 2 = To Show no recurse | |
935 | 3 = Emitted no recurse | |
936 | 4 = Emitted | |
937 | 0 = None */ | |
938 | enum States {None=0, ToShow, ToShowNR, DoneNR, Done}; | |
939 | enum TheFlags {ForceNR=(1<<0)}; | |
d9eb210e DK |
940 | unsigned char *Show = new unsigned char[Cache->Head().PackageCount]; |
941 | unsigned char *Flags = new unsigned char[Cache->Head().PackageCount]; | |
942 | unsigned char *ShapeMap = new unsigned char[Cache->Head().PackageCount]; | |
3e94da1b AL |
943 | |
944 | // Show everything if no arguments given | |
945 | if (CmdL.FileList[1] == 0) | |
d9eb210e | 946 | for (unsigned long I = 0; I != Cache->Head().PackageCount; I++) |
3e94da1b AL |
947 | Show[I] = ToShow; |
948 | else | |
d9eb210e | 949 | for (unsigned long I = 0; I != Cache->Head().PackageCount; I++) |
3e94da1b | 950 | Show[I] = None; |
d9eb210e | 951 | memset(Flags,0,sizeof(*Flags)*Cache->Head().PackageCount); |
3e94da1b AL |
952 | |
953 | // Map the shapes | |
f7f0d6c7 | 954 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
3e94da1b AL |
955 | { |
956 | if (Pkg->VersionList == 0) | |
957 | { | |
958 | // Missing | |
959 | if (Pkg->ProvidesList == 0) | |
960 | ShapeMap[Pkg->ID] = 0; | |
961 | else | |
962 | ShapeMap[Pkg->ID] = 1; | |
963 | } | |
964 | else | |
965 | { | |
966 | // Normal | |
967 | if (Pkg->ProvidesList == 0) | |
968 | ShapeMap[Pkg->ID] = 2; | |
969 | else | |
970 | ShapeMap[Pkg->ID] = 3; | |
971 | } | |
972 | } | |
3c977245 | 973 | |
3e94da1b | 974 | // Load the list of packages from the command line into the show list |
cd7bbc47 | 975 | APT::CacheSetHelper helper(true, GlobalError::NOTICE); |
3c977245 DK |
976 | std::list<APT::PackageSet::Modifier> mods; |
977 | mods.push_back(APT::PackageSet::Modifier(0, ",", APT::PackageSet::Modifier::POSTFIX)); | |
978 | mods.push_back(APT::PackageSet::Modifier(1, "^", APT::PackageSet::Modifier::POSTFIX)); | |
979 | std::map<unsigned short, APT::PackageSet> pkgsets = | |
cd7bbc47 | 980 | APT::PackageSet::GroupedFromCommandLine(CacheFile, CmdL.FileList + 1, mods, 0, helper); |
3c977245 DK |
981 | |
982 | for (APT::PackageSet::const_iterator Pkg = pkgsets[0].begin(); | |
983 | Pkg != pkgsets[0].end(); ++Pkg) | |
984 | Show[Pkg->ID] = ToShow; | |
985 | for (APT::PackageSet::const_iterator Pkg = pkgsets[1].begin(); | |
986 | Pkg != pkgsets[1].end(); ++Pkg) | |
3e94da1b | 987 | { |
3e94da1b | 988 | Show[Pkg->ID] = ToShow; |
3c977245 | 989 | Flags[Pkg->ID] |= ForceNR; |
3e94da1b | 990 | } |
3c977245 | 991 | |
3e94da1b AL |
992 | // Little header |
993 | printf("digraph packages {\n"); | |
994 | printf("concentrate=true;\n"); | |
995 | printf("size=\"30,40\";\n"); | |
996 | ||
997 | bool Act = true; | |
998 | while (Act == true) | |
999 | { | |
1000 | Act = false; | |
f7f0d6c7 | 1001 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
3e94da1b AL |
1002 | { |
1003 | // See we need to show this package | |
1004 | if (Show[Pkg->ID] == None || Show[Pkg->ID] >= DoneNR) | |
1005 | continue; | |
1006 | ||
1007 | // Colour as done | |
1008 | if (Show[Pkg->ID] == ToShowNR || (Flags[Pkg->ID] & ForceNR) == ForceNR) | |
1009 | { | |
1010 | // Pure Provides and missing packages have no deps! | |
1011 | if (ShapeMap[Pkg->ID] == 0 || ShapeMap[Pkg->ID] == 1) | |
1012 | Show[Pkg->ID] = Done; | |
1013 | else | |
1014 | Show[Pkg->ID] = DoneNR; | |
1015 | } | |
1016 | else | |
1017 | Show[Pkg->ID] = Done; | |
1018 | Act = true; | |
1019 | ||
1020 | // No deps to map out | |
1021 | if (Pkg->VersionList == 0 || Show[Pkg->ID] == DoneNR) | |
1022 | continue; | |
1023 | ||
1024 | pkgCache::VerIterator Ver = Pkg.VersionList(); | |
f7f0d6c7 | 1025 | for (pkgCache::DepIterator D = Ver.DependsList(); D.end() == false; ++D) |
3e94da1b AL |
1026 | { |
1027 | // See if anything can meet this dep | |
1028 | // Walk along the actual package providing versions | |
1029 | bool Hit = false; | |
1030 | pkgCache::PkgIterator DPkg = D.TargetPkg(); | |
1031 | for (pkgCache::VerIterator I = DPkg.VersionList(); | |
f7f0d6c7 | 1032 | I.end() == false && Hit == false; ++I) |
3e94da1b | 1033 | { |
d9eb210e | 1034 | if (Cache->VS->CheckDep(I.VerStr(),D->CompareOp,D.TargetVer()) == true) |
3e94da1b AL |
1035 | Hit = true; |
1036 | } | |
1037 | ||
1038 | // Follow all provides | |
1039 | for (pkgCache::PrvIterator I = DPkg.ProvidesList(); | |
f7f0d6c7 | 1040 | I.end() == false && Hit == false; ++I) |
3e94da1b | 1041 | { |
d9eb210e | 1042 | if (Cache->VS->CheckDep(I.ProvideVersion(),D->CompareOp,D.TargetVer()) == false) |
3e94da1b AL |
1043 | Hit = true; |
1044 | } | |
1045 | ||
1046 | // Only graph critical deps | |
1047 | if (D.IsCritical() == true) | |
1048 | { | |
75ce2062 | 1049 | printf("\"%s\" -> \"%s\"",Pkg.FullName(true).c_str(),D.TargetPkg().FullName(true).c_str()); |
3e94da1b AL |
1050 | |
1051 | // Colour the node for recursion | |
1052 | if (Show[D.TargetPkg()->ID] <= DoneNR) | |
1053 | { | |
1054 | /* If a conflicts does not meet anything in the database | |
1055 | then show the relation but do not recurse */ | |
359e46db | 1056 | if (Hit == false && D.IsNegative() == true) |
3e94da1b AL |
1057 | { |
1058 | if (Show[D.TargetPkg()->ID] == None && | |
1059 | Show[D.TargetPkg()->ID] != ToShow) | |
1060 | Show[D.TargetPkg()->ID] = ToShowNR; | |
1061 | } | |
1062 | else | |
1063 | { | |
1064 | if (GivenOnly == true && Show[D.TargetPkg()->ID] != ToShow) | |
1065 | Show[D.TargetPkg()->ID] = ToShowNR; | |
1066 | else | |
1067 | Show[D.TargetPkg()->ID] = ToShow; | |
1068 | } | |
1069 | } | |
1070 | ||
1071 | // Edge colour | |
1072 | switch(D->Type) | |
1073 | { | |
1074 | case pkgCache::Dep::Conflicts: | |
b2e465d6 | 1075 | case pkgCache::Dep::Obsoletes: |
359e46db | 1076 | case pkgCache::Dep::DpkgBreaks: |
3e94da1b AL |
1077 | printf("[color=springgreen];\n"); |
1078 | break; | |
1079 | ||
1080 | case pkgCache::Dep::PreDepends: | |
1081 | printf("[color=blue];\n"); | |
1082 | break; | |
1083 | ||
1084 | default: | |
1085 | printf(";\n"); | |
1086 | break; | |
1087 | } | |
1088 | } | |
1089 | } | |
1090 | } | |
1091 | } | |
1092 | ||
1093 | /* Draw the box colours after the fact since we can not tell what colour | |
1094 | they should be until everything is finished drawing */ | |
f7f0d6c7 | 1095 | for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); Pkg.end() == false; ++Pkg) |
3e94da1b AL |
1096 | { |
1097 | if (Show[Pkg->ID] < DoneNR) | |
1098 | continue; | |
1099 | ||
1100 | // Orange box for early recursion stoppage | |
1101 | if (Show[Pkg->ID] == DoneNR) | |
75ce2062 | 1102 | printf("\"%s\" [color=orange,shape=%s];\n",Pkg.FullName(true).c_str(), |
3e94da1b AL |
1103 | Shapes[ShapeMap[Pkg->ID]]); |
1104 | else | |
75ce2062 | 1105 | printf("\"%s\" [shape=%s];\n",Pkg.FullName(true).c_str(), |
3e94da1b AL |
1106 | Shapes[ShapeMap[Pkg->ID]]); |
1107 | } | |
1108 | ||
1109 | printf("}\n"); | |
6070a346 DK |
1110 | delete[] Show; |
1111 | delete[] Flags; | |
1112 | delete[] ShapeMap; | |
ad00ae81 | 1113 | return true; |
7e2e2d5d AL |
1114 | } |
1115 | /*}}}*/ | |
1116 | // DisplayRecord - Displays the complete record for the package /*{{{*/ | |
1117 | // --------------------------------------------------------------------- | |
1118 | /* This displays the package record from the proper package index file. | |
1119 | It is not used by DumpAvail for performance reasons. */ | |
61843f53 | 1120 | |
a02db58f | 1121 | static APT_PURE unsigned char const* skipDescriptionFields(unsigned char const * DescP) |
61843f53 | 1122 | { |
922f0798 DK |
1123 | char const * const TagName = "\nDescription"; |
1124 | size_t const TagLen = strlen(TagName); | |
61843f53 DK |
1125 | while ((DescP = (unsigned char*)strchr((char*)DescP, '\n')) != NULL) |
1126 | { | |
1127 | if (DescP[1] == ' ') | |
1128 | DescP += 2; | |
922f0798 DK |
1129 | else if (strncmp((char*)DescP, TagName, TagLen) == 0) |
1130 | DescP += TagLen; | |
61843f53 DK |
1131 | else |
1132 | break; | |
1133 | } | |
1134 | if (DescP != NULL) | |
1135 | ++DescP; | |
1136 | return DescP; | |
1137 | } | |
c3ccac92 | 1138 | static bool DisplayRecord(pkgCacheFile &CacheFile, pkgCache::VerIterator V) |
7e2e2d5d | 1139 | { |
d9eb210e DK |
1140 | pkgCache *Cache = CacheFile.GetPkgCache(); |
1141 | if (unlikely(Cache == NULL)) | |
1142 | return false; | |
1143 | ||
7e2e2d5d AL |
1144 | // Find an appropriate file |
1145 | pkgCache::VerFileIterator Vf = V.FileList(); | |
f7f0d6c7 | 1146 | for (; Vf.end() == false; ++Vf) |
7e2e2d5d AL |
1147 | if ((Vf.File()->Flags & pkgCache::Flag::NotSource) == 0) |
1148 | break; | |
1149 | if (Vf.end() == true) | |
1150 | Vf = V.FileList(); | |
1151 | ||
1152 | // Check and load the package list file | |
1153 | pkgCache::PkgFileIterator I = Vf.File(); | |
1154 | if (I.IsOk() == false) | |
b2e465d6 | 1155 | return _error->Error(_("Package file %s is out of sync."),I.FileName()); |
07c279d9 DK |
1156 | |
1157 | FileFd PkgF; | |
468720c5 | 1158 | if (PkgF.Open(I.FileName(), FileFd::ReadOnly, FileFd::Extension) == false) |
7e2e2d5d | 1159 | return false; |
07c279d9 | 1160 | |
922f0798 DK |
1161 | // Read the record (and ensure that it ends with a newline and NUL) |
1162 | unsigned char *Buffer = new unsigned char[Cache->HeaderP->MaxVerFileSize+2]; | |
1163 | Buffer[Vf->Size] = '\n'; | |
1164 | Buffer[Vf->Size+1] = '\0'; | |
1165 | if (PkgF.Seek(Vf->Offset) == false || | |
1166 | PkgF.Read(Buffer,Vf->Size) == false) | |
7e2e2d5d AL |
1167 | { |
1168 | delete [] Buffer; | |
1169 | return false; | |
1170 | } | |
a52f938b | 1171 | |
e5e2d176 | 1172 | // Get a pointer to start of Description field |
99359751 DK |
1173 | const unsigned char *DescP = (unsigned char*)strstr((char*)Buffer, "\nDescription"); |
1174 | if (DescP != NULL) | |
1175 | ++DescP; | |
1176 | else | |
922f0798 | 1177 | DescP = Buffer + Vf->Size; |
e5e2d176 MV |
1178 | |
1179 | // Write all but Description | |
d832304e DK |
1180 | size_t const length = DescP - Buffer; |
1181 | if (length != 0 && FileFd::Write(STDOUT_FILENO, Buffer, length) == false) | |
a52f938b OS |
1182 | { |
1183 | delete [] Buffer; | |
1184 | return false; | |
1185 | } | |
1186 | ||
a52f938b | 1187 | // Show the right description |
d9eb210e | 1188 | pkgRecords Recs(*Cache); |
012b102a | 1189 | pkgCache::DescIterator Desc = V.TranslatedDescription(); |
99359751 | 1190 | if (Desc.end() == false) |
e011829d | 1191 | { |
99359751 DK |
1192 | pkgRecords::Parser &P = Recs.Lookup(Desc.FileList()); |
1193 | cout << "Description" << ( (strcmp(Desc.LanguageCode(),"") != 0) ? "-" : "" ) << Desc.LanguageCode() << ": " << P.LongDesc(); | |
1194 | cout << std::endl << "Description-md5: " << Desc.md5() << std::endl; | |
1195 | ||
1196 | // Find the first field after the description (if there is any) | |
61843f53 | 1197 | DescP = skipDescriptionFields(DescP); |
99359751 | 1198 | } |
61843f53 | 1199 | // else we have no translation, so we found a lonely Description-md5 -> don't skip it |
e011829d | 1200 | |
61843f53 DK |
1201 | // write the rest of the buffer, but skip mixed in Descriptions* fields |
1202 | while (DescP != NULL) | |
99359751 | 1203 | { |
61843f53 DK |
1204 | const unsigned char * const Start = DescP; |
1205 | const unsigned char *End = (unsigned char*)strstr((char*)DescP, "\nDescription"); | |
1206 | if (End == NULL) | |
1207 | { | |
922f0798 | 1208 | End = &Buffer[Vf->Size]; |
61843f53 DK |
1209 | DescP = NULL; |
1210 | } | |
1211 | else | |
1212 | { | |
1213 | ++End; // get the newline into the output | |
1214 | DescP = skipDescriptionFields(End + strlen("Description")); | |
1215 | } | |
1216 | size_t const length = End - Start; | |
d832304e | 1217 | if (length != 0 && FileFd::Write(STDOUT_FILENO, Start, length) == false) |
99359751 DK |
1218 | { |
1219 | delete [] Buffer; | |
1220 | return false; | |
e011829d MV |
1221 | } |
1222 | } | |
99359751 | 1223 | |
61843f53 | 1224 | // write a final newline after the last field |
e011829d | 1225 | cout<<endl; |
7e2e2d5d | 1226 | |
d832304e | 1227 | delete [] Buffer; |
9dbb421f AL |
1228 | return true; |
1229 | } | |
1230 | /*}}}*/ | |
a52f938b | 1231 | struct ExDescFile |
b2e465d6 | 1232 | { |
a52f938b | 1233 | pkgCache::DescFile *Df; |
8ba17539 | 1234 | map_ptrloc ID; |
b2e465d6 AL |
1235 | }; |
1236 | ||
92fcbfc1 DK |
1237 | // Search - Perform a search /*{{{*/ |
1238 | // --------------------------------------------------------------------- | |
1239 | /* This searches the package names and package descriptions for a pattern */ | |
c3ccac92 | 1240 | static bool Search(CommandLine &CmdL) |
9dbb421f | 1241 | { |
d5cc17d6 DK |
1242 | bool const ShowFull = _config->FindB("APT::Cache::ShowFull",false); |
1243 | bool const NamesOnly = _config->FindB("APT::Cache::NamesOnly",false); | |
1244 | unsigned int const NumPatterns = CmdL.FileSize() -1; | |
b2e465d6 | 1245 | |
d9eb210e DK |
1246 | pkgCacheFile CacheFile; |
1247 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
1248 | pkgDepCache::Policy *Plcy = CacheFile.GetPolicy(); | |
1249 | if (unlikely(Cache == NULL || Plcy == NULL)) | |
1250 | return false; | |
1251 | ||
9dbb421f | 1252 | // Make sure there is at least one argument |
b2e465d6 | 1253 | if (NumPatterns < 1) |
d5cc17d6 | 1254 | return _error->Error(_("You must give at least one search pattern")); |
9dbb421f AL |
1255 | |
1256 | // Compile the regex pattern | |
b2e465d6 AL |
1257 | regex_t *Patterns = new regex_t[NumPatterns]; |
1258 | memset(Patterns,0,sizeof(*Patterns)*NumPatterns); | |
1259 | for (unsigned I = 0; I != NumPatterns; I++) | |
1260 | { | |
1261 | if (regcomp(&Patterns[I],CmdL.FileList[I+1],REG_EXTENDED | REG_ICASE | | |
1262 | REG_NOSUB) != 0) | |
1263 | { | |
1264 | for (; I != 0; I--) | |
1265 | regfree(&Patterns[I]); | |
1266 | return _error->Error("Regex compilation error"); | |
1267 | } | |
1268 | } | |
9dbb421f | 1269 | |
9dbb421f | 1270 | if (_error->PendingError() == true) |
b2e465d6 AL |
1271 | { |
1272 | for (unsigned I = 0; I != NumPatterns; I++) | |
1273 | regfree(&Patterns[I]); | |
9dbb421f | 1274 | return false; |
b2e465d6 | 1275 | } |
9dbb421f | 1276 | |
8ba17539 DK |
1277 | size_t const descCount = Cache->HeaderP->GroupCount + 1; |
1278 | ExDescFile *DFList = new ExDescFile[descCount]; | |
1279 | memset(DFList,0,sizeof(*DFList) * descCount); | |
1280 | ||
1281 | bool PatternMatch[descCount * NumPatterns]; | |
1282 | memset(PatternMatch,false,sizeof(PatternMatch)); | |
b2e465d6 AL |
1283 | |
1284 | // Map versions that we want to write out onto the VerList array. | |
d9eb210e | 1285 | for (pkgCache::GrpIterator G = Cache->GrpBegin(); G.end() == false; ++G) |
9dbb421f | 1286 | { |
8ba17539 DK |
1287 | size_t const PatternOffset = G->ID * NumPatterns; |
1288 | size_t unmatched = 0, matched = 0; | |
1289 | for (unsigned I = 0; I < NumPatterns; ++I) | |
b2e465d6 | 1290 | { |
8ba17539 DK |
1291 | if (PatternMatch[PatternOffset + I] == true) |
1292 | ++matched; | |
1293 | else if (regexec(&Patterns[I],G.Name(),0,0,0) == 0) | |
1294 | PatternMatch[PatternOffset + I] = true; | |
1295 | else | |
1296 | ++unmatched; | |
b2e465d6 | 1297 | } |
8ba17539 DK |
1298 | |
1299 | // already dealt with this package? | |
1300 | if (matched == NumPatterns) | |
b2e465d6 | 1301 | continue; |
8ba17539 DK |
1302 | |
1303 | // Doing names only, drop any that don't match.. | |
1304 | if (NamesOnly == true && unmatched == NumPatterns) | |
1305 | continue; | |
1306 | ||
d5cc17d6 DK |
1307 | // Find the proper version to use |
1308 | pkgCache::PkgIterator P = G.FindPreferredPkg(); | |
1309 | if (P.end() == true) | |
1310 | continue; | |
d9eb210e | 1311 | pkgCache::VerIterator V = Plcy->GetCandidateVer(P); |
c29652b0 | 1312 | if (V.end() == false) |
8ba17539 | 1313 | { |
922f0798 DK |
1314 | pkgCache::DescIterator const D = V.TranslatedDescription(); |
1315 | //FIXME: packages without a description can't be found | |
1316 | if (D.end() == true) | |
1317 | continue; | |
1318 | DFList[G->ID].Df = D.FileList(); | |
8ba17539 DK |
1319 | DFList[G->ID].ID = G->ID; |
1320 | } | |
d5cc17d6 | 1321 | |
8ba17539 | 1322 | if (unmatched == NumPatterns) |
7e2e2d5d | 1323 | continue; |
c29652b0 | 1324 | |
d5cc17d6 | 1325 | // Include all the packages that provide matching names too |
f7f0d6c7 | 1326 | for (pkgCache::PrvIterator Prv = P.ProvidesList() ; Prv.end() == false; ++Prv) |
c29652b0 | 1327 | { |
d9eb210e | 1328 | pkgCache::VerIterator V = Plcy->GetCandidateVer(Prv.OwnerPkg()); |
d5cc17d6 DK |
1329 | if (V.end() == true) |
1330 | continue; | |
1331 | ||
1332 | unsigned long id = Prv.OwnerPkg().Group()->ID; | |
922f0798 DK |
1333 | pkgCache::DescIterator const D = V.TranslatedDescription(); |
1334 | //FIXME: packages without a description can't be found | |
1335 | if (D.end() == true) | |
1336 | continue; | |
1337 | DFList[id].Df = D.FileList(); | |
8ba17539 DK |
1338 | DFList[id].ID = id; |
1339 | ||
1340 | size_t const PrvPatternOffset = id * NumPatterns; | |
1341 | for (unsigned I = 0; I < NumPatterns; ++I) | |
1342 | PatternMatch[PrvPatternOffset + I] = PatternMatch[PatternOffset + I]; | |
c29652b0 | 1343 | } |
b2e465d6 | 1344 | } |
8ba17539 | 1345 | |
d9eb210e | 1346 | LocalitySort(&DFList->Df,Cache->HeaderP->GroupCount,sizeof(*DFList)); |
7e2e2d5d | 1347 | |
d5cc17d6 | 1348 | // Create the text record parser |
d9eb210e | 1349 | pkgRecords Recs(*Cache); |
b2e465d6 | 1350 | // Iterate over all the version records and check them |
8ba17539 | 1351 | for (ExDescFile *J = DFList; J->Df != 0; ++J) |
b2e465d6 | 1352 | { |
d9eb210e | 1353 | pkgRecords::Parser &P = Recs.Lookup(pkgCache::DescFileIterator(*Cache,J->Df)); |
8ba17539 | 1354 | size_t const PatternOffset = J->ID * NumPatterns; |
0f2fa322 | 1355 | |
8ba17539 | 1356 | if (NamesOnly == false) |
0f2fa322 | 1357 | { |
d5cc17d6 | 1358 | string const LongDesc = P.LongDesc(); |
8ba17539 | 1359 | for (unsigned I = 0; I < NumPatterns; ++I) |
0f2fa322 | 1360 | { |
8ba17539 | 1361 | if (PatternMatch[PatternOffset + I] == true) |
d5cc17d6 | 1362 | continue; |
8ba17539 DK |
1363 | else if (regexec(&Patterns[I],LongDesc.c_str(),0,0,0) == 0) |
1364 | PatternMatch[PatternOffset + I] = true; | |
0f2fa322 AL |
1365 | } |
1366 | } | |
8ba17539 DK |
1367 | |
1368 | bool matchedAll = true; | |
1369 | for (unsigned I = 0; I < NumPatterns; ++I) | |
1370 | if (PatternMatch[PatternOffset + I] == false) | |
1371 | { | |
1372 | matchedAll = false; | |
1373 | break; | |
1374 | } | |
1375 | ||
1376 | if (matchedAll == true) | |
9dbb421f | 1377 | { |
7e2e2d5d | 1378 | if (ShowFull == true) |
b2e465d6 AL |
1379 | { |
1380 | const char *Start; | |
1381 | const char *End; | |
1382 | P.GetRec(Start,End); | |
1383 | fwrite(Start,End-Start,1,stdout); | |
1384 | putc('\n',stdout); | |
1385 | } | |
7e2e2d5d | 1386 | else |
b2e465d6 AL |
1387 | printf("%s - %s\n",P.Name().c_str(),P.ShortDesc().c_str()); |
1388 | } | |
9dbb421f AL |
1389 | } |
1390 | ||
a52f938b | 1391 | delete [] DFList; |
b2e465d6 AL |
1392 | for (unsigned I = 0; I != NumPatterns; I++) |
1393 | regfree(&Patterns[I]); | |
1394 | if (ferror(stdout)) | |
1395 | return _error->Error("Write to stdout failed"); | |
1164783d AL |
1396 | return true; |
1397 | } | |
182a6a55 DK |
1398 | /*}}}*/ |
1399 | /* ShowAuto - show automatically installed packages (sorted) {{{*/ | |
65512241 | 1400 | static bool ShowAuto(CommandLine &) |
6007c1d4 | 1401 | { |
d9eb210e DK |
1402 | pkgCacheFile CacheFile; |
1403 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
1404 | pkgDepCache *DepCache = CacheFile.GetDepCache(); | |
1405 | if (unlikely(Cache == NULL || DepCache == NULL)) | |
1406 | return false; | |
6007c1d4 JAK |
1407 | |
1408 | std::vector<string> packages; | |
d9eb210e | 1409 | packages.reserve(Cache->HeaderP->PackageCount / 3); |
6007c1d4 | 1410 | |
f7f0d6c7 | 1411 | for (pkgCache::PkgIterator P = Cache->PkgBegin(); P.end() == false; ++P) |
d9eb210e | 1412 | if ((*DepCache)[P].Flags & pkgCache::Flag::Auto) |
6007c1d4 JAK |
1413 | packages.push_back(P.Name()); |
1414 | ||
1415 | std::sort(packages.begin(), packages.end()); | |
1416 | ||
f7f0d6c7 | 1417 | for (vector<string>::iterator I = packages.begin(); I != packages.end(); ++I) |
6007c1d4 JAK |
1418 | cout << *I << "\n"; |
1419 | ||
182a6a55 | 1420 | _error->Notice(_("This command is deprecated. Please use 'apt-mark showauto' instead.")); |
6007c1d4 JAK |
1421 | return true; |
1422 | } | |
1164783d | 1423 | /*}}}*/ |
7e2e2d5d AL |
1424 | // ShowPackage - Dump the package record to the screen /*{{{*/ |
1425 | // --------------------------------------------------------------------- | |
1426 | /* */ | |
c3ccac92 | 1427 | static bool ShowPackage(CommandLine &CmdL) |
d9eb210e DK |
1428 | { |
1429 | pkgCacheFile CacheFile; | |
65f81081 | 1430 | CacheSetHelperVirtuals helper(true, GlobalError::NOTICE); |
c4cca791 DK |
1431 | APT::VersionList::Version const select = _config->FindB("APT::Cache::AllVersions", true) ? |
1432 | APT::VersionList::ALL : APT::VersionList::CANDIDATE; | |
1433 | APT::VersionList const verset = APT::VersionList::FromCommandLine(CacheFile, CmdL.FileList + 1, select, helper); | |
1434 | for (APT::VersionList::const_iterator Ver = verset.begin(); Ver != verset.end(); ++Ver) | |
d9eb210e DK |
1435 | if (DisplayRecord(CacheFile, Ver) == false) |
1436 | return false; | |
1437 | ||
65f81081 DK |
1438 | if (verset.empty() == true) |
1439 | { | |
1440 | if (helper.virtualPkgs.empty() == true) | |
1441 | return _error->Error(_("No packages found")); | |
1442 | else | |
1443 | _error->Notice(_("No packages found")); | |
1444 | } | |
1445 | return true; | |
7c1133fe AL |
1446 | } |
1447 | /*}}}*/ | |
1448 | // ShowPkgNames - Show package names /*{{{*/ | |
1449 | // --------------------------------------------------------------------- | |
1450 | /* This does a prefix match on the first argument */ | |
c3ccac92 | 1451 | static bool ShowPkgNames(CommandLine &CmdL) |
7c1133fe | 1452 | { |
d9eb210e DK |
1453 | pkgCacheFile CacheFile; |
1454 | if (unlikely(CacheFile.BuildCaches(NULL, false) == false)) | |
1455 | return false; | |
1456 | pkgCache::GrpIterator I = CacheFile.GetPkgCache()->GrpBegin(); | |
6293e04f DK |
1457 | bool const All = _config->FindB("APT::Cache::AllNames","false"); |
1458 | ||
7c1133fe AL |
1459 | if (CmdL.FileList[1] != 0) |
1460 | { | |
f7f0d6c7 | 1461 | for (;I.end() != true; ++I) |
7c1133fe | 1462 | { |
6293e04f DK |
1463 | if (All == false && I->FirstPackage == 0) |
1464 | continue; | |
1465 | if (I.FindPkg("any")->VersionList == 0) | |
7c1133fe | 1466 | continue; |
7c1133fe AL |
1467 | if (strncmp(I.Name(),CmdL.FileList[1],strlen(CmdL.FileList[1])) == 0) |
1468 | cout << I.Name() << endl; | |
1469 | } | |
1470 | ||
1471 | return true; | |
1472 | } | |
1473 | ||
1474 | // Show all pkgs | |
f7f0d6c7 | 1475 | for (;I.end() != true; ++I) |
7c1133fe | 1476 | { |
6293e04f DK |
1477 | if (All == false && I->FirstPackage == 0) |
1478 | continue; | |
1479 | if (I.FindPkg("any")->VersionList == 0) | |
7c1133fe AL |
1480 | continue; |
1481 | cout << I.Name() << endl; | |
1482 | } | |
1483 | ||
7e2e2d5d AL |
1484 | return true; |
1485 | } | |
1486 | /*}}}*/ | |
f8f410f5 AL |
1487 | // ShowSrcPackage - Show source package records /*{{{*/ |
1488 | // --------------------------------------------------------------------- | |
1489 | /* */ | |
c3ccac92 | 1490 | static bool ShowSrcPackage(CommandLine &CmdL) |
f8f410f5 | 1491 | { |
d9eb210e DK |
1492 | pkgCacheFile CacheFile; |
1493 | pkgSourceList *List = CacheFile.GetSourceList(); | |
1494 | if (unlikely(List == NULL)) | |
1495 | return false; | |
1496 | ||
f8f410f5 | 1497 | // Create the text record parsers |
d9eb210e | 1498 | pkgSrcRecords SrcRecs(*List); |
f8f410f5 AL |
1499 | if (_error->PendingError() == true) |
1500 | return false; | |
1501 | ||
0458a811 | 1502 | unsigned found = 0; |
f8f410f5 AL |
1503 | for (const char **I = CmdL.FileList + 1; *I != 0; I++) |
1504 | { | |
aaee8293 AL |
1505 | SrcRecs.Restart(); |
1506 | ||
f8f410f5 | 1507 | pkgSrcRecords::Parser *Parse; |
0458a811 JAK |
1508 | unsigned found_this = 0; |
1509 | while ((Parse = SrcRecs.Find(*I,false)) != 0) { | |
1510 | cout << Parse->AsStr() << endl;; | |
1511 | found++; | |
1512 | found_this++; | |
1513 | } | |
1514 | if (found_this == 0) { | |
1515 | _error->Warning(_("Unable to locate package %s"),*I); | |
1516 | continue; | |
1517 | } | |
65f81081 DK |
1518 | } |
1519 | if (found == 0) | |
1520 | _error->Notice(_("No packages found")); | |
1521 | return true; | |
af87ab54 AL |
1522 | } |
1523 | /*}}}*/ | |
1524 | // Policy - Show the results of the preferences file /*{{{*/ | |
1525 | // --------------------------------------------------------------------- | |
1526 | /* */ | |
c3ccac92 | 1527 | static bool Policy(CommandLine &CmdL) |
af87ab54 | 1528 | { |
d9eb210e DK |
1529 | pkgCacheFile CacheFile; |
1530 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
1531 | pkgPolicy *Plcy = CacheFile.GetPolicy(); | |
1532 | pkgSourceList *SrcList = CacheFile.GetSourceList(); | |
1533 | if (unlikely(Cache == NULL || Plcy == NULL || SrcList == NULL)) | |
af87ab54 | 1534 | return false; |
d9eb210e | 1535 | |
0588779f DK |
1536 | /* Should the MultiArchKiller be run to see which pseudo packages for an |
1537 | arch all package are currently installed? Activating it gives a speed | |
1538 | penality for no real gain beside enhanced debugging, so in general no. */ | |
1539 | if (_config->FindB("APT::Cache::Policy::DepCache", false) == true) | |
1540 | CacheFile.GetDepCache(); | |
1541 | ||
af87ab54 AL |
1542 | // Print out all of the package files |
1543 | if (CmdL.FileList[1] == 0) | |
1544 | { | |
db0db9fe | 1545 | cout << _("Package files:") << endl; |
f7f0d6c7 | 1546 | for (pkgCache::PkgFileIterator F = Cache->FileBegin(); F.end() == false; ++F) |
af87ab54 AL |
1547 | { |
1548 | // Locate the associated index files so we can derive a description | |
1549 | pkgIndexFile *Indx; | |
1550 | if (SrcList->FindIndex(F,Indx) == false && | |
1551 | _system->FindIndex(F,Indx) == false) | |
1552 | return _error->Error(_("Cache is out of sync, can't x-ref a package file")); | |
78acd650 MV |
1553 | |
1554 | printf("%4i %s\n", | |
d9eb210e | 1555 | Plcy->GetPriority(F),Indx->Describe(true).c_str()); |
af87ab54 AL |
1556 | |
1557 | // Print the reference information for the package | |
1558 | string Str = F.RelStr(); | |
1559 | if (Str.empty() == false) | |
1560 | printf(" release %s\n",F.RelStr().c_str()); | |
1561 | if (F.Site() != 0 && F.Site()[0] != 0) | |
1562 | printf(" origin %s\n",F.Site()); | |
1563 | } | |
1564 | ||
1565 | // Show any packages have explicit pins | |
db0db9fe | 1566 | cout << _("Pinned packages:") << endl; |
d9eb210e | 1567 | pkgCache::PkgIterator I = Cache->PkgBegin(); |
f7f0d6c7 | 1568 | for (;I.end() != true; ++I) |
af87ab54 | 1569 | { |
d9eb210e | 1570 | if (Plcy->GetPriority(I) == 0) |
af87ab54 AL |
1571 | continue; |
1572 | ||
1573 | // Print the package name and the version we are forcing to | |
75ce2062 | 1574 | cout << " " << I.FullName(true) << " -> "; |
af87ab54 | 1575 | |
d9eb210e | 1576 | pkgCache::VerIterator V = Plcy->GetMatch(I); |
af87ab54 AL |
1577 | if (V.end() == true) |
1578 | cout << _("(not found)") << endl; | |
1579 | else | |
1580 | cout << V.VerStr() << endl; | |
1581 | } | |
1582 | ||
1583 | return true; | |
1584 | } | |
6293e04f | 1585 | |
ca964703 DK |
1586 | char const * const msgInstalled = _(" Installed: "); |
1587 | char const * const msgCandidate = _(" Candidate: "); | |
1588 | short const InstalledLessCandidate = | |
1589 | mbstowcs(NULL, msgInstalled, 0) - mbstowcs(NULL, msgCandidate, 0); | |
1590 | short const deepInstalled = | |
1591 | (InstalledLessCandidate < 0 ? (InstalledLessCandidate*-1) : 0) - 1; | |
1592 | short const deepCandidate = | |
1593 | (InstalledLessCandidate > 0 ? (InstalledLessCandidate) : 0) - 1; | |
6293e04f | 1594 | |
af87ab54 | 1595 | // Print out detailed information for each package |
cd7bbc47 | 1596 | APT::CacheSetHelper helper(true, GlobalError::NOTICE); |
c4cca791 DK |
1597 | APT::PackageList pkgset = APT::PackageList::FromCommandLine(CacheFile, CmdL.FileList + 1, helper); |
1598 | for (APT::PackageList::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg) | |
af87ab54 | 1599 | { |
75ce2062 | 1600 | cout << Pkg.FullName(true) << ":" << endl; |
6293e04f | 1601 | |
af87ab54 | 1602 | // Installed version |
ca964703 | 1603 | cout << msgInstalled << OutputInDepth(deepInstalled, " "); |
af87ab54 AL |
1604 | if (Pkg->CurrentVer == 0) |
1605 | cout << _("(none)") << endl; | |
1606 | else | |
1607 | cout << Pkg.CurrentVer().VerStr() << endl; | |
1608 | ||
1609 | // Candidate Version | |
ca964703 | 1610 | cout << msgCandidate << OutputInDepth(deepCandidate, " "); |
d9eb210e | 1611 | pkgCache::VerIterator V = Plcy->GetCandidateVer(Pkg); |
af87ab54 AL |
1612 | if (V.end() == true) |
1613 | cout << _("(none)") << endl; | |
1614 | else | |
1615 | cout << V.VerStr() << endl; | |
1616 | ||
1617 | // Pinned version | |
d9eb210e | 1618 | if (Plcy->GetPriority(Pkg) != 0) |
af87ab54 | 1619 | { |
db0db9fe | 1620 | cout << _(" Package pin: "); |
d9eb210e | 1621 | V = Plcy->GetMatch(Pkg); |
af87ab54 AL |
1622 | if (V.end() == true) |
1623 | cout << _("(not found)") << endl; | |
1624 | else | |
1625 | cout << V.VerStr() << endl; | |
1626 | } | |
1627 | ||
1628 | // Show the priority tables | |
db0db9fe | 1629 | cout << _(" Version table:") << endl; |
f7f0d6c7 | 1630 | for (V = Pkg.VersionList(); V.end() == false; ++V) |
af87ab54 AL |
1631 | { |
1632 | if (Pkg.CurrentVer() == V) | |
1633 | cout << " *** " << V.VerStr(); | |
1634 | else | |
1635 | cout << " " << V.VerStr(); | |
d9eb210e | 1636 | cout << " " << Plcy->GetPriority(Pkg) << endl; |
f7f0d6c7 | 1637 | for (pkgCache::VerFileIterator VF = V.FileList(); VF.end() == false; ++VF) |
af87ab54 AL |
1638 | { |
1639 | // Locate the associated index files so we can derive a description | |
1640 | pkgIndexFile *Indx; | |
1641 | if (SrcList->FindIndex(VF.File(),Indx) == false && | |
1642 | _system->FindIndex(VF.File(),Indx) == false) | |
1643 | return _error->Error(_("Cache is out of sync, can't x-ref a package file")); | |
d9eb210e | 1644 | printf(" %4i %s\n",Plcy->GetPriority(VF.File()), |
af87ab54 | 1645 | Indx->Describe(true).c_str()); |
6293e04f DK |
1646 | } |
1647 | } | |
af87ab54 AL |
1648 | } |
1649 | ||
f8f410f5 AL |
1650 | return true; |
1651 | } | |
bd3d53ef AL |
1652 | /*}}}*/ |
1653 | // Madison - Look a bit like katie's madison /*{{{*/ | |
1654 | // --------------------------------------------------------------------- | |
1655 | /* */ | |
c3ccac92 | 1656 | static bool Madison(CommandLine &CmdL) |
bd3d53ef | 1657 | { |
d9eb210e DK |
1658 | pkgCacheFile CacheFile; |
1659 | pkgSourceList *SrcList = CacheFile.GetSourceList(); | |
bd3d53ef | 1660 | |
d9eb210e DK |
1661 | if (SrcList == 0) |
1662 | return false; | |
bd3d53ef | 1663 | |
03cd434b MV |
1664 | // Create the src text record parsers and ignore errors about missing |
1665 | // deb-src lines that are generated from pkgSrcRecords::pkgSrcRecords | |
bd3d53ef AL |
1666 | pkgSrcRecords SrcRecs(*SrcList); |
1667 | if (_error->PendingError() == true) | |
03cd434b | 1668 | _error->Discard(); |
bd3d53ef | 1669 | |
cd7bbc47 | 1670 | APT::CacheSetHelper helper(true, GlobalError::NOTICE); |
dc67d95f | 1671 | for (const char **I = CmdL.FileList + 1; *I != 0; I++) |
bd3d53ef | 1672 | { |
dc67d95f | 1673 | _error->PushToStack(); |
c4cca791 DK |
1674 | APT::PackageList pkgset = APT::PackageList::FromString(CacheFile, *I, helper); |
1675 | for (APT::PackageList::const_iterator Pkg = pkgset.begin(); Pkg != pkgset.end(); ++Pkg) | |
bd3d53ef | 1676 | { |
f7f0d6c7 | 1677 | for (pkgCache::VerIterator V = Pkg.VersionList(); V.end() == false; ++V) |
bd3d53ef | 1678 | { |
f7f0d6c7 | 1679 | for (pkgCache::VerFileIterator VF = V.FileList(); VF.end() == false; ++VF) |
bd3d53ef | 1680 | { |
a0e710af AL |
1681 | // This might be nice, but wouldn't uniquely identify the source -mdz |
1682 | // if (VF.File().Archive() != 0) | |
1683 | // { | |
1684 | // cout << setw(10) << Pkg.Name() << " | " << setw(10) << V.VerStr() << " | " | |
1685 | // << VF.File().Archive() << endl; | |
1686 | // } | |
1687 | ||
1688 | // Locate the associated index files so we can derive a description | |
f7f0d6c7 | 1689 | for (pkgSourceList::const_iterator S = SrcList->begin(); S != SrcList->end(); ++S) |
bd3d53ef | 1690 | { |
7db98ffc MZ |
1691 | vector<pkgIndexFile *> *Indexes = (*S)->GetIndexFiles(); |
1692 | for (vector<pkgIndexFile *>::const_iterator IF = Indexes->begin(); | |
f7f0d6c7 | 1693 | IF != Indexes->end(); ++IF) |
7db98ffc MZ |
1694 | { |
1695 | if ((*IF)->FindInCache(*(VF.File().Cache())) == VF.File()) | |
1696 | { | |
75ce2062 | 1697 | cout << setw(10) << Pkg.FullName(true) << " | " << setw(10) << V.VerStr() << " | " |
7db98ffc MZ |
1698 | << (*IF)->Describe(true) << endl; |
1699 | } | |
1700 | } | |
bd3d53ef AL |
1701 | } |
1702 | } | |
1703 | } | |
1704 | } | |
1705 | ||
bd3d53ef AL |
1706 | SrcRecs.Restart(); |
1707 | pkgSrcRecords::Parser *SrcParser; | |
dc67d95f DK |
1708 | bool foundSomething = false; |
1709 | while ((SrcParser = SrcRecs.Find(*I, false)) != 0) | |
bd3d53ef | 1710 | { |
dc67d95f | 1711 | foundSomething = true; |
bd3d53ef AL |
1712 | // Maybe support Release info here too eventually |
1713 | cout << setw(10) << SrcParser->Package() << " | " | |
1714 | << setw(10) << SrcParser->Version() << " | " | |
1715 | << SrcParser->Index().Describe(true) << endl; | |
1716 | } | |
dc67d95f DK |
1717 | if (foundSomething == true) |
1718 | _error->RevertToStack(); | |
1719 | else | |
1720 | _error->MergeWithStack(); | |
bd3d53ef AL |
1721 | } |
1722 | ||
1723 | return true; | |
1724 | } | |
f8f410f5 | 1725 | /*}}}*/ |
880e9be4 AL |
1726 | // GenCaches - Call the main cache generator /*{{{*/ |
1727 | // --------------------------------------------------------------------- | |
1728 | /* */ | |
65512241 | 1729 | static bool GenCaches(CommandLine &) |
880e9be4 | 1730 | { |
0a8e3465 | 1731 | OpTextProgress Progress(*_config); |
d9eb210e DK |
1732 | |
1733 | pkgCacheFile CacheFile; | |
1734 | return CacheFile.BuildCaches(&Progress, true); | |
880e9be4 AL |
1735 | } |
1736 | /*}}}*/ | |
e1b74f61 AL |
1737 | // ShowHelp - Show a help screen /*{{{*/ |
1738 | // --------------------------------------------------------------------- | |
1739 | /* */ | |
65512241 | 1740 | static bool ShowHelp(CommandLine &) |
e1b74f61 | 1741 | { |
9179f697 | 1742 | ioprintf(cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, |
5b28c804 | 1743 | COMMON_ARCH,__DATE__,__TIME__); |
e1b74f61 | 1744 | |
b13af988 AL |
1745 | if (_config->FindB("version") == true) |
1746 | return true; | |
1747 | ||
b2e465d6 AL |
1748 | cout << |
1749 | _("Usage: apt-cache [options] command\n" | |
b2e465d6 | 1750 | " apt-cache [options] showpkg pkg1 [pkg2 ...]\n" |
2d425135 | 1751 | " apt-cache [options] showsrc pkg1 [pkg2 ...]\n" |
b2e465d6 | 1752 | "\n" |
7fefa184 DK |
1753 | "apt-cache is a low-level tool used to query information\n" |
1754 | "from APT's binary cache files\n" | |
b2e465d6 AL |
1755 | "\n" |
1756 | "Commands:\n" | |
b2e465d6 AL |
1757 | " gencaches - Build both the package and source cache\n" |
1758 | " showpkg - Show some general information for a single package\n" | |
2d425135 | 1759 | " showsrc - Show source records\n" |
b2e465d6 AL |
1760 | " stats - Show some basic statistics\n" |
1761 | " dump - Show the entire file in a terse form\n" | |
1762 | " dumpavail - Print an available file to stdout\n" | |
1763 | " unmet - Show unmet dependencies\n" | |
b2e465d6 AL |
1764 | " search - Search the package list for a regex pattern\n" |
1765 | " show - Show a readable record for the package\n" | |
1766 | " depends - Show raw dependency information for a package\n" | |
eba2b51d | 1767 | " rdepends - Show reverse dependency information for a package\n" |
2c120e24 EL |
1768 | " pkgnames - List the names of all packages in the system\n" |
1769 | " dotty - Generate package graphs for GraphViz\n" | |
fff4b7f3 | 1770 | " xvcg - Generate package graphs for xvcg\n" |
eba05d54 | 1771 | " policy - Show policy settings\n" |
b2e465d6 AL |
1772 | "\n" |
1773 | "Options:\n" | |
1774 | " -h This help text.\n" | |
1775 | " -p=? The package cache.\n" | |
1776 | " -s=? The source cache.\n" | |
1777 | " -q Disable progress indicator.\n" | |
1778 | " -i Show only important deps for the unmet command.\n" | |
1779 | " -c=? Read this configuration file\n" | |
a2884e32 | 1780 | " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" |
b2e465d6 AL |
1781 | "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"); |
1782 | return true; | |
e1b74f61 AL |
1783 | } |
1784 | /*}}}*/ | |
92fcbfc1 | 1785 | int main(int argc,const char *argv[]) /*{{{*/ |
1164783d | 1786 | { |
b9179170 | 1787 | CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp}, |
b0b4efb9 | 1788 | {"gencaches",&GenCaches}, |
f8f410f5 | 1789 | {"showsrc",&ShowSrcPackage}, |
b9179170 | 1790 | {"showpkg",&DumpPackage}, |
b0b4efb9 AL |
1791 | {"stats",&Stats}, |
1792 | {"dump",&Dump}, | |
1793 | {"dumpavail",&DumpAvail}, | |
1794 | {"unmet",&UnMet}, | |
9dbb421f | 1795 | {"search",&Search}, |
349cd3b8 | 1796 | {"depends",&Depends}, |
eba2b51d | 1797 | {"rdepends",&RDepends}, |
3e94da1b | 1798 | {"dotty",&Dotty}, |
fff4b7f3 | 1799 | {"xvcg",&XVcg}, |
7e2e2d5d | 1800 | {"show",&ShowPackage}, |
7c1133fe | 1801 | {"pkgnames",&ShowPkgNames}, |
6007c1d4 | 1802 | {"showauto",&ShowAuto}, |
af87ab54 | 1803 | {"policy",&Policy}, |
bd3d53ef | 1804 | {"madison",&Madison}, |
b0b4efb9 | 1805 | {0,0}}; |
0a8e3465 | 1806 | |
b9179170 MV |
1807 | std::vector<CommandLine::Args> Args = getCommandArgs("apt-cache", CommandLine::GetCommand(Cmds, argc, argv)); |
1808 | ||
67111687 AL |
1809 | // Set up gettext support |
1810 | setlocale(LC_ALL,""); | |
1811 | textdomain(PACKAGE); | |
1812 | ||
e1b74f61 | 1813 | // Parse the command line and initialize the package library |
b9179170 | 1814 | CommandLine CmdL(Args.data(),_config); |
b2e465d6 AL |
1815 | if (pkgInitConfig(*_config) == false || |
1816 | CmdL.Parse(argc,argv) == false || | |
1817 | pkgInitSystem(*_config,_system) == false) | |
08e8f724 AL |
1818 | { |
1819 | _error->DumpErrors(); | |
1820 | return 100; | |
1164783d | 1821 | } |
8efa2a3b | 1822 | |
e1b74f61 AL |
1823 | // See if the help should be shown |
1824 | if (_config->FindB("help") == true || | |
1825 | CmdL.FileSize() == 0) | |
b2e465d6 AL |
1826 | { |
1827 | ShowHelp(CmdL); | |
1828 | return 0; | |
1829 | } | |
1830 | ||
a9a5908d | 1831 | // Deal with stdout not being a tty |
c340d185 | 1832 | if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1) |
a9a5908d AL |
1833 | _config->Set("quiet","1"); |
1834 | ||
320352e0 DK |
1835 | if (_config->Exists("APT::Cache::Generate") == true) |
1836 | _config->Set("pkgCacheFile::Generate", _config->FindB("APT::Cache::Generate", true)); | |
1837 | ||
b9179170 MV |
1838 | // Match the operation |
1839 | CmdL.DispatchArg(Cmds); | |
f8f410f5 | 1840 | |
1164783d | 1841 | // Print any errors or warnings found during parsing |
65beb572 DK |
1842 | bool const Errors = _error->PendingError(); |
1843 | if (_config->FindI("quiet",0) > 0) | |
1164783d | 1844 | _error->DumpErrors(); |
65beb572 DK |
1845 | else |
1846 | _error->DumpErrors(GlobalError::DEBUG); | |
1847 | return Errors == true ? 100 : 0; | |
1164783d | 1848 | } |
92fcbfc1 | 1849 | /*}}}*/ |