]>
git.saurik.com Git - apt.git/blob - cmdline/apt-get.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: apt-get.cc,v 1.41 1999/02/15 05:24:35 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 ||
526 _error
->PendingError() == true)
529 // Display statistics
530 unsigned long FetchBytes
= Fetcher
.FetchNeeded();
531 unsigned long DebBytes
= Fetcher
.TotalNeeded();
532 if (DebBytes
!= Cache
->DebSize())
534 c0out
<< DebBytes
<< ',' << Cache
->DebSize() << endl
;
535 c0out
<< "How odd.. The sizes didn't match, email apt@packages.debian.org" << endl
;
539 c2out
<< "Need to get ";
540 if (DebBytes
!= FetchBytes
)
541 c2out
<< SizeToStr(FetchBytes
) << "b/" << SizeToStr(DebBytes
) << 'b';
543 c2out
<< SizeToStr(DebBytes
) << 'b';
545 c1out
<< " of archives. After unpacking ";
548 if (Cache
->UsrSize() >= 0)
549 c2out
<< SizeToStr(Cache
->UsrSize()) << "b will be used." << endl
;
551 c2out
<< SizeToStr(-1*Cache
->UsrSize()) << "b will be freed." << endl
;
553 if (_error
->PendingError() == true)
557 if (_config
->FindB("APT::Get::Assume-Yes",false) == true)
559 if (Fail
== true && _config
->FindB("APT::Get::Force-Yes",false) == false)
560 return _error
->Error("There are problems and -y was used without --force-yes");
563 // Prompt to continue
566 if (_config
->FindI("quiet",0) < 2 ||
567 _config
->FindB("APT::Get::Assume-Yes",false) == false)
568 c2out
<< "Do you want to continue? [Y/n] " << flush
;
570 if (YnPrompt() == false)
574 if (_config
->FindB("APT::Get::Print-URIs") == true)
576 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
577 for (; I
!= Fetcher
.UriEnd(); I
++)
578 cout
<< '\'' << I
->URI
<< "' " << flNotDir(I
->Owner
->DestFile
) << ' ' <<
579 I
->Owner
->FileSize
<< ' ' << I
->Owner
->MD5Sum() << endl
;
584 if (Fetcher
.Run() == false)
589 bool Transient
= false;
590 for (pkgAcquire::Item
**I
= Fetcher
.ItemsBegin(); I
!= Fetcher
.ItemsEnd(); I
++)
592 if ((*I
)->Status
== pkgAcquire::Item::StatDone
&&
593 (*I
)->Complete
== true)
596 if ((*I
)->Status
== pkgAcquire::Item::StatIdle
)
603 cerr
<< "Failed to fetch " << (*I
)->Describe() << endl
;
604 cerr
<< " " << (*I
)->ErrorText
<< endl
;
608 if (_config
->FindB("APT::Get::Download-Only",false) == true)
611 if (Failed
== true && _config
->FindB("APT::Get::Fix-Missing",false) == false)
613 if (Transient
== true)
615 c2out
<< "Upgrading with disk swapping is not supported in this version." << endl
;
616 c2out
<< "Try running multiple times with --fix-missing" << endl
;
619 return _error
->Error("Unable to fetch some archives, maybe try with --fix-missing?");
622 // Try to deal with missing package files
623 if (PM
.FixMissing() == false)
625 cerr
<< "Unable to correct missing packages." << endl
;
626 return _error
->Error("Aborting Install.");
630 return PM
.DoInstall();
634 // DoUpdate - Update the package lists /*{{{*/
635 // ---------------------------------------------------------------------
637 bool DoUpdate(CommandLine
&)
639 // Get the source list
641 if (List
.ReadMainList() == false)
644 // Lock the list directory
645 if (_config
->FindB("Debug::NoLocking",false) == false)
647 FileFd
Lock(GetLock(_config
->FindDir("Dir::State::Lists") + "lock"));
648 if (_error
->PendingError() == true)
649 return _error
->Error("Unable to lock the list directory");
652 // Create the download object
653 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
654 pkgAcquire
Fetcher(&Stat
);
656 // Populate it with the source selection
657 pkgSourceList::const_iterator I
;
658 for (I
= List
.begin(); I
!= List
.end(); I
++)
660 new pkgAcqIndex(&Fetcher
,I
);
661 if (_error
->PendingError() == true)
666 if (Fetcher
.Run() == false)
669 // Clean out any old list files
670 if (Fetcher
.Clean(_config
->FindDir("Dir::State::lists")) == false ||
671 Fetcher
.Clean(_config
->FindDir("Dir::State::lists") + "partial/") == false)
674 // Prepare the cache.
676 if (Cache
.Open() == false)
682 // DoUpgrade - Upgrade all packages /*{{{*/
683 // ---------------------------------------------------------------------
684 /* Upgrade all packages without installing new packages or erasing old
686 bool DoUpgrade(CommandLine
&CmdL
)
689 if (Cache
.Open() == false)
693 if (pkgAllUpgrade(Cache
) == false)
695 ShowBroken(c1out
,Cache
);
696 return _error
->Error("Internal Error, AllUpgrade broke stuff");
699 return InstallPackages(Cache
,true);
702 // DoInstall - Install packages from the command line /*{{{*/
703 // ---------------------------------------------------------------------
704 /* Install named packages */
705 bool DoInstall(CommandLine
&CmdL
)
708 if (Cache
.Open(CmdL
.FileSize() != 1) == false)
711 // Enter the special broken fixing mode if the user specified arguments
712 bool BrokenFix
= false;
713 if (Cache
->BrokenCount() != 0)
716 unsigned int ExpectedInst
= 0;
717 unsigned int Packages
= 0;
718 pkgProblemResolver
Fix(Cache
);
720 bool DefRemove
= false;
721 if (strcasecmp(CmdL
.FileList
[0],"remove") == 0)
724 for (const char **I
= CmdL
.FileList
+ 1; *I
!= 0; I
++)
726 // Duplicate the string
727 unsigned int Length
= strlen(*I
);
729 if (Length
>= sizeof(S
))
733 // See if we are removing the package
734 bool Remove
= DefRemove
;
735 if (Cache
->FindPkg(S
).end() == true)
737 // Handle an optional end tag indicating what to do
738 if (S
[Length
- 1] == '-')
743 if (S
[Length
- 1] == '+')
750 // Locate the package
751 pkgCache::PkgIterator Pkg
= Cache
->FindPkg(S
);
753 if (Pkg
.end() == true)
754 return _error
->Error("Couldn't find package %s",S
);
756 // Handle the no-upgrade case
757 if (_config
->FindB("APT::Get::no-upgrade",false) == true &&
758 Pkg
->CurrentVer
!= 0)
760 c1out
<< "Skipping " << Pkg
.Name() << ", it is already installed and no-upgrade is set." << endl
;
764 // Check if there is something new to install
765 pkgDepCache::StateCache
&State
= (*Cache
)[Pkg
];
766 if (State
.CandidateVer
== 0)
768 if (Pkg
->ProvidesList
!= 0)
770 c1out
<< "Package " << S
<< " is a virtual package provided by:" << endl
;
772 pkgCache::PrvIterator I
= Pkg
.ProvidesList();
773 for (; I
.end() == false; I
++)
775 pkgCache::PkgIterator Pkg
= I
.OwnerPkg();
777 if ((*Cache
)[Pkg
].CandidateVerIter(*Cache
) == I
.OwnerVer())
779 if ((*Cache
)[Pkg
].Install() == true && (*Cache
)[Pkg
].NewInstall() == false)
780 c1out
<< " " << Pkg
.Name() << " " << I
.OwnerVer().VerStr() <<
781 " [Installed]"<< endl
;
783 c1out
<< " " << Pkg
.Name() << " " << I
.OwnerVer().VerStr() << endl
;
786 c1out
<< "You should explicly select one to install." << endl
;
790 c1out
<< "Package " << S
<< " has no available version, but exists in the database." << endl
;
791 c1out
<< "This typically means that the package was mentioned in a dependency and " << endl
;
792 c1out
<< "never uploaded, or that it is an obsolete package." << endl
;
795 pkgCache::DepIterator Dep
= Pkg
.RevDependsList();
796 for (; Dep
.end() == false; Dep
++)
798 if (Dep
->Type
!= pkgCache::Dep::Replaces
)
800 List
+= string(Dep
.ParentPkg().Name()) + " ";
802 ShowList(c1out
,"However the following packages replace it:",List
);
805 return _error
->Error("Package %s has no installation candidate",S
);
812 Cache
->MarkDelete(Pkg
);
817 Cache
->MarkInstall(Pkg
,false);
818 if (State
.Install() == false)
819 c1out
<< "Sorry, " << S
<< " is already the newest version" << endl
;
823 // Install it with autoinstalling enabled.
824 if (State
.InstBroken() == true && BrokenFix
== false)
825 Cache
->MarkInstall(Pkg
,true);
828 /* If we are in the Broken fixing mode we do not attempt to fix the
829 problems. This is if the user invoked install without -f and gave
831 if (BrokenFix
== true && Cache
->BrokenCount() != 0)
833 c1out
<< "You might want to run `apt-get -f install' to correct these." << endl
;
834 ShowBroken(c1out
,Cache
);
836 return _error
->Error("Unmet dependencies. Try using -f.");
839 // Call the scored problem resolver
840 Fix
.InstallProtect();
841 if (Fix
.Resolve(true) == false)
844 // Now we check the state of the packages,
845 if (Cache
->BrokenCount() != 0)
847 c1out
<< "Some packages could not be installed. This may mean that you have" << endl
;
848 c1out
<< "requested an impossible situation or if you are using the unstable" << endl
;
849 c1out
<< "distribution that some required packages have not yet been created" << endl
;
850 c1out
<< "or been moved out of Incoming." << endl
;
854 c1out
<< "Since you only requested a single operation it is extremely likely that" << endl
;
855 c1out
<< "the package is simply not installable and a bug report against" << endl
;
856 c1out
<< "that package should be filed." << endl
;
859 c1out
<< "The following information may help to resolve the situation:" << endl
;
861 ShowBroken(c1out
,Cache
);
862 return _error
->Error("Sorry, broken packages");
865 /* Print out a list of packages that are going to be installed extra
866 to what the user asked */
867 if (Cache
->InstCount() != ExpectedInst
)
870 pkgCache::PkgIterator I
= Cache
->PkgBegin();
871 for (;I
.end() != true; I
++)
873 if ((*Cache
)[I
].Install() == false)
877 for (J
= CmdL
.FileList
+ 1; *J
!= 0; J
++)
878 if (strcmp(*J
,I
.Name()) == 0)
882 List
+= string(I
.Name()) + " ";
885 ShowList(c1out
,"The following extra packages will be installed:",List
);
888 // See if we need to prompt
889 if (Cache
->InstCount() == ExpectedInst
&& Cache
->DelCount() == 0)
890 return InstallPackages(Cache
,false,false);
892 return InstallPackages(Cache
,false);
895 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
896 // ---------------------------------------------------------------------
897 /* Intelligent upgrader that will install and remove packages at will */
898 bool DoDistUpgrade(CommandLine
&CmdL
)
901 if (Cache
.Open() == false)
904 c0out
<< "Calculating Upgrade... " << flush
;
905 if (pkgDistUpgrade(*Cache
) == false)
907 c0out
<< "Failed" << endl
;
908 ShowBroken(c1out
,Cache
);
912 c0out
<< "Done" << endl
;
914 return InstallPackages(Cache
,true);
917 // DoDSelectUpgrade - Do an upgrade by following dselects selections /*{{{*/
918 // ---------------------------------------------------------------------
919 /* Follows dselect's selections */
920 bool DoDSelectUpgrade(CommandLine
&CmdL
)
923 if (Cache
.Open() == false)
926 // Install everything with the install flag set
927 pkgCache::PkgIterator I
= Cache
->PkgBegin();
928 for (;I
.end() != true; I
++)
930 /* Install the package only if it is a new install, the autoupgrader
931 will deal with the rest */
932 if (I
->SelectedState
== pkgCache::State::Install
)
933 Cache
->MarkInstall(I
,false);
936 /* Now install their deps too, if we do this above then order of
937 the status file is significant for | groups */
938 for (I
= Cache
->PkgBegin();I
.end() != true; I
++)
940 /* Install the package only if it is a new install, the autoupgrader
941 will deal with the rest */
942 if (I
->SelectedState
== pkgCache::State::Install
)
943 Cache
->MarkInstall(I
,true);
946 // Apply erasures now, they override everything else.
947 for (I
= Cache
->PkgBegin();I
.end() != true; I
++)
950 if (I
->SelectedState
== pkgCache::State::DeInstall
||
951 I
->SelectedState
== pkgCache::State::Purge
)
952 Cache
->MarkDelete(I
);
955 /* Resolve any problems that dselect created, allupgrade cannot handle
956 such things. We do so quite agressively too.. */
957 if (Cache
->BrokenCount() != 0)
959 pkgProblemResolver
Fix(Cache
);
961 // Hold back held packages.
962 if (_config
->FindB("APT::Ingore-Hold",false) == false)
964 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() == false; I
++)
966 if (I
->SelectedState
== pkgCache::State::Hold
)
974 if (Fix
.Resolve() == false)
976 ShowBroken(c1out
,Cache
);
977 return _error
->Error("Internal Error, problem resolver broke stuff");
981 // Now upgrade everything
982 if (pkgAllUpgrade(Cache
) == false)
984 ShowBroken(c1out
,Cache
);
985 return _error
->Error("Internal Error, problem resolver broke stuff");
988 return InstallPackages(Cache
,false);
991 // DoClean - Remove download archives /*{{{*/
992 // ---------------------------------------------------------------------
994 bool DoClean(CommandLine
&CmdL
)
997 Fetcher
.Clean(_config
->FindDir("Dir::Cache::archives"));
998 Fetcher
.Clean(_config
->FindDir("Dir::Cache::archives") + "partial/");
1002 // DoAutoClean - Smartly remove downloaded archives /*{{{*/
1003 // ---------------------------------------------------------------------
1004 /* This is similar to clean but it only purges things that cannot be
1005 downloaded, that is old versions of cached packages. */
1006 class LogCleaner
: public pkgArchiveCleaner
1009 virtual void Erase(const char *File
,string Pkg
,string Ver
,struct stat
&St
)
1011 cout
<< "Del " << Pkg
<< " " << Ver
<< " [" << SizeToStr(St
.st_size
) << "b]" << endl
;
1015 bool DoAutoClean(CommandLine
&CmdL
)
1018 if (Cache
.Open(true) == false)
1023 return Cleaner
.Go(_config
->FindDir("Dir::Cache::archives"),*Cache
) &&
1024 Cleaner
.Go(_config
->FindDir("Dir::Cache::archives") + "partial/",*Cache
);
1027 // DoCheck - Perform the check operation /*{{{*/
1028 // ---------------------------------------------------------------------
1029 /* Opening automatically checks the system, this command is mostly used
1031 bool DoCheck(CommandLine
&CmdL
)
1040 // ShowHelp - Show a help screen /*{{{*/
1041 // ---------------------------------------------------------------------
1043 bool ShowHelp(CommandLine
&CmdL
)
1045 cout
<< PACKAGE
<< ' ' << VERSION
<< " for " << ARCHITECTURE
<<
1046 " compiled on " << __DATE__
<< " " << __TIME__
<< endl
;
1047 if (_config
->FindB("version") == true)
1050 cout
<< "Usage: apt-get [options] command" << endl
;
1051 cout
<< " apt-get [options] install pkg1 [pkg2 ...]" << endl
;
1053 cout
<< "apt-get is a simple command line interface for downloading and" << endl
;
1054 cout
<< "installing packages. The most frequently used commands are update" << endl
;
1055 cout
<< "and install." << endl
;
1057 cout
<< "Commands:" << endl
;
1058 cout
<< " update - Retrieve new lists of packages" << endl
;
1059 cout
<< " upgrade - Perform an upgrade" << endl
;
1060 cout
<< " install - Install new packages (pkg is libc6 not libc6.deb)" << endl
;
1061 cout
<< " remove - Remove packages" << endl
;
1062 cout
<< " dist-upgrade - Distribution upgrade, see apt-get(8)" << endl
;
1063 cout
<< " dselect-upgrade - Follow dselect selections" << endl
;
1064 cout
<< " clean - Erase downloaded archive files" << endl
;
1065 cout
<< " autoclean - Erase old downloaded archive files" << endl
;
1066 cout
<< " check - Verify that there are no broken dependencies" << endl
;
1068 cout
<< "Options:" << endl
;
1069 cout
<< " -h This help text." << endl
;
1070 cout
<< " -q Loggable output - no progress indicator" << endl
;
1071 cout
<< " -qq No output except for errors" << endl
;
1072 cout
<< " -d Download only - do NOT install or unpack archives" << endl
;
1073 cout
<< " -s No-act. Perform ordering simulation" << endl
;
1074 cout
<< " -y Assume Yes to all queries and do not prompt" << endl
;
1075 cout
<< " -f Attempt to continue if the integrity check fails" << endl
;
1076 cout
<< " -m Attempt to continue if archives are unlocatable" << endl
;
1077 cout
<< " -u Show a list of upgraded packages as well" << endl
;
1078 cout
<< " -c=? Read this configuration file" << endl
;
1079 cout
<< " -o=? Set an arbitary configuration option, ie -o dir::cache=/tmp" << endl
;
1080 cout
<< "See the apt-get(8), sources.list(5) and apt.conf(5) manual" << endl
;
1081 cout
<< "pages for more information." << endl
;
1085 // GetInitialize - Initialize things for apt-get /*{{{*/
1086 // ---------------------------------------------------------------------
1088 void GetInitialize()
1090 _config
->Set("quiet",0);
1091 _config
->Set("help",false);
1092 _config
->Set("APT::Get::Download-Only",false);
1093 _config
->Set("APT::Get::Simulate",false);
1094 _config
->Set("APT::Get::Assume-Yes",false);
1095 _config
->Set("APT::Get::Fix-Broken",false);
1096 _config
->Set("APT::Get::Force-Yes",false);
1099 // SigWinch - Window size change signal handler /*{{{*/
1100 // ---------------------------------------------------------------------
1104 // Riped from GNU ls
1108 if (ioctl(1, TIOCGWINSZ
, &ws
) != -1 && ws
.ws_col
>= 5)
1109 ScreenWidth
= ws
.ws_col
- 1;
1114 int main(int argc
,const char *argv
[])
1116 CommandLine::Args Args
[] = {
1117 {'h',"help","help",0},
1118 {'v',"version","version",0},
1119 {'q',"quiet","quiet",CommandLine::IntLevel
},
1120 {'q',"silent","quiet",CommandLine::IntLevel
},
1121 {'d',"download-only","APT::Get::Download-Only",0},
1122 {'s',"simulate","APT::Get::Simulate",0},
1123 {'s',"just-print","APT::Get::Simulate",0},
1124 {'s',"recon","APT::Get::Simulate",0},
1125 {'s',"no-act","APT::Get::Simulate",0},
1126 {'y',"yes","APT::Get::Assume-Yes",0},
1127 {'y',"assume-yes","APT::Get::Assume-Yes",0},
1128 {'f',"fix-broken","APT::Get::Fix-Broken",0},
1129 {'u',"show-upgraded","APT::Get::Show-Upgraded",0},
1130 {'m',"ignore-missing","APT::Get::Fix-Missing",0},
1131 {0,"fix-missing","APT::Get::Fix-Missing",0},
1132 {0,"ignore-hold","APT::Ingore-Hold",0},
1133 {0,"no-upgrade","APT::Get::no-upgrade",0},
1134 {0,"force-yes","APT::Get::force-yes",0},
1135 {0,"print-uris","APT::Get::Print-URIs",0},
1136 {'c',"config-file",0,CommandLine::ConfigFile
},
1137 {'o',"option",0,CommandLine::ArbItem
},
1139 CommandLine::Dispatch Cmds
[] = {{"update",&DoUpdate
},
1140 {"upgrade",&DoUpgrade
},
1141 {"install",&DoInstall
},
1142 {"remove",&DoInstall
},
1143 {"dist-upgrade",&DoDistUpgrade
},
1144 {"dselect-upgrade",&DoDSelectUpgrade
},
1146 {"autoclean",&DoAutoClean
},
1151 // Parse the command line and initialize the package library
1152 CommandLine
CmdL(Args
,_config
);
1153 if (pkgInitialize(*_config
) == false ||
1154 CmdL
.Parse(argc
,argv
) == false)
1156 _error
->DumpErrors();
1160 // See if the help should be shown
1161 if (_config
->FindB("help") == true ||
1162 _config
->FindB("version") == true ||
1163 CmdL
.FileSize() == 0)
1164 return ShowHelp(CmdL
);
1166 // Setup the output streams
1167 c0out
.rdbuf(cout
.rdbuf());
1168 c1out
.rdbuf(cout
.rdbuf());
1169 c2out
.rdbuf(cout
.rdbuf());
1170 if (_config
->FindI("quiet",0) > 0)
1171 c0out
.rdbuf(devnull
.rdbuf());
1172 if (_config
->FindI("quiet",0) > 1)
1173 c1out
.rdbuf(devnull
.rdbuf());
1175 // Setup the signals
1176 signal(SIGPIPE
,SIG_IGN
);
1177 signal(SIGWINCH
,SigWinch
);
1180 // Match the operation
1181 CmdL
.DispatchArg(Cmds
);
1183 // Print any errors or warnings found during parsing
1184 if (_error
->empty() == false)
1186 bool Errors
= _error
->PendingError();
1187 _error
->DumpErrors();
1188 return Errors
== true?100:0;