]> git.saurik.com Git - apt.git/blame - cmdline/apt-internal-solver.cc
tests: fail testsuccess if notices are shown, too
[apt.git] / cmdline / apt-internal-solver.cc
CommitLineData
4128c846
DK
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* #####################################################################
4
5 cover around the internal solver to be able to run it like an external
6
7 ##################################################################### */
8 /*}}}*/
9// Include Files /*{{{*/
a00a9b44
DK
10#include <config.h>
11
4128c846
DK
12#include <apt-pkg/error.h>
13#include <apt-pkg/cmndline.h>
14#include <apt-pkg/init.h>
15#include <apt-pkg/cachefile.h>
472ff00e 16#include <apt-pkg/cacheset.h>
4128c846
DK
17#include <apt-pkg/strutl.h>
18#include <apt-pkg/edsp.h>
19#include <apt-pkg/algorithms.h>
20#include <apt-pkg/fileutl.h>
472ff00e 21#include <apt-pkg/pkgsystem.h>
82e369c4 22#include <apt-pkg/upgrade.h>
453b82a3
DK
23#include <apt-pkg/configuration.h>
24#include <apt-pkg/depcache.h>
25#include <apt-pkg/pkgcache.h>
26#include <apt-pkg/cacheiterators.h>
ad7e0941 27
d39d7f88 28#include <apt-private/private-output.h>
ad7e0941 29#include <apt-private/private-cmndline.h>
e7e10e47 30#include <apt-private/private-main.h>
4128c846 31
453b82a3
DK
32#include <string.h>
33#include <iostream>
d39d7f88 34#include <sstream>
453b82a3
DK
35#include <list>
36#include <string>
4128c846
DK
37#include <unistd.h>
38#include <cstdio>
81b3540d 39#include <stdlib.h>
a00a9b44
DK
40
41#include <apti18n.h>
4128c846
DK
42 /*}}}*/
43
8561c2fe 44bool ShowHelp(CommandLine &) /*{{{*/
6079b276 45{
4128c846 46 std::cout <<
3999d158 47 _("Usage: apt-internal-solver\n"
4128c846 48 "\n"
3999d158 49 "apt-internal-solver is an interface to use the current internal\n"
8561c2fe 50 "like an external resolver for the APT family for debugging or alike.\n");
4128c846
DK
51 return true;
52}
53 /*}}}*/
81b3540d
DK
54APT_NORETURN static void DIE(std::string const &message) { /*{{{*/
55 std::cerr << "ERROR: " << message << std::endl;
56 _error->DumpErrors(std::cerr);
57 exit(EXIT_FAILURE);
58}
59 /*}}}*/
6079b276 60std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/
011188e3
DK
61{
62 return {};
63}
64 /*}}}*/
4128c846
DK
65int main(int argc,const char *argv[]) /*{{{*/
66{
e7e10e47
DK
67 InitLocale();
68
69 // we really don't need anything
70 DropPrivileges();
fc1a78d8 71
ad7e0941 72 CommandLine CmdL;
011188e3 73 ParseCommandLine(CmdL, APT_CMD::APT_INTERNAL_SOLVER, &_config, NULL, argc, argv);
4128c846 74
904be352
DK
75 if (CmdL.FileList[0] != 0 && strcmp(CmdL.FileList[0], "scenario") == 0)
76 {
77 if (pkgInitSystem(*_config,_system) == false) {
78 std::cerr << "System could not be initialized!" << std::endl;
79 return 1;
80 }
81 pkgCacheFile CacheFile;
82 CacheFile.Open(NULL, false);
83 APT::PackageSet pkgset = APT::PackageSet::FromCommandLine(CacheFile, CmdL.FileList + 1);
84 FILE* output = stdout;
85 if (pkgset.empty() == true)
86 EDSP::WriteScenario(CacheFile, output);
87 else
88 EDSP::WriteLimitedScenario(CacheFile, output, pkgset);
89 fclose(output);
90 _error->DumpErrors(std::cerr);
91 return 0;
92 }
93
4128c846
DK
94 // Deal with stdout not being a tty
95 if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1)
96 _config->Set("quiet","1");
97
98 if (_config->FindI("quiet", 0) < 1)
99 _config->Set("Debug::EDSP::WriteSolution", true);
100
c9443c01 101 _config->Set("APT::System", "Debian APT solver interface");
98278a81 102 _config->Set("APT::Solver", "internal");
7f58427b 103 _config->Set("edsp::scenario", "/nonexistent/stdin");
4128c846
DK
104 int input = STDIN_FILENO;
105 FILE* output = stdout;
106 SetNonBlock(input, false);
107
e876223c
DK
108 EDSP::WriteProgress(0, "Start up solver…", output);
109
81b3540d
DK
110 if (pkgInitSystem(*_config,_system) == false)
111 DIE("System could not be initialized!");
4128c846 112
e876223c
DK
113 EDSP::WriteProgress(1, "Read request…", output);
114
4128c846 115 if (WaitFd(input, false, 5) == false)
81b3540d 116 DIE("WAIT timed out in the resolver");
4128c846
DK
117
118 std::list<std::string> install, remove;
119 bool upgrade, distUpgrade, autoRemove;
81b3540d
DK
120 if (EDSP::ReadRequest(input, install, remove, upgrade, distUpgrade, autoRemove) == false)
121 DIE("Parsing the request failed!");
4128c846 122
e876223c
DK
123 EDSP::WriteProgress(5, "Read scenario…", output);
124
4128c846 125 pkgCacheFile CacheFile;
81b3540d
DK
126 if (CacheFile.Open(NULL, false) == false)
127 DIE("Failed to open CacheFile!");
4128c846 128
e876223c
DK
129 EDSP::WriteProgress(50, "Apply request on scenario…", output);
130
81b3540d
DK
131 if (EDSP::ApplyRequest(install, remove, CacheFile) == false)
132 DIE("Failed to apply request to depcache!");
d9933172
DK
133
134 pkgProblemResolver Fix(CacheFile);
135 for (std::list<std::string>::const_iterator i = remove.begin();
136 i != remove.end(); ++i) {
137 pkgCache::PkgIterator P = CacheFile->FindPkg(*i);
138 Fix.Clear(P);
139 Fix.Protect(P);
140 Fix.Remove(P);
141 }
142
143 for (std::list<std::string>::const_iterator i = install.begin();
144 i != install.end(); ++i) {
145 pkgCache::PkgIterator P = CacheFile->FindPkg(*i);
146 Fix.Clear(P);
147 Fix.Protect(P);
148 }
149
4128c846
DK
150 for (std::list<std::string>::const_iterator i = install.begin();
151 i != install.end(); ++i)
152 CacheFile->MarkInstall(CacheFile->FindPkg(*i), true);
153
e876223c 154 EDSP::WriteProgress(60, "Call problemresolver on current scenario…", output);
d9933172 155
d39d7f88 156 std::string failure;
80699703 157 if (upgrade == true) {
67caa2e6 158 if (APT::Upgrade::Upgrade(CacheFile, APT::Upgrade::FORBID_REMOVE_PACKAGES | APT::Upgrade::FORBID_INSTALL_NEW_PACKAGES) == false)
d39d7f88 159 failure = "ERR_UNSOLVABLE_UPGRADE";
80699703 160 } else if (distUpgrade == true) {
67caa2e6 161 if (APT::Upgrade::Upgrade(CacheFile, APT::Upgrade::ALLOW_EVERYTHING) == false)
d39d7f88
DK
162 failure = "ERR_UNSOLVABLE_DIST_UPGRADE";
163 } else if (Fix.Resolve() == false)
164 failure = "ERR_UNSOLVABLE";
165
166 if (failure.empty() == false) {
167 std::ostringstream broken;
168 ShowBroken(broken, CacheFile, false);
169 EDSP::WriteError(failure.c_str(), broken.str(), output);
4128c846
DK
170 return 0;
171 }
172
e876223c
DK
173 EDSP::WriteProgress(95, "Write solution…", output);
174
81b3540d
DK
175 if (EDSP::WriteSolution(CacheFile, output) == false)
176 DIE("Failed to output the solution!");
4128c846 177
e876223c
DK
178 EDSP::WriteProgress(100, "Done", output);
179
011188e3 180 return DispatchCommandLine(CmdL, {});
4128c846
DK
181}
182 /*}}}*/