1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-get.cc,v 1.156 2004/08/28 01:05:16 mdz Exp $
4 /* ######################################################################
6 apt-get - Cover for dpkg
8 This is an allout cover for dpkg implementing a safer front end. It is
9 based largely on libapt-pkg.
11 The syntax is different,
12 apt-get [opt] command [things]
14 update - Resyncronize the package files from their sources
15 upgrade - Smart-Download the newest versions of all packages
16 dselect-upgrade - Follows dselect's changes to the Status: field
17 and installes new and removes old packages
18 dist-upgrade - Powerfull upgrader designed to handle the issues with
20 install - Download and install a given package (by name, not by .deb)
21 check - Update the package cache and check for broken packages
22 clean - Erase the .debs downloaded to /var/cache/apt/archives and
25 ##################################################################### */
27 // Include Files /*{{{*/
30 #include <apt-pkg/aptconfiguration.h>
31 #include <apt-pkg/error.h>
32 #include <apt-pkg/cmndline.h>
33 #include <apt-pkg/init.h>
34 #include <apt-pkg/depcache.h>
35 #include <apt-pkg/sourcelist.h>
36 #include <apt-pkg/algorithms.h>
37 #include <apt-pkg/acquire-item.h>
38 #include <apt-pkg/strutl.h>
39 #include <apt-pkg/fileutl.h>
40 #include <apt-pkg/clean.h>
41 #include <apt-pkg/srcrecords.h>
42 #include <apt-pkg/version.h>
43 #include <apt-pkg/cachefile.h>
44 #include <apt-pkg/cacheset.h>
45 #include <apt-pkg/sptr.h>
46 #include <apt-pkg/md5.h>
47 #include <apt-pkg/versionmatch.h>
48 #include <apt-pkg/progress.h>
49 #include <apt-pkg/pkgsystem.h>
50 #include <apt-pkg/pkgrecords.h>
51 #include <apt-pkg/indexfile.h>
53 #include "acqprogress.h"
60 #include <sys/ioctl.h>
62 #include <sys/statfs.h>
63 #include <sys/statvfs.h>
75 #define RAMFS_MAGIC 0x858458f6
82 ofstream
devnull("/dev/null");
83 unsigned int ScreenWidth
= 80 - 1; /* - 1 for the cursor */
85 // class CacheFile - Cover class for some dependency cache functions /*{{{*/
86 // ---------------------------------------------------------------------
88 class CacheFile
: public pkgCacheFile
90 static pkgCache
*SortCache
;
91 static int NameComp(const void *a
,const void *b
);
94 pkgCache::Package
**List
;
97 bool CheckDeps(bool AllowBroken
= false);
98 bool BuildCaches(bool WithLock
= true)
100 OpTextProgress
Prog(*_config
);
101 if (pkgCacheFile::BuildCaches(&Prog
,WithLock
) == false)
105 bool Open(bool WithLock
= true)
107 OpTextProgress
Prog(*_config
);
108 if (pkgCacheFile::Open(&Prog
,WithLock
) == false)
114 bool OpenForInstall()
116 if (_config
->FindB("APT::Get::Print-URIs") == true)
121 CacheFile() : List(0) {};
128 // YnPrompt - Yes No Prompt. /*{{{*/
129 // ---------------------------------------------------------------------
130 /* Returns true on a Yes.*/
131 bool YnPrompt(bool Default
=true)
133 if (_config
->FindB("APT::Get::Assume-Yes",false) == true)
135 c1out
<< _("Y") << endl
;
138 else if (_config
->FindB("APT::Get::Assume-No",false) == true)
140 c1out
<< _("N") << endl
;
144 char response
[1024] = "";
145 cin
.getline(response
, sizeof(response
));
150 if (strlen(response
) == 0)
156 Res
= regcomp(&Pattern
, nl_langinfo(YESEXPR
),
157 REG_EXTENDED
|REG_ICASE
|REG_NOSUB
);
161 regerror(Res
,&Pattern
,Error
,sizeof(Error
));
162 return _error
->Error(_("Regex compilation error - %s"),Error
);
165 Res
= regexec(&Pattern
, response
, 0, NULL
, 0);
171 // AnalPrompt - Annoying Yes No Prompt. /*{{{*/
172 // ---------------------------------------------------------------------
173 /* Returns true on a Yes.*/
174 bool AnalPrompt(const char *Text
)
177 cin
.getline(Buf
,sizeof(Buf
));
178 if (strcmp(Buf
,Text
) == 0)
183 // ShowList - Show a list /*{{{*/
184 // ---------------------------------------------------------------------
185 /* This prints out a string of space separated words with a title and
186 a two space indent line wraped to the current screen width. */
187 bool ShowList(ostream
&out
,string Title
,string List
,string VersionsList
)
189 if (List
.empty() == true)
191 // trim trailing space
192 int NonSpace
= List
.find_last_not_of(' ');
195 List
= List
.erase(NonSpace
+ 1);
196 if (List
.empty() == true)
200 // Acount for the leading space
201 int ScreenWidth
= ::ScreenWidth
- 3;
203 out
<< Title
<< endl
;
204 string::size_type Start
= 0;
205 string::size_type VersionsStart
= 0;
206 while (Start
< List
.size())
208 if(_config
->FindB("APT::Get::Show-Versions",false) == true &&
209 VersionsList
.size() > 0) {
210 string::size_type End
;
211 string::size_type VersionsEnd
;
213 End
= List
.find(' ',Start
);
214 VersionsEnd
= VersionsList
.find('\n', VersionsStart
);
216 out
<< " " << string(List
,Start
,End
- Start
) << " (" <<
217 string(VersionsList
,VersionsStart
,VersionsEnd
- VersionsStart
) <<
220 if (End
== string::npos
|| End
< Start
)
221 End
= Start
+ ScreenWidth
;
224 VersionsStart
= VersionsEnd
+ 1;
226 string::size_type End
;
228 if (Start
+ ScreenWidth
>= List
.size())
231 End
= List
.rfind(' ',Start
+ScreenWidth
);
233 if (End
== string::npos
|| End
< Start
)
234 End
= Start
+ ScreenWidth
;
235 out
<< " " << string(List
,Start
,End
- Start
) << endl
;
243 // ShowBroken - Debugging aide /*{{{*/
244 // ---------------------------------------------------------------------
245 /* This prints out the names of all the packages that are broken along
246 with the name of each each broken dependency and a quite version
249 The output looks like:
250 The following packages have unmet dependencies:
251 exim: Depends: libc6 (>= 2.1.94) but 2.1.3-10 is to be installed
252 Depends: libldap2 (>= 2.0.2-2) but it is not going to be installed
253 Depends: libsasl7 but it is not going to be installed
255 void ShowBroken(ostream
&out
,CacheFile
&Cache
,bool Now
)
257 if (Cache
->BrokenCount() == 0)
260 out
<< _("The following packages have unmet dependencies:") << endl
;
261 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
263 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
267 if (Cache
[I
].NowBroken() == false)
272 if (Cache
[I
].InstBroken() == false)
276 // Print out each package and the failed dependencies
277 out
<< " " << I
.FullName(true) << " :";
278 unsigned const Indent
= I
.FullName(true).size() + 3;
280 pkgCache::VerIterator Ver
;
283 Ver
= I
.CurrentVer();
285 Ver
= Cache
[I
].InstVerIter(Cache
);
287 if (Ver
.end() == true)
293 for (pkgCache::DepIterator D
= Ver
.DependsList(); D
.end() == false;)
295 // Compute a single dependency element (glob or)
296 pkgCache::DepIterator Start
;
297 pkgCache::DepIterator End
;
298 D
.GlobOr(Start
,End
); // advances D
300 if (Cache
->IsImportantDep(End
) == false)
305 if ((Cache
[End
] & pkgDepCache::DepGNow
) == pkgDepCache::DepGNow
)
310 if ((Cache
[End
] & pkgDepCache::DepGInstall
) == pkgDepCache::DepGInstall
)
318 for (unsigned J
= 0; J
!= Indent
; J
++)
322 if (FirstOr
== false)
324 for (unsigned J
= 0; J
!= strlen(End
.DepType()) + 3; J
++)
328 out
<< ' ' << End
.DepType() << ": ";
331 out
<< Start
.TargetPkg().FullName(true);
333 // Show a quick summary of the version requirements
334 if (Start
.TargetVer() != 0)
335 out
<< " (" << Start
.CompType() << " " << Start
.TargetVer() << ")";
337 /* Show a summary of the target package if possible. In the case
338 of virtual packages we show nothing */
339 pkgCache::PkgIterator Targ
= Start
.TargetPkg();
340 if (Targ
->ProvidesList
== 0)
343 pkgCache::VerIterator Ver
= Cache
[Targ
].InstVerIter(Cache
);
345 Ver
= Targ
.CurrentVer();
347 if (Ver
.end() == false)
350 ioprintf(out
,_("but %s is installed"),Ver
.VerStr());
352 ioprintf(out
,_("but %s is to be installed"),Ver
.VerStr());
356 if (Cache
[Targ
].CandidateVerIter(Cache
).end() == true)
358 if (Targ
->ProvidesList
== 0)
359 out
<< _("but it is not installable");
361 out
<< _("but it is a virtual package");
364 out
<< (Now
?_("but it is not installed"):_("but it is not going to be installed"));
380 // ShowNew - Show packages to newly install /*{{{*/
381 // ---------------------------------------------------------------------
383 void ShowNew(ostream
&out
,CacheFile
&Cache
)
385 /* Print out a list of packages that are going to be installed extra
386 to what the user asked */
389 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
391 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
392 if (Cache
[I
].NewInstall() == true) {
393 List
+= I
.FullName(true) + " ";
394 VersionsList
+= string(Cache
[I
].CandVersion
) + "\n";
398 ShowList(out
,_("The following NEW packages will be installed:"),List
,VersionsList
);
401 // ShowDel - Show packages to delete /*{{{*/
402 // ---------------------------------------------------------------------
404 void ShowDel(ostream
&out
,CacheFile
&Cache
)
406 /* Print out a list of packages that are going to be removed extra
407 to what the user asked */
410 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
412 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
413 if (Cache
[I
].Delete() == true)
415 if ((Cache
[I
].iFlags
& pkgDepCache::Purge
) == pkgDepCache::Purge
)
416 List
+= I
.FullName(true) + "* ";
418 List
+= I
.FullName(true) + " ";
420 VersionsList
+= string(Cache
[I
].CandVersion
)+ "\n";
424 ShowList(out
,_("The following packages will be REMOVED:"),List
,VersionsList
);
427 // ShowKept - Show kept packages /*{{{*/
428 // ---------------------------------------------------------------------
430 void ShowKept(ostream
&out
,CacheFile
&Cache
)
434 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
436 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
439 if (Cache
[I
].Upgrade() == true || Cache
[I
].Upgradable() == false ||
440 I
->CurrentVer
== 0 || Cache
[I
].Delete() == true)
443 List
+= I
.FullName(true) + " ";
444 VersionsList
+= string(Cache
[I
].CurVersion
) + " => " + Cache
[I
].CandVersion
+ "\n";
446 ShowList(out
,_("The following packages have been kept back:"),List
,VersionsList
);
449 // ShowUpgraded - Show upgraded packages /*{{{*/
450 // ---------------------------------------------------------------------
452 void ShowUpgraded(ostream
&out
,CacheFile
&Cache
)
456 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
458 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
461 if (Cache
[I
].Upgrade() == false || Cache
[I
].NewInstall() == true)
464 List
+= I
.FullName(true) + " ";
465 VersionsList
+= string(Cache
[I
].CurVersion
) + " => " + Cache
[I
].CandVersion
+ "\n";
467 ShowList(out
,_("The following packages will be upgraded:"),List
,VersionsList
);
470 // ShowDowngraded - Show downgraded packages /*{{{*/
471 // ---------------------------------------------------------------------
473 bool ShowDowngraded(ostream
&out
,CacheFile
&Cache
)
477 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
479 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
482 if (Cache
[I
].Downgrade() == false || Cache
[I
].NewInstall() == true)
485 List
+= I
.FullName(true) + " ";
486 VersionsList
+= string(Cache
[I
].CurVersion
) + " => " + Cache
[I
].CandVersion
+ "\n";
488 return ShowList(out
,_("The following packages will be DOWNGRADED:"),List
,VersionsList
);
491 // ShowHold - Show held but changed packages /*{{{*/
492 // ---------------------------------------------------------------------
494 bool ShowHold(ostream
&out
,CacheFile
&Cache
)
498 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
500 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
501 if (Cache
[I
].InstallVer
!= (pkgCache::Version
*)I
.CurrentVer() &&
502 I
->SelectedState
== pkgCache::State::Hold
) {
503 List
+= I
.FullName(true) + " ";
504 VersionsList
+= string(Cache
[I
].CurVersion
) + " => " + Cache
[I
].CandVersion
+ "\n";
508 return ShowList(out
,_("The following held packages will be changed:"),List
,VersionsList
);
511 // ShowEssential - Show an essential package warning /*{{{*/
512 // ---------------------------------------------------------------------
513 /* This prints out a warning message that is not to be ignored. It shows
514 all essential packages and their dependents that are to be removed.
515 It is insanely risky to remove the dependents of an essential package! */
516 bool ShowEssential(ostream
&out
,CacheFile
&Cache
)
520 bool *Added
= new bool[Cache
->Head().PackageCount
];
521 for (unsigned int I
= 0; I
!= Cache
->Head().PackageCount
; I
++)
524 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
526 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
527 if ((I
->Flags
& pkgCache::Flag::Essential
) != pkgCache::Flag::Essential
&&
528 (I
->Flags
& pkgCache::Flag::Important
) != pkgCache::Flag::Important
)
531 // The essential package is being removed
532 if (Cache
[I
].Delete() == true)
534 if (Added
[I
->ID
] == false)
537 List
+= I
.FullName(true) + " ";
538 //VersionsList += string(Cache[I].CurVersion) + "\n"; ???
544 if (I
->CurrentVer
== 0)
547 // Print out any essential package depenendents that are to be removed
548 for (pkgCache::DepIterator D
= I
.CurrentVer().DependsList(); D
.end() == false; ++D
)
550 // Skip everything but depends
551 if (D
->Type
!= pkgCache::Dep::PreDepends
&&
552 D
->Type
!= pkgCache::Dep::Depends
)
555 pkgCache::PkgIterator P
= D
.SmartTargetPkg();
556 if (Cache
[P
].Delete() == true)
558 if (Added
[P
->ID
] == true)
563 snprintf(S
,sizeof(S
),_("%s (due to %s) "),P
.FullName(true).c_str(),I
.FullName(true).c_str());
565 //VersionsList += "\n"; ???
571 return ShowList(out
,_("WARNING: The following essential packages will be removed.\n"
572 "This should NOT be done unless you know exactly what you are doing!"),List
,VersionsList
);
576 // Stats - Show some statistics /*{{{*/
577 // ---------------------------------------------------------------------
579 void Stats(ostream
&out
,pkgDepCache
&Dep
)
581 unsigned long Upgrade
= 0;
582 unsigned long Downgrade
= 0;
583 unsigned long Install
= 0;
584 unsigned long ReInstall
= 0;
585 for (pkgCache::PkgIterator I
= Dep
.PkgBegin(); I
.end() == false; ++I
)
587 if (Dep
[I
].NewInstall() == true)
591 if (Dep
[I
].Upgrade() == true)
594 if (Dep
[I
].Downgrade() == true)
598 if (Dep
[I
].Delete() == false && (Dep
[I
].iFlags
& pkgDepCache::ReInstall
) == pkgDepCache::ReInstall
)
602 ioprintf(out
,_("%lu upgraded, %lu newly installed, "),
606 ioprintf(out
,_("%lu reinstalled, "),ReInstall
);
608 ioprintf(out
,_("%lu downgraded, "),Downgrade
);
610 ioprintf(out
,_("%lu to remove and %lu not upgraded.\n"),
611 Dep
.DelCount(),Dep
.KeepCount());
613 if (Dep
.BadCount() != 0)
614 ioprintf(out
,_("%lu not fully installed or removed.\n"),
618 // CacheSetHelperAPTGet - responsible for message telling from the CacheSets/*{{{*/
619 class CacheSetHelperAPTGet
: public APT::CacheSetHelper
{
620 /** \brief stream message should be printed to */
622 /** \brief were things like Task or RegEx used to select packages? */
623 bool explicitlyNamed
;
625 APT::PackageSet virtualPkgs
;
628 std::list
<std::pair
<pkgCache::VerIterator
, std::string
> > selectedByRelease
;
630 CacheSetHelperAPTGet(std::ostream
&out
) : APT::CacheSetHelper(true), out(out
) {
631 explicitlyNamed
= true;
634 virtual void showTaskSelection(pkgCache::PkgIterator
const &Pkg
, string
const &pattern
) {
635 ioprintf(out
, _("Note, selecting '%s' for task '%s'\n"),
636 Pkg
.FullName(true).c_str(), pattern
.c_str());
637 explicitlyNamed
= false;
639 virtual void showRegExSelection(pkgCache::PkgIterator
const &Pkg
, string
const &pattern
) {
640 ioprintf(out
, _("Note, selecting '%s' for regex '%s'\n"),
641 Pkg
.FullName(true).c_str(), pattern
.c_str());
642 explicitlyNamed
= false;
644 virtual void showSelectedVersion(pkgCache::PkgIterator
const &Pkg
, pkgCache::VerIterator
const Ver
,
645 string
const &ver
, bool const verIsRel
) {
646 if (ver
== Ver
.VerStr())
648 selectedByRelease
.push_back(make_pair(Ver
, ver
));
651 bool showVirtualPackageErrors(pkgCacheFile
&Cache
) {
652 if (virtualPkgs
.empty() == true)
654 for (APT::PackageSet::const_iterator Pkg
= virtualPkgs
.begin();
655 Pkg
!= virtualPkgs
.end(); ++Pkg
) {
656 if (Pkg
->ProvidesList
!= 0) {
657 ioprintf(c1out
,_("Package %s is a virtual package provided by:\n"),
658 Pkg
.FullName(true).c_str());
660 pkgCache::PrvIterator I
= Pkg
.ProvidesList();
661 unsigned short provider
= 0;
662 for (; I
.end() == false; ++I
) {
663 pkgCache::PkgIterator Pkg
= I
.OwnerPkg();
665 if (Cache
[Pkg
].CandidateVerIter(Cache
) == I
.OwnerVer()) {
666 c1out
<< " " << Pkg
.FullName(true) << " " << I
.OwnerVer().VerStr();
667 if (Cache
[Pkg
].Install() == true && Cache
[Pkg
].NewInstall() == false)
668 c1out
<< _(" [Installed]");
673 // if we found no candidate which provide this package, show non-candidates
675 for (I
= Pkg
.ProvidesList(); I
.end() == false; ++I
)
676 c1out
<< " " << I
.OwnerPkg().FullName(true) << " " << I
.OwnerVer().VerStr()
677 << _(" [Not candidate version]") << endl
;
679 out
<< _("You should explicitly select one to install.") << endl
;
682 _("Package %s is not available, but is referred to by another package.\n"
683 "This may mean that the package is missing, has been obsoleted, or\n"
684 "is only available from another source\n"),Pkg
.FullName(true).c_str());
688 SPtrArray
<bool> Seen
= new bool[Cache
.GetPkgCache()->Head().PackageCount
];
689 memset(Seen
,0,Cache
.GetPkgCache()->Head().PackageCount
*sizeof(*Seen
));
690 for (pkgCache::DepIterator Dep
= Pkg
.RevDependsList();
691 Dep
.end() == false; ++Dep
) {
692 if (Dep
->Type
!= pkgCache::Dep::Replaces
)
694 if (Seen
[Dep
.ParentPkg()->ID
] == true)
696 Seen
[Dep
.ParentPkg()->ID
] = true;
697 List
+= Dep
.ParentPkg().FullName(true) + " ";
698 //VersionsList += string(Dep.ParentPkg().CurVersion) + "\n"; ???
700 ShowList(c1out
,_("However the following packages replace it:"),List
,VersionsList
);
707 virtual pkgCache::VerIterator
canNotFindCandidateVer(pkgCacheFile
&Cache
, pkgCache::PkgIterator
const &Pkg
) {
708 APT::VersionSet
const verset
= tryVirtualPackage(Cache
, Pkg
, APT::VersionSet::CANDIDATE
);
709 if (verset
.empty() == false)
710 return *(verset
.begin());
711 else if (ShowError
== true) {
712 _error
->Error(_("Package '%s' has no installation candidate"),Pkg
.FullName(true).c_str());
713 virtualPkgs
.insert(Pkg
);
715 return pkgCache::VerIterator(Cache
, 0);
718 virtual pkgCache::VerIterator
canNotFindNewestVer(pkgCacheFile
&Cache
, pkgCache::PkgIterator
const &Pkg
) {
719 if (Pkg
->ProvidesList
!= 0)
721 APT::VersionSet
const verset
= tryVirtualPackage(Cache
, Pkg
, APT::VersionSet::NEWEST
);
722 if (verset
.empty() == false)
723 return *(verset
.begin());
724 if (ShowError
== true)
725 ioprintf(out
, _("Virtual packages like '%s' can't be removed\n"), Pkg
.FullName(true).c_str());
729 pkgCache::GrpIterator Grp
= Pkg
.Group();
730 pkgCache::PkgIterator P
= Grp
.PackageList();
731 for (; P
.end() != true; P
= Grp
.NextPkg(P
))
735 if (P
->CurrentVer
!= 0) {
736 // TRANSLATORS: Note, this is not an interactive question
737 ioprintf(c1out
,_("Package '%s' is not installed, so not removed. Did you mean '%s'?\n"),
738 Pkg
.FullName(true).c_str(), P
.FullName(true).c_str());
743 ioprintf(c1out
,_("Package '%s' is not installed, so not removed\n"),Pkg
.FullName(true).c_str());
745 return pkgCache::VerIterator(Cache
, 0);
748 APT::VersionSet
tryVirtualPackage(pkgCacheFile
&Cache
, pkgCache::PkgIterator
const &Pkg
,
749 APT::VersionSet::Version
const &select
) {
750 /* This is a pure virtual package and there is a single available
751 candidate providing it. */
752 if (unlikely(Cache
[Pkg
].CandidateVer
!= 0) || Pkg
->ProvidesList
== 0)
753 return APT::VersionSet();
755 pkgCache::PkgIterator Prov
;
756 bool found_one
= false;
757 for (pkgCache::PrvIterator P
= Pkg
.ProvidesList(); P
; ++P
) {
758 pkgCache::VerIterator
const PVer
= P
.OwnerVer();
759 pkgCache::PkgIterator
const PPkg
= PVer
.ParentPkg();
761 /* Ignore versions that are not a candidate. */
762 if (Cache
[PPkg
].CandidateVer
!= PVer
)
765 if (found_one
== false) {
768 } else if (PPkg
!= Prov
) {
769 // same group, so it's a foreign package
770 if (PPkg
->Group
== Prov
->Group
) {
771 // do we already have the requested arch?
772 if (strcmp(Pkg
.Arch(), Prov
.Arch()) == 0 ||
773 strcmp(Prov
.Arch(), "all") == 0 ||
774 unlikely(strcmp(PPkg
.Arch(), Prov
.Arch()) == 0)) // packages have only on candidate, but just to be sure
776 // see which architecture we prefer more and switch to it
777 std::vector
<std::string
> archs
= APT::Configuration::getArchitectures();
778 if (std::find(archs
.begin(), archs
.end(), PPkg
.Arch()) < std::find(archs
.begin(), archs
.end(), Prov
.Arch()))
782 found_one
= false; // we found at least two
787 if (found_one
== true) {
788 ioprintf(out
, _("Note, selecting '%s' instead of '%s'\n"),
789 Prov
.FullName(true).c_str(), Pkg
.FullName(true).c_str());
790 return APT::VersionSet::FromPackage(Cache
, Prov
, select
, *this);
792 return APT::VersionSet();
795 inline bool allPkgNamedExplicitly() const { return explicitlyNamed
; }
799 // TryToInstall - Mark a package for installation /*{{{*/
800 struct TryToInstall
{
802 pkgProblemResolver
* Fix
;
804 unsigned long AutoMarkChanged
;
805 APT::PackageSet doAutoInstallLater
;
807 TryToInstall(pkgCacheFile
&Cache
, pkgProblemResolver
*PM
, bool const FixBroken
) : Cache(&Cache
), Fix(PM
),
808 FixBroken(FixBroken
), AutoMarkChanged(0) {};
810 void operator() (pkgCache::VerIterator
const &Ver
) {
811 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
813 Cache
->GetDepCache()->SetCandidateVersion(Ver
);
814 pkgDepCache::StateCache
&State
= (*Cache
)[Pkg
];
816 // Handle the no-upgrade case
817 if (_config
->FindB("APT::Get::upgrade",true) == false && Pkg
->CurrentVer
!= 0)
818 ioprintf(c1out
,_("Skipping %s, it is already installed and upgrade is not set.\n"),
819 Pkg
.FullName(true).c_str());
820 // Ignore request for install if package would be new
821 else if (_config
->FindB("APT::Get::Only-Upgrade", false) == true && Pkg
->CurrentVer
== 0)
822 ioprintf(c1out
,_("Skipping %s, it is not installed and only upgrades are requested.\n"),
823 Pkg
.FullName(true).c_str());
829 Cache
->GetDepCache()->MarkInstall(Pkg
,false);
831 if (State
.Install() == false) {
832 if (_config
->FindB("APT::Get::ReInstall",false) == true) {
833 if (Pkg
->CurrentVer
== 0 || Pkg
.CurrentVer().Downloadable() == false)
834 ioprintf(c1out
,_("Reinstallation of %s is not possible, it cannot be downloaded.\n"),
835 Pkg
.FullName(true).c_str());
837 Cache
->GetDepCache()->SetReInstall(Pkg
, true);
839 ioprintf(c1out
,_("%s is already the newest version.\n"),
840 Pkg
.FullName(true).c_str());
843 // Install it with autoinstalling enabled (if we not respect the minial
844 // required deps or the policy)
845 if (FixBroken
== false)
846 doAutoInstallLater
.insert(Pkg
);
849 // see if we need to fix the auto-mark flag
850 // e.g. apt-get install foo
851 // where foo is marked automatic
852 if (State
.Install() == false &&
853 (State
.Flags
& pkgCache::Flag::Auto
) &&
854 _config
->FindB("APT::Get::ReInstall",false) == false &&
855 _config
->FindB("APT::Get::Only-Upgrade",false) == false &&
856 _config
->FindB("APT::Get::Download-Only",false) == false)
858 ioprintf(c1out
,_("%s set to manually installed.\n"),
859 Pkg
.FullName(true).c_str());
860 Cache
->GetDepCache()->MarkAuto(Pkg
,false);
865 bool propergateReleaseCandiateSwitching(std::list
<std::pair
<pkgCache::VerIterator
, std::string
> > start
, std::ostream
&out
)
867 for (std::list
<std::pair
<pkgCache::VerIterator
, std::string
> >::const_iterator s
= start
.begin();
868 s
!= start
.end(); ++s
)
869 Cache
->GetDepCache()->SetCandidateVersion(s
->first
);
872 std::list
<std::pair
<pkgCache::VerIterator
, pkgCache::VerIterator
> > Changed
;
873 for (std::list
<std::pair
<pkgCache::VerIterator
, std::string
> >::const_iterator s
= start
.begin();
874 s
!= start
.end(); ++s
)
876 Changed
.push_back(std::make_pair(s
->first
, pkgCache::VerIterator(*Cache
)));
877 // We continue here even if it failed to enhance the ShowBroken output
878 Success
&= Cache
->GetDepCache()->SetCandidateRelease(s
->first
, s
->second
, Changed
);
880 for (std::list
<std::pair
<pkgCache::VerIterator
, pkgCache::VerIterator
> >::const_iterator c
= Changed
.begin();
881 c
!= Changed
.end(); ++c
)
883 if (c
->second
.end() == true)
884 ioprintf(out
, _("Selected version '%s' (%s) for '%s'\n"),
885 c
->first
.VerStr(), c
->first
.RelStr().c_str(), c
->first
.ParentPkg().FullName(true).c_str());
886 else if (c
->first
.ParentPkg()->Group
!= c
->second
.ParentPkg()->Group
)
888 pkgCache::VerIterator V
= (*Cache
)[c
->first
.ParentPkg()].CandidateVerIter(*Cache
);
889 ioprintf(out
, _("Selected version '%s' (%s) for '%s' because of '%s'\n"), V
.VerStr(),
890 V
.RelStr().c_str(), V
.ParentPkg().FullName(true).c_str(), c
->second
.ParentPkg().FullName(true).c_str());
896 void doAutoInstall() {
897 for (APT::PackageSet::const_iterator P
= doAutoInstallLater
.begin();
898 P
!= doAutoInstallLater
.end(); ++P
) {
899 pkgDepCache::StateCache
&State
= (*Cache
)[P
];
900 if (State
.InstBroken() == false && State
.InstPolicyBroken() == false)
902 Cache
->GetDepCache()->MarkInstall(P
, true);
904 doAutoInstallLater
.clear();
908 // TryToRemove - Mark a package for removal /*{{{*/
911 pkgProblemResolver
* Fix
;
914 TryToRemove(pkgCacheFile
&Cache
, pkgProblemResolver
*PM
) : Cache(&Cache
), Fix(PM
),
915 PurgePkgs(_config
->FindB("APT::Get::Purge", false)) {};
917 void operator() (pkgCache::VerIterator
const &Ver
)
919 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
928 if ((Pkg
->CurrentVer
== 0 && PurgePkgs
== false) ||
929 (PurgePkgs
== true && Pkg
->CurrentState
== pkgCache::State::NotInstalled
))
931 pkgCache::GrpIterator Grp
= Pkg
.Group();
932 pkgCache::PkgIterator P
= Grp
.PackageList();
933 for (; P
.end() != true; P
= Grp
.NextPkg(P
))
937 if (P
->CurrentVer
!= 0 || (PurgePkgs
== true && P
->CurrentState
!= pkgCache::State::NotInstalled
))
939 // TRANSLATORS: Note, this is not an interactive question
940 ioprintf(c1out
,_("Package '%s' is not installed, so not removed. Did you mean '%s'?\n"),
941 Pkg
.FullName(true).c_str(), P
.FullName(true).c_str());
946 ioprintf(c1out
,_("Package '%s' is not installed, so not removed\n"),Pkg
.FullName(true).c_str());
948 // MarkInstall refuses to install packages on hold
949 Pkg
->SelectedState
= pkgCache::State::Hold
;
952 Cache
->GetDepCache()->MarkDelete(Pkg
, PurgePkgs
);
956 // CacheFile::NameComp - QSort compare by name /*{{{*/
957 // ---------------------------------------------------------------------
959 pkgCache
*CacheFile::SortCache
= 0;
960 int CacheFile::NameComp(const void *a
,const void *b
)
962 if (*(pkgCache::Package
**)a
== 0 || *(pkgCache::Package
**)b
== 0)
963 return *(pkgCache::Package
**)a
- *(pkgCache::Package
**)b
;
965 const pkgCache::Package
&A
= **(pkgCache::Package
**)a
;
966 const pkgCache::Package
&B
= **(pkgCache::Package
**)b
;
968 return strcmp(SortCache
->StrP
+ A
.Name
,SortCache
->StrP
+ B
.Name
);
971 // CacheFile::Sort - Sort by name /*{{{*/
972 // ---------------------------------------------------------------------
974 void CacheFile::Sort()
977 List
= new pkgCache::Package
*[Cache
->Head().PackageCount
];
978 memset(List
,0,sizeof(*List
)*Cache
->Head().PackageCount
);
979 pkgCache::PkgIterator I
= Cache
->PkgBegin();
980 for (;I
.end() != true; ++I
)
984 qsort(List
,Cache
->Head().PackageCount
,sizeof(*List
),NameComp
);
987 // CacheFile::CheckDeps - Open the cache file /*{{{*/
988 // ---------------------------------------------------------------------
989 /* This routine generates the caches and then opens the dependency cache
990 and verifies that the system is OK. */
991 bool CacheFile::CheckDeps(bool AllowBroken
)
993 bool FixBroken
= _config
->FindB("APT::Get::Fix-Broken",false);
995 if (_error
->PendingError() == true)
998 // Check that the system is OK
999 if (DCache
->DelCount() != 0 || DCache
->InstCount() != 0)
1000 return _error
->Error("Internal error, non-zero counts");
1002 // Apply corrections for half-installed packages
1003 if (pkgApplyStatus(*DCache
) == false)
1006 if (_config
->FindB("APT::Get::Fix-Policy-Broken",false) == true)
1009 if ((DCache
->PolicyBrokenCount() > 0))
1011 // upgrade all policy-broken packages with ForceImportantDeps=True
1012 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); !I
.end(); ++I
)
1013 if ((*DCache
)[I
].NowPolicyBroken() == true)
1014 DCache
->MarkInstall(I
,true,0, false, true);
1018 // Nothing is broken
1019 if (DCache
->BrokenCount() == 0 || AllowBroken
== true)
1022 // Attempt to fix broken things
1023 if (FixBroken
== true)
1025 c1out
<< _("Correcting dependencies...") << flush
;
1026 if (pkgFixBroken(*DCache
) == false || DCache
->BrokenCount() != 0)
1028 c1out
<< _(" failed.") << endl
;
1029 ShowBroken(c1out
,*this,true);
1031 return _error
->Error(_("Unable to correct dependencies"));
1033 if (pkgMinimizeUpgrade(*DCache
) == false)
1034 return _error
->Error(_("Unable to minimize the upgrade set"));
1036 c1out
<< _(" Done") << endl
;
1040 c1out
<< _("You might want to run 'apt-get -f install' to correct these.") << endl
;
1041 ShowBroken(c1out
,*this,true);
1043 return _error
->Error(_("Unmet dependencies. Try using -f."));
1049 // CheckAuth - check if each download comes form a trusted source /*{{{*/
1050 // ---------------------------------------------------------------------
1052 static bool CheckAuth(pkgAcquire
& Fetcher
)
1054 string UntrustedList
;
1055 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
< Fetcher
.ItemsEnd(); ++I
)
1057 if (!(*I
)->IsTrusted())
1059 UntrustedList
+= string((*I
)->ShortDesc()) + " ";
1063 if (UntrustedList
== "")
1068 ShowList(c2out
,_("WARNING: The following packages cannot be authenticated!"),UntrustedList
,"");
1070 if (_config
->FindB("APT::Get::AllowUnauthenticated",false) == true)
1072 c2out
<< _("Authentication warning overridden.\n");
1076 if (_config
->FindI("quiet",0) < 2
1077 && _config
->FindB("APT::Get::Assume-Yes",false) == false)
1079 c2out
<< _("Install these packages without verification [y/N]? ") << flush
;
1080 if (!YnPrompt(false))
1081 return _error
->Error(_("Some packages could not be authenticated"));
1085 else if (_config
->FindB("APT::Get::Force-Yes",false) == true)
1090 return _error
->Error(_("There are problems and -y was used without --force-yes"));
1093 // InstallPackages - Actually download and install the packages /*{{{*/
1094 // ---------------------------------------------------------------------
1095 /* This displays the informative messages describing what is going to
1096 happen and then calls the download routines */
1097 bool InstallPackages(CacheFile
&Cache
,bool ShwKept
,bool Ask
= true,
1100 if (_config
->FindB("APT::Get::Purge",false) == true)
1102 pkgCache::PkgIterator I
= Cache
->PkgBegin();
1103 for (; I
.end() == false; ++I
)
1105 if (I
.Purge() == false && Cache
[I
].Mode
== pkgDepCache::ModeDelete
)
1106 Cache
->MarkDelete(I
,true);
1111 bool Essential
= false;
1113 // Show all the various warning indicators
1114 ShowDel(c1out
,Cache
);
1115 ShowNew(c1out
,Cache
);
1116 if (ShwKept
== true)
1117 ShowKept(c1out
,Cache
);
1118 Fail
|= !ShowHold(c1out
,Cache
);
1119 if (_config
->FindB("APT::Get::Show-Upgraded",true) == true)
1120 ShowUpgraded(c1out
,Cache
);
1121 Fail
|= !ShowDowngraded(c1out
,Cache
);
1122 if (_config
->FindB("APT::Get::Download-Only",false) == false)
1123 Essential
= !ShowEssential(c1out
,Cache
);
1128 if (Cache
->BrokenCount() != 0)
1130 ShowBroken(c1out
,Cache
,false);
1131 return _error
->Error(_("Internal error, InstallPackages was called with broken packages!"));
1134 if (Cache
->DelCount() == 0 && Cache
->InstCount() == 0 &&
1135 Cache
->BadCount() == 0)
1139 if (Cache
->DelCount() != 0 && _config
->FindB("APT::Get::Remove",true) == false)
1140 return _error
->Error(_("Packages need to be removed but remove is disabled."));
1142 // Run the simulator ..
1143 if (_config
->FindB("APT::Get::Simulate") == true)
1145 pkgSimulate
PM(Cache
);
1146 int status_fd
= _config
->FindI("APT::Status-Fd",-1);
1147 pkgPackageManager::OrderResult Res
= PM
.DoInstall(status_fd
);
1148 if (Res
== pkgPackageManager::Failed
)
1150 if (Res
!= pkgPackageManager::Completed
)
1151 return _error
->Error(_("Internal error, Ordering didn't finish"));
1155 // Create the text record parser
1156 pkgRecords
Recs(Cache
);
1157 if (_error
->PendingError() == true)
1160 // Create the download object
1162 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
1163 if (_config
->FindB("APT::Get::Print-URIs", false) == true)
1165 // force a hashsum for compatibility reasons
1166 _config
->CndSet("Acquire::ForceHash", "md5sum");
1168 else if (Fetcher
.Setup(&Stat
, _config
->FindDir("Dir::Cache::Archives")) == false)
1171 // Read the source list
1172 if (Cache
.BuildSourceList() == false)
1174 pkgSourceList
*List
= Cache
.GetSourceList();
1176 // Create the package manager and prepare to download
1177 SPtr
<pkgPackageManager
> PM
= _system
->CreatePM(Cache
);
1178 if (PM
->GetArchives(&Fetcher
,List
,&Recs
) == false ||
1179 _error
->PendingError() == true)
1182 // Display statistics
1183 unsigned long long FetchBytes
= Fetcher
.FetchNeeded();
1184 unsigned long long FetchPBytes
= Fetcher
.PartialPresent();
1185 unsigned long long DebBytes
= Fetcher
.TotalNeeded();
1186 if (DebBytes
!= Cache
->DebSize())
1188 c0out
<< DebBytes
<< ',' << Cache
->DebSize() << endl
;
1189 c0out
<< _("How odd.. The sizes didn't match, email apt@packages.debian.org") << endl
;
1193 if (DebBytes
!= FetchBytes
)
1194 //TRANSLATOR: The required space between number and unit is already included
1195 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
1196 ioprintf(c1out
,_("Need to get %sB/%sB of archives.\n"),
1197 SizeToStr(FetchBytes
).c_str(),SizeToStr(DebBytes
).c_str());
1198 else if (DebBytes
!= 0)
1199 //TRANSLATOR: The required space between number and unit is already included
1200 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1201 ioprintf(c1out
,_("Need to get %sB of archives.\n"),
1202 SizeToStr(DebBytes
).c_str());
1205 if (Cache
->UsrSize() >= 0)
1206 //TRANSLATOR: The required space between number and unit is already included
1207 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1208 ioprintf(c1out
,_("After this operation, %sB of additional disk space will be used.\n"),
1209 SizeToStr(Cache
->UsrSize()).c_str());
1211 //TRANSLATOR: The required space between number and unit is already included
1212 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
1213 ioprintf(c1out
,_("After this operation, %sB disk space will be freed.\n"),
1214 SizeToStr(-1*Cache
->UsrSize()).c_str());
1216 if (_error
->PendingError() == true)
1219 /* Check for enough free space, but only if we are actually going to
1221 if (_config
->FindB("APT::Get::Print-URIs") == false &&
1222 _config
->FindB("APT::Get::Download",true) == true)
1225 string OutputDir
= _config
->FindDir("Dir::Cache::Archives");
1226 if (statvfs(OutputDir
.c_str(),&Buf
) != 0) {
1227 if (errno
== EOVERFLOW
)
1228 return _error
->WarningE("statvfs",_("Couldn't determine free space in %s"),
1231 return _error
->Errno("statvfs",_("Couldn't determine free space in %s"),
1233 } else if (unsigned(Buf
.f_bfree
) < (FetchBytes
- FetchPBytes
)/Buf
.f_bsize
)
1236 if (statfs(OutputDir
.c_str(),&Stat
) != 0
1237 #if HAVE_STRUCT_STATFS_F_TYPE
1238 || unsigned(Stat
.f_type
) != RAMFS_MAGIC
1241 return _error
->Error(_("You don't have enough free space in %s."),
1247 if (_config
->FindI("quiet",0) >= 2 ||
1248 _config
->FindB("APT::Get::Assume-Yes",false) == true)
1250 if (Fail
== true && _config
->FindB("APT::Get::Force-Yes",false) == false)
1251 return _error
->Error(_("There are problems and -y was used without --force-yes"));
1254 if (Essential
== true && Safety
== true)
1256 if (_config
->FindB("APT::Get::Trivial-Only",false) == true)
1257 return _error
->Error(_("Trivial Only specified but this is not a trivial operation."));
1259 const char *Prompt
= _("Yes, do as I say!");
1261 _("You are about to do something potentially harmful.\n"
1262 "To continue type in the phrase '%s'\n"
1265 if (AnalPrompt(Prompt
) == false)
1267 c2out
<< _("Abort.") << endl
;
1273 // Prompt to continue
1274 if (Ask
== true || Fail
== true)
1276 if (_config
->FindB("APT::Get::Trivial-Only",false) == true)
1277 return _error
->Error(_("Trivial Only specified but this is not a trivial operation."));
1279 if (_config
->FindI("quiet",0) < 2 &&
1280 _config
->FindB("APT::Get::Assume-Yes",false) == false)
1282 c2out
<< _("Do you want to continue [Y/n]? ") << flush
;
1284 if (YnPrompt() == false)
1286 c2out
<< _("Abort.") << endl
;
1293 // Just print out the uris an exit if the --print-uris flag was used
1294 if (_config
->FindB("APT::Get::Print-URIs") == true)
1296 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
1297 for (; I
!= Fetcher
.UriEnd(); ++I
)
1298 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
1299 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
1303 if (!CheckAuth(Fetcher
))
1306 /* Unlock the dpkg lock if we are not going to be doing an install
1308 if (_config
->FindB("APT::Get::Download-Only",false) == true)
1314 bool Transient
= false;
1315 if (_config
->FindB("APT::Get::Download",true) == false)
1317 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
< Fetcher
.ItemsEnd();)
1319 if ((*I
)->Local
== true)
1325 // Close the item and check if it was found in cache
1327 if ((*I
)->Complete
== false)
1330 // Clear it out of the fetch list
1332 I
= Fetcher
.ItemsBegin();
1336 if (Fetcher
.Run() == pkgAcquire::Failed
)
1340 bool Failed
= false;
1341 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); ++I
)
1343 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
1344 (*I
)->Complete
== true)
1347 if ((*I
)->Status
== pkgAcquire::Item::StatIdle
)
1354 fprintf(stderr
,_("Failed to fetch %s %s\n"),(*I
)->DescURI().c_str(),
1355 (*I
)->ErrorText
.c_str());
1359 /* If we are in no download mode and missing files and there were
1360 'failures' then the user must specify -m. Furthermore, there
1361 is no such thing as a transient error in no-download mode! */
1362 if (Transient
== true &&
1363 _config
->FindB("APT::Get::Download",true) == false)
1369 if (_config
->FindB("APT::Get::Download-Only",false) == true)
1371 if (Failed
== true && _config
->FindB("APT::Get::Fix-Missing",false) == false)
1372 return _error
->Error(_("Some files failed to download"));
1373 c1out
<< _("Download complete and in download only mode") << endl
;
1377 if (Failed
== true && _config
->FindB("APT::Get::Fix-Missing",false) == false)
1379 return _error
->Error(_("Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?"));
1382 if (Transient
== true && Failed
== true)
1383 return _error
->Error(_("--fix-missing and media swapping is not currently supported"));
1385 // Try to deal with missing package files
1386 if (Failed
== true && PM
->FixMissing() == false)
1388 cerr
<< _("Unable to correct missing packages.") << endl
;
1389 return _error
->Error(_("Aborting install."));
1393 int status_fd
= _config
->FindI("APT::Status-Fd",-1);
1394 pkgPackageManager::OrderResult Res
= PM
->DoInstall(status_fd
);
1395 if (Res
== pkgPackageManager::Failed
|| _error
->PendingError() == true)
1397 if (Res
== pkgPackageManager::Completed
)
1400 // Reload the fetcher object and loop again for media swapping
1402 if (PM
->GetArchives(&Fetcher
,List
,&Recs
) == false)
1408 std::set
<std::string
> const disappearedPkgs
= PM
->GetDisappearedPackages();
1409 if (disappearedPkgs
.empty() == true)
1413 for (std::set
<std::string
>::const_iterator d
= disappearedPkgs
.begin();
1414 d
!= disappearedPkgs
.end(); ++d
)
1415 disappear
.append(*d
).append(" ");
1417 ShowList(c1out
, P_("The following package disappeared from your system as\n"
1418 "all files have been overwritten by other packages:",
1419 "The following packages disappeared from your system as\n"
1420 "all files have been overwritten by other packages:", disappearedPkgs
.size()), disappear
, "");
1421 c0out
<< _("Note: This is done automatically and on purpose by dpkg.") << std::endl
;
1426 // TryToInstallBuildDep - Try to install a single package /*{{{*/
1427 // ---------------------------------------------------------------------
1428 /* This used to be inlined in DoInstall, but with the advent of regex package
1429 name matching it was split out.. */
1430 bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg
,pkgCacheFile
&Cache
,
1431 pkgProblemResolver
&Fix
,bool Remove
,bool BrokenFix
,
1432 bool AllowFail
= true)
1434 if (Cache
[Pkg
].CandidateVer
== 0 && Pkg
->ProvidesList
!= 0)
1436 CacheSetHelperAPTGet
helper(c1out
);
1437 helper
.showErrors(AllowFail
== false);
1438 pkgCache::VerIterator Ver
= helper
.canNotFindNewestVer(Cache
, Pkg
);
1439 if (Ver
.end() == false)
1440 Pkg
= Ver
.ParentPkg();
1441 else if (helper
.showVirtualPackageErrors(Cache
) == false)
1445 if (_config
->FindB("Debug::BuildDeps",false) == true)
1448 cout
<< " Trying to remove " << Pkg
<< endl
;
1450 cout
<< " Trying to install " << Pkg
<< endl
;
1455 TryToRemove
RemoveAction(Cache
, &Fix
);
1456 RemoveAction(Pkg
.VersionList());
1457 } else if (Cache
[Pkg
].CandidateVer
!= 0) {
1458 TryToInstall
InstallAction(Cache
, &Fix
, BrokenFix
);
1459 InstallAction(Cache
[Pkg
].CandidateVerIter(Cache
));
1460 InstallAction
.doAutoInstall();
1467 // FindSrc - Find a source record /*{{{*/
1468 // ---------------------------------------------------------------------
1470 pkgSrcRecords::Parser
*FindSrc(const char *Name
,pkgRecords
&Recs
,
1471 pkgSrcRecords
&SrcRecs
,string
&Src
,
1475 string DefRel
= _config
->Find("APT::Default-Release");
1476 string TmpSrc
= Name
;
1478 // extract the version/release from the pkgname
1479 const size_t found
= TmpSrc
.find_last_of("/=");
1480 if (found
!= string::npos
) {
1481 if (TmpSrc
[found
] == '/')
1482 DefRel
= TmpSrc
.substr(found
+1);
1484 VerTag
= TmpSrc
.substr(found
+1);
1485 TmpSrc
= TmpSrc
.substr(0,found
);
1488 /* Lookup the version of the package we would install if we were to
1489 install a version and determine the source package name, then look
1490 in the archive for a source package of the same name. */
1491 bool MatchSrcOnly
= _config
->FindB("APT::Get::Only-Source");
1492 const pkgCache::PkgIterator Pkg
= Cache
.FindPkg(TmpSrc
);
1493 if (MatchSrcOnly
== false && Pkg
.end() == false)
1495 if(VerTag
.empty() == false || DefRel
.empty() == false)
1498 // we have a default release, try to locate the pkg. we do it like
1499 // this because GetCandidateVer() will not "downgrade", that means
1500 // "apt-get source -t stable apt" won't work on a unstable system
1501 for (pkgCache::VerIterator Ver
= Pkg
.VersionList();; ++Ver
)
1503 // try first only exact matches, later fuzzy matches
1504 if (Ver
.end() == true)
1509 Ver
= Pkg
.VersionList();
1510 // exit right away from the Pkg.VersionList() loop if we
1511 // don't have any versions
1512 if (Ver
.end() == true)
1515 // We match against a concrete version (or a part of this version)
1516 if (VerTag
.empty() == false &&
1517 (fuzzy
== true || Cache
.VS().CmpVersion(VerTag
, Ver
.VerStr()) != 0) && // exact match
1518 (fuzzy
== false || strncmp(VerTag
.c_str(), Ver
.VerStr(), VerTag
.size()) != 0)) // fuzzy match
1521 for (pkgCache::VerFileIterator VF
= Ver
.FileList();
1522 VF
.end() == false; ++VF
)
1524 /* If this is the status file, and the current version is not the
1525 version in the status file (ie it is not installed, or somesuch)
1526 then it is not a candidate for installation, ever. This weeds
1527 out bogus entries that may be due to config-file states, or
1529 if ((VF
.File()->Flags
& pkgCache::Flag::NotSource
) ==
1530 pkgCache::Flag::NotSource
&& Pkg
.CurrentVer() != Ver
)
1533 // or we match against a release
1534 if(VerTag
.empty() == false ||
1535 (VF
.File().Archive() != 0 && VF
.File().Archive() == DefRel
) ||
1536 (VF
.File().Codename() != 0 && VF
.File().Codename() == DefRel
))
1538 pkgRecords::Parser
&Parse
= Recs
.Lookup(VF
);
1539 Src
= Parse
.SourcePkg();
1540 // no SourcePkg name, so it is the "binary" name
1541 if (Src
.empty() == true)
1543 // the Version we have is possibly fuzzy or includes binUploads,
1544 // so we use the Version of the SourcePkg (empty if same as package)
1545 VerTag
= Parse
.SourceVer();
1546 if (VerTag
.empty() == true)
1547 VerTag
= Ver
.VerStr();
1551 if (Src
.empty() == false)
1554 if (Src
.empty() == true)
1556 // Sources files have no codename information
1557 if (VerTag
.empty() == true && DefRel
.empty() == false)
1559 _error
->Error(_("Ignore unavailable target release '%s' of package '%s'"), DefRel
.c_str(), TmpSrc
.c_str());
1564 if (Src
.empty() == true)
1566 // if we don't have found a fitting package yet so we will
1567 // choose a good candidate and proceed with that.
1568 // Maybe we will find a source later on with the right VerTag
1569 pkgCache::VerIterator Ver
= Cache
.GetCandidateVer(Pkg
);
1570 if (Ver
.end() == false)
1572 pkgRecords::Parser
&Parse
= Recs
.Lookup(Ver
.FileList());
1573 Src
= Parse
.SourcePkg();
1574 if (VerTag
.empty() == true)
1575 VerTag
= Parse
.SourceVer();
1580 if (Src
.empty() == true)
1584 /* if we have a source pkg name, make sure to only search
1585 for srcpkg names, otherwise apt gets confused if there
1586 is a binary package "pkg1" and a source package "pkg1"
1587 with the same name but that comes from different packages */
1588 MatchSrcOnly
= true;
1591 ioprintf(c1out
, _("Picking '%s' as source package instead of '%s'\n"), Src
.c_str(), TmpSrc
.c_str());
1596 pkgSrcRecords::Parser
*Last
= 0;
1597 unsigned long Offset
= 0;
1600 /* Iterate over all of the hits, which includes the resulting
1601 binary packages in the search */
1602 pkgSrcRecords::Parser
*Parse
;
1606 while ((Parse
= SrcRecs
.Find(Src
.c_str(), MatchSrcOnly
)) != 0)
1608 const string Ver
= Parse
->Version();
1610 // Ignore all versions which doesn't fit
1611 if (VerTag
.empty() == false &&
1612 Cache
.VS().CmpVersion(VerTag
, Ver
) != 0) // exact match
1615 // Newer version or an exact match? Save the hit
1616 if (Last
== 0 || Cache
.VS().CmpVersion(Version
,Ver
) < 0) {
1618 Offset
= Parse
->Offset();
1622 // was the version check above an exact match? If so, we don't need to look further
1623 if (VerTag
.empty() == false && VerTag
.size() == Ver
.size())
1626 if (Last
!= 0 || VerTag
.empty() == true)
1628 //if (VerTag.empty() == false && Last == 0)
1629 _error
->Error(_("Ignore unavailable version '%s' of package '%s'"), VerTag
.c_str(), TmpSrc
.c_str());
1633 if (Last
== 0 || Last
->Jump(Offset
) == false)
1639 // DoUpdate - Update the package lists /*{{{*/
1640 // ---------------------------------------------------------------------
1642 bool DoUpdate(CommandLine
&CmdL
)
1644 if (CmdL
.FileSize() != 1)
1645 return _error
->Error(_("The update command takes no arguments"));
1649 // Get the source list
1650 if (Cache
.BuildSourceList() == false)
1652 pkgSourceList
*List
= Cache
.GetSourceList();
1654 // Create the progress
1655 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
1657 // Just print out the uris an exit if the --print-uris flag was used
1658 if (_config
->FindB("APT::Get::Print-URIs") == true)
1660 // force a hashsum for compatibility reasons
1661 _config
->CndSet("Acquire::ForceHash", "md5sum");
1665 if (Fetcher
.Setup(&Stat
) == false)
1668 // Populate it with the source selection and get all Indexes
1670 if (List
->GetIndexes(&Fetcher
,true) == false)
1673 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
1674 for (; I
!= Fetcher
.UriEnd(); ++I
)
1675 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
1676 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
1681 if (_config
->FindB("APT::Get::Download",true) == true)
1682 ListUpdate(Stat
, *List
);
1684 // Rebuild the cache.
1685 if (_config
->FindB("pkgCacheFile::Generate", true) == true)
1687 pkgCacheFile::RemoveCaches();
1688 if (Cache
.BuildCaches() == false)
1695 // DoAutomaticRemove - Remove all automatic unused packages /*{{{*/
1696 // ---------------------------------------------------------------------
1697 /* Remove unused automatic packages */
1698 bool DoAutomaticRemove(CacheFile
&Cache
)
1700 bool Debug
= _config
->FindI("Debug::pkgAutoRemove",false);
1701 bool doAutoRemove
= _config
->FindB("APT::Get::AutomaticRemove", false);
1702 bool hideAutoRemove
= _config
->FindB("APT::Get::HideAutoRemove");
1704 pkgDepCache::ActionGroup
group(*Cache
);
1706 std::cout
<< "DoAutomaticRemove()" << std::endl
;
1708 if (doAutoRemove
== true &&
1709 _config
->FindB("APT::Get::Remove",true) == false)
1711 c1out
<< _("We are not supposed to delete stuff, can't start "
1712 "AutoRemover") << std::endl
;
1716 bool purgePkgs
= _config
->FindB("APT::Get::Purge", false);
1717 bool smallList
= (hideAutoRemove
== false &&
1718 strcasecmp(_config
->Find("APT::Get::HideAutoRemove","").c_str(),"small") == 0);
1720 unsigned long autoRemoveCount
= 0;
1721 APT::PackageSet tooMuch
;
1722 APT::PackageList autoRemoveList
;
1723 // look over the cache to see what can be removed
1724 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; ++J
)
1726 pkgCache::PkgIterator
Pkg(Cache
,Cache
.List
[J
]);
1727 if (Cache
[Pkg
].Garbage
)
1729 if(Pkg
.CurrentVer() != 0 || Cache
[Pkg
].Install())
1731 std::cout
<< "We could delete %s" << Pkg
.FullName(true).c_str() << std::endl
;
1735 if(Pkg
.CurrentVer() != 0 &&
1736 Pkg
->CurrentState
!= pkgCache::State::ConfigFiles
)
1737 Cache
->MarkDelete(Pkg
, purgePkgs
);
1739 Cache
->MarkKeep(Pkg
, false, false);
1743 if (hideAutoRemove
== false && Cache
[Pkg
].Delete() == false)
1744 autoRemoveList
.insert(Pkg
);
1745 // if the package is a new install and already garbage we don't need to
1746 // install it in the first place, so nuke it instead of show it
1747 if (Cache
[Pkg
].Install() == true && Pkg
.CurrentVer() == 0)
1749 if (Pkg
.CandVersion() != 0)
1750 tooMuch
.insert(Pkg
);
1751 Cache
->MarkDelete(Pkg
, false);
1753 // only show stuff in the list that is not yet marked for removal
1754 else if(hideAutoRemove
== false && Cache
[Pkg
].Delete() == false)
1760 // we could have removed a new dependency of a garbage package,
1761 // so check if a reverse depends is broken and if so install it again.
1762 if (tooMuch
.empty() == false && (Cache
->BrokenCount() != 0 || Cache
->PolicyBrokenCount() != 0))
1767 for (APT::PackageSet::const_iterator Pkg
= tooMuch
.begin();
1768 Pkg
!= tooMuch
.end() && Changed
== false; ++Pkg
)
1770 APT::PackageSet too
;
1772 for (pkgCache::PrvIterator Prv
= Cache
[Pkg
].CandidateVerIter(Cache
).ProvidesList();
1773 Prv
.end() == false; ++Prv
)
1774 too
.insert(Prv
.ParentPkg());
1775 for (APT::PackageSet::const_iterator P
= too
.begin();
1776 P
!= too
.end() && Changed
== false; ++P
) {
1777 for (pkgCache::DepIterator R
= P
.RevDependsList();
1778 R
.end() == false; ++R
)
1780 if (R
.IsNegative() == true ||
1781 Cache
->IsImportantDep(R
) == false)
1783 pkgCache::PkgIterator N
= R
.ParentPkg();
1784 if (N
.end() == true || (N
->CurrentVer
== 0 && (*Cache
)[N
].Install() == false))
1787 std::clog
<< "Save " << Pkg
<< " as another installed garbage package depends on it" << std::endl
;
1788 Cache
->MarkInstall(Pkg
, false);
1789 if (hideAutoRemove
== false)
1797 } while (Changed
== true);
1800 std::string autoremovelist
, autoremoveversions
;
1801 if (smallList
== false && autoRemoveCount
!= 0)
1803 for (APT::PackageList::const_iterator Pkg
= autoRemoveList
.begin(); Pkg
!= autoRemoveList
.end(); ++Pkg
)
1805 if (Cache
[Pkg
].Garbage
== false)
1807 autoremovelist
+= Pkg
.FullName(true) + " ";
1808 autoremoveversions
+= string(Cache
[Pkg
].CandVersion
) + "\n";
1812 // Now see if we had destroyed anything (if we had done anything)
1813 if (Cache
->BrokenCount() != 0)
1815 c1out
<< _("Hmm, seems like the AutoRemover destroyed something which really\n"
1816 "shouldn't happen. Please file a bug report against apt.") << endl
;
1818 c1out
<< _("The following information may help to resolve the situation:") << endl
;
1820 ShowBroken(c1out
,Cache
,false);
1822 return _error
->Error(_("Internal Error, AutoRemover broke stuff"));
1825 // if we don't remove them, we should show them!
1826 if (doAutoRemove
== false && (autoremovelist
.empty() == false || autoRemoveCount
!= 0))
1828 if (smallList
== false)
1829 ShowList(c1out
, P_("The following package was automatically installed and is no longer required:",
1830 "The following packages were automatically installed and are no longer required:",
1831 autoRemoveCount
), autoremovelist
, autoremoveversions
);
1833 ioprintf(c1out
, P_("%lu package was automatically installed and is no longer required.\n",
1834 "%lu packages were automatically installed and are no longer required.\n", autoRemoveCount
), autoRemoveCount
);
1835 c1out
<< P_("Use 'apt-get autoremove' to remove it.", "Use 'apt-get autoremove' to remove them.", autoRemoveCount
) << std::endl
;
1840 // DoUpgrade - Upgrade all packages /*{{{*/
1841 // ---------------------------------------------------------------------
1842 /* Upgrade all packages without installing new packages or erasing old
1844 bool DoUpgrade(CommandLine
&CmdL
)
1847 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
1851 if (pkgAllUpgrade(Cache
) == false)
1853 ShowBroken(c1out
,Cache
,false);
1854 return _error
->Error(_("Internal error, AllUpgrade broke stuff"));
1857 return InstallPackages(Cache
,true);
1860 // DoInstall - Install packages from the command line /*{{{*/
1861 // ---------------------------------------------------------------------
1862 /* Install named packages */
1863 bool DoInstall(CommandLine
&CmdL
)
1866 if (Cache
.OpenForInstall() == false ||
1867 Cache
.CheckDeps(CmdL
.FileSize() != 1) == false)
1870 // Enter the special broken fixing mode if the user specified arguments
1871 bool BrokenFix
= false;
1872 if (Cache
->BrokenCount() != 0)
1875 pkgProblemResolver
* Fix
= NULL
;
1876 if (_config
->FindB("APT::Get::CallResolver", true) == true)
1877 Fix
= new pkgProblemResolver(Cache
);
1879 static const unsigned short MOD_REMOVE
= 1;
1880 static const unsigned short MOD_INSTALL
= 2;
1882 unsigned short fallback
= MOD_INSTALL
;
1883 if (strcasecmp(CmdL
.FileList
[0],"remove") == 0)
1884 fallback
= MOD_REMOVE
;
1885 else if (strcasecmp(CmdL
.FileList
[0], "purge") == 0)
1887 _config
->Set("APT::Get::Purge", true);
1888 fallback
= MOD_REMOVE
;
1890 else if (strcasecmp(CmdL
.FileList
[0], "autoremove") == 0)
1892 _config
->Set("APT::Get::AutomaticRemove", "true");
1893 fallback
= MOD_REMOVE
;
1896 std::list
<APT::VersionSet::Modifier
> mods
;
1897 mods
.push_back(APT::VersionSet::Modifier(MOD_INSTALL
, "+",
1898 APT::VersionSet::Modifier::POSTFIX
, APT::VersionSet::CANDIDATE
));
1899 mods
.push_back(APT::VersionSet::Modifier(MOD_REMOVE
, "-",
1900 APT::VersionSet::Modifier::POSTFIX
, APT::VersionSet::NEWEST
));
1901 CacheSetHelperAPTGet
helper(c0out
);
1902 std::map
<unsigned short, APT::VersionSet
> verset
= APT::VersionSet::GroupedFromCommandLine(Cache
,
1903 CmdL
.FileList
+ 1, mods
, fallback
, helper
);
1905 if (_error
->PendingError() == true)
1907 helper
.showVirtualPackageErrors(Cache
);
1913 unsigned short const order
[] = { MOD_REMOVE
, MOD_INSTALL
, 0 };
1915 TryToInstall
InstallAction(Cache
, Fix
, BrokenFix
);
1916 TryToRemove
RemoveAction(Cache
, Fix
);
1918 // new scope for the ActionGroup
1920 pkgDepCache::ActionGroup
group(Cache
);
1922 for (unsigned short i
= 0; order
[i
] != 0; ++i
)
1924 if (order
[i
] == MOD_INSTALL
)
1925 InstallAction
= std::for_each(verset
[MOD_INSTALL
].begin(), verset
[MOD_INSTALL
].end(), InstallAction
);
1926 else if (order
[i
] == MOD_REMOVE
)
1927 RemoveAction
= std::for_each(verset
[MOD_REMOVE
].begin(), verset
[MOD_REMOVE
].end(), RemoveAction
);
1930 if (Fix
!= NULL
&& _config
->FindB("APT::Get::AutoSolving", true) == true)
1932 for (unsigned short i
= 0; order
[i
] != 0; ++i
)
1934 if (order
[i
] != MOD_INSTALL
)
1936 InstallAction
.propergateReleaseCandiateSwitching(helper
.selectedByRelease
, c0out
);
1937 InstallAction
.doAutoInstall();
1941 if (_error
->PendingError() == true)
1948 /* If we are in the Broken fixing mode we do not attempt to fix the
1949 problems. This is if the user invoked install without -f and gave
1951 if (BrokenFix
== true && Cache
->BrokenCount() != 0)
1953 c1out
<< _("You might want to run 'apt-get -f install' to correct these:") << endl
;
1954 ShowBroken(c1out
,Cache
,false);
1957 return _error
->Error(_("Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)."));
1962 // Call the scored problem resolver
1963 Fix
->InstallProtect();
1968 // Now we check the state of the packages,
1969 if (Cache
->BrokenCount() != 0)
1972 _("Some packages could not be installed. This may mean that you have\n"
1973 "requested an impossible situation or if you are using the unstable\n"
1974 "distribution that some required packages have not yet been created\n"
1975 "or been moved out of Incoming.") << endl
;
1981 _("Since you only requested a single operation it is extremely likely that\n"
1982 "the package is simply not installable and a bug report against\n"
1983 "that package should be filed.") << endl;
1987 c1out
<< _("The following information may help to resolve the situation:") << endl
;
1989 ShowBroken(c1out
,Cache
,false);
1990 if (_error
->PendingError() == true)
1993 return _error
->Error(_("Broken packages"));
1996 if (!DoAutomaticRemove(Cache
))
1999 /* Print out a list of packages that are going to be installed extra
2000 to what the user asked */
2001 if (Cache
->InstCount() != verset
[MOD_INSTALL
].size())
2004 string VersionsList
;
2005 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
2007 pkgCache::PkgIterator
I(Cache
,Cache
.List
[J
]);
2008 if ((*Cache
)[I
].Install() == false)
2010 pkgCache::VerIterator Cand
= Cache
[I
].CandidateVerIter(Cache
);
2012 if (verset
[MOD_INSTALL
].find(Cand
) != verset
[MOD_INSTALL
].end())
2015 List
+= I
.FullName(true) + " ";
2016 VersionsList
+= string(Cache
[I
].CandVersion
) + "\n";
2019 ShowList(c1out
,_("The following extra packages will be installed:"),List
,VersionsList
);
2022 /* Print out a list of suggested and recommended packages */
2024 string SuggestsList
, RecommendsList
, List
;
2025 string SuggestsVersions
, RecommendsVersions
;
2026 for (unsigned J
= 0; J
< Cache
->Head().PackageCount
; J
++)
2028 pkgCache::PkgIterator
Pkg(Cache
,Cache
.List
[J
]);
2030 /* Just look at the ones we want to install */
2031 if ((*Cache
)[Pkg
].Install() == false)
2034 // get the recommends/suggests for the candidate ver
2035 pkgCache::VerIterator CV
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
2036 for (pkgCache::DepIterator D
= CV
.DependsList(); D
.end() == false; )
2038 pkgCache::DepIterator Start
;
2039 pkgCache::DepIterator End
;
2040 D
.GlobOr(Start
,End
); // advances D
2042 // FIXME: we really should display a or-group as a or-group to the user
2043 // the problem is that ShowList is incapable of doing this
2044 string RecommendsOrList
,RecommendsOrVersions
;
2045 string SuggestsOrList
,SuggestsOrVersions
;
2046 bool foundInstalledInOrGroup
= false;
2049 /* Skip if package is installed already, or is about to be */
2050 string target
= Start
.TargetPkg().FullName(true) + " ";
2051 pkgCache::PkgIterator
const TarPkg
= Start
.TargetPkg();
2052 if (TarPkg
->SelectedState
== pkgCache::State::Install
||
2053 TarPkg
->SelectedState
== pkgCache::State::Hold
||
2054 Cache
[Start
.TargetPkg()].Install())
2056 foundInstalledInOrGroup
=true;
2060 /* Skip if we already saw it */
2061 if (int(SuggestsList
.find(target
)) != -1 || int(RecommendsList
.find(target
)) != -1)
2063 foundInstalledInOrGroup
=true;
2067 // this is a dep on a virtual pkg, check if any package that provides it
2068 // should be installed
2069 if(Start
.TargetPkg().ProvidesList() != 0)
2071 pkgCache::PrvIterator I
= Start
.TargetPkg().ProvidesList();
2072 for (; I
.end() == false; ++I
)
2074 pkgCache::PkgIterator Pkg
= I
.OwnerPkg();
2075 if (Cache
[Pkg
].CandidateVerIter(Cache
) == I
.OwnerVer() &&
2076 Pkg
.CurrentVer() != 0)
2077 foundInstalledInOrGroup
=true;
2081 if (Start
->Type
== pkgCache::Dep::Suggests
)
2083 SuggestsOrList
+= target
;
2084 SuggestsOrVersions
+= string(Cache
[Start
.TargetPkg()].CandVersion
) + "\n";
2087 if (Start
->Type
== pkgCache::Dep::Recommends
)
2089 RecommendsOrList
+= target
;
2090 RecommendsOrVersions
+= string(Cache
[Start
.TargetPkg()].CandVersion
) + "\n";
2098 if(foundInstalledInOrGroup
== false)
2100 RecommendsList
+= RecommendsOrList
;
2101 RecommendsVersions
+= RecommendsOrVersions
;
2102 SuggestsList
+= SuggestsOrList
;
2103 SuggestsVersions
+= SuggestsOrVersions
;
2109 ShowList(c1out
,_("Suggested packages:"),SuggestsList
,SuggestsVersions
);
2110 ShowList(c1out
,_("Recommended packages:"),RecommendsList
,RecommendsVersions
);
2114 // if nothing changed in the cache, but only the automark information
2115 // we write the StateFile here, otherwise it will be written in
2117 if (InstallAction
.AutoMarkChanged
> 0 &&
2118 Cache
->DelCount() == 0 && Cache
->InstCount() == 0 &&
2119 Cache
->BadCount() == 0 &&
2120 _config
->FindB("APT::Get::Simulate",false) == false)
2121 Cache
->writeStateFile(NULL
);
2123 // See if we need to prompt
2124 // FIXME: check if really the packages in the set are going to be installed
2125 if (Cache
->InstCount() == verset
[MOD_INSTALL
].size() && Cache
->DelCount() == 0)
2126 return InstallPackages(Cache
,false,false);
2128 return InstallPackages(Cache
,false);
2131 /* mark packages as automatically/manually installed. {{{*/
2132 bool DoMarkAuto(CommandLine
&CmdL
)
2135 int AutoMarkChanged
= 0;
2136 OpTextProgress progress
;
2138 if (Cache
.Open() == false)
2141 if (strcasecmp(CmdL
.FileList
[0],"markauto") == 0)
2143 else if (strcasecmp(CmdL
.FileList
[0],"unmarkauto") == 0)
2146 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
2149 // Locate the package
2150 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(S
);
2151 if (Pkg
.end() == true) {
2152 return _error
->Error(_("Couldn't find package %s"),S
);
2157 ioprintf(c1out
,_("%s set to manually installed.\n"), Pkg
.Name());
2159 ioprintf(c1out
,_("%s set to automatically installed.\n"),
2162 Cache
->MarkAuto(Pkg
,Action
);
2167 _error
->Notice(_("This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' instead."));
2169 if (AutoMarkChanged
&& ! _config
->FindB("APT::Get::Simulate",false))
2170 return Cache
->writeStateFile(NULL
);
2174 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
2175 // ---------------------------------------------------------------------
2176 /* Intelligent upgrader that will install and remove packages at will */
2177 bool DoDistUpgrade(CommandLine
&CmdL
)
2180 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
2183 c0out
<< _("Calculating upgrade... ") << flush
;
2184 if (pkgDistUpgrade(*Cache
) == false)
2186 c0out
<< _("Failed") << endl
;
2187 ShowBroken(c1out
,Cache
,false);
2191 c0out
<< _("Done") << endl
;
2193 return InstallPackages(Cache
,true);
2196 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
2197 // ---------------------------------------------------------------------
2198 /* Follows dselect's selections */
2199 bool DoDSelectUpgrade(CommandLine
&CmdL
)
2202 if (Cache
.OpenForInstall() == false || Cache
.CheckDeps() == false)
2205 pkgDepCache::ActionGroup
group(Cache
);
2207 // Install everything with the install flag set
2208 pkgCache::PkgIterator I
= Cache
->PkgBegin();
2209 for (;I
.end() != true; ++I
)
2211 /* Install the package only if it is a new install, the autoupgrader
2212 will deal with the rest */
2213 if (I
->SelectedState
== pkgCache::State::Install
)
2214 Cache
->MarkInstall(I
,false);
2217 /* Now install their deps too, if we do this above then order of
2218 the status file is significant for | groups */
2219 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
2221 /* Install the package only if it is a new install, the autoupgrader
2222 will deal with the rest */
2223 if (I
->SelectedState
== pkgCache::State::Install
)
2224 Cache
->MarkInstall(I
,true);
2227 // Apply erasures now, they override everything else.
2228 for (I
= Cache
->PkgBegin();I
.end() != true; ++I
)
2231 if (I
->SelectedState
== pkgCache::State::DeInstall
||
2232 I
->SelectedState
== pkgCache::State::Purge
)
2233 Cache
->MarkDelete(I
,I
->SelectedState
== pkgCache::State::Purge
);
2236 /* Resolve any problems that dselect created, allupgrade cannot handle
2237 such things. We do so quite agressively too.. */
2238 if (Cache
->BrokenCount() != 0)
2240 pkgProblemResolver
Fix(Cache
);
2242 // Hold back held packages.
2243 if (_config
->FindB("APT::Ignore-Hold",false) == false)
2245 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() == false; ++I
)
2247 if (I
->SelectedState
== pkgCache::State::Hold
)
2255 if (Fix
.Resolve() == false)
2257 ShowBroken(c1out
,Cache
,false);
2258 return _error
->Error(_("Internal error, problem resolver broke stuff"));
2262 // Now upgrade everything
2263 if (pkgAllUpgrade(Cache
) == false)
2265 ShowBroken(c1out
,Cache
,false);
2266 return _error
->Error(_("Internal error, problem resolver broke stuff"));
2269 return InstallPackages(Cache
,false);
2272 // DoClean - Remove download archives /*{{{*/
2273 // ---------------------------------------------------------------------
2275 bool DoClean(CommandLine
&CmdL
)
2277 std::string
const archivedir
= _config
->FindDir("Dir::Cache::archives");
2278 std::string
const pkgcache
= _config
->FindFile("Dir::cache::pkgcache");
2279 std::string
const srcpkgcache
= _config
->FindFile("Dir::cache::srcpkgcache");
2281 if (_config
->FindB("APT::Get::Simulate") == true)
2283 cout
<< "Del " << archivedir
<< "* " << archivedir
<< "partial/*"<< endl
2284 << "Del " << pkgcache
<< " " << srcpkgcache
<< endl
;
2288 // Lock the archive directory
2290 if (_config
->FindB("Debug::NoLocking",false) == false)
2292 Lock
.Fd(GetLock(archivedir
+ "lock"));
2293 if (_error
->PendingError() == true)
2294 return _error
->Error(_("Unable to lock the download directory"));
2298 Fetcher
.Clean(archivedir
);
2299 Fetcher
.Clean(archivedir
+ "partial/");
2301 pkgCacheFile::RemoveCaches();
2306 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
2307 // ---------------------------------------------------------------------
2308 /* This is similar to clean but it only purges things that cannot be
2309 downloaded, that is old versions of cached packages. */
2310 class LogCleaner
: public pkgArchiveCleaner
2313 virtual void Erase(const char *File
,string Pkg
,string Ver
,struct stat
&St
)
2315 c1out
<< "Del " << Pkg
<< " " << Ver
<< " [" << SizeToStr(St
.st_size
) << "B]" << endl
;
2317 if (_config
->FindB("APT::Get::Simulate") == false)
2322 bool DoAutoClean(CommandLine
&CmdL
)
2324 // Lock the archive directory
2326 if (_config
->FindB("Debug::NoLocking",false) == false)
2328 Lock
.Fd(GetLock(_config
->FindDir("Dir::Cache::Archives") + "lock"));
2329 if (_error
->PendingError() == true)
2330 return _error
->Error(_("Unable to lock the download directory"));
2334 if (Cache
.Open() == false)
2339 return Cleaner
.Go(_config
->FindDir("Dir::Cache::archives"),*Cache
) &&
2340 Cleaner
.Go(_config
->FindDir("Dir::Cache::archives") + "partial/",*Cache
);
2343 // DoDownload - download a binary /*{{{*/
2344 // ---------------------------------------------------------------------
2345 bool DoDownload(CommandLine
&CmdL
)
2348 if (Cache
.ReadOnlyOpen() == false)
2351 APT::CacheSetHelper
helper(c0out
);
2352 APT::VersionList verset
= APT::VersionList::FromCommandLine(Cache
,
2353 CmdL
.FileList
+ 1, APT::VersionList::CANDIDATE
, helper
);
2355 if (verset
.empty() == true)
2359 AcqTextStatus
Stat(ScreenWidth
, _config
->FindI("quiet",0));
2360 if (_config
->FindB("APT::Get::Print-URIs") == false)
2361 Fetcher
.Setup(&Stat
);
2363 pkgRecords
Recs(Cache
);
2364 pkgSourceList
*SrcList
= Cache
.GetSourceList();
2367 for (APT::VersionList::const_iterator Ver
= verset
.begin();
2368 Ver
!= verset
.end();
2372 // get the right version
2373 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
2374 pkgRecords::Parser
&rec
=Recs
.Lookup(Ver
.FileList());
2375 pkgCache::VerFileIterator Vf
= Ver
.FileList();
2376 if (Vf
.end() == true)
2378 _error
->Error("Can not find VerFile for %s in version %s", Pkg
.FullName().c_str(), Ver
.VerStr());
2382 pkgCache::PkgFileIterator F
= Vf
.File();
2383 pkgIndexFile
*index
;
2384 if(SrcList
->FindIndex(F
, index
) == false)
2386 _error
->Error(_("Can't find a source to download version '%s' of '%s'"), Ver
.VerStr(), Pkg
.FullName().c_str());
2390 string uri
= index
->ArchiveURI(rec
.FileName());
2391 strprintf(descr
, _("Downloading %s %s"), Pkg
.Name(), Ver
.VerStr());
2392 // get the most appropriate hash
2394 if (rec
.SHA512Hash() != "")
2395 hash
= HashString("sha512", rec
.SHA512Hash());
2396 if (rec
.SHA256Hash() != "")
2397 hash
= HashString("sha256", rec
.SHA256Hash());
2398 else if (rec
.SHA1Hash() != "")
2399 hash
= HashString("sha1", rec
.SHA1Hash());
2400 else if (rec
.MD5Hash() != "")
2401 hash
= HashString("md5", rec
.MD5Hash());
2403 new pkgAcqFile(&Fetcher
, uri
, hash
.toStr(), (*Ver
)->Size
, descr
, Pkg
.Name(), ".");
2405 if (gotAll
== false)
2408 // Just print out the uris and exit if the --print-uris flag was used
2409 if (_config
->FindB("APT::Get::Print-URIs") == true)
2411 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
2412 for (; I
!= Fetcher
.UriEnd(); ++I
)
2413 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
2414 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
2418 return (Fetcher
.Run() == pkgAcquire::Continue
);
2421 // DoCheck - Perform the check operation /*{{{*/
2422 // ---------------------------------------------------------------------
2423 /* Opening automatically checks the system, this command is mostly used
2425 bool DoCheck(CommandLine
&CmdL
)
2434 // DoSource - Fetch a source archive /*{{{*/
2435 // ---------------------------------------------------------------------
2436 /* Fetch souce packages */
2444 bool DoSource(CommandLine
&CmdL
)
2447 if (Cache
.Open(false) == false)
2450 if (CmdL
.FileSize() <= 1)
2451 return _error
->Error(_("Must specify at least one package to fetch source for"));
2453 // Read the source list
2454 if (Cache
.BuildSourceList() == false)
2456 pkgSourceList
*List
= Cache
.GetSourceList();
2458 // Create the text record parsers
2459 pkgRecords
Recs(Cache
);
2460 pkgSrcRecords
SrcRecs(*List
);
2461 if (_error
->PendingError() == true)
2464 // Create the download object
2465 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
2467 Fetcher
.SetLog(&Stat
);
2469 DscFile
*Dsc
= new DscFile
[CmdL
.FileSize()];
2471 // insert all downloaded uris into this set to avoid downloading them
2475 // Diff only mode only fetches .diff files
2476 bool const diffOnly
= _config
->FindB("APT::Get::Diff-Only", false);
2477 // Tar only mode only fetches .tar files
2478 bool const tarOnly
= _config
->FindB("APT::Get::Tar-Only", false);
2479 // Dsc only mode only fetches .dsc files
2480 bool const dscOnly
= _config
->FindB("APT::Get::Dsc-Only", false);
2482 // Load the requestd sources into the fetcher
2484 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
2487 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,*Cache
);
2491 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
2494 string srec
= Last
->AsStr();
2495 string::size_type pos
= srec
.find("\nVcs-");
2496 while (pos
!= string::npos
)
2498 pos
+= strlen("\nVcs-");
2499 string vcs
= srec
.substr(pos
,srec
.find(":",pos
)-pos
);
2500 if(vcs
== "Browser")
2502 pos
= srec
.find("\nVcs-", pos
);
2505 pos
+= vcs
.length()+2;
2506 string::size_type epos
= srec
.find("\n", pos
);
2507 string uri
= srec
.substr(pos
,epos
-pos
).c_str();
2508 ioprintf(c1out
, _("NOTICE: '%s' packaging is maintained in "
2509 "the '%s' version control system at:\n"
2511 Src
.c_str(), vcs
.c_str(), uri
.c_str());
2513 ioprintf(c1out
,_("Please use:\n"
2515 "to retrieve the latest (possibly unreleased) "
2516 "updates to the package.\n"),
2522 vector
<pkgSrcRecords::File
> Lst
;
2523 if (Last
->Files(Lst
) == false) {
2528 // Load them into the fetcher
2529 for (vector
<pkgSrcRecords::File
>::const_iterator I
= Lst
.begin();
2530 I
!= Lst
.end(); ++I
)
2532 // Try to guess what sort of file it is we are getting.
2533 if (I
->Type
== "dsc")
2535 Dsc
[J
].Package
= Last
->Package();
2536 Dsc
[J
].Version
= Last
->Version();
2537 Dsc
[J
].Dsc
= flNotDir(I
->Path
);
2540 // Handle the only options so that multiple can be used at once
2541 if (diffOnly
== true || tarOnly
== true || dscOnly
== true)
2543 if ((diffOnly
== true && I
->Type
== "diff") ||
2544 (tarOnly
== true && I
->Type
== "tar") ||
2545 (dscOnly
== true && I
->Type
== "dsc"))
2546 ; // Fine, we want this file downloaded
2551 // don't download the same uri twice (should this be moved to
2552 // the fetcher interface itself?)
2553 if(queued
.find(Last
->Index().ArchiveURI(I
->Path
)) != queued
.end())
2555 queued
.insert(Last
->Index().ArchiveURI(I
->Path
));
2557 // check if we have a file with that md5 sum already localy
2558 if(!I
->MD5Hash
.empty() && FileExists(flNotDir(I
->Path
)))
2560 FileFd
Fd(flNotDir(I
->Path
), FileFd::ReadOnly
);
2562 sum
.AddFD(Fd
.Fd(), Fd
.Size());
2564 if((string
)sum
.Result() == I
->MD5Hash
)
2566 ioprintf(c1out
,_("Skipping already downloaded file '%s'\n"),
2567 flNotDir(I
->Path
).c_str());
2572 new pkgAcqFile(&Fetcher
,Last
->Index().ArchiveURI(I
->Path
),
2574 Last
->Index().SourceInfo(*Last
,*I
),Src
);
2578 // Display statistics
2579 unsigned long long FetchBytes
= Fetcher
.FetchNeeded();
2580 unsigned long long FetchPBytes
= Fetcher
.PartialPresent();
2581 unsigned long long DebBytes
= Fetcher
.TotalNeeded();
2583 // Check for enough free space
2585 string OutputDir
= ".";
2586 if (statvfs(OutputDir
.c_str(),&Buf
) != 0) {
2588 if (errno
== EOVERFLOW
)
2589 return _error
->WarningE("statvfs",_("Couldn't determine free space in %s"),
2592 return _error
->Errno("statvfs",_("Couldn't determine free space in %s"),
2594 } else if (unsigned(Buf
.f_bfree
) < (FetchBytes
- FetchPBytes
)/Buf
.f_bsize
)
2597 if (statfs(OutputDir
.c_str(),&Stat
) != 0
2598 #if HAVE_STRUCT_STATFS_F_TYPE
2599 || unsigned(Stat
.f_type
) != RAMFS_MAGIC
2603 return _error
->Error(_("You don't have enough free space in %s"),
2609 if (DebBytes
!= FetchBytes
)
2610 //TRANSLATOR: The required space between number and unit is already included
2611 // in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
2612 ioprintf(c1out
,_("Need to get %sB/%sB of source archives.\n"),
2613 SizeToStr(FetchBytes
).c_str(),SizeToStr(DebBytes
).c_str());
2615 //TRANSLATOR: The required space between number and unit is already included
2616 // in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
2617 ioprintf(c1out
,_("Need to get %sB of source archives.\n"),
2618 SizeToStr(DebBytes
).c_str());
2620 if (_config
->FindB("APT::Get::Simulate",false) == true)
2622 for (unsigned I
= 0; I
!= J
; I
++)
2623 ioprintf(cout
,_("Fetch source %s\n"),Dsc
[I
].Package
.c_str());
2628 // Just print out the uris an exit if the --print-uris flag was used
2629 if (_config
->FindB("APT::Get::Print-URIs") == true)
2631 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
2632 for (; I
!= Fetcher
.UriEnd(); ++I
)
2633 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
2634 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << endl
;
2640 if (Fetcher
.Run() == pkgAcquire::Failed
)
2646 // Print error messages
2647 bool Failed
= false;
2648 for (pkgAcquire::ItemIterator I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); ++I
)
2650 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
2651 (*I
)->Complete
== true)
2654 fprintf(stderr
,_("Failed to fetch %s %s\n"),(*I
)->DescURI().c_str(),
2655 (*I
)->ErrorText
.c_str());
2661 return _error
->Error(_("Failed to fetch some archives."));
2664 if (_config
->FindB("APT::Get::Download-only",false) == true)
2666 c1out
<< _("Download complete and in download only mode") << endl
;
2671 // Unpack the sources
2672 pid_t Process
= ExecFork();
2676 bool const fixBroken
= _config
->FindB("APT::Get::Fix-Broken", false);
2677 for (unsigned I
= 0; I
!= J
; ++I
)
2679 string Dir
= Dsc
[I
].Package
+ '-' + Cache
->VS().UpstreamVersion(Dsc
[I
].Version
.c_str());
2681 // Diff only mode only fetches .diff files
2682 if (_config
->FindB("APT::Get::Diff-Only",false) == true ||
2683 _config
->FindB("APT::Get::Tar-Only",false) == true ||
2684 Dsc
[I
].Dsc
.empty() == true)
2687 // See if the package is already unpacked
2689 if (fixBroken
== false && stat(Dir
.c_str(),&Stat
) == 0 &&
2690 S_ISDIR(Stat
.st_mode
) != 0)
2692 ioprintf(c0out
,_("Skipping unpack of already unpacked source in %s\n"),
2699 snprintf(S
,sizeof(S
),"%s -x %s",
2700 _config
->Find("Dir::Bin::dpkg-source","dpkg-source").c_str(),
2701 Dsc
[I
].Dsc
.c_str());
2704 fprintf(stderr
,_("Unpack command '%s' failed.\n"),S
);
2705 fprintf(stderr
,_("Check if the 'dpkg-dev' package is installed.\n"));
2710 // Try to compile it with dpkg-buildpackage
2711 if (_config
->FindB("APT::Get::Compile",false) == true)
2713 string buildopts
= _config
->Find("APT::Get::Host-Architecture");
2714 if (buildopts
.empty() == false)
2715 buildopts
= "-a " + buildopts
+ " ";
2716 buildopts
.append(_config
->Find("DPkg::Build-Options","-b -uc"));
2718 // Call dpkg-buildpackage
2720 snprintf(S
,sizeof(S
),"cd %s && %s %s",
2722 _config
->Find("Dir::Bin::dpkg-buildpackage","dpkg-buildpackage").c_str(),
2727 fprintf(stderr
,_("Build command '%s' failed.\n"),S
);
2737 // Wait for the subprocess
2739 while (waitpid(Process
,&Status
,0) != Process
)
2743 return _error
->Errno("waitpid","Couldn't wait for subprocess");
2746 if (WIFEXITED(Status
) == 0 || WEXITSTATUS(Status
) != 0)
2747 return _error
->Error(_("Child process failed"));
2752 // DoBuildDep - Install/removes packages to satisfy build dependencies /*{{{*/
2753 // ---------------------------------------------------------------------
2754 /* This function will look at the build depends list of the given source
2755 package and install the necessary packages to make it true, or fail. */
2756 bool DoBuildDep(CommandLine
&CmdL
)
2760 _config
->Set("APT::Install-Recommends", false);
2762 if (Cache
.Open(true) == false)
2765 if (CmdL
.FileSize() <= 1)
2766 return _error
->Error(_("Must specify at least one package to check builddeps for"));
2768 // Read the source list
2769 if (Cache
.BuildSourceList() == false)
2771 pkgSourceList
*List
= Cache
.GetSourceList();
2773 // Create the text record parsers
2774 pkgRecords
Recs(Cache
);
2775 pkgSrcRecords
SrcRecs(*List
);
2776 if (_error
->PendingError() == true)
2779 // Create the download object
2780 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
2782 if (Fetcher
.Setup(&Stat
) == false)
2785 bool StripMultiArch
;
2786 string hostArch
= _config
->Find("APT::Get::Host-Architecture");
2787 if (hostArch
.empty() == false)
2789 std::vector
<std::string
> archs
= APT::Configuration::getArchitectures();
2790 if (std::find(archs
.begin(), archs
.end(), hostArch
) == archs
.end())
2791 return _error
->Error(_("No architecture information available for %s. See apt.conf(5) APT::Architectures for setup"), hostArch
.c_str());
2792 StripMultiArch
= false;
2795 StripMultiArch
= true;
2798 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++, J
++)
2801 pkgSrcRecords::Parser
*Last
= FindSrc(*I
,Recs
,SrcRecs
,Src
,*Cache
);
2803 return _error
->Error(_("Unable to find a source package for %s"),Src
.c_str());
2805 // Process the build-dependencies
2806 vector
<pkgSrcRecords::Parser::BuildDepRec
> BuildDeps
;
2807 // FIXME: Can't specify architecture to use for [wildcard] matching, so switch default arch temporary
2808 if (hostArch
.empty() == false)
2810 std::string nativeArch
= _config
->Find("APT::Architecture");
2811 _config
->Set("APT::Architecture", hostArch
);
2812 bool Success
= Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
);
2813 _config
->Set("APT::Architecture", nativeArch
);
2814 if (Success
== false)
2815 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
2817 else if (Last
->BuildDepends(BuildDeps
, _config
->FindB("APT::Get::Arch-Only", false), StripMultiArch
) == false)
2818 return _error
->Error(_("Unable to get build-dependency information for %s"),Src
.c_str());
2820 // Also ensure that build-essential packages are present
2821 Configuration::Item
const *Opts
= _config
->Tree("APT::Build-Essential");
2824 for (; Opts
; Opts
= Opts
->Next
)
2826 if (Opts
->Value
.empty() == true)
2829 pkgSrcRecords::Parser::BuildDepRec rec
;
2830 rec
.Package
= Opts
->Value
;
2831 rec
.Type
= pkgSrcRecords::Parser::BuildDependIndep
;
2833 BuildDeps
.push_back(rec
);
2836 if (BuildDeps
.empty() == true)
2838 ioprintf(c1out
,_("%s has no build depends.\n"),Src
.c_str());
2842 // Install the requested packages
2843 vector
<pkgSrcRecords::Parser::BuildDepRec
>::iterator D
;
2844 pkgProblemResolver
Fix(Cache
);
2845 bool skipAlternatives
= false; // skip remaining alternatives in an or group
2846 for (D
= BuildDeps
.begin(); D
!= BuildDeps
.end(); ++D
)
2848 bool hasAlternatives
= (((*D
).Op
& pkgCache::Dep::Or
) == pkgCache::Dep::Or
);
2850 if (skipAlternatives
== true)
2853 * if there are alternatives, we've already picked one, so skip
2856 * TODO: this means that if there's a build-dep on A|B and B is
2857 * installed, we'll still try to install A; more importantly,
2858 * if A is currently broken, we cannot go back and try B. To fix
2859 * this would require we do a Resolve cycle for each package we
2860 * add to the install list. Ugh
2862 if (!hasAlternatives
)
2863 skipAlternatives
= false; // end of or group
2867 if ((*D
).Type
== pkgSrcRecords::Parser::BuildConflict
||
2868 (*D
).Type
== pkgSrcRecords::Parser::BuildConflictIndep
)
2870 pkgCache::GrpIterator Grp
= Cache
->FindGrp((*D
).Package
);
2871 // Build-conflicts on unknown packages are silently ignored
2872 if (Grp
.end() == true)
2875 for (pkgCache::PkgIterator Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
2877 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
2879 * Remove if we have an installed version that satisfies the
2882 if (IV
.end() == false &&
2883 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
2884 TryToInstallBuildDep(Pkg
,Cache
,Fix
,true,false);
2887 else // BuildDep || BuildDepIndep
2889 if (_config
->FindB("Debug::BuildDeps",false) == true)
2890 cout
<< "Looking for " << (*D
).Package
<< "...\n";
2892 pkgCache::PkgIterator Pkg
;
2895 if (StripMultiArch
== false && D
->Type
!= pkgSrcRecords::Parser::BuildDependIndep
)
2897 size_t const colon
= D
->Package
.find(":");
2898 if (colon
!= string::npos
&&
2899 (strcmp(D
->Package
.c_str() + colon
, ":any") == 0 || strcmp(D
->Package
.c_str() + colon
, ":native") == 0))
2900 Pkg
= Cache
->FindPkg(D
->Package
.substr(0,colon
));
2902 Pkg
= Cache
->FindPkg(D
->Package
);
2904 // a bad version either is invalid or doesn't satify dependency
2905 #define BADVER(Ver) (Ver.end() == true || \
2906 (D->Version.empty() == false && \
2907 Cache->VS().CheckDep(Ver.VerStr(),D->Op,D->Version.c_str()) == false))
2909 APT::VersionList verlist
;
2910 if (Pkg
.end() == false)
2912 pkgCache::VerIterator Ver
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
2913 if (BADVER(Ver
) == false)
2914 verlist
.insert(Ver
);
2915 Ver
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
2916 if (BADVER(Ver
) == false)
2917 verlist
.insert(Ver
);
2919 if (verlist
.empty() == true)
2921 pkgCache::PkgIterator HostPkg
= Cache
->FindPkg(D
->Package
, hostArch
);
2922 if (HostPkg
.end() == false)
2924 pkgCache::VerIterator Ver
= (*Cache
)[HostPkg
].InstVerIter(*Cache
);
2925 if (BADVER(Ver
) == false)
2926 verlist
.insert(Ver
);
2927 Ver
= (*Cache
)[HostPkg
].CandidateVerIter(*Cache
);
2928 if (BADVER(Ver
) == false)
2929 verlist
.insert(Ver
);
2935 // We need to decide if host or build arch, so find a version we can look at
2936 APT::VersionList::const_iterator Ver
= verlist
.begin();
2937 for (; Ver
!= verlist
.end(); ++Ver
)
2940 if (Ver
->MultiArch
== pkgCache::Version::None
|| Ver
->MultiArch
== pkgCache::Version::All
)
2942 if (colon
== string::npos
)
2943 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
2944 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
2945 forbidden
= "Multi-Arch: none";
2947 else if (Ver
->MultiArch
== pkgCache::Version::Same
)
2949 if (colon
== string::npos
)
2950 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
2951 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
2952 forbidden
= "Multi-Arch: same";
2953 // :native gets the buildArch
2955 else if ((Ver
->MultiArch
& pkgCache::Version::Foreign
) == pkgCache::Version::Foreign
)
2957 if (colon
!= string::npos
)
2958 forbidden
= "Multi-Arch: foreign";
2960 else if ((Ver
->MultiArch
& pkgCache::Version::Allowed
) == pkgCache::Version::Allowed
)
2962 if (colon
== string::npos
)
2963 Pkg
= Ver
.ParentPkg().Group().FindPkg(hostArch
);
2964 else if (strcmp(D
->Package
.c_str() + colon
, ":any") == 0)
2966 // prefer any installed over preferred non-installed architectures
2967 pkgCache::GrpIterator Grp
= Ver
.ParentPkg().Group();
2968 // we don't check for version here as we are better of with upgrading than remove and install
2969 for (Pkg
= Grp
.PackageList(); Pkg
.end() == false; Pkg
= Grp
.NextPkg(Pkg
))
2970 if (Pkg
.CurrentVer().end() == false)
2972 if (Pkg
.end() == true)
2973 Pkg
= Grp
.FindPreferredPkg(true);
2975 // native gets buildArch
2978 if (forbidden
.empty() == false)
2980 if (_config
->FindB("Debug::BuildDeps",false) == true)
2981 cout
<< D
->Package
.substr(colon
, string::npos
) << " is not allowed from " << forbidden
<< " package " << (*D
).Package
<< " (" << Ver
.VerStr() << ")" << endl
;
2985 //we found a good version
2988 if (Ver
== verlist
.end())
2990 if (_config
->FindB("Debug::BuildDeps",false) == true)
2991 cout
<< " No multiarch info as we have no satisfying installed nor candidate for " << D
->Package
<< " on build or host arch" << endl
;
2993 if (forbidden
.empty() == false)
2995 if (hasAlternatives
)
2997 return _error
->Error(_("%s dependency for %s can't be satisfied "
2998 "because %s is not allowed on '%s' packages"),
2999 Last
->BuildDepType(D
->Type
), Src
.c_str(),
3000 D
->Package
.c_str(), forbidden
.c_str());
3005 Pkg
= Cache
->FindPkg(D
->Package
);
3007 if (Pkg
.end() == true)
3009 if (_config
->FindB("Debug::BuildDeps",false) == true)
3010 cout
<< " (not found)" << (*D
).Package
<< endl
;
3012 if (hasAlternatives
)
3015 return _error
->Error(_("%s dependency for %s cannot be satisfied "
3016 "because the package %s cannot be found"),
3017 Last
->BuildDepType((*D
).Type
),Src
.c_str(),
3018 (*D
).Package
.c_str());
3021 pkgCache::VerIterator IV
= (*Cache
)[Pkg
].InstVerIter(*Cache
);
3022 if (IV
.end() == false)
3024 if (_config
->FindB("Debug::BuildDeps",false) == true)
3025 cout
<< " Is installed\n";
3027 if (D
->Version
.empty() == true ||
3028 Cache
->VS().CheckDep(IV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == true)
3030 skipAlternatives
= hasAlternatives
;
3034 if (_config
->FindB("Debug::BuildDeps",false) == true)
3035 cout
<< " ...but the installed version doesn't meet the version requirement\n";
3037 if (((*D
).Op
& pkgCache::Dep::LessEq
) == pkgCache::Dep::LessEq
)
3038 return _error
->Error(_("Failed to satisfy %s dependency for %s: Installed package %s is too new"),
3039 Last
->BuildDepType((*D
).Type
), Src
.c_str(), Pkg
.FullName(true).c_str());
3042 // Only consider virtual packages if there is no versioned dependency
3043 if ((*D
).Version
.empty() == true)
3046 * If this is a virtual package, we need to check the list of
3047 * packages that provide it and see if any of those are
3050 pkgCache::PrvIterator Prv
= Pkg
.ProvidesList();
3051 for (; Prv
.end() != true; ++Prv
)
3053 if (_config
->FindB("Debug::BuildDeps",false) == true)
3054 cout
<< " Checking provider " << Prv
.OwnerPkg().FullName() << endl
;
3056 if ((*Cache
)[Prv
.OwnerPkg()].InstVerIter(*Cache
).end() == false)
3060 if (Prv
.end() == false)
3062 if (_config
->FindB("Debug::BuildDeps",false) == true)
3063 cout
<< " Is provided by installed package " << Prv
.OwnerPkg().FullName() << endl
;
3064 skipAlternatives
= hasAlternatives
;
3068 else // versioned dependency
3070 pkgCache::VerIterator CV
= (*Cache
)[Pkg
].CandidateVerIter(*Cache
);
3071 if (CV
.end() == true ||
3072 Cache
->VS().CheckDep(CV
.VerStr(),(*D
).Op
,(*D
).Version
.c_str()) == false)
3074 if (hasAlternatives
)
3076 else if (CV
.end() == false)
3077 return _error
->Error(_("%s dependency for %s cannot be satisfied "
3078 "because candidate version of package %s "
3079 "can't satisfy version requirements"),
3080 Last
->BuildDepType(D
->Type
), Src
.c_str(),
3081 D
->Package
.c_str());
3083 return _error
->Error(_("%s dependency for %s cannot be satisfied "
3084 "because package %s has no candidate version"),
3085 Last
->BuildDepType(D
->Type
), Src
.c_str(),
3086 D
->Package
.c_str());
3090 if (TryToInstallBuildDep(Pkg
,Cache
,Fix
,false,false) == true)
3092 // We successfully installed something; skip remaining alternatives
3093 skipAlternatives
= hasAlternatives
;
3094 if(_config
->FindB("APT::Get::Build-Dep-Automatic", false) == true)
3095 Cache
->MarkAuto(Pkg
, true);
3098 else if (hasAlternatives
)
3100 if (_config
->FindB("Debug::BuildDeps",false) == true)
3101 cout
<< " Unsatisfiable, trying alternatives\n";
3106 return _error
->Error(_("Failed to satisfy %s dependency for %s: %s"),
3107 Last
->BuildDepType((*D
).Type
),
3109 (*D
).Package
.c_str());
3114 Fix
.InstallProtect();
3115 if (Fix
.Resolve(true) == false)
3118 // Now we check the state of the packages,
3119 if (Cache
->BrokenCount() != 0)
3121 ShowBroken(cout
, Cache
, false);
3122 return _error
->Error(_("Build-dependencies for %s could not be satisfied."),*I
);
3126 if (InstallPackages(Cache
, false, true) == false)
3127 return _error
->Error(_("Failed to process build dependencies"));
3131 // GetChangelogPath - return a path pointing to a changelog file or dir /*{{{*/
3132 // ---------------------------------------------------------------------
3133 /* This returns a "path" string for the changelog url construction.
3134 * Please note that its not complete, it either needs a "/changelog"
3135 * appended (for the packages.debian.org/changelogs site) or a
3136 * ".changelog" (for third party sites that store the changelog in the
3137 * pool/ next to the deb itself)
3138 * Example return: "pool/main/a/apt/apt_0.8.8ubuntu3"
3140 string
GetChangelogPath(CacheFile
&Cache
,
3141 pkgCache::PkgIterator Pkg
,
3142 pkgCache::VerIterator Ver
)
3146 pkgRecords
Recs(Cache
);
3147 pkgRecords::Parser
&rec
=Recs
.Lookup(Ver
.FileList());
3148 string srcpkg
= rec
.SourcePkg().empty() ? Pkg
.Name() : rec
.SourcePkg();
3149 string ver
= Ver
.VerStr();
3150 // if there is a source version it always wins
3151 if (rec
.SourceVer() != "")
3152 ver
= rec
.SourceVer();
3153 path
= flNotFile(rec
.FileName());
3154 path
+= srcpkg
+ "_" + StripEpoch(ver
);
3158 // GuessThirdPartyChangelogUri - return url /*{{{*/
3159 // ---------------------------------------------------------------------
3160 /* Contruct a changelog file path for third party sites that do not use
3161 * packages.debian.org/changelogs
3162 * This simply uses the ArchiveURI() of the source pkg and looks for
3163 * a .changelog file there, Example for "mediabuntu":
3164 * apt-get changelog mplayer-doc:
3165 * http://packages.medibuntu.org/pool/non-free/m/mplayer/mplayer_1.0~rc4~try1.dsfg1-1ubuntu1+medibuntu1.changelog
3167 bool GuessThirdPartyChangelogUri(CacheFile
&Cache
,
3168 pkgCache::PkgIterator Pkg
,
3169 pkgCache::VerIterator Ver
,
3172 // get the binary deb server path
3173 pkgCache::VerFileIterator Vf
= Ver
.FileList();
3174 if (Vf
.end() == true)
3176 pkgCache::PkgFileIterator F
= Vf
.File();
3177 pkgIndexFile
*index
;
3178 pkgSourceList
*SrcList
= Cache
.GetSourceList();
3179 if(SrcList
->FindIndex(F
, index
) == false)
3182 // get archive uri for the binary deb
3183 string path_without_dot_changelog
= GetChangelogPath(Cache
, Pkg
, Ver
);
3184 out_uri
= index
->ArchiveURI(path_without_dot_changelog
+ ".changelog");
3186 // now strip away the filename and add srcpkg_srcver.changelog
3190 // DownloadChangelog - Download the changelog /*{{{*/
3191 // ---------------------------------------------------------------------
3192 bool DownloadChangelog(CacheFile
&CacheFile
, pkgAcquire
&Fetcher
,
3193 pkgCache::VerIterator Ver
, string targetfile
)
3194 /* Download a changelog file for the given package version to
3195 * targetfile. This will first try the server from Apt::Changelogs::Server
3196 * (http://packages.debian.org/changelogs by default) and if that gives
3197 * a 404 tries to get it from the archive directly (see
3198 * GuessThirdPartyChangelogUri for details how)
3204 string changelog_uri
;
3206 // data structures we need
3207 pkgCache::PkgIterator Pkg
= Ver
.ParentPkg();
3209 // make the server root configurable
3210 server
= _config
->Find("Apt::Changelogs::Server",
3211 "http://packages.debian.org/changelogs");
3212 path
= GetChangelogPath(CacheFile
, Pkg
, Ver
);
3213 strprintf(changelog_uri
, "%s/%s/changelog", server
.c_str(), path
.c_str());
3214 if (_config
->FindB("APT::Get::Print-URIs", false) == true)
3216 std::cout
<< '\'' << changelog_uri
<< '\'' << std::endl
;
3220 strprintf(descr
, _("Changelog for %s (%s)"), Pkg
.Name(), changelog_uri
.c_str());
3222 new pkgAcqFile(&Fetcher
, changelog_uri
, "", 0, descr
, Pkg
.Name(), "ignored", targetfile
);
3224 // try downloading it, if that fails, try third-party-changelogs location
3225 // FIXME: Fetcher.Run() is "Continue" even if I get a 404?!?
3227 if (!FileExists(targetfile
))
3229 string third_party_uri
;
3230 if (GuessThirdPartyChangelogUri(CacheFile
, Pkg
, Ver
, third_party_uri
))
3232 strprintf(descr
, _("Changelog for %s (%s)"), Pkg
.Name(), third_party_uri
.c_str());
3233 new pkgAcqFile(&Fetcher
, third_party_uri
, "", 0, descr
, Pkg
.Name(), "ignored", targetfile
);
3238 if (FileExists(targetfile
))
3242 return _error
->Error("changelog download failed");
3245 // DisplayFileInPager - Display File with pager /*{{{*/
3246 void DisplayFileInPager(string filename
)
3248 pid_t Process
= ExecFork();
3251 const char *Args
[3];
3252 Args
[0] = "/usr/bin/sensible-pager";
3253 Args
[1] = filename
.c_str();
3255 execvp(Args
[0],(char **)Args
);
3259 // Wait for the subprocess
3260 ExecWait(Process
, "sensible-pager", false);
3263 // DoChangelog - Get changelog from the command line /*{{{*/
3264 // ---------------------------------------------------------------------
3265 bool DoChangelog(CommandLine
&CmdL
)
3268 if (Cache
.ReadOnlyOpen() == false)
3271 APT::CacheSetHelper
helper(c0out
);
3272 APT::VersionList verset
= APT::VersionList::FromCommandLine(Cache
,
3273 CmdL
.FileList
+ 1, APT::VersionList::CANDIDATE
, helper
);
3274 if (verset
.empty() == true)
3278 if (_config
->FindB("APT::Get::Print-URIs", false) == true)
3280 bool Success
= true;
3281 for (APT::VersionList::const_iterator Ver
= verset
.begin();
3282 Ver
!= verset
.end(); ++Ver
)
3283 Success
&= DownloadChangelog(Cache
, Fetcher
, Ver
, "");
3287 AcqTextStatus
Stat(ScreenWidth
, _config
->FindI("quiet",0));
3288 Fetcher
.Setup(&Stat
);
3290 bool const downOnly
= _config
->FindB("APT::Get::Download-Only", false);
3293 char* tmpdir
= NULL
;
3294 if (downOnly
== false)
3296 const char* const tmpDir
= getenv("TMPDIR");
3297 if (tmpDir
!= NULL
&& *tmpDir
!= '\0')
3298 snprintf(tmpname
, sizeof(tmpname
), "%s/apt-changelog-XXXXXX", tmpDir
);
3300 strncpy(tmpname
, "/tmp/apt-changelog-XXXXXX", sizeof(tmpname
));
3301 tmpdir
= mkdtemp(tmpname
);
3303 return _error
->Errno("mkdtemp", "mkdtemp failed");
3306 for (APT::VersionList::const_iterator Ver
= verset
.begin();
3307 Ver
!= verset
.end();
3310 string changelogfile
;
3311 if (downOnly
== false)
3312 changelogfile
.append(tmpname
).append("changelog");
3314 changelogfile
.append(Ver
.ParentPkg().Name()).append(".changelog");
3315 if (DownloadChangelog(Cache
, Fetcher
, Ver
, changelogfile
) && downOnly
== false)
3317 DisplayFileInPager(changelogfile
);
3318 // cleanup temp file
3319 unlink(changelogfile
.c_str());
3328 // DoMoo - Never Ask, Never Tell /*{{{*/
3329 // ---------------------------------------------------------------------
3331 bool DoMoo(CommandLine
&CmdL
)
3340 "....\"Have you mooed today?\"...\n";
3345 // ShowHelp - Show a help screen /*{{{*/
3346 // ---------------------------------------------------------------------
3348 bool ShowHelp(CommandLine
&CmdL
)
3350 ioprintf(cout
,_("%s %s for %s compiled on %s %s\n"),PACKAGE
,PACKAGE_VERSION
,
3351 COMMON_ARCH
,__DATE__
,__TIME__
);
3353 if (_config
->FindB("version") == true)
3355 cout
<< _("Supported modules:") << endl
;
3357 for (unsigned I
= 0; I
!= pkgVersioningSystem::GlobalListLen
; I
++)
3359 pkgVersioningSystem
*VS
= pkgVersioningSystem::GlobalList
[I
];
3360 if (_system
!= 0 && _system
->VS
== VS
)
3364 cout
<< "Ver: " << VS
->Label
<< endl
;
3366 /* Print out all the packaging systems that will work with
3368 for (unsigned J
= 0; J
!= pkgSystem::GlobalListLen
; J
++)
3370 pkgSystem
*Sys
= pkgSystem::GlobalList
[J
];
3375 if (Sys
->VS
->TestCompatibility(*VS
) == true)
3376 cout
<< "Pkg: " << Sys
->Label
<< " (Priority " << Sys
->Score(*_config
) << ")" << endl
;
3380 for (unsigned I
= 0; I
!= pkgSourceList::Type::GlobalListLen
; I
++)
3382 pkgSourceList::Type
*Type
= pkgSourceList::Type::GlobalList
[I
];
3383 cout
<< " S.L: '" << Type
->Name
<< "' " << Type
->Label
<< endl
;
3386 for (unsigned I
= 0; I
!= pkgIndexFile::Type::GlobalListLen
; I
++)
3388 pkgIndexFile::Type
*Type
= pkgIndexFile::Type::GlobalList
[I
];
3389 cout
<< " Idx: " << Type
->Label
<< endl
;
3396 _("Usage: apt-get [options] command\n"
3397 " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
3398 " apt-get [options] source pkg1 [pkg2 ...]\n"
3400 "apt-get is a simple command line interface for downloading and\n"
3401 "installing packages. The most frequently used commands are update\n"
3405 " update - Retrieve new lists of packages\n"
3406 " upgrade - Perform an upgrade\n"
3407 " install - Install new packages (pkg is libc6 not libc6.deb)\n"
3408 " remove - Remove packages\n"
3409 " autoremove - Remove automatically all unused packages\n"
3410 " purge - Remove packages and config files\n"
3411 " source - Download source archives\n"
3412 " build-dep - Configure build-dependencies for source packages\n"
3413 " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
3414 " dselect-upgrade - Follow dselect selections\n"
3415 " clean - Erase downloaded archive files\n"
3416 " autoclean - Erase old downloaded archive files\n"
3417 " check - Verify that there are no broken dependencies\n"
3418 " changelog - Download and display the changelog for the given package\n"
3419 " download - Download the binary package into the current directory\n"
3422 " -h This help text.\n"
3423 " -q Loggable output - no progress indicator\n"
3424 " -qq No output except for errors\n"
3425 " -d Download only - do NOT install or unpack archives\n"
3426 " -s No-act. Perform ordering simulation\n"
3427 " -y Assume Yes to all queries and do not prompt\n"
3428 " -f Attempt to correct a system with broken dependencies in place\n"
3429 " -m Attempt to continue if archives are unlocatable\n"
3430 " -u Show a list of upgraded packages as well\n"
3431 " -b Build the source package after fetching it\n"
3432 " -V Show verbose version numbers\n"
3433 " -c=? Read this configuration file\n"
3434 " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
3435 "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
3436 "pages for more information and options.\n"
3437 " This APT has Super Cow Powers.\n");
3441 // SigWinch - Window size change signal handler /*{{{*/
3442 // ---------------------------------------------------------------------
3446 // Riped from GNU ls
3450 if (ioctl(1, TIOCGWINSZ
, &ws
) != -1 && ws
.ws_col
>= 5)
3451 ScreenWidth
= ws
.ws_col
- 1;
3455 int main(int argc
,const char *argv
[]) /*{{{*/
3457 CommandLine::Args Args
[] = {
3458 {'h',"help","help",0},
3459 {'v',"version","version",0},
3460 {'V',"verbose-versions","APT::Get::Show-Versions",0},
3461 {'q',"quiet","quiet",CommandLine::IntLevel
},
3462 {'q',"silent","quiet",CommandLine::IntLevel
},
3463 {'d',"download-only","APT::Get::Download-Only",0},
3464 {'b',"compile","APT::Get::Compile",0},
3465 {'b',"build","APT::Get::Compile",0},
3466 {'s',"simulate","APT::Get::Simulate",0},
3467 {'s',"just-print","APT::Get::Simulate",0},
3468 {'s',"recon","APT::Get::Simulate",0},
3469 {'s',"dry-run","APT::Get::Simulate",0},
3470 {'s',"no-act","APT::Get::Simulate",0},
3471 {'y',"yes","APT::Get::Assume-Yes",0},
3472 {'y',"assume-yes","APT::Get::Assume-Yes",0},
3473 {0,"assume-no","APT::Get::Assume-No",0},
3474 {'f',"fix-broken","APT::Get::Fix-Broken",0},
3475 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
3476 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
3477 {'t',"target-release","APT::Default-Release",CommandLine::HasArg
},
3478 {'t',"default-release","APT::Default-Release",CommandLine::HasArg
},
3479 {'a',"host-architecture","APT::Get::Host-Architecture",CommandLine::HasArg
},
3480 {0,"download","APT::Get::Download",0},
3481 {0,"fix-missing","APT::Get::Fix-Missing",0},
3482 {0,"ignore-hold","APT::Ignore-Hold",0},
3483 {0,"upgrade","APT::Get::upgrade",0},
3484 {0,"only-upgrade","APT::Get::Only-Upgrade",0},
3485 {0,"force-yes","APT::Get::force-yes",0},
3486 {0,"print-uris","APT::Get::Print-URIs",0},
3487 {0,"diff-only","APT::Get::Diff-Only",0},
3488 {0,"debian-only","APT::Get::Diff-Only",0},
3489 {0,"tar-only","APT::Get::Tar-Only",0},
3490 {0,"dsc-only","APT::Get::Dsc-Only",0},
3491 {0,"purge","APT::Get::Purge",0},
3492 {0,"list-cleanup","APT::Get::List-Cleanup",0},
3493 {0,"reinstall","APT::Get::ReInstall",0},
3494 {0,"trivial-only","APT::Get::Trivial-Only",0},
3495 {0,"remove","APT::Get::Remove",0},
3496 {0,"only-source","APT::Get::Only-Source",0},
3497 {0,"arch-only","APT::Get::Arch-Only",0},
3498 {0,"auto-remove","APT::Get::AutomaticRemove",0},
3499 {0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0},
3500 {0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean
},
3501 {0,"install-suggests","APT::Install-Suggests",CommandLine::Boolean
},
3502 {0,"fix-policy","APT::Get::Fix-Policy-Broken",0},
3503 {0,"solver","APT::Solver",CommandLine::HasArg
},
3504 {'c',"config-file",0,CommandLine::ConfigFile
},
3505 {'o',"option",0,CommandLine::ArbItem
},
3507 CommandLine::Dispatch Cmds
[] = {{"update",&DoUpdate
},
3508 {"upgrade",&DoUpgrade
},
3509 {"install",&DoInstall
},
3510 {"remove",&DoInstall
},
3511 {"purge",&DoInstall
},
3512 {"autoremove",&DoInstall
},
3513 {"markauto",&DoMarkAuto
},
3514 {"unmarkauto",&DoMarkAuto
},
3515 {"dist-upgrade",&DoDistUpgrade
},
3516 {"dselect-upgrade",&DoDSelectUpgrade
},
3517 {"build-dep",&DoBuildDep
},
3519 {"autoclean",&DoAutoClean
},
3521 {"source",&DoSource
},
3522 {"download",&DoDownload
},
3523 {"changelog",&DoChangelog
},
3528 // Set up gettext support
3529 setlocale(LC_ALL
,"");
3530 textdomain(PACKAGE
);
3532 // Parse the command line and initialize the package library
3533 CommandLine
CmdL(Args
,_config
);
3534 if (pkgInitConfig(*_config
) == false ||
3535 CmdL
.Parse(argc
,argv
) == false ||
3536 pkgInitSystem(*_config
,_system
) == false)
3538 if (_config
->FindB("version") == true)
3541 _error
->DumpErrors();
3545 // See if the help should be shown
3546 if (_config
->FindB("help") == true ||
3547 _config
->FindB("version") == true ||
3548 CmdL
.FileSize() == 0)
3554 // simulate user-friendly if apt-get has no root privileges
3555 if (getuid() != 0 && _config
->FindB("APT::Get::Simulate") == true &&
3556 (CmdL
.FileSize() == 0 ||
3557 (strcmp(CmdL
.FileList
[0], "source") != 0 && strcmp(CmdL
.FileList
[0], "download") != 0 &&
3558 strcmp(CmdL
.FileList
[0], "changelog") != 0)))
3560 if (_config
->FindB("APT::Get::Show-User-Simulation-Note",true) == true)
3561 cout
<< _("NOTE: This is only a simulation!\n"
3562 " apt-get needs root privileges for real execution.\n"
3563 " Keep also in mind that locking is deactivated,\n"
3564 " so don't depend on the relevance to the real current situation!"
3566 _config
->Set("Debug::NoLocking",true);
3569 // Deal with stdout not being a tty
3570 if (!isatty(STDOUT_FILENO
) && _config
->FindI("quiet", -1) == -1)
3571 _config
->Set("quiet","1");
3573 // Setup the output streams
3574 c0out
.rdbuf(cout
.rdbuf());
3575 c1out
.rdbuf(cout
.rdbuf());
3576 c2out
.rdbuf(cout
.rdbuf());
3577 if (_config
->FindI("quiet",0) > 0)
3578 c0out
.rdbuf(devnull
.rdbuf());
3579 if (_config
->FindI("quiet",0) > 1)
3580 c1out
.rdbuf(devnull
.rdbuf());
3582 // Setup the signals
3583 signal(SIGPIPE
,SIG_IGN
);
3584 signal(SIGWINCH
,SigWinch
);
3587 // Match the operation
3588 CmdL
.DispatchArg(Cmds
);
3590 // Print any errors or warnings found during parsing
3591 bool const Errors
= _error
->PendingError();
3592 if (_config
->FindI("quiet",0) > 0)
3593 _error
->DumpErrors();
3595 _error
->DumpErrors(GlobalError::DEBUG
);
3596 return Errors
== true ? 100 : 0;