1 // -*- mode: cpp; mode: fold -*-
3 /* #####################################################################
5 cover around the internal solver to be able to run it like an external
7 ##################################################################### */
9 // Include Files /*{{{*/
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/cmndline.h>
14 #include <apt-pkg/init.h>
15 #include <apt-pkg/cachefile.h>
16 #include <apt-pkg/cacheset.h>
17 #include <apt-pkg/strutl.h>
18 #include <apt-pkg/edsp.h>
19 #include <apt-pkg/algorithms.h>
20 #include <apt-pkg/fileutl.h>
21 #include <apt-pkg/pkgsystem.h>
22 #include <apt-pkg/upgrade.h>
23 #include <apt-pkg/configuration.h>
24 #include <apt-pkg/depcache.h>
25 #include <apt-pkg/pkgcache.h>
26 #include <apt-pkg/cacheiterators.h>
28 #include <apt-private/private-output.h>
29 #include <apt-private/private-cmndline.h>
30 #include <apt-private/private-main.h>
44 static bool ShowHelp(CommandLine
&) /*{{{*/
47 _("Usage: apt-internal-solver\n"
49 "apt-internal-solver is an interface to use the current internal\n"
50 "resolver for the APT family like an external one, for debugging or\n"
55 APT_NORETURN
static void DIE(std::string
const &message
) { /*{{{*/
56 std::cerr
<< "ERROR: " << message
<< std::endl
;
57 _error
->DumpErrors(std::cerr
);
61 static std::vector
<aptDispatchWithHelp
> GetCommands() /*{{{*/
66 int main(int argc
,const char *argv
[]) /*{{{*/
70 // we really don't need anything
74 ParseCommandLine(CmdL
, APT_CMD::APT_INTERNAL_SOLVER
, &_config
, NULL
, argc
, argv
, &ShowHelp
, &GetCommands
);
76 if (CmdL
.FileList
[0] != 0 && strcmp(CmdL
.FileList
[0], "scenario") == 0)
78 if (pkgInitSystem(*_config
,_system
) == false) {
79 std::cerr
<< "System could not be initialized!" << std::endl
;
82 pkgCacheFile CacheFile
;
83 CacheFile
.Open(NULL
, false);
84 APT::PackageSet pkgset
= APT::PackageSet::FromCommandLine(CacheFile
, CmdL
.FileList
+ 1);
86 if (output
.OpenDescriptor(STDOUT_FILENO
, FileFd::WriteOnly
| FileFd::BufferedWrite
, true) == false)
88 if (pkgset
.empty() == true)
89 EDSP::WriteScenario(CacheFile
, output
);
91 EDSP::WriteLimitedScenario(CacheFile
, output
, pkgset
);
93 _error
->DumpErrors(std::cerr
);
97 // Deal with stdout not being a tty
98 if (!isatty(STDOUT_FILENO
) && _config
->FindI("quiet", -1) == -1)
99 _config
->Set("quiet","1");
101 if (_config
->FindI("quiet", 0) < 1)
102 _config
->Set("Debug::EDSP::WriteSolution", true);
104 _config
->Set("APT::System", "Debian APT solver interface");
105 _config
->Set("APT::Solver", "internal");
106 _config
->Set("edsp::scenario", "/nonexistent/stdin");
108 if (output
.OpenDescriptor(STDOUT_FILENO
, FileFd::WriteOnly
| FileFd::BufferedWrite
, true) == false)
109 DIE("stdout couldn't be opened");
110 int const input
= STDIN_FILENO
;
111 SetNonBlock(input
, false);
113 EDSP::WriteProgress(0, "Start up solver…", output
);
115 if (pkgInitSystem(*_config
,_system
) == false)
116 DIE("System could not be initialized!");
118 EDSP::WriteProgress(1, "Read request…", output
);
120 if (WaitFd(input
, false, 5) == false)
121 DIE("WAIT timed out in the resolver");
123 std::list
<std::string
> install
, remove
;
124 bool upgrade
, distUpgrade
, autoRemove
;
125 if (EDSP::ReadRequest(input
, install
, remove
, upgrade
, distUpgrade
, autoRemove
) == false)
126 DIE("Parsing the request failed!");
128 EDSP::WriteProgress(5, "Read scenario…", output
);
130 pkgCacheFile CacheFile
;
131 if (CacheFile
.Open(NULL
, false) == false)
132 DIE("Failed to open CacheFile!");
134 EDSP::WriteProgress(50, "Apply request on scenario…", output
);
136 if (EDSP::ApplyRequest(install
, remove
, CacheFile
) == false)
137 DIE("Failed to apply request to depcache!");
139 pkgProblemResolver
Fix(CacheFile
);
140 for (std::list
<std::string
>::const_iterator i
= remove
.begin();
141 i
!= remove
.end(); ++i
) {
142 pkgCache::PkgIterator P
= CacheFile
->FindPkg(*i
);
148 for (std::list
<std::string
>::const_iterator i
= install
.begin();
149 i
!= install
.end(); ++i
) {
150 pkgCache::PkgIterator P
= CacheFile
->FindPkg(*i
);
155 for (std::list
<std::string
>::const_iterator i
= install
.begin();
156 i
!= install
.end(); ++i
)
157 CacheFile
->MarkInstall(CacheFile
->FindPkg(*i
), true);
159 EDSP::WriteProgress(60, "Call problemresolver on current scenario…", output
);
162 if (upgrade
== true) {
163 if (APT::Upgrade::Upgrade(CacheFile
, APT::Upgrade::FORBID_REMOVE_PACKAGES
| APT::Upgrade::FORBID_INSTALL_NEW_PACKAGES
) == false)
164 failure
= "ERR_UNSOLVABLE_UPGRADE";
165 } else if (distUpgrade
== true) {
166 if (APT::Upgrade::Upgrade(CacheFile
, APT::Upgrade::ALLOW_EVERYTHING
) == false)
167 failure
= "ERR_UNSOLVABLE_DIST_UPGRADE";
168 } else if (Fix
.Resolve() == false)
169 failure
= "ERR_UNSOLVABLE";
171 if (failure
.empty() == false) {
172 std::ostringstream broken
;
173 ShowBroken(broken
, CacheFile
, false);
174 EDSP::WriteError(failure
.c_str(), broken
.str(), output
);
178 EDSP::WriteProgress(95, "Write solution…", output
);
180 if (EDSP::WriteSolution(CacheFile
, output
) == false)
181 DIE("Failed to output the solution!");
183 EDSP::WriteProgress(100, "Done", output
);
185 return DispatchCommandLine(CmdL
, {});