]>
git.saurik.com Git - apt.git/blob - cmdline/apt-cache.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-cache.cc,v 1.72 2004/04/30 04:34:03 mdz Exp $
4 /* ######################################################################
6 apt-cache - Manages the cache files
8 apt-cache provides some functions fo manipulating the cache files.
9 It uses the command line interface common to all the APT tools.
11 Returns 100 on failure, 0 on success.
13 ##################################################################### */
15 // Include Files /*{{{*/
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/pkgcachegen.h>
18 #include <apt-pkg/init.h>
19 #include <apt-pkg/progress.h>
20 #include <apt-pkg/sourcelist.h>
21 #include <apt-pkg/cmndline.h>
22 #include <apt-pkg/strutl.h>
23 #include <apt-pkg/pkgrecords.h>
24 #include <apt-pkg/srcrecords.h>
25 #include <apt-pkg/version.h>
26 #include <apt-pkg/policy.h>
27 #include <apt-pkg/tagfile.h>
28 #include <apt-pkg/algorithms.h>
29 #include <apt-pkg/sptr.h>
47 pkgSourceList
*SrcList
= 0;
49 // LocalitySort - Sort a version list by package file locality /*{{{*/
50 // ---------------------------------------------------------------------
52 int LocalityCompare(const void *a
, const void *b
)
54 pkgCache::VerFile
*A
= *(pkgCache::VerFile
**)a
;
55 pkgCache::VerFile
*B
= *(pkgCache::VerFile
**)b
;
64 if (A
->File
== B
->File
)
65 return A
->Offset
- B
->Offset
;
66 return A
->File
- B
->File
;
69 void LocalitySort(pkgCache::VerFile
**begin
,
70 unsigned long Count
,size_t Size
)
72 qsort(begin
,Count
,Size
,LocalityCompare
);
75 void LocalitySort(pkgCache::DescFile
**begin
,
76 unsigned long Count
,size_t Size
)
78 qsort(begin
,Count
,Size
,LocalityCompare
);
81 // UnMet - Show unmet dependencies /*{{{*/
82 // ---------------------------------------------------------------------
84 bool UnMet(CommandLine
&CmdL
)
86 pkgCache
&Cache
= *GCache
;
87 bool Important
= _config
->FindB("APT::Cache::Important",false);
89 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
91 for (pkgCache::VerIterator V
= P
.VersionList(); V
.end() == false; V
++)
94 for (pkgCache::DepIterator D
= V
.DependsList(); D
.end() == false;)
97 pkgCache::DepIterator Start
;
98 pkgCache::DepIterator End
;
101 // Skip conflicts and replaces
102 if (End
->Type
!= pkgCache::Dep::PreDepends
&&
103 End
->Type
!= pkgCache::Dep::Depends
&&
104 End
->Type
!= pkgCache::Dep::Suggests
&&
105 End
->Type
!= pkgCache::Dep::Recommends
)
108 // Important deps only
109 if (Important
== true)
110 if (End
->Type
!= pkgCache::Dep::PreDepends
&&
111 End
->Type
!= pkgCache::Dep::Depends
)
114 // Verify the or group
116 pkgCache::DepIterator RealStart
= Start
;
119 // See if this dep is Ok
120 pkgCache::Version
**VList
= Start
.AllTargets();
141 ioprintf(cout
,_("Package %s version %s has an unmet dep:\n"),
142 P
.Name(),V
.VerStr());
145 // Print out the dep type
146 cout
<< " " << End
.DepType() << ": ";
152 cout
<< Start
.TargetPkg().Name();
153 if (Start
.TargetVer() != 0)
154 cout
<< " (" << Start
.CompType() << " " << Start
.TargetVer() <<
170 // DumpPackage - Show a dump of a package record /*{{{*/
171 // ---------------------------------------------------------------------
173 bool DumpPackage(CommandLine
&CmdL
)
175 pkgCache
&Cache
= *GCache
;
176 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
178 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
179 if (Pkg
.end() == true)
181 _error
->Warning(_("Unable to locate package %s"),*I
);
185 cout
<< "Package: " << Pkg
.Name() << endl
;
186 cout
<< "Versions: " << endl
;
187 for (pkgCache::VerIterator Cur
= Pkg
.VersionList(); Cur
.end() != true; Cur
++)
189 cout
<< Cur
.VerStr();
190 for (pkgCache::VerFileIterator Vf
= Cur
.FileList(); Vf
.end() == false; Vf
++)
191 cout
<< " (" << Vf
.File().FileName() << ")";
193 for (pkgCache::DescIterator D
= Cur
.DescriptionList(); D
.end() == false; D
++)
195 cout
<< " Description Language: " << D
.LanguageCode() << endl
196 << " File: " << D
.FileList().File().FileName() << endl
197 << " MD5: " << D
.md5() << endl
;
204 cout
<< "Reverse Depends: " << endl
;
205 for (pkgCache::DepIterator D
= Pkg
.RevDependsList(); D
.end() != true; D
++)
207 cout
<< " " << D
.ParentPkg().Name() << ',' << D
.TargetPkg().Name();
209 cout
<< ' ' << DeNull(D
.TargetVer()) << endl
;
214 cout
<< "Dependencies: " << endl
;
215 for (pkgCache::VerIterator Cur
= Pkg
.VersionList(); Cur
.end() != true; Cur
++)
217 cout
<< Cur
.VerStr() << " - ";
218 for (pkgCache::DepIterator Dep
= Cur
.DependsList(); Dep
.end() != true; Dep
++)
219 cout
<< Dep
.TargetPkg().Name() << " (" << (int)Dep
->CompareOp
<< " " << DeNull(Dep
.TargetVer()) << ") ";
223 cout
<< "Provides: " << endl
;
224 for (pkgCache::VerIterator Cur
= Pkg
.VersionList(); Cur
.end() != true; Cur
++)
226 cout
<< Cur
.VerStr() << " - ";
227 for (pkgCache::PrvIterator Prv
= Cur
.ProvidesList(); Prv
.end() != true; Prv
++)
228 cout
<< Prv
.ParentPkg().Name() << " ";
231 cout
<< "Reverse Provides: " << endl
;
232 for (pkgCache::PrvIterator Prv
= Pkg
.ProvidesList(); Prv
.end() != true; Prv
++)
233 cout
<< Prv
.OwnerPkg().Name() << " " << Prv
.OwnerVer().VerStr() << endl
;
239 // Stats - Dump some nice statistics /*{{{*/
240 // ---------------------------------------------------------------------
242 bool Stats(CommandLine
&Cmd
)
244 pkgCache
&Cache
= *GCache
;
245 cout
<< _("Total package names : ") << Cache
.Head().PackageCount
<< " (" <<
246 SizeToStr(Cache
.Head().PackageCount
*Cache
.Head().PackageSz
) << ')' << endl
;
253 pkgCache::PkgIterator I
= Cache
.PkgBegin();
254 for (;I
.end() != true; I
++)
256 if (I
->VersionList
!= 0 && I
->ProvidesList
== 0)
262 if (I
->VersionList
!= 0 && I
->ProvidesList
!= 0)
268 if (I
->VersionList
== 0 && I
->ProvidesList
!= 0)
271 if (I
.ProvidesList()->NextProvides
== 0)
279 if (I
->VersionList
== 0 && I
->ProvidesList
== 0)
285 cout
<< _(" Normal packages: ") << Normal
<< endl
;
286 cout
<< _(" Pure virtual packages: ") << Virtual
<< endl
;
287 cout
<< _(" Single virtual packages: ") << DVirt
<< endl
;
288 cout
<< _(" Mixed virtual packages: ") << NVirt
<< endl
;
289 cout
<< _(" Missing: ") << Missing
<< endl
;
291 cout
<< _("Total distinct versions: ") << Cache
.Head().VersionCount
<< " (" <<
292 SizeToStr(Cache
.Head().VersionCount
*Cache
.Head().VersionSz
) << ')' << endl
;
293 cout
<< _("Total Distinct Descriptions: ") << Cache
.Head().DescriptionCount
<< " (" <<
294 SizeToStr(Cache
.Head().DescriptionCount
*Cache
.Head().DescriptionSz
) << ')' << endl
;
295 cout
<< _("Total dependencies: ") << Cache
.Head().DependsCount
<< " (" <<
296 SizeToStr(Cache
.Head().DependsCount
*Cache
.Head().DependencySz
) << ')' << endl
;
298 cout
<< _("Total ver/file relations: ") << Cache
.Head().VerFileCount
<< " (" <<
299 SizeToStr(Cache
.Head().VerFileCount
*Cache
.Head().VerFileSz
) << ')' << endl
;
300 cout
<< _("Total Desc/File relations: ") << Cache
.Head().DescFileCount
<< " (" <<
301 SizeToStr(Cache
.Head().DescFileCount
*Cache
.Head().DescFileSz
) << ')' << endl
;
302 cout
<< _("Total Provides mappings: ") << Cache
.Head().ProvidesCount
<< " (" <<
303 SizeToStr(Cache
.Head().ProvidesCount
*Cache
.Head().ProvidesSz
) << ')' << endl
;
306 unsigned long Size
= 0;
307 unsigned long Count
= 0;
308 for (pkgCache::StringItem
*I
= Cache
.StringItemP
+ Cache
.Head().StringList
;
309 I
!= Cache
.StringItemP
; I
= Cache
.StringItemP
+ I
->NextItem
)
312 Size
+= strlen(Cache
.StrP
+ I
->String
) + 1;
314 cout
<< _("Total globbed strings: ") << Count
<< " (" << SizeToStr(Size
) << ')' << endl
;
316 unsigned long DepVerSize
= 0;
317 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
319 for (pkgCache::VerIterator V
= P
.VersionList(); V
.end() == false; V
++)
321 for (pkgCache::DepIterator D
= V
.DependsList(); D
.end() == false; D
++)
324 DepVerSize
+= strlen(D
.TargetVer()) + 1;
328 cout
<< _("Total dependency version space: ") << SizeToStr(DepVerSize
) << endl
;
330 unsigned long Slack
= 0;
331 for (int I
= 0; I
!= 7; I
++)
332 Slack
+= Cache
.Head().Pools
[I
].ItemSize
*Cache
.Head().Pools
[I
].Count
;
333 cout
<< _("Total slack space: ") << SizeToStr(Slack
) << endl
;
335 unsigned long Total
= 0;
336 Total
= Slack
+ Size
+ Cache
.Head().DependsCount
*Cache
.Head().DependencySz
+
337 Cache
.Head().VersionCount
*Cache
.Head().VersionSz
+
338 Cache
.Head().PackageCount
*Cache
.Head().PackageSz
+
339 Cache
.Head().VerFileCount
*Cache
.Head().VerFileSz
+
340 Cache
.Head().ProvidesCount
*Cache
.Head().ProvidesSz
;
341 cout
<< _("Total space accounted for: ") << SizeToStr(Total
) << endl
;
346 // Dump - show everything /*{{{*/
347 // ---------------------------------------------------------------------
348 /* This is worthless except fer debugging things */
349 bool Dump(CommandLine
&Cmd
)
351 pkgCache
&Cache
= *GCache
;
352 cout
<< "Using Versioning System: " << Cache
.VS
->Label
<< endl
;
354 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
356 cout
<< "Package: " << P
.Name() << endl
;
357 for (pkgCache::VerIterator V
= P
.VersionList(); V
.end() == false; V
++)
359 cout
<< " Version: " << V
.VerStr() << endl
;
360 cout
<< " File: " << V
.FileList().File().FileName() << endl
;
361 for (pkgCache::DepIterator D
= V
.DependsList(); D
.end() == false; D
++)
362 cout
<< " Depends: " << D
.TargetPkg().Name() << ' ' <<
363 DeNull(D
.TargetVer()) << endl
;
364 for (pkgCache::DescIterator D
= V
.DescriptionList(); D
.end() == false; D
++)
366 cout
<< " Description Language: " << D
.LanguageCode() << endl
367 << " File: " << D
.FileList().File().FileName() << endl
368 << " MD5: " << D
.md5() << endl
;
373 for (pkgCache::PkgFileIterator F
= Cache
.FileBegin(); F
.end() == false; F
++)
375 cout
<< "File: " << F
.FileName() << endl
;
376 cout
<< " Type: " << F
.IndexType() << endl
;
377 cout
<< " Size: " << F
->Size
<< endl
;
378 cout
<< " ID: " << F
->ID
<< endl
;
379 cout
<< " Flags: " << F
->Flags
<< endl
;
380 cout
<< " Time: " << TimeRFC1123(F
->mtime
) << endl
;
381 cout
<< " Archive: " << DeNull(F
.Archive()) << endl
;
382 cout
<< " Component: " << DeNull(F
.Component()) << endl
;
383 cout
<< " Version: " << DeNull(F
.Version()) << endl
;
384 cout
<< " Origin: " << DeNull(F
.Origin()) << endl
;
385 cout
<< " Site: " << DeNull(F
.Site()) << endl
;
386 cout
<< " Label: " << DeNull(F
.Label()) << endl
;
387 cout
<< " Architecture: " << DeNull(F
.Architecture()) << endl
;
393 // DumpAvail - Print out the available list /*{{{*/
394 // ---------------------------------------------------------------------
395 /* This is needed to make dpkg --merge happy.. I spent a bit of time to
396 make this run really fast, perhaps I went a little overboard.. */
397 bool DumpAvail(CommandLine
&Cmd
)
399 pkgCache
&Cache
= *GCache
;
401 pkgPolicy
Plcy(&Cache
);
402 if (ReadPinFile(Plcy
) == false)
405 unsigned long Count
= Cache
.HeaderP
->PackageCount
+1;
406 pkgCache::VerFile
**VFList
= new pkgCache::VerFile
*[Count
];
407 memset(VFList
,0,sizeof(*VFList
)*Count
);
409 // Map versions that we want to write out onto the VerList array.
410 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
412 if (P
->VersionList
== 0)
415 /* Find the proper version to use. If the policy says there are no
416 possible selections we return the installed version, if available..
417 This prevents dselect from making it obsolete. */
418 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(P
);
421 if (P
->CurrentVer
== 0)
426 pkgCache::VerFileIterator VF
= V
.FileList();
427 for (; VF
.end() == false ; VF
++)
428 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) == 0)
431 /* Okay, here we have a bit of a problem.. The policy has selected the
432 currently installed package - however it only exists in the
433 status file.. We need to write out something or dselect will mark
434 the package as obsolete! Thus we emit the status file entry, but
435 below we remove the status line to make it valid for the
436 available file. However! We only do this if their do exist *any*
437 non-source versions of the package - that way the dselect obsolete
438 handling works OK. */
439 if (VF
.end() == true)
441 for (pkgCache::VerIterator Cur
= P
.VersionList(); Cur
.end() != true; Cur
++)
443 for (VF
= Cur
.FileList(); VF
.end() == false; VF
++)
445 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) == 0)
452 if (VF
.end() == false)
460 LocalitySort(VFList
,Count
,sizeof(*VFList
));
462 // Iterate over all the package files and write them out.
463 char *Buffer
= new char[Cache
.HeaderP
->MaxVerFileSize
+10];
464 for (pkgCache::VerFile
**J
= VFList
; *J
!= 0;)
466 pkgCache::PkgFileIterator
File(Cache
,(*J
)->File
+ Cache
.PkgFileP
);
467 if (File
.IsOk() == false)
469 _error
->Error(_("Package file %s is out of sync."),File
.FileName());
473 FileFd
PkgF(File
.FileName(),FileFd::ReadOnly
);
474 if (_error
->PendingError() == true)
477 /* Write all of the records from this package file, since we
478 already did locality sorting we can now just seek through the
479 file in read order. We apply 1 more optimization here, since often
480 there will be < 1 byte gaps between records (for the \n) we read that
481 into the next buffer and offset a bit.. */
482 unsigned long Pos
= 0;
485 if ((*J
)->File
+ Cache
.PkgFileP
!= File
)
488 const pkgCache::VerFile
&VF
= **J
;
490 // Read the record and then write it out again.
491 unsigned long Jitter
= VF
.Offset
- Pos
;
494 if (PkgF
.Seek(VF
.Offset
) == false)
499 if (PkgF
.Read(Buffer
,VF
.Size
+ Jitter
) == false)
501 Buffer
[VF
.Size
+ Jitter
] = '\n';
504 if ((File
->Flags
& pkgCache::Flag::NotSource
) == pkgCache::Flag::NotSource
)
507 TFRewriteData RW
[] = {{"Status",0},{"Config-Version",0},{}};
508 const char *Zero
= 0;
509 if (Tags
.Scan(Buffer
+Jitter
,VF
.Size
+1) == false ||
510 TFRewrite(stdout
,Tags
,&Zero
,RW
) == false)
512 _error
->Error("Internal Error, Unable to parse a package record");
519 if (fwrite(Buffer
+Jitter
,VF
.Size
+1,1,stdout
) != 1)
523 Pos
= VF
.Offset
+ VF
.Size
;
527 if (_error
->PendingError() == true)
533 return !_error
->PendingError();
536 // Depends - Print out a dependency tree /*{{{*/
537 // ---------------------------------------------------------------------
539 bool Depends(CommandLine
&CmdL
)
541 pkgCache
&Cache
= *GCache
;
542 SPtrArray
<unsigned> Colours
= new unsigned[Cache
.Head().PackageCount
];
543 memset(Colours
,0,sizeof(*Colours
)*Cache
.Head().PackageCount
);
545 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
547 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
548 if (Pkg
.end() == true)
550 _error
->Warning(_("Unable to locate package %s"),*I
);
553 Colours
[Pkg
->ID
] = 1;
556 bool Recurse
= _config
->FindB("APT::Cache::RecurseDepends",false);
557 bool Installed
= _config
->FindB("APT::Cache::Installed",false);
561 DidSomething
= false;
562 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
564 if (Colours
[Pkg
->ID
] != 1)
566 Colours
[Pkg
->ID
] = 2;
569 pkgCache::VerIterator Ver
= Pkg
.VersionList();
570 if (Ver
.end() == true)
572 cout
<< '<' << Pkg
.Name() << '>' << endl
;
576 cout
<< Pkg
.Name() << endl
;
578 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
581 pkgCache::PkgIterator Trg
= D
.TargetPkg();
583 if((Installed
&& Trg
->CurrentVer
!= 0) || !Installed
)
586 if ((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)
592 if (Trg
->VersionList
== 0)
593 cout
<< D
.DepType() << ": <" << Trg
.Name() << ">" << endl
;
595 cout
<< D
.DepType() << ": " << Trg
.Name() << endl
;
598 Colours
[D
.TargetPkg()->ID
]++;
602 // Display all solutions
603 SPtrArray
<pkgCache::Version
*> List
= D
.AllTargets();
604 pkgPrioSortList(Cache
,List
);
605 for (pkgCache::Version
**I
= List
; *I
!= 0; I
++)
607 pkgCache::VerIterator
V(Cache
,*I
);
608 if (V
!= Cache
.VerP
+ V
.ParentPkg()->VersionList
||
609 V
->ParentPkg
== D
->Package
)
611 cout
<< " " << V
.ParentPkg().Name() << endl
;
614 Colours
[D
.ParentPkg()->ID
]++;
619 while (DidSomething
== true);
624 // RDepends - Print out a reverse dependency tree - mbc /*{{{*/
625 // ---------------------------------------------------------------------
627 bool RDepends(CommandLine
&CmdL
)
629 pkgCache
&Cache
= *GCache
;
630 SPtrArray
<unsigned> Colours
= new unsigned[Cache
.Head().PackageCount
];
631 memset(Colours
,0,sizeof(*Colours
)*Cache
.Head().PackageCount
);
633 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
635 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
636 if (Pkg
.end() == true)
638 _error
->Warning(_("Unable to locate package %s"),*I
);
641 Colours
[Pkg
->ID
] = 1;
644 bool Recurse
= _config
->FindB("APT::Cache::RecurseDepends",false);
645 bool Installed
= _config
->FindB("APT::Cache::Installed",false);
649 DidSomething
= false;
650 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
652 if (Colours
[Pkg
->ID
] != 1)
654 Colours
[Pkg
->ID
] = 2;
657 pkgCache::VerIterator Ver
= Pkg
.VersionList();
658 if (Ver
.end() == true)
660 cout
<< '<' << Pkg
.Name() << '>' << endl
;
664 cout
<< Pkg
.Name() << endl
;
666 cout
<< "Reverse Depends:" << endl
;
667 for (pkgCache::DepIterator D
= Pkg
.RevDependsList(); D
.end() == false; D
++)
670 pkgCache::PkgIterator Trg
= D
.ParentPkg();
672 if((Installed
&& Trg
->CurrentVer
!= 0) || !Installed
)
675 if ((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)
680 if (Trg
->VersionList
== 0)
681 cout
<< D
.DepType() << ": <" << Trg
.Name() << ">" << endl
;
683 cout
<< Trg
.Name() << endl
;
686 Colours
[D
.ParentPkg()->ID
]++;
690 // Display all solutions
691 SPtrArray
<pkgCache::Version
*> List
= D
.AllTargets();
692 pkgPrioSortList(Cache
,List
);
693 for (pkgCache::Version
**I
= List
; *I
!= 0; I
++)
695 pkgCache::VerIterator
V(Cache
,*I
);
696 if (V
!= Cache
.VerP
+ V
.ParentPkg()->VersionList
||
697 V
->ParentPkg
== D
->Package
)
699 cout
<< " " << V
.ParentPkg().Name() << endl
;
702 Colours
[D
.ParentPkg()->ID
]++;
707 while (DidSomething
== true);
715 // xvcg - Generate a graph for xvcg /*{{{*/
716 // ---------------------------------------------------------------------
717 // Code contributed from Junichi Uekawa <dancer@debian.org> on 20 June 2002.
719 bool XVcg(CommandLine
&CmdL
)
721 pkgCache
&Cache
= *GCache
;
722 bool GivenOnly
= _config
->FindB("APT::Cache::GivenOnly",false);
724 /* Normal packages are boxes
725 Pure Provides are triangles
727 rhomb are missing packages*/
728 const char *Shapes
[] = {"ellipse","triangle","box","rhomb"};
730 /* Initialize the list of packages to show.
732 2 = To Show no recurse
733 3 = Emitted no recurse
736 enum States
{None
=0, ToShow
, ToShowNR
, DoneNR
, Done
};
737 enum TheFlags
{ForceNR
=(1<<0)};
738 unsigned char *Show
= new unsigned char[Cache
.Head().PackageCount
];
739 unsigned char *Flags
= new unsigned char[Cache
.Head().PackageCount
];
740 unsigned char *ShapeMap
= new unsigned char[Cache
.Head().PackageCount
];
742 // Show everything if no arguments given
743 if (CmdL
.FileList
[1] == 0)
744 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
747 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
749 memset(Flags
,0,sizeof(*Flags
)*Cache
.Head().PackageCount
);
752 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
754 if (Pkg
->VersionList
== 0)
757 if (Pkg
->ProvidesList
== 0)
758 ShapeMap
[Pkg
->ID
] = 0;
760 ShapeMap
[Pkg
->ID
] = 1;
765 if (Pkg
->ProvidesList
== 0)
766 ShapeMap
[Pkg
->ID
] = 2;
768 ShapeMap
[Pkg
->ID
] = 3;
772 // Load the list of packages from the command line into the show list
773 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
775 // Process per-package flags
780 if (P
.end()[-1] == '^')
786 if (P
.end()[-1] == ',')
790 // Locate the package
791 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(P
);
792 if (Pkg
.end() == true)
794 _error
->Warning(_("Unable to locate package %s"),*I
);
797 Show
[Pkg
->ID
] = ToShow
;
800 Flags
[Pkg
->ID
] |= ForceNR
;
804 cout
<< "graph: { title: \"packages\"" << endl
<<
805 "xmax: 700 ymax: 700 x: 30 y: 30" << endl
<<
806 "layout_downfactor: 8" << endl
;
812 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
814 // See we need to show this package
815 if (Show
[Pkg
->ID
] == None
|| Show
[Pkg
->ID
] >= DoneNR
)
818 //printf ("node: { title: \"%s\" label: \"%s\" }\n", Pkg.Name(), Pkg.Name());
821 if (Show
[Pkg
->ID
] == ToShowNR
|| (Flags
[Pkg
->ID
] & ForceNR
) == ForceNR
)
823 // Pure Provides and missing packages have no deps!
824 if (ShapeMap
[Pkg
->ID
] == 0 || ShapeMap
[Pkg
->ID
] == 1)
825 Show
[Pkg
->ID
] = Done
;
827 Show
[Pkg
->ID
] = DoneNR
;
830 Show
[Pkg
->ID
] = Done
;
833 // No deps to map out
834 if (Pkg
->VersionList
== 0 || Show
[Pkg
->ID
] == DoneNR
)
837 pkgCache::VerIterator Ver
= Pkg
.VersionList();
838 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
840 // See if anything can meet this dep
841 // Walk along the actual package providing versions
843 pkgCache::PkgIterator DPkg
= D
.TargetPkg();
844 for (pkgCache::VerIterator I
= DPkg
.VersionList();
845 I
.end() == false && Hit
== false; I
++)
847 if (Cache
.VS
->CheckDep(I
.VerStr(),D
->CompareOp
,D
.TargetVer()) == true)
851 // Follow all provides
852 for (pkgCache::PrvIterator I
= DPkg
.ProvidesList();
853 I
.end() == false && Hit
== false; I
++)
855 if (Cache
.VS
->CheckDep(I
.ProvideVersion(),D
->CompareOp
,D
.TargetVer()) == false)
860 // Only graph critical deps
861 if (D
.IsCritical() == true)
863 printf ("edge: { sourcename: \"%s\" targetname: \"%s\" class: 2 ",Pkg
.Name(), D
.TargetPkg().Name() );
865 // Colour the node for recursion
866 if (Show
[D
.TargetPkg()->ID
] <= DoneNR
)
868 /* If a conflicts does not meet anything in the database
869 then show the relation but do not recurse */
871 (D
->Type
== pkgCache::Dep::Conflicts
||
872 D
->Type
== pkgCache::Dep::Obsoletes
))
874 if (Show
[D
.TargetPkg()->ID
] == None
&&
875 Show
[D
.TargetPkg()->ID
] != ToShow
)
876 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
880 if (GivenOnly
== true && Show
[D
.TargetPkg()->ID
] != ToShow
)
881 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
883 Show
[D
.TargetPkg()->ID
] = ToShow
;
890 case pkgCache::Dep::Conflicts
:
891 printf("label: \"conflicts\" color: lightgreen }\n");
893 case pkgCache::Dep::Obsoletes
:
894 printf("label: \"obsoletes\" color: lightgreen }\n");
897 case pkgCache::Dep::PreDepends
:
898 printf("label: \"predepends\" color: blue }\n");
910 /* Draw the box colours after the fact since we can not tell what colour
911 they should be until everything is finished drawing */
912 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
914 if (Show
[Pkg
->ID
] < DoneNR
)
917 if (Show
[Pkg
->ID
] == DoneNR
)
918 printf("node: { title: \"%s\" label: \"%s\" color: orange shape: %s }\n", Pkg
.Name(), Pkg
.Name(),
919 Shapes
[ShapeMap
[Pkg
->ID
]]);
921 printf("node: { title: \"%s\" label: \"%s\" shape: %s }\n", Pkg
.Name(), Pkg
.Name(),
922 Shapes
[ShapeMap
[Pkg
->ID
]]);
932 // Dotty - Generate a graph for Dotty /*{{{*/
933 // ---------------------------------------------------------------------
934 /* Dotty is the graphvis program for generating graphs. It is a fairly
935 simple queuing algorithm that just writes dependencies and nodes.
936 http://www.research.att.com/sw/tools/graphviz/ */
937 bool Dotty(CommandLine
&CmdL
)
939 pkgCache
&Cache
= *GCache
;
940 bool GivenOnly
= _config
->FindB("APT::Cache::GivenOnly",false);
942 /* Normal packages are boxes
943 Pure Provides are triangles
945 Hexagons are missing packages*/
946 const char *Shapes
[] = {"hexagon","triangle","box","diamond"};
948 /* Initialize the list of packages to show.
950 2 = To Show no recurse
951 3 = Emitted no recurse
954 enum States
{None
=0, ToShow
, ToShowNR
, DoneNR
, Done
};
955 enum TheFlags
{ForceNR
=(1<<0)};
956 unsigned char *Show
= new unsigned char[Cache
.Head().PackageCount
];
957 unsigned char *Flags
= new unsigned char[Cache
.Head().PackageCount
];
958 unsigned char *ShapeMap
= new unsigned char[Cache
.Head().PackageCount
];
960 // Show everything if no arguments given
961 if (CmdL
.FileList
[1] == 0)
962 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
965 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
967 memset(Flags
,0,sizeof(*Flags
)*Cache
.Head().PackageCount
);
970 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
972 if (Pkg
->VersionList
== 0)
975 if (Pkg
->ProvidesList
== 0)
976 ShapeMap
[Pkg
->ID
] = 0;
978 ShapeMap
[Pkg
->ID
] = 1;
983 if (Pkg
->ProvidesList
== 0)
984 ShapeMap
[Pkg
->ID
] = 2;
986 ShapeMap
[Pkg
->ID
] = 3;
990 // Load the list of packages from the command line into the show list
991 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
993 // Process per-package flags
998 if (P
.end()[-1] == '^')
1004 if (P
.end()[-1] == ',')
1008 // Locate the package
1009 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(P
);
1010 if (Pkg
.end() == true)
1012 _error
->Warning(_("Unable to locate package %s"),*I
);
1015 Show
[Pkg
->ID
] = ToShow
;
1018 Flags
[Pkg
->ID
] |= ForceNR
;
1022 printf("digraph packages {\n");
1023 printf("concentrate=true;\n");
1024 printf("size=\"30,40\";\n");
1030 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
1032 // See we need to show this package
1033 if (Show
[Pkg
->ID
] == None
|| Show
[Pkg
->ID
] >= DoneNR
)
1037 if (Show
[Pkg
->ID
] == ToShowNR
|| (Flags
[Pkg
->ID
] & ForceNR
) == ForceNR
)
1039 // Pure Provides and missing packages have no deps!
1040 if (ShapeMap
[Pkg
->ID
] == 0 || ShapeMap
[Pkg
->ID
] == 1)
1041 Show
[Pkg
->ID
] = Done
;
1043 Show
[Pkg
->ID
] = DoneNR
;
1046 Show
[Pkg
->ID
] = Done
;
1049 // No deps to map out
1050 if (Pkg
->VersionList
== 0 || Show
[Pkg
->ID
] == DoneNR
)
1053 pkgCache::VerIterator Ver
= Pkg
.VersionList();
1054 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
1056 // See if anything can meet this dep
1057 // Walk along the actual package providing versions
1059 pkgCache::PkgIterator DPkg
= D
.TargetPkg();
1060 for (pkgCache::VerIterator I
= DPkg
.VersionList();
1061 I
.end() == false && Hit
== false; I
++)
1063 if (Cache
.VS
->CheckDep(I
.VerStr(),D
->CompareOp
,D
.TargetVer()) == true)
1067 // Follow all provides
1068 for (pkgCache::PrvIterator I
= DPkg
.ProvidesList();
1069 I
.end() == false && Hit
== false; I
++)
1071 if (Cache
.VS
->CheckDep(I
.ProvideVersion(),D
->CompareOp
,D
.TargetVer()) == false)
1075 // Only graph critical deps
1076 if (D
.IsCritical() == true)
1078 printf("\"%s\" -> \"%s\"",Pkg
.Name(),D
.TargetPkg().Name());
1080 // Colour the node for recursion
1081 if (Show
[D
.TargetPkg()->ID
] <= DoneNR
)
1083 /* If a conflicts does not meet anything in the database
1084 then show the relation but do not recurse */
1086 (D
->Type
== pkgCache::Dep::Conflicts
||
1087 D
->Type
== pkgCache::Dep::Obsoletes
))
1089 if (Show
[D
.TargetPkg()->ID
] == None
&&
1090 Show
[D
.TargetPkg()->ID
] != ToShow
)
1091 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
1095 if (GivenOnly
== true && Show
[D
.TargetPkg()->ID
] != ToShow
)
1096 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
1098 Show
[D
.TargetPkg()->ID
] = ToShow
;
1105 case pkgCache::Dep::Conflicts
:
1106 case pkgCache::Dep::Obsoletes
:
1107 printf("[color=springgreen];\n");
1110 case pkgCache::Dep::PreDepends
:
1111 printf("[color=blue];\n");
1123 /* Draw the box colours after the fact since we can not tell what colour
1124 they should be until everything is finished drawing */
1125 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
1127 if (Show
[Pkg
->ID
] < DoneNR
)
1130 // Orange box for early recursion stoppage
1131 if (Show
[Pkg
->ID
] == DoneNR
)
1132 printf("\"%s\" [color=orange,shape=%s];\n",Pkg
.Name(),
1133 Shapes
[ShapeMap
[Pkg
->ID
]]);
1135 printf("\"%s\" [shape=%s];\n",Pkg
.Name(),
1136 Shapes
[ShapeMap
[Pkg
->ID
]]);
1143 // DoAdd - Perform an adding operation /*{{{*/
1144 // ---------------------------------------------------------------------
1146 bool DoAdd(CommandLine
&CmdL
)
1148 return _error
->Error("Unimplemented");
1150 // Make sure there is at least one argument
1151 if (CmdL
.FileSize() <= 1)
1152 return _error
->Error("You must give at least one file name");
1155 FileFd
CacheF(_config
->FindFile("Dir::Cache::pkgcache"),FileFd::WriteAny
);
1156 if (_error
->PendingError() == true)
1159 DynamicMMap
Map(CacheF
,MMap::Public
);
1160 if (_error
->PendingError() == true)
1163 OpTextProgress
Progress(*_config
);
1164 pkgCacheGenerator
Gen(Map
,Progress
);
1165 if (_error
->PendingError() == true)
1168 unsigned long Length
= CmdL
.FileSize() - 1;
1169 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1171 Progress
.OverallProgress(I
- CmdL
.FileList
,Length
,1,"Generating cache");
1172 Progress
.SubProgress(Length
);
1175 FileFd
TagF(*I
,FileFd::ReadOnly
);
1176 debListParser
Parser(TagF
);
1177 if (_error
->PendingError() == true)
1178 return _error
->Error("Problem opening %s",*I
);
1180 if (Gen
.SelectFile(*I
,"") == false)
1181 return _error
->Error("Problem with SelectFile");
1183 if (Gen
.MergeList(Parser
) == false)
1184 return _error
->Error("Problem with MergeList");
1188 GCache
= &Gen
.GetCache();
1195 // DisplayRecord - Displays the complete record for the package /*{{{*/
1196 // ---------------------------------------------------------------------
1197 /* This displays the package record from the proper package index file.
1198 It is not used by DumpAvail for performance reasons. */
1199 bool DisplayRecord(pkgCache::VerIterator V
)
1201 // Find an appropriate file
1202 pkgCache::VerFileIterator Vf
= V
.FileList();
1203 for (; Vf
.end() == false; Vf
++)
1204 if ((Vf
.File()->Flags
& pkgCache::Flag::NotSource
) == 0)
1206 if (Vf
.end() == true)
1209 // Check and load the package list file
1210 pkgCache::PkgFileIterator I
= Vf
.File();
1211 if (I
.IsOk() == false)
1212 return _error
->Error(_("Package file %s is out of sync."),I
.FileName());
1214 FileFd
PkgF(I
.FileName(),FileFd::ReadOnly
);
1215 if (_error
->PendingError() == true)
1219 unsigned char *Buffer
= new unsigned char[GCache
->HeaderP
->MaxVerFileSize
+1];
1220 Buffer
[V
.FileList()->Size
] = '\n';
1221 if (PkgF
.Seek(V
.FileList()->Offset
) == false ||
1222 PkgF
.Read(Buffer
,V
.FileList()->Size
) == false)
1228 // Strip the Description
1229 unsigned char *DescP
= (unsigned char*)strstr((char*)Buffer
, "Description:");
1232 // Write all the rest
1233 if (fwrite(Buffer
,1,V
.FileList()->Size
+1,stdout
) < (size_t)(V
.FileList()->Size
+1))
1241 // Show the right description
1242 pkgRecords
Recs(*GCache
);
1243 pkgCache::DescIterator DescDefault
= V
.DescriptionList();
1244 pkgCache::DescIterator Desc
= DescDefault
;
1245 for (; Desc
.end() == false; Desc
++)
1246 if (pkgIndexFile::LanguageCode() == Desc
.LanguageCode())
1248 if (Desc
.end() == true) Desc
= DescDefault
;
1250 pkgRecords::Parser
&P
= Recs
.Lookup(Desc
.FileList());
1251 cout
<< "Description" << ( (strcmp(Desc
.LanguageCode(),"") != 0) ? "-" : "" ) << Desc
.LanguageCode() << ": " << P
.LongDesc() << endl
;
1257 // Search - Perform a search /*{{{*/
1258 // ---------------------------------------------------------------------
1259 /* This searches the package names and pacakge descriptions for a pattern */
1262 pkgCache::DescFile
*Df
;
1266 bool Search(CommandLine
&CmdL
)
1268 pkgCache
&Cache
= *GCache
;
1269 bool ShowFull
= _config
->FindB("APT::Cache::ShowFull",false);
1270 bool NamesOnly
= _config
->FindB("APT::Cache::NamesOnly",false);
1271 unsigned NumPatterns
= CmdL
.FileSize() -1;
1273 pkgDepCache::Policy Plcy
;
1275 // Make sure there is at least one argument
1276 if (NumPatterns
< 1)
1277 return _error
->Error(_("You must give exactly one pattern"));
1279 // Compile the regex pattern
1280 regex_t
*Patterns
= new regex_t
[NumPatterns
];
1281 memset(Patterns
,0,sizeof(*Patterns
)*NumPatterns
);
1282 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1284 if (regcomp(&Patterns
[I
],CmdL
.FileList
[I
+1],REG_EXTENDED
| REG_ICASE
|
1288 regfree(&Patterns
[I
]);
1289 return _error
->Error("Regex compilation error");
1293 // Create the text record parser
1294 pkgRecords
Recs(Cache
);
1295 if (_error
->PendingError() == true)
1297 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1298 regfree(&Patterns
[I
]);
1302 ExDescFile
*DFList
= new ExDescFile
[Cache
.HeaderP
->PackageCount
+1];
1303 memset(DFList
,0,sizeof(*DFList
)*Cache
.HeaderP
->PackageCount
+1);
1305 // Map versions that we want to write out onto the VerList array.
1306 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
1308 DFList
[P
->ID
].NameMatch
= NumPatterns
!= 0;
1309 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1311 if (regexec(&Patterns
[I
],P
.Name(),0,0,0) == 0)
1312 DFList
[P
->ID
].NameMatch
&= true;
1314 DFList
[P
->ID
].NameMatch
= false;
1317 // Doing names only, drop any that dont match..
1318 if (NamesOnly
== true && DFList
[P
->ID
].NameMatch
== false)
1321 // Find the proper version to use.
1322 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(P
);
1323 if (V
.end() == false)
1324 DFList
[P
->ID
].Df
= V
.DescriptionList().FileList();
1327 // Include all the packages that provide matching names too
1328 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
1330 if (DFList
[P
->ID
].NameMatch
== false)
1333 for (pkgCache::PrvIterator Prv
= P
.ProvidesList() ; Prv
.end() == false; Prv
++)
1335 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Prv
.OwnerPkg());
1336 if (V
.end() == false)
1338 DFList
[Prv
.OwnerPkg()->ID
].Df
= V
.DescriptionList().FileList();
1339 DFList
[Prv
.OwnerPkg()->ID
].NameMatch
= true;
1344 LocalitySort(&DFList
->Df
,Cache
.HeaderP
->PackageCount
,sizeof(*DFList
));
1346 // Iterate over all the version records and check them
1347 for (ExDescFile
*J
= DFList
; J
->Df
!= 0; J
++)
1349 pkgRecords::Parser
&P
= Recs
.Lookup(pkgCache::DescFileIterator(Cache
,J
->Df
));
1352 if (J
->NameMatch
== false)
1354 string LongDesc
= P
.LongDesc();
1355 Match
= NumPatterns
!= 0;
1356 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1358 if (regexec(&Patterns
[I
],LongDesc
.c_str(),0,0,0) == 0)
1367 if (ShowFull
== true)
1371 P
.GetRec(Start
,End
);
1372 fwrite(Start
,End
-Start
,1,stdout
);
1376 printf("%s - %s\n",P
.Name().c_str(),P
.ShortDesc().c_str());
1381 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1382 regfree(&Patterns
[I
]);
1384 return _error
->Error("Write to stdout failed");
1388 // ShowPackage - Dump the package record to the screen /*{{{*/
1389 // ---------------------------------------------------------------------
1391 bool ShowPackage(CommandLine
&CmdL
)
1393 pkgCache
&Cache
= *GCache
;
1394 pkgDepCache::Policy Plcy
;
1398 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1400 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1401 if (Pkg
.end() == true)
1403 _error
->Warning(_("Unable to locate package %s"),*I
);
1409 // Find the proper version to use.
1410 if (_config
->FindB("APT::Cache::AllVersions","true") == true)
1412 pkgCache::VerIterator V
;
1413 for (V
= Pkg
.VersionList(); V
.end() == false; V
++)
1415 if (DisplayRecord(V
) == false)
1421 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Pkg
);
1422 if (V
.end() == true || V
.FileList().end() == true)
1424 if (DisplayRecord(V
) == false)
1431 return _error
->Error(_("No packages found"));
1434 // ShowPkgNames - Show package names /*{{{*/
1435 // ---------------------------------------------------------------------
1436 /* This does a prefix match on the first argument */
1437 bool ShowPkgNames(CommandLine
&CmdL
)
1439 pkgCache
&Cache
= *GCache
;
1440 pkgCache::PkgIterator I
= Cache
.PkgBegin();
1441 bool All
= _config
->FindB("APT::Cache::AllNames","false");
1443 if (CmdL
.FileList
[1] != 0)
1445 for (;I
.end() != true; I
++)
1447 if (All
== false && I
->VersionList
== 0)
1450 if (strncmp(I
.Name(),CmdL
.FileList
[1],strlen(CmdL
.FileList
[1])) == 0)
1451 cout
<< I
.Name() << endl
;
1458 for (;I
.end() != true; I
++)
1460 if (All
== false && I
->VersionList
== 0)
1462 cout
<< I
.Name() << endl
;
1468 // ShowSrcPackage - Show source package records /*{{{*/
1469 // ---------------------------------------------------------------------
1471 bool ShowSrcPackage(CommandLine
&CmdL
)
1474 List
.ReadMainList();
1476 // Create the text record parsers
1477 pkgSrcRecords
SrcRecs(List
);
1478 if (_error
->PendingError() == true)
1481 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1485 pkgSrcRecords::Parser
*Parse
;
1486 while ((Parse
= SrcRecs
.Find(*I
,false)) != 0)
1487 cout
<< Parse
->AsStr() << endl
;;
1492 // Policy - Show the results of the preferences file /*{{{*/
1493 // ---------------------------------------------------------------------
1495 bool Policy(CommandLine
&CmdL
)
1498 return _error
->Error("Generate must be enabled for this function");
1500 pkgCache
&Cache
= *GCache
;
1501 pkgPolicy
Plcy(&Cache
);
1502 if (ReadPinFile(Plcy
) == false)
1505 // Print out all of the package files
1506 if (CmdL
.FileList
[1] == 0)
1508 cout
<< _("Package files:") << endl
;
1509 for (pkgCache::PkgFileIterator F
= Cache
.FileBegin(); F
.end() == false; F
++)
1511 // Locate the associated index files so we can derive a description
1513 if (SrcList
->FindIndex(F
,Indx
) == false &&
1514 _system
->FindIndex(F
,Indx
) == false)
1515 return _error
->Error(_("Cache is out of sync, can't x-ref a package file"));
1516 printf(_("%4i %s\n"),
1517 Plcy
.GetPriority(F
),Indx
->Describe(true).c_str());
1519 // Print the reference information for the package
1520 string Str
= F
.RelStr();
1521 if (Str
.empty() == false)
1522 printf(" release %s\n",F
.RelStr().c_str());
1523 if (F
.Site() != 0 && F
.Site()[0] != 0)
1524 printf(" origin %s\n",F
.Site());
1527 // Show any packages have explicit pins
1528 cout
<< _("Pinned packages:") << endl
;
1529 pkgCache::PkgIterator I
= Cache
.PkgBegin();
1530 for (;I
.end() != true; I
++)
1532 if (Plcy
.GetPriority(I
) == 0)
1535 // Print the package name and the version we are forcing to
1536 cout
<< " " << I
.Name() << " -> ";
1538 pkgCache::VerIterator V
= Plcy
.GetMatch(I
);
1539 if (V
.end() == true)
1540 cout
<< _("(not found)") << endl
;
1542 cout
<< V
.VerStr() << endl
;
1548 // Print out detailed information for each package
1549 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1551 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1552 if (Pkg
.end() == true)
1554 _error
->Warning(_("Unable to locate package %s"),*I
);
1558 cout
<< Pkg
.Name() << ":" << endl
;
1560 // Installed version
1561 cout
<< _(" Installed: ");
1562 if (Pkg
->CurrentVer
== 0)
1563 cout
<< _("(none)") << endl
;
1565 cout
<< Pkg
.CurrentVer().VerStr() << endl
;
1567 // Candidate Version
1568 cout
<< _(" Candidate: ");
1569 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Pkg
);
1570 if (V
.end() == true)
1571 cout
<< _("(none)") << endl
;
1573 cout
<< V
.VerStr() << endl
;
1576 if (Plcy
.GetPriority(Pkg
) != 0)
1578 cout
<< _(" Package pin: ");
1579 V
= Plcy
.GetMatch(Pkg
);
1580 if (V
.end() == true)
1581 cout
<< _("(not found)") << endl
;
1583 cout
<< V
.VerStr() << endl
;
1586 // Show the priority tables
1587 cout
<< _(" Version table:") << endl
;
1588 for (V
= Pkg
.VersionList(); V
.end() == false; V
++)
1590 if (Pkg
.CurrentVer() == V
)
1591 cout
<< " *** " << V
.VerStr();
1593 cout
<< " " << V
.VerStr();
1594 cout
<< " " << Plcy
.GetPriority(Pkg
) << endl
;
1595 for (pkgCache::VerFileIterator VF
= V
.FileList(); VF
.end() == false; VF
++)
1597 // Locate the associated index files so we can derive a description
1599 if (SrcList
->FindIndex(VF
.File(),Indx
) == false &&
1600 _system
->FindIndex(VF
.File(),Indx
) == false)
1601 return _error
->Error(_("Cache is out of sync, can't x-ref a package file"));
1602 printf(_(" %4i %s\n"),Plcy
.GetPriority(VF
.File()),
1603 Indx
->Describe(true).c_str());
1611 // Madison - Look a bit like katie's madison /*{{{*/
1612 // ---------------------------------------------------------------------
1614 bool Madison(CommandLine
&CmdL
)
1617 return _error
->Error("Generate must be enabled for this function");
1619 SrcList
->ReadMainList();
1621 pkgCache
&Cache
= *GCache
;
1623 // Create the text record parsers
1624 pkgSrcRecords
SrcRecs(*SrcList
);
1625 if (_error
->PendingError() == true)
1628 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1630 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1632 if (Pkg
.end() == false)
1634 for (pkgCache::VerIterator V
= Pkg
.VersionList(); V
.end() == false; V
++)
1636 for (pkgCache::VerFileIterator VF
= V
.FileList(); VF
.end() == false; VF
++)
1638 // This might be nice, but wouldn't uniquely identify the source -mdz
1639 // if (VF.File().Archive() != 0)
1641 // cout << setw(10) << Pkg.Name() << " | " << setw(10) << V.VerStr() << " | "
1642 // << VF.File().Archive() << endl;
1645 // Locate the associated index files so we can derive a description
1646 for (pkgSourceList::const_iterator S
= SrcList
->begin(); S
!= SrcList
->end(); S
++)
1648 vector
<pkgIndexFile
*> *Indexes
= (*S
)->GetIndexFiles();
1649 for (vector
<pkgIndexFile
*>::const_iterator IF
= Indexes
->begin();
1650 IF
!= Indexes
->end(); IF
++)
1652 if ((*IF
)->FindInCache(*(VF
.File().Cache())) == VF
.File())
1654 cout
<< setw(10) << Pkg
.Name() << " | " << setw(10) << V
.VerStr() << " | "
1655 << (*IF
)->Describe(true) << endl
;
1665 pkgSrcRecords::Parser
*SrcParser
;
1666 while ((SrcParser
= SrcRecs
.Find(*I
,false)) != 0)
1668 // Maybe support Release info here too eventually
1669 cout
<< setw(10) << SrcParser
->Package() << " | "
1670 << setw(10) << SrcParser
->Version() << " | "
1671 << SrcParser
->Index().Describe(true) << endl
;
1679 // GenCaches - Call the main cache generator /*{{{*/
1680 // ---------------------------------------------------------------------
1682 bool GenCaches(CommandLine
&Cmd
)
1684 OpTextProgress
Progress(*_config
);
1687 if (List
.ReadMainList() == false)
1689 return pkgMakeStatusCache(List
,Progress
);
1692 // ShowHelp - Show a help screen /*{{{*/
1693 // ---------------------------------------------------------------------
1695 bool ShowHelp(CommandLine
&Cmd
)
1697 ioprintf(cout
,_("%s %s for %s %s compiled on %s %s\n"),PACKAGE
,VERSION
,
1698 COMMON_OS
,COMMON_CPU
,__DATE__
,__TIME__
);
1700 if (_config
->FindB("version") == true)
1704 _("Usage: apt-cache [options] command\n"
1705 " apt-cache [options] add file1 [file2 ...]\n"
1706 " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
1707 " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
1709 "apt-cache is a low-level tool used to manipulate APT's binary\n"
1710 "cache files, and query information from them\n"
1713 " add - Add a package file to the source cache\n"
1714 " gencaches - Build both the package and source cache\n"
1715 " showpkg - Show some general information for a single package\n"
1716 " showsrc - Show source records\n"
1717 " stats - Show some basic statistics\n"
1718 " dump - Show the entire file in a terse form\n"
1719 " dumpavail - Print an available file to stdout\n"
1720 " unmet - Show unmet dependencies\n"
1721 " search - Search the package list for a regex pattern\n"
1722 " show - Show a readable record for the package\n"
1723 " depends - Show raw dependency information for a package\n"
1724 " rdepends - Show reverse dependency information for a package\n"
1725 " pkgnames - List the names of all packages\n"
1726 " dotty - Generate package graphs for GraphVis\n"
1727 " xvcg - Generate package graphs for xvcg\n"
1728 " policy - Show policy settings\n"
1731 " -h This help text.\n"
1732 " -p=? The package cache.\n"
1733 " -s=? The source cache.\n"
1734 " -q Disable progress indicator.\n"
1735 " -i Show only important deps for the unmet command.\n"
1736 " -c=? Read this configuration file\n"
1737 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
1738 "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n");
1742 // CacheInitialize - Initialize things for apt-cache /*{{{*/
1743 // ---------------------------------------------------------------------
1745 void CacheInitialize()
1747 _config
->Set("quiet",0);
1748 _config
->Set("help",false);
1752 int main(int argc
,const char *argv
[])
1754 CommandLine::Args Args
[] = {
1755 {'h',"help","help",0},
1756 {'v',"version","version",0},
1757 {'p',"pkg-cache","Dir::Cache::pkgcache",CommandLine::HasArg
},
1758 {'s',"src-cache","Dir::Cache::srcpkgcache",CommandLine::HasArg
},
1759 {'q',"quiet","quiet",CommandLine::IntLevel
},
1760 {'i',"important","APT::Cache::Important",0},
1761 {'f',"full","APT::Cache::ShowFull",0},
1762 {'g',"generate","APT::Cache::Generate",0},
1763 {'a',"all-versions","APT::Cache::AllVersions",0},
1764 {'n',"names-only","APT::Cache::NamesOnly",0},
1765 {0,"all-names","APT::Cache::AllNames",0},
1766 {0,"recurse","APT::Cache::RecurseDepends",0},
1767 {'c',"config-file",0,CommandLine::ConfigFile
},
1768 {'o',"option",0,CommandLine::ArbItem
},
1769 {0,"installed","APT::Cache::Installed",0},
1771 CommandLine::Dispatch CmdsA
[] = {{"help",&ShowHelp
},
1773 {"gencaches",&GenCaches
},
1774 {"showsrc",&ShowSrcPackage
},
1776 CommandLine::Dispatch CmdsB
[] = {{"showpkg",&DumpPackage
},
1779 {"dumpavail",&DumpAvail
},
1782 {"depends",&Depends
},
1783 {"rdepends",&RDepends
},
1786 {"show",&ShowPackage
},
1787 {"pkgnames",&ShowPkgNames
},
1789 {"madison",&Madison
},
1794 // Set up gettext support
1795 setlocale(LC_ALL
,"");
1796 textdomain(PACKAGE
);
1798 // Parse the command line and initialize the package library
1799 CommandLine
CmdL(Args
,_config
);
1800 if (pkgInitConfig(*_config
) == false ||
1801 CmdL
.Parse(argc
,argv
) == false ||
1802 pkgInitSystem(*_config
,_system
) == false)
1804 _error
->DumpErrors();
1808 // See if the help should be shown
1809 if (_config
->FindB("help") == true ||
1810 CmdL
.FileSize() == 0)
1816 // Deal with stdout not being a tty
1817 if (isatty(STDOUT_FILENO
) && _config
->FindI("quiet",0) < 1)
1818 _config
->Set("quiet","1");
1820 if (CmdL
.DispatchArg(CmdsA
,false) == false && _error
->PendingError() == false)
1823 if (_config
->FindB("APT::Cache::Generate",true) == false)
1825 Map
= new MMap(*new FileFd(_config
->FindFile("Dir::Cache::pkgcache"),
1826 FileFd::ReadOnly
),MMap::Public
|MMap::ReadOnly
);
1830 // Open the cache file
1831 SrcList
= new pkgSourceList
;
1832 SrcList
->ReadMainList();
1834 // Generate it and map it
1836 pkgMakeStatusCache(*SrcList
,Prog
,&Map
,true);
1839 if (_error
->PendingError() == false)
1841 pkgCache
Cache(Map
);
1843 if (_error
->PendingError() == false)
1844 CmdL
.DispatchArg(CmdsB
);
1849 // Print any errors or warnings found during parsing
1850 if (_error
->empty() == false)
1852 bool Errors
= _error
->PendingError();
1853 _error
->DumpErrors();
1854 return Errors
== true?100:0;