]>
git.saurik.com Git - apt.git/blob - apt-pkg/edsp.h
1 // -*- mode: cpp; mode: fold -*-
2 /** Description \file edsp.h {{{
3 ######################################################################
4 Set of methods to help writing and reading everything needed for EDSP
5 with the noteable exception of reading a scenario for conversion into
6 a Cache as this is handled by edsp interface for listparser and friends
7 ##################################################################### */
12 #include <apt-pkg/depcache.h>
13 #include <apt-pkg/cacheset.h>
14 #include <apt-pkg/progress.h>
20 // we could use pkgCache::DepType and ::Priority, but these would be localized stringsā¦
21 static const char * const PrioMap
[];
22 static const char * const DepMap
[];
24 bool static ReadLine(int const input
, std::string
&line
);
25 bool static StringToBool(char const *answer
, bool const defValue
);
27 void static WriteScenarioVersion(pkgDepCache
&Cache
, FILE* output
,
28 pkgCache::PkgIterator
const &Pkg
,
29 pkgCache::VerIterator
const &Ver
);
30 void static WriteScenarioDependency(pkgDepCache
&Cache
, FILE* output
,
31 pkgCache::PkgIterator
const &Pkg
,
32 pkgCache::VerIterator
const &Ver
);
33 void static WriteScenarioLimitedDependency(pkgDepCache
&Cache
, FILE* output
,
34 pkgCache::PkgIterator
const &Pkg
,
35 pkgCache::VerIterator
const &Ver
,
36 APT::PackageSet
const &pkgset
);
38 /** \brief creates the EDSP request stanza
40 * In the EDSP protocol the first thing send to the resolver is a stanza
41 * encoding the request. This method will write this stanza by looking at
42 * the given Cache and requests the installation of all packages which were
43 * marked for installation in it (equally for remove).
45 * \param Cache in which the request is encoded
46 * \param output is written to this "file"
47 * \param upgrade is true if it is an request like apt-get upgrade
48 * \param distUpgrade is true if it is a request like apt-get dist-upgrade
49 * \param autoRemove is true if removal of unneeded packages should be performed
50 * \param Progress is an instance to report progress to
52 * \return true if request was composed successfully, otherwise false
54 bool static WriteRequest(pkgDepCache
&Cache
, FILE* output
,
55 bool const upgrade
= false,
56 bool const distUpgrade
= false,
57 bool const autoRemove
= false,
58 OpProgress
*Progress
= NULL
);
60 /** \brief creates the scenario representing the package universe
62 * After the request all known information about a package are send
63 * to the solver. The output looks similar to a Packages or status file
65 * All packages and version included in this Cache are send, even if
66 * it doesn't make sense from an APT resolver point of view like versions
67 * with a negative pin to enable the solver to propose even that as a
68 * solution or at least to be able to give a hint what can be done to
71 * \param Cache is the known package universe
72 * \param output is written to this "file"
73 * \param Progress is an instance to report progress to
75 * \return true if universe was composed successfully, otherwise false
77 bool static WriteScenario(pkgDepCache
&Cache
, FILE* output
, OpProgress
*Progress
= NULL
);
79 /** \brief creates a limited scenario representing the package universe
81 * This method works similar to #WriteScenario as it works in the same
82 * way but doesn't send the complete universe to the solver but only
83 * packages included in the pkgset which will have only dependencies
84 * on packages which are in the given set. All other dependencies will
85 * be removed, so that this method can be used to create testcases
87 * \param Cache is the known package universe
88 * \param output is written to this "file"
89 * \param pkgset is a set of packages the universe should be limited to
90 * \param Progress is an instance to report progress to
92 * \return true if universe was composed successfully, otherwise false
94 bool static WriteLimitedScenario(pkgDepCache
&Cache
, FILE* output
,
95 APT::PackageSet
const &pkgset
,
96 OpProgress
*Progress
= NULL
);
98 /** \brief waits and acts on the information returned from the solver
100 * This method takes care of interpreting whatever the solver sends
101 * through the standard output like a solution, progress or an error.
102 * The main thread should handle his control over to this method to
103 * wait for the solver to finish the given task
105 * \param input file descriptor with the response from the solver
106 * \param Cache the solution should be applied on if any
107 * \param Progress is an instance to report progress to
109 * \return true if a solution is found and applied correctly, otherwise false
111 bool static ReadResponse(int const input
, pkgDepCache
&Cache
, OpProgress
*Progress
= NULL
);
113 /** \brief search and read the request stanza for action later
115 * This method while ignore the input up to the point it finds the
116 * Request: line as an indicator for the Request stanza.
117 * The request is stored in the parameters install and remove then,
118 * as the cache isn't build yet as the scenario follows the request.
120 * \param input file descriptor with the edsp input for the solver
121 * \param[out] install is a list which gets populated with requested installs
122 * \param[out] remove is a list which gets populated with requested removals
123 * \param[out] upgrade is true if it is a request like apt-get upgrade
124 * \param[out] distUpgrade is true if it is a request like apt-get dist-upgrade
125 * \param[out] autoRemove is true if removal of uneeded packages should be performed
127 * \return true if the request could be found and worked on, otherwise false
129 bool static ReadRequest(int const input
, std::list
<std::string
> &install
,
130 std::list
<std::string
> &remove
, bool &upgrade
,
131 bool &distUpgrade
, bool &autoRemove
);
133 /** \brief takes the request lists and applies it on the cache
135 * The lists as created by #ReadRequest will be used to find the
136 * packages in question and mark them for install/remove.
137 * No solving is done and no auto-install/-remove.
139 * \param install is a list of packages to mark for installation
140 * \param remove is a list of packages to mark for removal
141 * \param Cache is there the markers should be set
143 * \return false if the request couldn't be applied, true otherwise
145 bool static ApplyRequest(std::list
<std::string
> const &install
,
146 std::list
<std::string
> const &remove
,
149 /** \brief encodes the changes in the Cache as a EDSP solution
151 * The markers in the Cache are observed and send to given
152 * file. The solution isn't checked for consistency or alike,
153 * so even broken solutions can be written successfully,
154 * but the front-end revicing it will properly fail then.
156 * \param Cache which represents the solution
157 * \param output to write the stanzas forming the solution to
159 * \return true if solution could be written, otherwise false
161 bool static WriteSolution(pkgDepCache
&Cache
, FILE* output
);
163 /** \brief sends a progress report
165 * \param percent of the solving completed
166 * \param message the solver wants the user to see
167 * \param output the front-end listens for progress report
169 bool static WriteProgress(unsigned short const percent
, const char* const message
, FILE* output
);
171 /** \brief sends an error report
173 * Solvers are expected to execute successfully even if
174 * they were unable to calculate a solution for a given task.
175 * Obviously they can't send a solution through, so this
176 * methods deals with formatting an error message correctly
177 * so that the front-ends can recieve and display it.
179 * The first line of the message should be a short description
180 * of the error so it can be used for dialog titles or alike
182 * \param uuid of this error message
183 * \param message is free form text to discribe the error
184 * \param output the front-end listens for error messages
186 bool static WriteError(char const * const uuid
, std::string
const &message
, FILE* output
);
189 /** \brief executes the given solver and returns the pipe ends
191 * The given solver is executed if it can be found in one of the
192 * configured directories and setup for it is performed.
194 * \param solver to execute
195 * \param[out] solver_in will be the stdin of the solver
196 * \param[out] solver_out will be the stdout of the solver
198 * \return true if the solver could be started and the pipes
199 * are set up correctly, otherwise false and the pipes are invalid
201 bool static ExecuteSolver(const char* const solver
, int *solver_in
, int *solver_out
);
203 /** \brief call an external resolver to handle the request
205 * This method wraps all the methods above to call an external solver
207 * \param solver to execute
208 * \param Cache with the problem and as universe to work in
209 * \param upgrade is true if it is a request like apt-get upgrade
210 * \param distUpgrade is true if it is a request like apt-get dist-upgrade
211 * \param autoRemove is true if unneeded packages should be removed
212 * \param Progress is an instance to report progress to
214 * \return true if the solver has successfully solved the problem,
217 bool static ResolveExternal(const char* const solver
, pkgDepCache
&Cache
,
218 bool const upgrade
, bool const distUpgrade
,
219 bool const autoRemove
, OpProgress
*Progress
= NULL
);