]> git.saurik.com Git - apt.git/blob - apt-private/private-upgrade.cc
cleanup upgrade API some more (thanks for the feedback from David)
[apt.git] / apt-private / private-upgrade.cc
1 // Includes /*{{{*/
2 #include <apt-pkg/algorithms.h>
3 #include <iostream>
4 #include "private-install.h"
5 #include "private-cachefile.h"
6 #include "private-upgrade.h"
7 #include "private-output.h"
8 /*}}}*/
9
10 // this is actually performing the various upgrade operations
11 static bool UpgradeHelper(CommandLine &CmdL, int UpgradeFlags)
12 {
13 CacheFile Cache;
14 if (Cache.OpenForInstall() == false || Cache.CheckDeps() == false)
15 return false;
16
17 //c0out << _("Calculating upgrade... ") << std::flush;
18 if (APT::Upgrade::Upgrade(Cache, UpgradeFlags) == false)
19 {
20 c0out << _("Failed") << std::endl;
21 ShowBroken(c1out,Cache,false);
22 return _error->Error(_("Internal error, Upgrade broke stuff"));
23 }
24
25 // parse additional cmdline pkg manipulation switches
26 if(!DoCacheManipulationFromCommandLine(CmdL, Cache))
27 return false;
28
29 //c0out << _("Done") << std::endl;
30
31 return InstallPackages(Cache,true);
32 }
33
34 // DoDistUpgrade - Automatic smart upgrader /*{{{*/
35 // ---------------------------------------------------------------------
36 /* Intelligent upgrader that will install and remove packages at will */
37 bool DoDistUpgrade(CommandLine &CmdL)
38 {
39 return UpgradeHelper(CmdL, 0);
40 }
41 /*}}}*/
42 // DoUpgradeNoNewPackages - Upgrade all packages /*{{{*/
43 // ---------------------------------------------------------------------
44 /* Upgrade all packages without installing new packages or erasing old
45 packages */
46 bool DoUpgradeNoNewPackages(CommandLine &CmdL)
47 {
48 // Do the upgrade
49 return UpgradeHelper(CmdL,
50 APT::Upgrade::FORBID_REMOVE_PACKAGES|
51 APT::Upgrade::FORBID_NEW_INSTALL_PACKAGES);
52 }
53 /*}}}*/
54 // DoSafeUpgrade - Upgrade all packages with install but not remove /*{{{*/
55 bool DoUpgradeWithAllowNewPackages(CommandLine &CmdL)
56 {
57 return UpgradeHelper(CmdL, APT::Upgrade::FORBID_REMOVE_PACKAGES);
58 }
59 /*}}}*/