]>
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 || ReadPinDir(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);
558 bool Important
= _config
->FindB("APT::Cache::Important",false);
562 DidSomething
= false;
563 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
565 if (Colours
[Pkg
->ID
] != 1)
567 Colours
[Pkg
->ID
] = 2;
570 pkgCache::VerIterator Ver
= Pkg
.VersionList();
571 if (Ver
.end() == true)
573 cout
<< '<' << Pkg
.Name() << '>' << endl
;
577 cout
<< Pkg
.Name() << endl
;
579 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
581 // Important deps only
582 if (Important
== true)
583 if (D
->Type
!= pkgCache::Dep::PreDepends
&&
584 D
->Type
!= pkgCache::Dep::Depends
)
587 pkgCache::PkgIterator Trg
= D
.TargetPkg();
589 if((Installed
&& Trg
->CurrentVer
!= 0) || !Installed
)
592 if ((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)
598 if (Trg
->VersionList
== 0)
599 cout
<< D
.DepType() << ": <" << Trg
.Name() << ">" << endl
;
601 cout
<< D
.DepType() << ": " << Trg
.Name() << endl
;
604 Colours
[D
.TargetPkg()->ID
]++;
608 // Display all solutions
609 SPtrArray
<pkgCache::Version
*> List
= D
.AllTargets();
610 pkgPrioSortList(Cache
,List
);
611 for (pkgCache::Version
**I
= List
; *I
!= 0; I
++)
613 pkgCache::VerIterator
V(Cache
,*I
);
614 if (V
!= Cache
.VerP
+ V
.ParentPkg()->VersionList
||
615 V
->ParentPkg
== D
->Package
)
617 cout
<< " " << V
.ParentPkg().Name() << endl
;
620 Colours
[D
.ParentPkg()->ID
]++;
625 while (DidSomething
== true);
630 // RDepends - Print out a reverse dependency tree - mbc /*{{{*/
631 // ---------------------------------------------------------------------
633 bool RDepends(CommandLine
&CmdL
)
635 pkgCache
&Cache
= *GCache
;
636 SPtrArray
<unsigned> Colours
= new unsigned[Cache
.Head().PackageCount
];
637 memset(Colours
,0,sizeof(*Colours
)*Cache
.Head().PackageCount
);
639 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
641 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
642 if (Pkg
.end() == true)
644 _error
->Warning(_("Unable to locate package %s"),*I
);
647 Colours
[Pkg
->ID
] = 1;
650 bool Recurse
= _config
->FindB("APT::Cache::RecurseDepends",false);
651 bool Installed
= _config
->FindB("APT::Cache::Installed",false);
655 DidSomething
= false;
656 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
658 if (Colours
[Pkg
->ID
] != 1)
660 Colours
[Pkg
->ID
] = 2;
663 pkgCache::VerIterator Ver
= Pkg
.VersionList();
664 if (Ver
.end() == true)
666 cout
<< '<' << Pkg
.Name() << '>' << endl
;
670 cout
<< Pkg
.Name() << endl
;
672 cout
<< "Reverse Depends:" << endl
;
673 for (pkgCache::DepIterator D
= Pkg
.RevDependsList(); D
.end() == false; D
++)
676 pkgCache::PkgIterator Trg
= D
.ParentPkg();
678 if((Installed
&& Trg
->CurrentVer
!= 0) || !Installed
)
681 if ((D
->CompareOp
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
)
686 if (Trg
->VersionList
== 0)
687 cout
<< D
.DepType() << ": <" << Trg
.Name() << ">" << endl
;
689 cout
<< Trg
.Name() << endl
;
692 Colours
[D
.ParentPkg()->ID
]++;
696 // Display all solutions
697 SPtrArray
<pkgCache::Version
*> List
= D
.AllTargets();
698 pkgPrioSortList(Cache
,List
);
699 for (pkgCache::Version
**I
= List
; *I
!= 0; I
++)
701 pkgCache::VerIterator
V(Cache
,*I
);
702 if (V
!= Cache
.VerP
+ V
.ParentPkg()->VersionList
||
703 V
->ParentPkg
== D
->Package
)
705 cout
<< " " << V
.ParentPkg().Name() << endl
;
708 Colours
[D
.ParentPkg()->ID
]++;
713 while (DidSomething
== true);
718 // xvcg - Generate a graph for xvcg /*{{{*/
719 // ---------------------------------------------------------------------
720 // Code contributed from Junichi Uekawa <dancer@debian.org> on 20 June 2002.
722 bool XVcg(CommandLine
&CmdL
)
724 pkgCache
&Cache
= *GCache
;
725 bool GivenOnly
= _config
->FindB("APT::Cache::GivenOnly",false);
727 /* Normal packages are boxes
728 Pure Provides are triangles
730 rhomb are missing packages*/
731 const char *Shapes
[] = {"ellipse","triangle","box","rhomb"};
733 /* Initialize the list of packages to show.
735 2 = To Show no recurse
736 3 = Emitted no recurse
739 enum States
{None
=0, ToShow
, ToShowNR
, DoneNR
, Done
};
740 enum TheFlags
{ForceNR
=(1<<0)};
741 unsigned char *Show
= new unsigned char[Cache
.Head().PackageCount
];
742 unsigned char *Flags
= new unsigned char[Cache
.Head().PackageCount
];
743 unsigned char *ShapeMap
= new unsigned char[Cache
.Head().PackageCount
];
745 // Show everything if no arguments given
746 if (CmdL
.FileList
[1] == 0)
747 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
750 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
752 memset(Flags
,0,sizeof(*Flags
)*Cache
.Head().PackageCount
);
755 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
757 if (Pkg
->VersionList
== 0)
760 if (Pkg
->ProvidesList
== 0)
761 ShapeMap
[Pkg
->ID
] = 0;
763 ShapeMap
[Pkg
->ID
] = 1;
768 if (Pkg
->ProvidesList
== 0)
769 ShapeMap
[Pkg
->ID
] = 2;
771 ShapeMap
[Pkg
->ID
] = 3;
775 // Load the list of packages from the command line into the show list
776 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
778 // Process per-package flags
783 if (P
.end()[-1] == '^')
789 if (P
.end()[-1] == ',')
793 // Locate the package
794 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(P
);
795 if (Pkg
.end() == true)
797 _error
->Warning(_("Unable to locate package %s"),*I
);
800 Show
[Pkg
->ID
] = ToShow
;
803 Flags
[Pkg
->ID
] |= ForceNR
;
807 cout
<< "graph: { title: \"packages\"" << endl
<<
808 "xmax: 700 ymax: 700 x: 30 y: 30" << endl
<<
809 "layout_downfactor: 8" << endl
;
815 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
817 // See we need to show this package
818 if (Show
[Pkg
->ID
] == None
|| Show
[Pkg
->ID
] >= DoneNR
)
821 //printf ("node: { title: \"%s\" label: \"%s\" }\n", Pkg.Name(), Pkg.Name());
824 if (Show
[Pkg
->ID
] == ToShowNR
|| (Flags
[Pkg
->ID
] & ForceNR
) == ForceNR
)
826 // Pure Provides and missing packages have no deps!
827 if (ShapeMap
[Pkg
->ID
] == 0 || ShapeMap
[Pkg
->ID
] == 1)
828 Show
[Pkg
->ID
] = Done
;
830 Show
[Pkg
->ID
] = DoneNR
;
833 Show
[Pkg
->ID
] = Done
;
836 // No deps to map out
837 if (Pkg
->VersionList
== 0 || Show
[Pkg
->ID
] == DoneNR
)
840 pkgCache::VerIterator Ver
= Pkg
.VersionList();
841 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
843 // See if anything can meet this dep
844 // Walk along the actual package providing versions
846 pkgCache::PkgIterator DPkg
= D
.TargetPkg();
847 for (pkgCache::VerIterator I
= DPkg
.VersionList();
848 I
.end() == false && Hit
== false; I
++)
850 if (Cache
.VS
->CheckDep(I
.VerStr(),D
->CompareOp
,D
.TargetVer()) == true)
854 // Follow all provides
855 for (pkgCache::PrvIterator I
= DPkg
.ProvidesList();
856 I
.end() == false && Hit
== false; I
++)
858 if (Cache
.VS
->CheckDep(I
.ProvideVersion(),D
->CompareOp
,D
.TargetVer()) == false)
863 // Only graph critical deps
864 if (D
.IsCritical() == true)
866 printf ("edge: { sourcename: \"%s\" targetname: \"%s\" class: 2 ",Pkg
.Name(), D
.TargetPkg().Name() );
868 // Colour the node for recursion
869 if (Show
[D
.TargetPkg()->ID
] <= DoneNR
)
871 /* If a conflicts does not meet anything in the database
872 then show the relation but do not recurse */
874 (D
->Type
== pkgCache::Dep::Conflicts
||
875 D
->Type
== pkgCache::Dep::DpkgBreaks
||
876 D
->Type
== pkgCache::Dep::Obsoletes
))
878 if (Show
[D
.TargetPkg()->ID
] == None
&&
879 Show
[D
.TargetPkg()->ID
] != ToShow
)
880 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
884 if (GivenOnly
== true && Show
[D
.TargetPkg()->ID
] != ToShow
)
885 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
887 Show
[D
.TargetPkg()->ID
] = ToShow
;
894 case pkgCache::Dep::Conflicts
:
895 printf("label: \"conflicts\" color: lightgreen }\n");
897 case pkgCache::Dep::DpkgBreaks
:
898 printf("label: \"breaks\" color: lightgreen }\n");
900 case pkgCache::Dep::Obsoletes
:
901 printf("label: \"obsoletes\" color: lightgreen }\n");
904 case pkgCache::Dep::PreDepends
:
905 printf("label: \"predepends\" color: blue }\n");
917 /* Draw the box colours after the fact since we can not tell what colour
918 they should be until everything is finished drawing */
919 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
921 if (Show
[Pkg
->ID
] < DoneNR
)
924 if (Show
[Pkg
->ID
] == DoneNR
)
925 printf("node: { title: \"%s\" label: \"%s\" color: orange shape: %s }\n", Pkg
.Name(), Pkg
.Name(),
926 Shapes
[ShapeMap
[Pkg
->ID
]]);
928 printf("node: { title: \"%s\" label: \"%s\" shape: %s }\n", Pkg
.Name(), Pkg
.Name(),
929 Shapes
[ShapeMap
[Pkg
->ID
]]);
941 // Dotty - Generate a graph for Dotty /*{{{*/
942 // ---------------------------------------------------------------------
943 /* Dotty is the graphvis program for generating graphs. It is a fairly
944 simple queuing algorithm that just writes dependencies and nodes.
945 http://www.research.att.com/sw/tools/graphviz/ */
946 bool Dotty(CommandLine
&CmdL
)
948 pkgCache
&Cache
= *GCache
;
949 bool GivenOnly
= _config
->FindB("APT::Cache::GivenOnly",false);
951 /* Normal packages are boxes
952 Pure Provides are triangles
954 Hexagons are missing packages*/
955 const char *Shapes
[] = {"hexagon","triangle","box","diamond"};
957 /* Initialize the list of packages to show.
959 2 = To Show no recurse
960 3 = Emitted no recurse
963 enum States
{None
=0, ToShow
, ToShowNR
, DoneNR
, Done
};
964 enum TheFlags
{ForceNR
=(1<<0)};
965 unsigned char *Show
= new unsigned char[Cache
.Head().PackageCount
];
966 unsigned char *Flags
= new unsigned char[Cache
.Head().PackageCount
];
967 unsigned char *ShapeMap
= new unsigned char[Cache
.Head().PackageCount
];
969 // Show everything if no arguments given
970 if (CmdL
.FileList
[1] == 0)
971 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
974 for (unsigned long I
= 0; I
!= Cache
.Head().PackageCount
; I
++)
976 memset(Flags
,0,sizeof(*Flags
)*Cache
.Head().PackageCount
);
979 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
981 if (Pkg
->VersionList
== 0)
984 if (Pkg
->ProvidesList
== 0)
985 ShapeMap
[Pkg
->ID
] = 0;
987 ShapeMap
[Pkg
->ID
] = 1;
992 if (Pkg
->ProvidesList
== 0)
993 ShapeMap
[Pkg
->ID
] = 2;
995 ShapeMap
[Pkg
->ID
] = 3;
999 // Load the list of packages from the command line into the show list
1000 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1002 // Process per-package flags
1007 if (P
.end()[-1] == '^')
1013 if (P
.end()[-1] == ',')
1017 // Locate the package
1018 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(P
);
1019 if (Pkg
.end() == true)
1021 _error
->Warning(_("Unable to locate package %s"),*I
);
1024 Show
[Pkg
->ID
] = ToShow
;
1027 Flags
[Pkg
->ID
] |= ForceNR
;
1031 printf("digraph packages {\n");
1032 printf("concentrate=true;\n");
1033 printf("size=\"30,40\";\n");
1039 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
1041 // See we need to show this package
1042 if (Show
[Pkg
->ID
] == None
|| Show
[Pkg
->ID
] >= DoneNR
)
1046 if (Show
[Pkg
->ID
] == ToShowNR
|| (Flags
[Pkg
->ID
] & ForceNR
) == ForceNR
)
1048 // Pure Provides and missing packages have no deps!
1049 if (ShapeMap
[Pkg
->ID
] == 0 || ShapeMap
[Pkg
->ID
] == 1)
1050 Show
[Pkg
->ID
] = Done
;
1052 Show
[Pkg
->ID
] = DoneNR
;
1055 Show
[Pkg
->ID
] = Done
;
1058 // No deps to map out
1059 if (Pkg
->VersionList
== 0 || Show
[Pkg
->ID
] == DoneNR
)
1062 pkgCache::VerIterator Ver
= Pkg
.VersionList();
1063 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false; D
++)
1065 // See if anything can meet this dep
1066 // Walk along the actual package providing versions
1068 pkgCache::PkgIterator DPkg
= D
.TargetPkg();
1069 for (pkgCache::VerIterator I
= DPkg
.VersionList();
1070 I
.end() == false && Hit
== false; I
++)
1072 if (Cache
.VS
->CheckDep(I
.VerStr(),D
->CompareOp
,D
.TargetVer()) == true)
1076 // Follow all provides
1077 for (pkgCache::PrvIterator I
= DPkg
.ProvidesList();
1078 I
.end() == false && Hit
== false; I
++)
1080 if (Cache
.VS
->CheckDep(I
.ProvideVersion(),D
->CompareOp
,D
.TargetVer()) == false)
1084 // Only graph critical deps
1085 if (D
.IsCritical() == true)
1087 printf("\"%s\" -> \"%s\"",Pkg
.Name(),D
.TargetPkg().Name());
1089 // Colour the node for recursion
1090 if (Show
[D
.TargetPkg()->ID
] <= DoneNR
)
1092 /* If a conflicts does not meet anything in the database
1093 then show the relation but do not recurse */
1095 (D
->Type
== pkgCache::Dep::Conflicts
||
1096 D
->Type
== pkgCache::Dep::Obsoletes
))
1098 if (Show
[D
.TargetPkg()->ID
] == None
&&
1099 Show
[D
.TargetPkg()->ID
] != ToShow
)
1100 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
1104 if (GivenOnly
== true && Show
[D
.TargetPkg()->ID
] != ToShow
)
1105 Show
[D
.TargetPkg()->ID
] = ToShowNR
;
1107 Show
[D
.TargetPkg()->ID
] = ToShow
;
1114 case pkgCache::Dep::Conflicts
:
1115 case pkgCache::Dep::Obsoletes
:
1116 printf("[color=springgreen];\n");
1119 case pkgCache::Dep::PreDepends
:
1120 printf("[color=blue];\n");
1132 /* Draw the box colours after the fact since we can not tell what colour
1133 they should be until everything is finished drawing */
1134 for (pkgCache::PkgIterator Pkg
= Cache
.PkgBegin(); Pkg
.end() == false; Pkg
++)
1136 if (Show
[Pkg
->ID
] < DoneNR
)
1139 // Orange box for early recursion stoppage
1140 if (Show
[Pkg
->ID
] == DoneNR
)
1141 printf("\"%s\" [color=orange,shape=%s];\n",Pkg
.Name(),
1142 Shapes
[ShapeMap
[Pkg
->ID
]]);
1144 printf("\"%s\" [shape=%s];\n",Pkg
.Name(),
1145 Shapes
[ShapeMap
[Pkg
->ID
]]);
1152 // DoAdd - Perform an adding operation /*{{{*/
1153 // ---------------------------------------------------------------------
1155 bool DoAdd(CommandLine
&CmdL
)
1157 return _error
->Error("Unimplemented");
1159 // Make sure there is at least one argument
1160 if (CmdL
.FileSize() <= 1)
1161 return _error
->Error("You must give at least one file name");
1164 FileFd
CacheF(_config
->FindFile("Dir::Cache::pkgcache"),FileFd::WriteAny
);
1165 if (_error
->PendingError() == true)
1168 DynamicMMap
Map(CacheF
,MMap::Public
);
1169 if (_error
->PendingError() == true)
1172 OpTextProgress
Progress(*_config
);
1173 pkgCacheGenerator
Gen(Map
,Progress
);
1174 if (_error
->PendingError() == true)
1177 unsigned long Length
= CmdL
.FileSize() - 1;
1178 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1180 Progress
.OverallProgress(I
- CmdL
.FileList
,Length
,1,"Generating cache");
1181 Progress
.SubProgress(Length
);
1184 FileFd
TagF(*I
,FileFd::ReadOnly
);
1185 debListParser
Parser(TagF
);
1186 if (_error
->PendingError() == true)
1187 return _error
->Error("Problem opening %s",*I
);
1189 if (Gen
.SelectFile(*I
,"") == false)
1190 return _error
->Error("Problem with SelectFile");
1192 if (Gen
.MergeList(Parser
) == false)
1193 return _error
->Error("Problem with MergeList");
1197 GCache
= &Gen
.GetCache();
1204 // DisplayRecord - Displays the complete record for the package /*{{{*/
1205 // ---------------------------------------------------------------------
1206 /* This displays the package record from the proper package index file.
1207 It is not used by DumpAvail for performance reasons. */
1208 bool DisplayRecord(pkgCache::VerIterator V
)
1210 // Find an appropriate file
1211 pkgCache::VerFileIterator Vf
= V
.FileList();
1212 for (; Vf
.end() == false; Vf
++)
1213 if ((Vf
.File()->Flags
& pkgCache::Flag::NotSource
) == 0)
1215 if (Vf
.end() == true)
1218 // Check and load the package list file
1219 pkgCache::PkgFileIterator I
= Vf
.File();
1220 if (I
.IsOk() == false)
1221 return _error
->Error(_("Package file %s is out of sync."),I
.FileName());
1223 FileFd
PkgF(I
.FileName(),FileFd::ReadOnly
);
1224 if (_error
->PendingError() == true)
1228 unsigned char *Buffer
= new unsigned char[GCache
->HeaderP
->MaxVerFileSize
+1];
1229 Buffer
[V
.FileList()->Size
] = '\n';
1230 if (PkgF
.Seek(V
.FileList()->Offset
) == false ||
1231 PkgF
.Read(Buffer
,V
.FileList()->Size
) == false)
1237 // Get a pointer to start of Description field
1238 const unsigned char *DescP
= (unsigned char*)strstr((char*)Buffer
, "Description:");
1240 // Write all but Description
1241 if (fwrite(Buffer
,1,DescP
- Buffer
,stdout
) < (size_t)(DescP
- Buffer
))
1247 // Show the right description
1248 pkgRecords
Recs(*GCache
);
1249 pkgCache::DescIterator Desc
= V
.TranslatedDescription();
1250 pkgRecords::Parser
&P
= Recs
.Lookup(Desc
.FileList());
1251 cout
<< "Description" << ( (strcmp(Desc
.LanguageCode(),"") != 0) ? "-" : "" ) << Desc
.LanguageCode() << ": " << P
.LongDesc();
1253 // Find the first field after the description (if there is any)
1254 for(DescP
++;DescP
!= &Buffer
[V
.FileList()->Size
];DescP
++)
1256 if(*DescP
== '\n' && *(DescP
+1) != ' ')
1258 // write the rest of the buffer
1259 const unsigned char *end
=&Buffer
[V
.FileList()->Size
];
1260 if (fwrite(DescP
,1,end
-DescP
,stdout
) < (size_t)(end
-DescP
))
1269 // write a final newline (after the description)
1276 // Search - Perform a search /*{{{*/
1277 // ---------------------------------------------------------------------
1278 /* This searches the package names and package descriptions for a pattern */
1281 pkgCache::DescFile
*Df
;
1285 // Search - Perform a search /*{{{*/
1286 // ---------------------------------------------------------------------
1287 /* This searches the package names and package descriptions for a pattern */
1288 bool Search(CommandLine
&CmdL
)
1290 pkgCache
&Cache
= *GCache
;
1291 bool ShowFull
= _config
->FindB("APT::Cache::ShowFull",false);
1292 bool NamesOnly
= _config
->FindB("APT::Cache::NamesOnly",false);
1293 unsigned NumPatterns
= CmdL
.FileSize() -1;
1295 pkgDepCache::Policy Plcy
;
1297 // Make sure there is at least one argument
1298 if (NumPatterns
< 1)
1299 return _error
->Error(_("You must give exactly one pattern"));
1301 // Compile the regex pattern
1302 regex_t
*Patterns
= new regex_t
[NumPatterns
];
1303 memset(Patterns
,0,sizeof(*Patterns
)*NumPatterns
);
1304 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1306 if (regcomp(&Patterns
[I
],CmdL
.FileList
[I
+1],REG_EXTENDED
| REG_ICASE
|
1310 regfree(&Patterns
[I
]);
1311 return _error
->Error("Regex compilation error");
1315 // Create the text record parser
1316 pkgRecords
Recs(Cache
);
1317 if (_error
->PendingError() == true)
1319 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1320 regfree(&Patterns
[I
]);
1324 ExDescFile
*DFList
= new ExDescFile
[Cache
.HeaderP
->PackageCount
+1];
1325 memset(DFList
,0,sizeof(*DFList
)*Cache
.HeaderP
->PackageCount
+1);
1327 // Map versions that we want to write out onto the VerList array.
1328 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
1330 DFList
[P
->ID
].NameMatch
= NumPatterns
!= 0;
1331 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1333 if (regexec(&Patterns
[I
],P
.Name(),0,0,0) == 0)
1334 DFList
[P
->ID
].NameMatch
&= true;
1336 DFList
[P
->ID
].NameMatch
= false;
1339 // Doing names only, drop any that dont match..
1340 if (NamesOnly
== true && DFList
[P
->ID
].NameMatch
== false)
1343 // Find the proper version to use.
1344 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(P
);
1345 if (V
.end() == false)
1346 DFList
[P
->ID
].Df
= V
.DescriptionList().FileList();
1349 // Include all the packages that provide matching names too
1350 for (pkgCache::PkgIterator P
= Cache
.PkgBegin(); P
.end() == false; P
++)
1352 if (DFList
[P
->ID
].NameMatch
== false)
1355 for (pkgCache::PrvIterator Prv
= P
.ProvidesList() ; Prv
.end() == false; Prv
++)
1357 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Prv
.OwnerPkg());
1358 if (V
.end() == false)
1360 DFList
[Prv
.OwnerPkg()->ID
].Df
= V
.DescriptionList().FileList();
1361 DFList
[Prv
.OwnerPkg()->ID
].NameMatch
= true;
1366 LocalitySort(&DFList
->Df
,Cache
.HeaderP
->PackageCount
,sizeof(*DFList
));
1368 // Iterate over all the version records and check them
1369 for (ExDescFile
*J
= DFList
; J
->Df
!= 0; J
++)
1371 pkgRecords::Parser
&P
= Recs
.Lookup(pkgCache::DescFileIterator(Cache
,J
->Df
));
1374 if (J
->NameMatch
== false)
1376 string LongDesc
= P
.LongDesc();
1377 Match
= NumPatterns
!= 0;
1378 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1380 if (regexec(&Patterns
[I
],LongDesc
.c_str(),0,0,0) == 0)
1389 if (ShowFull
== true)
1393 P
.GetRec(Start
,End
);
1394 fwrite(Start
,End
-Start
,1,stdout
);
1398 printf("%s - %s\n",P
.Name().c_str(),P
.ShortDesc().c_str());
1403 for (unsigned I
= 0; I
!= NumPatterns
; I
++)
1404 regfree(&Patterns
[I
]);
1406 return _error
->Error("Write to stdout failed");
1410 // ShowPackage - Dump the package record to the screen /*{{{*/
1411 // ---------------------------------------------------------------------
1413 bool ShowPackage(CommandLine
&CmdL
)
1415 pkgCache
&Cache
= *GCache
;
1416 pkgDepCache::Policy Plcy
;
1420 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1422 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1423 if (Pkg
.end() == true)
1425 _error
->Warning(_("Unable to locate package %s"),*I
);
1431 // Find the proper version to use.
1432 if (_config
->FindB("APT::Cache::AllVersions","true") == true)
1434 pkgCache::VerIterator V
;
1435 for (V
= Pkg
.VersionList(); V
.end() == false; V
++)
1437 if (DisplayRecord(V
) == false)
1443 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Pkg
);
1444 if (V
.end() == true || V
.FileList().end() == true)
1446 if (DisplayRecord(V
) == false)
1453 return _error
->Error(_("No packages found"));
1456 // ShowPkgNames - Show package names /*{{{*/
1457 // ---------------------------------------------------------------------
1458 /* This does a prefix match on the first argument */
1459 bool ShowPkgNames(CommandLine
&CmdL
)
1461 pkgCache
&Cache
= *GCache
;
1462 pkgCache::PkgIterator I
= Cache
.PkgBegin();
1463 bool All
= _config
->FindB("APT::Cache::AllNames","false");
1465 if (CmdL
.FileList
[1] != 0)
1467 for (;I
.end() != true; I
++)
1469 if (All
== false && I
->VersionList
== 0)
1472 if (strncmp(I
.Name(),CmdL
.FileList
[1],strlen(CmdL
.FileList
[1])) == 0)
1473 cout
<< I
.Name() << endl
;
1480 for (;I
.end() != true; I
++)
1482 if (All
== false && I
->VersionList
== 0)
1484 cout
<< I
.Name() << endl
;
1490 // ShowSrcPackage - Show source package records /*{{{*/
1491 // ---------------------------------------------------------------------
1493 bool ShowSrcPackage(CommandLine
&CmdL
)
1496 List
.ReadMainList();
1498 // Create the text record parsers
1499 pkgSrcRecords
SrcRecs(List
);
1500 if (_error
->PendingError() == true)
1503 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1507 pkgSrcRecords::Parser
*Parse
;
1508 while ((Parse
= SrcRecs
.Find(*I
,false)) != 0)
1509 cout
<< Parse
->AsStr() << endl
;;
1514 // Policy - Show the results of the preferences file /*{{{*/
1515 // ---------------------------------------------------------------------
1517 bool Policy(CommandLine
&CmdL
)
1520 return _error
->Error("Generate must be enabled for this function");
1522 pkgCache
&Cache
= *GCache
;
1523 pkgPolicy
Plcy(&Cache
);
1524 if (ReadPinFile(Plcy
) == false || ReadPinDir(Plcy
) == false)
1527 // Print out all of the package files
1528 if (CmdL
.FileList
[1] == 0)
1530 cout
<< _("Package files:") << endl
;
1531 for (pkgCache::PkgFileIterator F
= Cache
.FileBegin(); F
.end() == false; F
++)
1533 // Locate the associated index files so we can derive a description
1535 if (SrcList
->FindIndex(F
,Indx
) == false &&
1536 _system
->FindIndex(F
,Indx
) == false)
1537 return _error
->Error(_("Cache is out of sync, can't x-ref a package file"));
1540 Plcy
.GetPriority(F
),Indx
->Describe(true).c_str());
1542 // Print the reference information for the package
1543 string Str
= F
.RelStr();
1544 if (Str
.empty() == false)
1545 printf(" release %s\n",F
.RelStr().c_str());
1546 if (F
.Site() != 0 && F
.Site()[0] != 0)
1547 printf(" origin %s\n",F
.Site());
1550 // Show any packages have explicit pins
1551 cout
<< _("Pinned packages:") << endl
;
1552 pkgCache::PkgIterator I
= Cache
.PkgBegin();
1553 for (;I
.end() != true; I
++)
1555 if (Plcy
.GetPriority(I
) == 0)
1558 // Print the package name and the version we are forcing to
1559 cout
<< " " << I
.Name() << " -> ";
1561 pkgCache::VerIterator V
= Plcy
.GetMatch(I
);
1562 if (V
.end() == true)
1563 cout
<< _("(not found)") << endl
;
1565 cout
<< V
.VerStr() << endl
;
1571 // Print out detailed information for each package
1572 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1574 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1575 if (Pkg
.end() == true)
1577 _error
->Warning(_("Unable to locate package %s"),*I
);
1581 cout
<< Pkg
.Name() << ":" << endl
;
1583 // Installed version
1584 cout
<< _(" Installed: ");
1585 if (Pkg
->CurrentVer
== 0)
1586 cout
<< _("(none)") << endl
;
1588 cout
<< Pkg
.CurrentVer().VerStr() << endl
;
1590 // Candidate Version
1591 cout
<< _(" Candidate: ");
1592 pkgCache::VerIterator V
= Plcy
.GetCandidateVer(Pkg
);
1593 if (V
.end() == true)
1594 cout
<< _("(none)") << endl
;
1596 cout
<< V
.VerStr() << endl
;
1599 if (Plcy
.GetPriority(Pkg
) != 0)
1601 cout
<< _(" Package pin: ");
1602 V
= Plcy
.GetMatch(Pkg
);
1603 if (V
.end() == true)
1604 cout
<< _("(not found)") << endl
;
1606 cout
<< V
.VerStr() << endl
;
1609 // Show the priority tables
1610 cout
<< _(" Version table:") << endl
;
1611 for (V
= Pkg
.VersionList(); V
.end() == false; V
++)
1613 if (Pkg
.CurrentVer() == V
)
1614 cout
<< " *** " << V
.VerStr();
1616 cout
<< " " << V
.VerStr();
1617 cout
<< " " << Plcy
.GetPriority(Pkg
) << endl
;
1618 for (pkgCache::VerFileIterator VF
= V
.FileList(); VF
.end() == false; VF
++)
1620 // Locate the associated index files so we can derive a description
1622 if (SrcList
->FindIndex(VF
.File(),Indx
) == false &&
1623 _system
->FindIndex(VF
.File(),Indx
) == false)
1624 return _error
->Error(_("Cache is out of sync, can't x-ref a package file"));
1625 printf(_(" %4i %s\n"),Plcy
.GetPriority(VF
.File()),
1626 Indx
->Describe(true).c_str());
1634 // Madison - Look a bit like katie's madison /*{{{*/
1635 // ---------------------------------------------------------------------
1637 bool Madison(CommandLine
&CmdL
)
1640 return _error
->Error("Generate must be enabled for this function");
1642 SrcList
->ReadMainList();
1644 pkgCache
&Cache
= *GCache
;
1646 // Create the src text record parsers and ignore errors about missing
1647 // deb-src lines that are generated from pkgSrcRecords::pkgSrcRecords
1648 pkgSrcRecords
SrcRecs(*SrcList
);
1649 if (_error
->PendingError() == true)
1652 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
1654 pkgCache::PkgIterator Pkg
= Cache
.FindPkg(*I
);
1656 if (Pkg
.end() == false)
1658 for (pkgCache::VerIterator V
= Pkg
.VersionList(); V
.end() == false; V
++)
1660 for (pkgCache::VerFileIterator VF
= V
.FileList(); VF
.end() == false; VF
++)
1662 // This might be nice, but wouldn't uniquely identify the source -mdz
1663 // if (VF.File().Archive() != 0)
1665 // cout << setw(10) << Pkg.Name() << " | " << setw(10) << V.VerStr() << " | "
1666 // << VF.File().Archive() << endl;
1669 // Locate the associated index files so we can derive a description
1670 for (pkgSourceList::const_iterator S
= SrcList
->begin(); S
!= SrcList
->end(); S
++)
1672 vector
<pkgIndexFile
*> *Indexes
= (*S
)->GetIndexFiles();
1673 for (vector
<pkgIndexFile
*>::const_iterator IF
= Indexes
->begin();
1674 IF
!= Indexes
->end(); IF
++)
1676 if ((*IF
)->FindInCache(*(VF
.File().Cache())) == VF
.File())
1678 cout
<< setw(10) << Pkg
.Name() << " | " << setw(10) << V
.VerStr() << " | "
1679 << (*IF
)->Describe(true) << endl
;
1689 pkgSrcRecords::Parser
*SrcParser
;
1690 while ((SrcParser
= SrcRecs
.Find(*I
,false)) != 0)
1692 // Maybe support Release info here too eventually
1693 cout
<< setw(10) << SrcParser
->Package() << " | "
1694 << setw(10) << SrcParser
->Version() << " | "
1695 << SrcParser
->Index().Describe(true) << endl
;
1702 // GenCaches - Call the main cache generator /*{{{*/
1703 // ---------------------------------------------------------------------
1705 bool GenCaches(CommandLine
&Cmd
)
1707 OpTextProgress
Progress(*_config
);
1710 if (List
.ReadMainList() == false)
1712 return pkgMakeStatusCache(List
,Progress
);
1715 // ShowHelp - Show a help screen /*{{{*/
1716 // ---------------------------------------------------------------------
1718 bool ShowHelp(CommandLine
&Cmd
)
1720 ioprintf(cout
,_("%s %s for %s compiled on %s %s\n"),PACKAGE
,VERSION
,
1721 COMMON_ARCH
,__DATE__
,__TIME__
);
1723 if (_config
->FindB("version") == true)
1727 _("Usage: apt-cache [options] command\n"
1728 " apt-cache [options] add file1 [file2 ...]\n"
1729 " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
1730 " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
1732 "apt-cache is a low-level tool used to manipulate APT's binary\n"
1733 "cache files, and query information from them\n"
1736 " add - Add a package file to the source cache\n"
1737 " gencaches - Build both the package and source cache\n"
1738 " showpkg - Show some general information for a single package\n"
1739 " showsrc - Show source records\n"
1740 " stats - Show some basic statistics\n"
1741 " dump - Show the entire file in a terse form\n"
1742 " dumpavail - Print an available file to stdout\n"
1743 " unmet - Show unmet dependencies\n"
1744 " search - Search the package list for a regex pattern\n"
1745 " show - Show a readable record for the package\n"
1746 " depends - Show raw dependency information for a package\n"
1747 " rdepends - Show reverse dependency information for a package\n"
1748 " pkgnames - List the names of all packages in the system\n"
1749 " dotty - Generate package graphs for GraphViz\n"
1750 " xvcg - Generate package graphs for xvcg\n"
1751 " policy - Show policy settings\n"
1754 " -h This help text.\n"
1755 " -p=? The package cache.\n"
1756 " -s=? The source cache.\n"
1757 " -q Disable progress indicator.\n"
1758 " -i Show only important deps for the unmet command.\n"
1759 " -c=? Read this configuration file\n"
1760 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
1761 "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n");
1765 // CacheInitialize - Initialize things for apt-cache /*{{{*/
1766 // ---------------------------------------------------------------------
1768 void CacheInitialize()
1770 _config
->Set("quiet",0);
1771 _config
->Set("help",false);
1774 int main(int argc
,const char *argv
[]) /*{{{*/
1776 CommandLine::Args Args
[] = {
1777 {'h',"help","help",0},
1778 {'v',"version","version",0},
1779 {'p',"pkg-cache","Dir::Cache::pkgcache",CommandLine::HasArg
},
1780 {'s',"src-cache","Dir::Cache::srcpkgcache",CommandLine::HasArg
},
1781 {'q',"quiet","quiet",CommandLine::IntLevel
},
1782 {'i',"important","APT::Cache::Important",0},
1783 {'f',"full","APT::Cache::ShowFull",0},
1784 {'g',"generate","APT::Cache::Generate",0},
1785 {'a',"all-versions","APT::Cache::AllVersions",0},
1786 {'n',"names-only","APT::Cache::NamesOnly",0},
1787 {0,"all-names","APT::Cache::AllNames",0},
1788 {0,"recurse","APT::Cache::RecurseDepends",0},
1789 {'c',"config-file",0,CommandLine::ConfigFile
},
1790 {'o',"option",0,CommandLine::ArbItem
},
1791 {0,"installed","APT::Cache::Installed",0},
1793 CommandLine::Dispatch CmdsA
[] = {{"help",&ShowHelp
},
1795 {"gencaches",&GenCaches
},
1796 {"showsrc",&ShowSrcPackage
},
1798 CommandLine::Dispatch CmdsB
[] = {{"showpkg",&DumpPackage
},
1801 {"dumpavail",&DumpAvail
},
1804 {"depends",&Depends
},
1805 {"rdepends",&RDepends
},
1808 {"show",&ShowPackage
},
1809 {"pkgnames",&ShowPkgNames
},
1811 {"madison",&Madison
},
1816 // Set up gettext support
1817 setlocale(LC_ALL
,"");
1818 textdomain(PACKAGE
);
1820 // Parse the command line and initialize the package library
1821 CommandLine
CmdL(Args
,_config
);
1822 if (pkgInitConfig(*_config
) == false ||
1823 CmdL
.Parse(argc
,argv
) == false ||
1824 pkgInitSystem(*_config
,_system
) == false)
1826 _error
->DumpErrors();
1830 // See if the help should be shown
1831 if (_config
->FindB("help") == true ||
1832 CmdL
.FileSize() == 0)
1838 // Deal with stdout not being a tty
1839 if (isatty(STDOUT_FILENO
) && _config
->FindI("quiet",0) < 1)
1840 _config
->Set("quiet","1");
1842 if (CmdL
.DispatchArg(CmdsA
,false) == false && _error
->PendingError() == false)
1845 if (_config
->FindB("APT::Cache::Generate",true) == false)
1847 Map
= new MMap(*new FileFd(_config
->FindFile("Dir::Cache::pkgcache"),
1848 FileFd::ReadOnly
),MMap::Public
|MMap::ReadOnly
);
1852 // Open the cache file
1853 SrcList
= new pkgSourceList
;
1854 SrcList
->ReadMainList();
1856 // Generate it and map it
1858 pkgMakeStatusCache(*SrcList
,Prog
,&Map
,true);
1861 if (_error
->PendingError() == false)
1863 pkgCache
Cache(Map
);
1865 if (_error
->PendingError() == false)
1866 CmdL
.DispatchArg(CmdsB
);
1871 // Print any errors or warnings found during parsing
1872 if (_error
->empty() == false)
1874 bool Errors
= _error
->PendingError();
1875 _error
->DumpErrors();
1876 return Errors
== true?100:0;