]>
git.saurik.com Git - apt.git/blob - cmdline/apt-get.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-get.cc,v 1.40 1999/02/08 07:30:50 jgg 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 /*{{{*/
28 #include <apt-pkg/error.h>
29 #include <apt-pkg/cmndline.h>
30 #include <apt-pkg/init.h>
31 #include <apt-pkg/depcache.h>
32 #include <apt-pkg/sourcelist.h>
33 #include <apt-pkg/pkgcachegen.h>
34 #include <apt-pkg/algorithms.h>
35 #include <apt-pkg/acquire-item.h>
36 #include <apt-pkg/dpkgpm.h>
37 #include <apt-pkg/dpkginit.h>
38 #include <apt-pkg/strutl.h>
39 #include <apt-pkg/clean.h>
43 #include "acqprogress.h"
47 #include <sys/ioctl.h>
57 ofstream
devnull("/dev/null");
58 unsigned int ScreenWidth
= 80;
60 // YnPrompt - Yes No Prompt. /*{{{*/
61 // ---------------------------------------------------------------------
62 /* Returns true on a Yes.*/
65 if (_config
->FindB("APT::Get::Assume-Yes",false) == true)
73 read(STDIN_FILENO
,&C
,1);
74 while (C
!= '\n' && Jnk
!= '\n') read(STDIN_FILENO
,&Jnk
,1);
76 if (!(C
== 'Y' || C
== 'y' || C
== '\n' || C
== '\r'))
81 // ShowList - Show a list /*{{{*/
82 // ---------------------------------------------------------------------
83 /* This prints out a string of space seperated words with a title and
84 a two space indent line wraped to the current screen width. */
85 bool ShowList(ostream
&out
,string Title
,string List
)
87 if (List
.empty() == true)
90 // Acount for the leading space
91 int ScreenWidth
= ::ScreenWidth
- 3;
94 string::size_type Start
= 0;
95 while (Start
< List
.size())
97 string::size_type End
;
98 if (Start
+ ScreenWidth
>= List
.size())
101 End
= List
.rfind(' ',Start
+ScreenWidth
);
103 if (End
== string::npos
|| End
< Start
)
104 End
= Start
+ ScreenWidth
;
105 out
<< " " << string(List
,Start
,End
- Start
) << endl
;
111 // ShowBroken - Debugging aide /*{{{*/
112 // ---------------------------------------------------------------------
113 /* This prints out the names of all the packages that are broken along
114 with the name of each each broken dependency and a quite version
116 void ShowBroken(ostream
&out
,pkgDepCache
&Cache
)
118 out
<< "Sorry, but the following packages have unmet dependencies:" << endl
;
119 pkgCache::PkgIterator I
= Cache
.PkgBegin();
120 for (;I
.end() != true; I
++)
122 if (Cache
[I
].InstBroken() == false)
125 // Print out each package and the failed dependencies
126 out
<<" " << I
.Name() << ":";
127 int Indent
= strlen(I
.Name()) + 3;
129 if (Cache
[I
].InstVerIter(Cache
).end() == true)
135 for (pkgCache::DepIterator D
= Cache
[I
].InstVerIter(Cache
).DependsList(); D
.end() == false;)
137 // Compute a single dependency element (glob or)
138 pkgCache::DepIterator Start
;
139 pkgCache::DepIterator End
;
142 if (Cache
.IsImportantDep(End
) == false ||
143 (Cache
[End
] & pkgDepCache::DepGInstall
) == pkgDepCache::DepGInstall
)
147 for (int J
= 0; J
!= Indent
; J
++)
151 cout
<< ' ' << End
.DepType() << ": " << End
.TargetPkg().Name();
153 // Show a quick summary of the version requirements
154 if (End
.TargetVer() != 0)
155 out
<< " (" << End
.CompType() << " " << End
.TargetVer() <<
158 /* Show a summary of the target package if possible. In the case
159 of virtual packages we show nothing */
161 pkgCache::PkgIterator Targ
= End
.TargetPkg();
162 if (Targ
->ProvidesList
== 0)
165 pkgCache::VerIterator Ver
= Cache
[Targ
].InstVerIter(Cache
);
166 if (Ver
.end() == false)
167 out
<< Ver
.VerStr() << " is installed";
170 if (Cache
[Targ
].CandidateVerIter(Cache
).end() == true)
172 if (Targ
->ProvidesList
== 0)
173 out
<< "it is not installable";
175 out
<< "it is a virtual package";
178 out
<< "it is not installed";
187 // ShowNew - Show packages to newly install /*{{{*/
188 // ---------------------------------------------------------------------
190 void ShowNew(ostream
&out
,pkgDepCache
&Dep
)
192 /* Print out a list of packages that are going to be removed extra
193 to what the user asked */
194 pkgCache::PkgIterator I
= Dep
.PkgBegin();
196 for (;I
.end() != true; I
++)
197 if (Dep
[I
].NewInstall() == true)
198 List
+= string(I
.Name()) + " ";
199 ShowList(out
,"The following NEW packages will be installed:",List
);
202 // ShowDel - Show packages to delete /*{{{*/
203 // ---------------------------------------------------------------------
205 void ShowDel(ostream
&out
,pkgDepCache
&Dep
)
207 /* Print out a list of packages that are going to be removed extra
208 to what the user asked */
209 pkgCache::PkgIterator I
= Dep
.PkgBegin();
211 for (;I
.end() != true; I
++)
212 if (Dep
[I
].Delete() == true)
213 List
+= string(I
.Name()) + " ";
215 ShowList(out
,"The following packages will be REMOVED:",List
);
218 // ShowKept - Show kept packages /*{{{*/
219 // ---------------------------------------------------------------------
221 void ShowKept(ostream
&out
,pkgDepCache
&Dep
)
223 pkgCache::PkgIterator I
= Dep
.PkgBegin();
225 for (;I
.end() != true; I
++)
228 if (Dep
[I
].Upgrade() == true || Dep
[I
].Upgradable() == false ||
229 I
->CurrentVer
== 0 || Dep
[I
].Delete() == true)
232 List
+= string(I
.Name()) + " ";
234 ShowList(out
,"The following packages have been kept back",List
);
237 // ShowUpgraded - Show upgraded packages /*{{{*/
238 // ---------------------------------------------------------------------
240 void ShowUpgraded(ostream
&out
,pkgDepCache
&Dep
)
242 pkgCache::PkgIterator I
= Dep
.PkgBegin();
244 for (;I
.end() != true; I
++)
247 if (Dep
[I
].Upgrade() == false || Dep
[I
].NewInstall() == true)
250 List
+= string(I
.Name()) + " ";
252 ShowList(out
,"The following packages will be upgraded",List
);
255 // ShowHold - Show held but changed packages /*{{{*/
256 // ---------------------------------------------------------------------
258 bool ShowHold(ostream
&out
,pkgDepCache
&Dep
)
260 pkgCache::PkgIterator I
= Dep
.PkgBegin();
262 for (;I
.end() != true; I
++)
264 if (Dep
[I
].InstallVer
!= (pkgCache::Version
*)I
.CurrentVer() &&
265 I
->SelectedState
== pkgCache::State::Hold
)
266 List
+= string(I
.Name()) + " ";
269 return ShowList(out
,"The following held packages will be changed:",List
);
272 // ShowEssential - Show an essential package warning /*{{{*/
273 // ---------------------------------------------------------------------
274 /* This prints out a warning message that is not to be ignored. It shows
275 all essential packages and their dependents that are to be removed.
276 It is insanely risky to remove the dependents of an essential package! */
277 bool ShowEssential(ostream
&out
,pkgDepCache
&Dep
)
279 pkgCache::PkgIterator I
= Dep
.PkgBegin();
281 bool *Added
= new bool[Dep
.HeaderP
->PackageCount
];
282 for (unsigned int I
= 0; I
!= Dep
.HeaderP
->PackageCount
; I
++)
285 for (;I
.end() != true; I
++)
287 if ((I
->Flags
& pkgCache::Flag::Essential
) != pkgCache::Flag::Essential
)
290 // The essential package is being removed
291 if (Dep
[I
].Delete() == true)
293 if (Added
[I
->ID
] == false)
296 List
+= string(I
.Name()) + " ";
300 if (I
->CurrentVer
== 0)
303 // Print out any essential package depenendents that are to be removed
304 for (pkgDepCache::DepIterator D
= I
.CurrentVer().DependsList(); D
.end() == false; D
++)
306 // Skip everything but depends
307 if (D
->Type
!= pkgCache::Dep::PreDepends
&&
308 D
->Type
!= pkgCache::Dep::Depends
)
311 pkgCache::PkgIterator P
= D
.SmartTargetPkg();
312 if (Dep
[P
].Delete() == true)
314 if (Added
[P
->ID
] == true)
319 sprintf(S
,"%s (due to %s) ",P
.Name(),I
.Name());
326 if (List
.empty() == false)
327 out
<< "WARNING: The following essential packages will be removed" << endl
;
328 return ShowList(out
,"This should NOT be done unless you know exactly what you are doing!",List
);
331 // Stats - Show some statistics /*{{{*/
332 // ---------------------------------------------------------------------
334 void Stats(ostream
&out
,pkgDepCache
&Dep
)
336 unsigned long Upgrade
= 0;
337 unsigned long Install
= 0;
338 for (pkgCache::PkgIterator I
= Dep
.PkgBegin(); I
.end() == false; I
++)
340 if (Dep
[I
].NewInstall() == true)
343 if (Dep
[I
].Upgrade() == true)
347 out
<< Upgrade
<< " packages upgraded, " <<
348 Install
<< " newly installed, " <<
349 Dep
.DelCount() << " to remove and " <<
350 Dep
.KeepCount() << " not upgraded." << endl
;
352 if (Dep
.BadCount() != 0)
353 out
<< Dep
.BadCount() << " packages not fully installed or removed." << endl
;
357 // class CacheFile - Cover class for some dependency cache functions /*{{{*/
358 // ---------------------------------------------------------------------
369 inline operator pkgDepCache
&() {return *Cache
;};
370 inline pkgDepCache
*operator ->() {return Cache
;};
371 inline pkgDepCache
&operator *() {return *Cache
;};
373 bool Open(bool AllowBroken
= false);
374 CacheFile() : File(0), Map(0), Cache(0) {};
383 // CacheFile::Open - Open the cache file /*{{{*/
384 // ---------------------------------------------------------------------
385 /* This routine generates the caches and then opens the dependency cache
386 and verifies that the system is OK. */
387 bool CacheFile::Open(bool AllowBroken
)
389 if (_error
->PendingError() == true)
392 // Create a progress class
393 OpTextProgress
Progress(*_config
);
395 // Read the source list
397 if (List
.ReadMainList() == false)
398 return _error
->Error("The list of sources could not be read.");
400 // Build all of the caches
401 pkgMakeStatusCache(List
,Progress
);
402 if (_error
->PendingError() == true)
403 return _error
->Error("The package lists or status file could not be parsed or opened.");
404 if (_error
->empty() == false)
405 _error
->Warning("You may want to run apt-get update to correct theses missing files");
409 // Open the cache file
410 File
= new FileFd(_config
->FindFile("Dir::Cache::pkgcache"),FileFd::ReadOnly
);
411 if (_error
->PendingError() == true)
414 Map
= new MMap(*File
,MMap::Public
| MMap::ReadOnly
);
415 if (_error
->PendingError() == true)
418 Cache
= new pkgDepCache(*Map
,Progress
);
419 if (_error
->PendingError() == true)
424 // Check that the system is OK
425 if (Cache
->DelCount() != 0 || Cache
->InstCount() != 0)
426 return _error
->Error("Internal Error, non-zero counts");
428 // Apply corrections for half-installed packages
429 if (pkgApplyStatus(*Cache
) == false)
433 if (Cache
->BrokenCount() == 0 || AllowBroken
== true)
436 // Attempt to fix broken things
437 if (_config
->FindB("APT::Get::Fix-Broken",false) == true)
439 c1out
<< "Correcting dependencies..." << flush
;
440 if (pkgFixBroken(*Cache
) == false || Cache
->BrokenCount() != 0)
442 c1out
<< " failed." << endl
;
443 ShowBroken(c1out
,*this);
445 return _error
->Error("Unable to correct dependencies");
447 if (pkgMinimizeUpgrade(*Cache
) == false)
448 return _error
->Error("Unable to minimize the upgrade set");
450 c1out
<< " Done" << endl
;
454 c1out
<< "You might want to run `apt-get -f install' to correct these." << endl
;
455 ShowBroken(c1out
,*this);
457 return _error
->Error("Unmet dependencies. Try using -f.");
464 // InstallPackages - Actually download and install the packages /*{{{*/
465 // ---------------------------------------------------------------------
466 /* This displays the informative messages describing what is going to
467 happen and then calls the download routines */
468 bool InstallPackages(CacheFile
&Cache
,bool ShwKept
,bool Ask
= true)
472 // Show all the various warning indicators
473 ShowDel(c1out
,Cache
);
474 ShowNew(c1out
,Cache
);
476 ShowKept(c1out
,Cache
);
477 Fail
|= !ShowHold(c1out
,Cache
);
478 if (_config
->FindB("APT::Get::Show-Upgraded",false) == true)
479 ShowUpgraded(c1out
,Cache
);
480 Fail
|= !ShowEssential(c1out
,Cache
);
484 if (Cache
->BrokenCount() != 0)
486 ShowBroken(c1out
,Cache
);
487 return _error
->Error("Internal Error, InstallPackages was called with broken packages!");
490 if (Cache
->DelCount() == 0 && Cache
->InstCount() == 0 &&
491 Cache
->BadCount() == 0)
494 // Run the simulator ..
495 if (_config
->FindB("APT::Get::Simulate") == true)
497 pkgSimulate
PM(Cache
);
498 return PM
.DoInstall();
501 // Create the text record parser
502 pkgRecords
Recs(Cache
);
503 if (_error
->PendingError() == true)
506 // Lock the archive directory
507 if (_config
->FindB("Debug::NoLocking",false) == false)
509 FileFd
Lock(GetLock(_config
->FindDir("Dir::Cache::Archives") + "lock"));
510 if (_error
->PendingError() == true)
511 return _error
->Error("Unable to lock the download directory");
514 // Create the download object
515 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
516 pkgAcquire
Fetcher(&Stat
);
518 // Read the source list
520 if (List
.ReadMainList() == false)
521 return _error
->Error("The list of sources could not be read.");
523 // Create the package manager and prepare to download
525 if (PM
.GetArchives(&Fetcher
,&List
,&Recs
) == false)
528 // Display statistics
529 unsigned long FetchBytes
= Fetcher
.FetchNeeded();
530 unsigned long DebBytes
= Fetcher
.TotalNeeded();
531 if (DebBytes
!= Cache
->DebSize())
533 c0out
<< DebBytes
<< ',' << Cache
->DebSize() << endl
;
534 c0out
<< "How odd.. The sizes didn't match, email apt@packages.debian.org" << endl
;
538 c2out
<< "Need to get ";
539 if (DebBytes
!= FetchBytes
)
540 c2out
<< SizeToStr(FetchBytes
) << "b/" << SizeToStr(DebBytes
) << 'b';
542 c2out
<< SizeToStr(DebBytes
) << 'b';
544 c1out
<< " of archives. After unpacking ";
547 if (Cache
->UsrSize() >= 0)
548 c2out
<< SizeToStr(Cache
->UsrSize()) << "b will be used." << endl
;
550 c2out
<< SizeToStr(-1*Cache
->UsrSize()) << "b will be freed." << endl
;
552 if (_error
->PendingError() == true)
556 if (_config
->FindB("APT::Get::Assume-Yes",false) == true)
558 if (Fail
== true && _config
->FindB("APT::Get::Force-Yes",false) == false)
559 return _error
->Error("There are problems and -y was used without --force-yes");
562 // Prompt to continue
565 if (_config
->FindI("quiet",0) < 2 ||
566 _config
->FindB("APT::Get::Assume-Yes",false) == false)
567 c2out
<< "Do you want to continue? [Y/n] " << flush
;
569 if (YnPrompt() == false)
573 if (_config
->FindB("APT::Get::Print-URIs") == true)
575 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
576 for (; I
!= Fetcher
.UriEnd(); I
++)
577 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
578 I
->Owner
->FileSize
<< ' ' << I
->Owner
->MD5Sum() << endl
;
583 if (Fetcher
.Run() == false)
588 bool Transient
= false;
589 for (pkgAcquire::Item
**I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); I
++)
591 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
592 (*I
)->Complete
== true)
595 if ((*I
)->Status
== pkgAcquire::Item::StatIdle
)
602 cerr
<< "Failed to fetch " << (*I
)->Describe() << endl
;
603 cerr
<< " " << (*I
)->ErrorText
<< endl
;
607 if (_config
->FindB("APT::Get::Download-Only",false) == true)
610 if (Failed
== true && _config
->FindB("APT::Get::Fix-Missing",false) == false)
612 if (Transient
== true)
614 c2out
<< "Upgrading with disk swapping is not supported in this version." << endl
;
615 c2out
<< "Try running multiple times with --fix-missing" << endl
;
618 return _error
->Error("Unable to fetch some archives, maybe try with --fix-missing?");
621 // Try to deal with missing package files
622 if (PM
.FixMissing() == false)
624 cerr
<< "Unable to correct missing packages." << endl
;
625 return _error
->Error("Aborting Install.");
629 return PM
.DoInstall();
633 // DoUpdate - Update the package lists /*{{{*/
634 // ---------------------------------------------------------------------
636 bool DoUpdate(CommandLine
&)
638 // Get the source list
640 if (List
.ReadMainList() == false)
643 // Lock the list directory
644 if (_config
->FindB("Debug::NoLocking",false) == false)
646 FileFd
Lock(GetLock(_config
->FindDir("Dir::State::Lists") + "lock"));
647 if (_error
->PendingError() == true)
648 return _error
->Error("Unable to lock the list directory");
651 // Create the download object
652 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
653 pkgAcquire
Fetcher(&Stat
);
655 // Populate it with the source selection
656 pkgSourceList::const_iterator I
;
657 for (I
= List
.begin(); I
!= List
.end(); I
++)
659 new pkgAcqIndex(&Fetcher
,I
);
660 if (_error
->PendingError() == true)
665 if (Fetcher
.Run() == false)
668 // Clean out any old list files
669 if (Fetcher
.Clean(_config
->FindDir("Dir::State::lists")) == false ||
670 Fetcher
.Clean(_config
->FindDir("Dir::State::lists") + "partial/") == false)
673 // Prepare the cache.
675 if (Cache
.Open() == false)
681 // DoUpgrade - Upgrade all packages /*{{{*/
682 // ---------------------------------------------------------------------
683 /* Upgrade all packages without installing new packages or erasing old
685 bool DoUpgrade(CommandLine
&CmdL
)
688 if (Cache
.Open() == false)
692 if (pkgAllUpgrade(Cache
) == false)
694 ShowBroken(c1out
,Cache
);
695 return _error
->Error("Internal Error, AllUpgrade broke stuff");
698 return InstallPackages(Cache
,true);
701 // DoInstall - Install packages from the command line /*{{{*/
702 // ---------------------------------------------------------------------
703 /* Install named packages */
704 bool DoInstall(CommandLine
&CmdL
)
707 if (Cache
.Open(CmdL
.FileSize() != 1) == false)
710 // Enter the special broken fixing mode if the user specified arguments
711 bool BrokenFix
= false;
712 if (Cache
->BrokenCount() != 0)
715 unsigned int ExpectedInst
= 0;
716 unsigned int Packages
= 0;
717 pkgProblemResolver
Fix(Cache
);
719 bool DefRemove
= false;
720 if (strcasecmp(CmdL
.FileList
[0],"remove") == 0)
723 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
725 // Duplicate the string
726 unsigned int Length
= strlen(*I
);
728 if (Length
>= sizeof(S
))
732 // See if we are removing the package
733 bool Remove
= DefRemove
;
734 if (Cache
->FindPkg(S
).end() == true)
736 // Handle an optional end tag indicating what to do
737 if (S
[Length
- 1] == '-')
742 if (S
[Length
- 1] == '+')
749 // Locate the package
750 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(S
);
752 if (Pkg
.end() == true)
753 return _error
->Error("Couldn't find package %s",S
);
755 // Handle the no-upgrade case
756 if (_config
->FindB("APT::Get::no-upgrade",false) == true &&
757 Pkg
->CurrentVer
!= 0)
759 c1out
<< "Skipping " << Pkg
.Name() << ", it is already installed and no-upgrade is set." << endl
;
763 // Check if there is something new to install
764 pkgDepCache::StateCache
&State
= (*Cache
)[Pkg
];
765 if (State
.CandidateVer
== 0)
767 if (Pkg
->ProvidesList
!= 0)
769 c1out
<< "Package " << S
<< " is a virtual package provided by:" << endl
;
771 pkgCache::PrvIterator I
= Pkg
.ProvidesList();
772 for (; I
.end() == false; I
++)
774 pkgCache::PkgIterator Pkg
= I
.OwnerPkg();
776 if ((*Cache
)[Pkg
].CandidateVerIter(*Cache
) == I
.OwnerVer())
778 if ((*Cache
)[Pkg
].Install() == true && (*Cache
)[Pkg
].NewInstall() == false)
779 c1out
<< " " << Pkg
.Name() << " " << I
.OwnerVer().VerStr() <<
780 " [Installed]"<< endl
;
782 c1out
<< " " << Pkg
.Name() << " " << I
.OwnerVer().VerStr() << endl
;
785 c1out
<< "You should explicly select one to install." << endl
;
789 c1out
<< "Package " << S
<< " has no available version, but exists in the database." << endl
;
790 c1out
<< "This typically means that the package was mentioned in a dependency and " << endl
;
791 c1out
<< "never uploaded, or that it is an obsolete package." << endl
;
794 pkgCache::DepIterator Dep
= Pkg
.RevDependsList();
795 for (; Dep
.end() == false; Dep
++)
797 if (Dep
->Type
!= pkgCache::Dep::Replaces
)
799 List
+= string(Dep
.ParentPkg().Name()) + " ";
801 ShowList(c1out
,"However the following packages replace it:",List
);
804 return _error
->Error("Package %s has no installation candidate",S
);
811 Cache
->MarkDelete(Pkg
);
816 Cache
->MarkInstall(Pkg
,false);
817 if (State
.Install() == false)
818 c1out
<< "Sorry, " << S
<< " is already the newest version" << endl
;
822 // Install it with autoinstalling enabled.
823 if (State
.InstBroken() == true && BrokenFix
== false)
824 Cache
->MarkInstall(Pkg
,true);
827 /* If we are in the Broken fixing mode we do not attempt to fix the
828 problems. This is if the user invoked install without -f and gave
830 if (BrokenFix
== true && Cache
->BrokenCount() != 0)
832 c1out
<< "You might want to run `apt-get -f install' to correct these." << endl
;
833 ShowBroken(c1out
,Cache
);
835 return _error
->Error("Unmet dependencies. Try using -f.");
838 // Call the scored problem resolver
839 Fix
.InstallProtect();
840 if (Fix
.Resolve(true) == false)
843 // Now we check the state of the packages,
844 if (Cache
->BrokenCount() != 0)
846 c1out
<< "Some packages could not be installed. This may mean that you have" << endl
;
847 c1out
<< "requested an impossible situation or if you are using the unstable" << endl
;
848 c1out
<< "distribution that some required packages have not yet been created" << endl
;
849 c1out
<< "or been moved out of Incoming." << endl
;
853 c1out
<< "Since you only requested a single operation it is extremely likely that" << endl
;
854 c1out
<< "the package is simply not installable and a bug report against" << endl
;
855 c1out
<< "that package should be filed." << endl
;
858 c1out
<< "The following information may help to resolve the situation:" << endl
;
860 ShowBroken(c1out
,Cache
);
861 return _error
->Error("Sorry, broken packages");
864 /* Print out a list of packages that are going to be installed extra
865 to what the user asked */
866 if (Cache
->InstCount() != ExpectedInst
)
869 pkgCache::PkgIterator I
= Cache
->PkgBegin();
870 for (;I
.end() != true; I
++)
872 if ((*Cache
)[I
].Install() == false)
876 for (J
= CmdL
.FileList
+ 1; *J
!= 0; J
++)
877 if (strcmp(*J
,I
.Name()) == 0)
881 List
+= string(I
.Name()) + " ";
884 ShowList(c1out
,"The following extra packages will be installed:",List
);
887 // See if we need to prompt
888 if (Cache
->InstCount() == ExpectedInst
&& Cache
->DelCount() == 0)
889 return InstallPackages(Cache
,false,false);
891 return InstallPackages(Cache
,false);
894 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
895 // ---------------------------------------------------------------------
896 /* Intelligent upgrader that will install and remove packages at will */
897 bool DoDistUpgrade(CommandLine
&CmdL
)
900 if (Cache
.Open() == false)
903 c0out
<< "Calculating Upgrade... " << flush
;
904 if (pkgDistUpgrade(*Cache
) == false)
906 c0out
<< "Failed" << endl
;
907 ShowBroken(c1out
,Cache
);
911 c0out
<< "Done" << endl
;
913 return InstallPackages(Cache
,true);
916 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
917 // ---------------------------------------------------------------------
918 /* Follows dselect's selections */
919 bool DoDSelectUpgrade(CommandLine
&CmdL
)
922 if (Cache
.Open() == false)
925 // Install everything with the install flag set
926 pkgCache::PkgIterator I
= Cache
->PkgBegin();
927 for (;I
.end() != true; I
++)
929 /* Install the package only if it is a new install, the autoupgrader
930 will deal with the rest */
931 if (I
->SelectedState
== pkgCache::State::Install
)
932 Cache
->MarkInstall(I
,false);
935 /* Now install their deps too, if we do this above then order of
936 the status file is significant for | groups */
937 for (I
= Cache
->PkgBegin();I
.end() != true; I
++)
939 /* Install the package only if it is a new install, the autoupgrader
940 will deal with the rest */
941 if (I
->SelectedState
== pkgCache::State::Install
)
942 Cache
->MarkInstall(I
,true);
945 // Apply erasures now, they override everything else.
946 for (I
= Cache
->PkgBegin();I
.end() != true; I
++)
949 if (I
->SelectedState
== pkgCache::State::DeInstall
||
950 I
->SelectedState
== pkgCache::State::Purge
)
951 Cache
->MarkDelete(I
);
954 /* Resolve any problems that dselect created, allupgrade cannot handle
955 such things. We do so quite agressively too.. */
956 if (Cache
->BrokenCount() != 0)
958 pkgProblemResolver
Fix(Cache
);
960 // Hold back held packages.
961 if (_config
->FindB("APT::Ingore-Hold",false) == false)
963 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() == false; I
++)
965 if (I
->SelectedState
== pkgCache::State::Hold
)
973 if (Fix
.Resolve() == false)
975 ShowBroken(c1out
,Cache
);
976 return _error
->Error("Internal Error, problem resolver broke stuff");
980 // Now upgrade everything
981 if (pkgAllUpgrade(Cache
) == false)
983 ShowBroken(c1out
,Cache
);
984 return _error
->Error("Internal Error, problem resolver broke stuff");
987 return InstallPackages(Cache
,false);
990 // DoClean - Remove download archives /*{{{*/
991 // ---------------------------------------------------------------------
993 bool DoClean(CommandLine
&CmdL
)
996 Fetcher
.Clean(_config
->FindDir("Dir::Cache::archives"));
997 Fetcher
.Clean(_config
->FindDir("Dir::Cache::archives") + "partial/");
1001 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
1002 // ---------------------------------------------------------------------
1003 /* This is similar to clean but it only purges things that cannot be
1004 downloaded, that is old versions of cached packages. */
1005 class LogCleaner
: public pkgArchiveCleaner
1008 virtual void Erase(const char *File
,string Pkg
,string Ver
,struct stat
&St
)
1010 cout
<< "Del " << Pkg
<< " " << Ver
<< " [" << SizeToStr(St
.st_size
) << "b]" << endl
;
1014 bool DoAutoClean(CommandLine
&CmdL
)
1017 if (Cache
.Open(true) == false)
1022 return Cleaner
.Go(_config
->FindDir("Dir::Cache::archives"),*Cache
) &&
1023 Cleaner
.Go(_config
->FindDir("Dir::Cache::archives") + "partial/",*Cache
);
1026 // DoCheck - Perform the check operation /*{{{*/
1027 // ---------------------------------------------------------------------
1028 /* Opening automatically checks the system, this command is mostly used
1030 bool DoCheck(CommandLine
&CmdL
)
1039 // ShowHelp - Show a help screen /*{{{*/
1040 // ---------------------------------------------------------------------
1042 bool ShowHelp(CommandLine
&CmdL
)
1044 cout
<< PACKAGE
<< ' ' << VERSION
<< " for " << ARCHITECTURE
<<
1045 " compiled on " << __DATE__
<< " " << __TIME__
<< endl
;
1046 if (_config
->FindB("version") == true)
1049 cout
<< "Usage: apt-get [options] command" << endl
;
1050 cout
<< " apt-get [options] install pkg1 [pkg2 ...]" << endl
;
1052 cout
<< "apt-get is a simple command line interface for downloading and" << endl
;
1053 cout
<< "installing packages. The most frequently used commands are update" << endl
;
1054 cout
<< "and install." << endl
;
1056 cout
<< "Commands:" << endl
;
1057 cout
<< " update - Retrieve new lists of packages" << endl
;
1058 cout
<< " upgrade - Perform an upgrade" << endl
;
1059 cout
<< " install - Install new packages (pkg is libc6 not libc6.deb)" << endl
;
1060 cout
<< " remove - Remove packages" << endl
;
1061 cout
<< " dist-upgrade - Distribution upgrade, see apt-get(8)" << endl
;
1062 cout
<< " dselect-upgrade - Follow dselect selections" << endl
;
1063 cout
<< " clean - Erase downloaded archive files" << endl
;
1064 cout
<< " autoclean - Erase old downloaded archive files" << endl
;
1065 cout
<< " check - Verify that there are no broken dependencies" << endl
;
1067 cout
<< "Options:" << endl
;
1068 cout
<< " -h This help text." << endl
;
1069 cout
<< " -q Loggable output - no progress indicator" << endl
;
1070 cout
<< " -qq No output except for errors" << endl
;
1071 cout
<< " -d Download only - do NOT install or unpack archives" << endl
;
1072 cout
<< " -s No-act. Perform ordering simulation" << endl
;
1073 cout
<< " -y Assume Yes to all queries and do not prompt" << endl
;
1074 cout
<< " -f Attempt to continue if the integrity check fails" << endl
;
1075 cout
<< " -m Attempt to continue if archives are unlocatable" << endl
;
1076 cout
<< " -u Show a list of upgraded packages as well" << endl
;
1077 cout
<< " -c=? Read this configuration file" << endl
;
1078 cout
<< " -o=? Set an arbitary configuration option, ie -o dir::cache=/tmp" << endl
;
1079 cout
<< "See the apt-get(8), sources.list(5) and apt.conf(5) manual" << endl
;
1080 cout
<< "pages for more information." << endl
;
1084 // GetInitialize - Initialize things for apt-get /*{{{*/
1085 // ---------------------------------------------------------------------
1087 void GetInitialize()
1089 _config
->Set("quiet",0);
1090 _config
->Set("help",false);
1091 _config
->Set("APT::Get::Download-Only",false);
1092 _config
->Set("APT::Get::Simulate",false);
1093 _config
->Set("APT::Get::Assume-Yes",false);
1094 _config
->Set("APT::Get::Fix-Broken",false);
1095 _config
->Set("APT::Get::Force-Yes",false);
1098 // SigWinch - Window size change signal handler /*{{{*/
1099 // ---------------------------------------------------------------------
1103 // Riped from GNU ls
1107 if (ioctl(1, TIOCGWINSZ
, &ws
) != -1 && ws
.ws_col
>= 5)
1108 ScreenWidth
= ws
.ws_col
- 1;
1113 int main(int argc
,const char *argv
[])
1115 CommandLine::Args Args
[] = {
1116 {'h',"help","help",0},
1117 {'v',"version","version",0},
1118 {'q',"quiet","quiet",CommandLine::IntLevel
},
1119 {'q',"silent","quiet",CommandLine::IntLevel
},
1120 {'d',"download-only","APT::Get::Download-Only",0},
1121 {'s',"simulate","APT::Get::Simulate",0},
1122 {'s',"just-print","APT::Get::Simulate",0},
1123 {'s',"recon","APT::Get::Simulate",0},
1124 {'s',"no-act","APT::Get::Simulate",0},
1125 {'y',"yes","APT::Get::Assume-Yes",0},
1126 {'y',"assume-yes","APT::Get::Assume-Yes",0},
1127 {'f',"fix-broken","APT::Get::Fix-Broken",0},
1128 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
1129 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
1130 {0,"fix-missing","APT::Get::Fix-Missing",0},
1131 {0,"ignore-hold","APT::Ingore-Hold",0},
1132 {0,"no-upgrade","APT::Get::no-upgrade",0},
1133 {0,"force-yes","APT::Get::force-yes",0},
1134 {0,"print-uris","APT::Get::Print-URIs",0},
1135 {'c',"config-file",0,CommandLine::ConfigFile
},
1136 {'o',"option",0,CommandLine::ArbItem
},
1138 CommandLine::Dispatch Cmds
[] = {{"update",&DoUpdate
},
1139 {"upgrade",&DoUpgrade
},
1140 {"install",&DoInstall
},
1141 {"remove",&DoInstall
},
1142 {"dist-upgrade",&DoDistUpgrade
},
1143 {"dselect-upgrade",&DoDSelectUpgrade
},
1145 {"autoclean",&DoAutoClean
},
1150 // Parse the command line and initialize the package library
1151 CommandLine
CmdL(Args
,_config
);
1152 if (pkgInitialize(*_config
) == false ||
1153 CmdL
.Parse(argc
,argv
) == false)
1155 _error
->DumpErrors();
1159 // See if the help should be shown
1160 if (_config
->FindB("help") == true ||
1161 _config
->FindB("version") == true ||
1162 CmdL
.FileSize() == 0)
1163 return ShowHelp(CmdL
);
1165 // Setup the output streams
1166 c0out
.rdbuf(cout
.rdbuf());
1167 c1out
.rdbuf(cout
.rdbuf());
1168 c2out
.rdbuf(cout
.rdbuf());
1169 if (_config
->FindI("quiet",0) > 0)
1170 c0out
.rdbuf(devnull
.rdbuf());
1171 if (_config
->FindI("quiet",0) > 1)
1172 c1out
.rdbuf(devnull
.rdbuf());
1174 // Setup the signals
1175 signal(SIGPIPE
,SIG_IGN
);
1176 signal(SIGWINCH
,SigWinch
);
1179 // Match the operation
1180 CmdL
.DispatchArg(Cmds
);
1182 // Print any errors or warnings found during parsing
1183 if (_error
->empty() == false)
1185 bool Errors
= _error
->PendingError();
1186 _error
->DumpErrors();
1187 return Errors
== true?100:0;