]>
Commit | Line | Data |
---|---|---|
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> | |
d39d7f88 | 27 | #include <apt-private/private-output.h> |
4128c846 | 28 | |
453b82a3 DK |
29 | #include <string.h> |
30 | #include <iostream> | |
d39d7f88 | 31 | #include <sstream> |
453b82a3 DK |
32 | #include <list> |
33 | #include <string> | |
4128c846 DK |
34 | #include <unistd.h> |
35 | #include <cstdio> | |
81b3540d | 36 | #include <stdlib.h> |
a00a9b44 DK |
37 | |
38 | #include <apti18n.h> | |
4128c846 DK |
39 | /*}}}*/ |
40 | ||
41 | // ShowHelp - Show a help screen /*{{{*/ | |
42 | // --------------------------------------------------------------------- | |
43 | /* */ | |
65512241 | 44 | static bool ShowHelp(CommandLine &) { |
9179f697 | 45 | ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, |
4128c846 DK |
46 | COMMON_ARCH,__DATE__,__TIME__); |
47 | ||
48 | std::cout << | |
3999d158 | 49 | _("Usage: apt-internal-solver\n" |
4128c846 | 50 | "\n" |
3999d158 | 51 | "apt-internal-solver is an interface to use the current internal\n" |
4128c846 DK |
52 | "like an external resolver for the APT family for debugging or alike\n" |
53 | "\n" | |
54 | "Options:\n" | |
55 | " -h This help text.\n" | |
56 | " -q Loggable output - no progress indicator\n" | |
57 | " -c=? Read this configuration file\n" | |
3999d158 | 58 | " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"); |
4128c846 DK |
59 | return true; |
60 | } | |
61 | /*}}}*/ | |
81b3540d DK |
62 | APT_NORETURN static void DIE(std::string const &message) { /*{{{*/ |
63 | std::cerr << "ERROR: " << message << std::endl; | |
64 | _error->DumpErrors(std::cerr); | |
65 | exit(EXIT_FAILURE); | |
66 | } | |
67 | /*}}}*/ | |
4128c846 DK |
68 | int main(int argc,const char *argv[]) /*{{{*/ |
69 | { | |
70 | CommandLine::Args Args[] = { | |
71 | {'h',"help","help",0}, | |
72 | {'v',"version","version",0}, | |
73 | {'q',"quiet","quiet",CommandLine::IntLevel}, | |
74 | {'q',"silent","quiet",CommandLine::IntLevel}, | |
904be352 DK |
75 | {'c',"config-file",0,CommandLine::ConfigFile}, |
76 | {'o',"option",0,CommandLine::ArbItem}, | |
4128c846 DK |
77 | {0,0,0,0}}; |
78 | ||
79 | CommandLine CmdL(Args,_config); | |
80 | if (pkgInitConfig(*_config) == false || | |
81 | CmdL.Parse(argc,argv) == false) { | |
82 | _error->DumpErrors(); | |
83 | return 2; | |
84 | } | |
85 | ||
86 | // See if the help should be shown | |
87 | if (_config->FindB("help") == true || | |
88 | _config->FindB("version") == true) { | |
89 | ShowHelp(CmdL); | |
90 | return 1; | |
91 | } | |
92 | ||
904be352 DK |
93 | if (CmdL.FileList[0] != 0 && strcmp(CmdL.FileList[0], "scenario") == 0) |
94 | { | |
95 | if (pkgInitSystem(*_config,_system) == false) { | |
96 | std::cerr << "System could not be initialized!" << std::endl; | |
97 | return 1; | |
98 | } | |
99 | pkgCacheFile CacheFile; | |
100 | CacheFile.Open(NULL, false); | |
101 | APT::PackageSet pkgset = APT::PackageSet::FromCommandLine(CacheFile, CmdL.FileList + 1); | |
102 | FILE* output = stdout; | |
103 | if (pkgset.empty() == true) | |
104 | EDSP::WriteScenario(CacheFile, output); | |
105 | else | |
106 | EDSP::WriteLimitedScenario(CacheFile, output, pkgset); | |
107 | fclose(output); | |
108 | _error->DumpErrors(std::cerr); | |
109 | return 0; | |
110 | } | |
111 | ||
4128c846 DK |
112 | // Deal with stdout not being a tty |
113 | if (!isatty(STDOUT_FILENO) && _config->FindI("quiet", -1) == -1) | |
114 | _config->Set("quiet","1"); | |
115 | ||
116 | if (_config->FindI("quiet", 0) < 1) | |
117 | _config->Set("Debug::EDSP::WriteSolution", true); | |
118 | ||
98278a81 | 119 | _config->Set("APT::Solver", "internal"); |
4128c846 DK |
120 | _config->Set("edsp::scenario", "stdin"); |
121 | int input = STDIN_FILENO; | |
122 | FILE* output = stdout; | |
123 | SetNonBlock(input, false); | |
124 | ||
e876223c DK |
125 | EDSP::WriteProgress(0, "Start up solver…", output); |
126 | ||
81b3540d DK |
127 | if (pkgInitSystem(*_config,_system) == false) |
128 | DIE("System could not be initialized!"); | |
4128c846 | 129 | |
e876223c DK |
130 | EDSP::WriteProgress(1, "Read request…", output); |
131 | ||
4128c846 | 132 | if (WaitFd(input, false, 5) == false) |
81b3540d | 133 | DIE("WAIT timed out in the resolver"); |
4128c846 DK |
134 | |
135 | std::list<std::string> install, remove; | |
136 | bool upgrade, distUpgrade, autoRemove; | |
81b3540d DK |
137 | if (EDSP::ReadRequest(input, install, remove, upgrade, distUpgrade, autoRemove) == false) |
138 | DIE("Parsing the request failed!"); | |
4128c846 | 139 | |
e876223c DK |
140 | EDSP::WriteProgress(5, "Read scenario…", output); |
141 | ||
4128c846 | 142 | pkgCacheFile CacheFile; |
81b3540d DK |
143 | if (CacheFile.Open(NULL, false) == false) |
144 | DIE("Failed to open CacheFile!"); | |
4128c846 | 145 | |
e876223c DK |
146 | EDSP::WriteProgress(50, "Apply request on scenario…", output); |
147 | ||
81b3540d DK |
148 | if (EDSP::ApplyRequest(install, remove, CacheFile) == false) |
149 | DIE("Failed to apply request to depcache!"); | |
d9933172 DK |
150 | |
151 | pkgProblemResolver Fix(CacheFile); | |
152 | for (std::list<std::string>::const_iterator i = remove.begin(); | |
153 | i != remove.end(); ++i) { | |
154 | pkgCache::PkgIterator P = CacheFile->FindPkg(*i); | |
155 | Fix.Clear(P); | |
156 | Fix.Protect(P); | |
157 | Fix.Remove(P); | |
158 | } | |
159 | ||
160 | for (std::list<std::string>::const_iterator i = install.begin(); | |
161 | i != install.end(); ++i) { | |
162 | pkgCache::PkgIterator P = CacheFile->FindPkg(*i); | |
163 | Fix.Clear(P); | |
164 | Fix.Protect(P); | |
165 | } | |
166 | ||
4128c846 DK |
167 | for (std::list<std::string>::const_iterator i = install.begin(); |
168 | i != install.end(); ++i) | |
169 | CacheFile->MarkInstall(CacheFile->FindPkg(*i), true); | |
170 | ||
e876223c | 171 | EDSP::WriteProgress(60, "Call problemresolver on current scenario…", output); |
d9933172 | 172 | |
d39d7f88 | 173 | std::string failure; |
80699703 | 174 | if (upgrade == true) { |
d39d7f88 DK |
175 | if (pkgAllUpgrade(CacheFile) == false) |
176 | failure = "ERR_UNSOLVABLE_UPGRADE"; | |
80699703 | 177 | } else if (distUpgrade == true) { |
d39d7f88 DK |
178 | if (pkgDistUpgrade(CacheFile) == false) |
179 | failure = "ERR_UNSOLVABLE_DIST_UPGRADE"; | |
180 | } else if (Fix.Resolve() == false) | |
181 | failure = "ERR_UNSOLVABLE"; | |
182 | ||
183 | if (failure.empty() == false) { | |
184 | std::ostringstream broken; | |
185 | ShowBroken(broken, CacheFile, false); | |
186 | EDSP::WriteError(failure.c_str(), broken.str(), output); | |
4128c846 DK |
187 | return 0; |
188 | } | |
189 | ||
e876223c DK |
190 | EDSP::WriteProgress(95, "Write solution…", output); |
191 | ||
81b3540d DK |
192 | if (EDSP::WriteSolution(CacheFile, output) == false) |
193 | DIE("Failed to output the solution!"); | |
4128c846 | 194 | |
e876223c DK |
195 | EDSP::WriteProgress(100, "Done", output); |
196 | ||
4128c846 DK |
197 | bool const Errors = _error->PendingError(); |
198 | if (_config->FindI("quiet",0) > 0) | |
904be352 | 199 | _error->DumpErrors(std::cerr); |
4128c846 | 200 | else |
904be352 | 201 | _error->DumpErrors(std::cerr, GlobalError::DEBUG); |
4128c846 DK |
202 | return Errors == true ? 100 : 0; |
203 | } | |
204 | /*}}}*/ |