]>
git.saurik.com Git - apt.git/blob - apt-pkg/edsp.h
828ee3753c44528633f7cbc5bd723bb037a8ac58
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 notable 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/pkgcache.h>
13 #include <apt-pkg/cacheset.h>
18 #ifndef APT_8_CLEANER_HEADERS
19 #include <apt-pkg/depcache.h>
20 #include <apt-pkg/progress.h>
28 // we could use pkgCache::DepType and ::Priority, but these would be localized stringsā¦
29 static const char * const PrioMap
[];
30 static const char * const DepMap
[];
32 bool static ReadLine(int const input
, std::string
&line
);
33 bool static StringToBool(char const *answer
, bool const defValue
);
35 void static WriteScenarioVersion(pkgDepCache
&Cache
, FILE* output
,
36 pkgCache::PkgIterator
const &Pkg
,
37 pkgCache::VerIterator
const &Ver
);
38 void static WriteScenarioDependency(FILE* output
,
39 pkgCache::VerIterator
const &Ver
);
40 void static WriteScenarioLimitedDependency(FILE* output
,
41 pkgCache::VerIterator
const &Ver
,
42 APT::PackageSet
const &pkgset
);
44 /** \brief creates the EDSP request stanza
46 * In the EDSP protocol the first thing send to the resolver is a stanza
47 * encoding the request. This method will write this stanza by looking at
48 * the given Cache and requests the installation of all packages which were
49 * marked for installation in it (equally for remove).
51 * \param Cache in which the request is encoded
52 * \param output is written to this "file"
53 * \param upgrade is true if it is an request like apt-get upgrade
54 * \param distUpgrade is true if it is a request like apt-get dist-upgrade
55 * \param autoRemove is true if removal of unneeded packages should be performed
56 * \param Progress is an instance to report progress to
58 * \return true if request was composed successfully, otherwise false
60 bool static WriteRequest(pkgDepCache
&Cache
, FILE* output
,
61 bool const upgrade
= false,
62 bool const distUpgrade
= false,
63 bool const autoRemove
= false,
64 OpProgress
*Progress
= NULL
);
66 /** \brief creates the scenario representing the package universe
68 * After the request all known information about a package are send
69 * to the solver. The output looks similar to a Packages or status file
71 * All packages and version included in this Cache are send, even if
72 * it doesn't make sense from an APT resolver point of view like versions
73 * with a negative pin to enable the solver to propose even that as a
74 * solution or at least to be able to give a hint what can be done to
77 * \param Cache is the known package universe
78 * \param output is written to this "file"
79 * \param Progress is an instance to report progress to
81 * \return true if universe was composed successfully, otherwise false
83 bool static WriteScenario(pkgDepCache
&Cache
, FILE* output
, OpProgress
*Progress
= NULL
);
85 /** \brief creates a limited scenario representing the package universe
87 * This method works similar to #WriteScenario as it works in the same
88 * way but doesn't send the complete universe to the solver but only
89 * packages included in the pkgset which will have only dependencies
90 * on packages which are in the given set. All other dependencies will
91 * be removed, so that this method can be used to create testcases
93 * \param Cache is the known package universe
94 * \param output is written to this "file"
95 * \param pkgset is a set of packages the universe should be limited to
96 * \param Progress is an instance to report progress to
98 * \return true if universe was composed successfully, otherwise false
100 bool static WriteLimitedScenario(pkgDepCache
&Cache
, FILE* output
,
101 APT::PackageSet
const &pkgset
,
102 OpProgress
*Progress
= NULL
);
104 /** \brief waits and acts on the information returned from the solver
106 * This method takes care of interpreting whatever the solver sends
107 * through the standard output like a solution, progress or an error.
108 * The main thread should handle his control over to this method to
109 * wait for the solver to finish the given task
111 * \param input file descriptor with the response from the solver
112 * \param Cache the solution should be applied on if any
113 * \param Progress is an instance to report progress to
115 * \return true if a solution is found and applied correctly, otherwise false
117 bool static ReadResponse(int const input
, pkgDepCache
&Cache
, OpProgress
*Progress
= NULL
);
119 /** \brief search and read the request stanza for action later
121 * This method while ignore the input up to the point it finds the
122 * Request: line as an indicator for the Request stanza.
123 * The request is stored in the parameters install and remove then,
124 * as the cache isn't build yet as the scenario follows the request.
126 * \param input file descriptor with the edsp input for the solver
127 * \param[out] install is a list which gets populated with requested installs
128 * \param[out] remove is a list which gets populated with requested removals
129 * \param[out] upgrade is true if it is a request like apt-get upgrade
130 * \param[out] distUpgrade is true if it is a request like apt-get dist-upgrade
131 * \param[out] autoRemove is true if removal of uneeded packages should be performed
133 * \return true if the request could be found and worked on, otherwise false
135 bool static ReadRequest(int const input
, std::list
<std::string
> &install
,
136 std::list
<std::string
> &remove
, bool &upgrade
,
137 bool &distUpgrade
, bool &autoRemove
);
139 /** \brief takes the request lists and applies it on the cache
141 * The lists as created by #ReadRequest will be used to find the
142 * packages in question and mark them for install/remove.
143 * No solving is done and no auto-install/-remove.
145 * \param install is a list of packages to mark for installation
146 * \param remove is a list of packages to mark for removal
147 * \param Cache is there the markers should be set
149 * \return false if the request couldn't be applied, true otherwise
151 bool static ApplyRequest(std::list
<std::string
> const &install
,
152 std::list
<std::string
> const &remove
,
155 /** \brief encodes the changes in the Cache as a EDSP solution
157 * The markers in the Cache are observed and send to given
158 * file. The solution isn't checked for consistency or alike,
159 * so even broken solutions can be written successfully,
160 * but the front-end revicing it will properly fail then.
162 * \param Cache which represents the solution
163 * \param output to write the stanzas forming the solution to
165 * \return true if solution could be written, otherwise false
167 bool static WriteSolution(pkgDepCache
&Cache
, FILE* output
);
169 /** \brief sends a progress report
171 * \param percent of the solving completed
172 * \param message the solver wants the user to see
173 * \param output the front-end listens for progress report
175 bool static WriteProgress(unsigned short const percent
, const char* const message
, FILE* output
);
177 /** \brief sends an error report
179 * Solvers are expected to execute successfully even if
180 * they were unable to calculate a solution for a given task.
181 * Obviously they can't send a solution through, so this
182 * methods deals with formatting an error message correctly
183 * so that the front-ends can receive and display it.
185 * The first line of the message should be a short description
186 * of the error so it can be used for dialog titles or alike
188 * \param uuid of this error message
189 * \param message is free form text to describe the error
190 * \param output the front-end listens for error messages
192 bool static WriteError(char const * const uuid
, std::string
const &message
, FILE* output
);
195 /** \brief executes the given solver and returns the pipe ends
197 * The given solver is executed if it can be found in one of the
198 * configured directories and setup for it is performed.
200 * \param solver to execute
201 * \param[out] solver_in will be the stdin of the solver
202 * \param[out] solver_out will be the stdout of the solver
204 * \return true if the solver could be started and the pipes
205 * are set up correctly, otherwise false and the pipes are invalid
207 bool static ExecuteSolver(const char* const solver
, int *solver_in
, int *solver_out
);
209 /** \brief call an external resolver to handle the request
211 * This method wraps all the methods above to call an external solver
213 * \param solver to execute
214 * \param Cache with the problem and as universe to work in
215 * \param upgrade is true if it is a request like apt-get upgrade
216 * \param distUpgrade is true if it is a request like apt-get dist-upgrade
217 * \param autoRemove is true if unneeded packages should be removed
218 * \param Progress is an instance to report progress to
220 * \return true if the solver has successfully solved the problem,
223 bool static ResolveExternal(const char* const solver
, pkgDepCache
&Cache
,
224 bool const upgrade
, bool const distUpgrade
,
225 bool const autoRemove
, OpProgress
*Progress
= NULL
);