Remove obsolete ResStatus bits.
[platform/upstream/libzypp.git] / zypp / Resolver.h
1 /*---------------------------------------------------------------------\
2 |                          ____ _   __ __ ___                          |
3 |                         |__  / \ / / . \ . \                         |
4 |                           / / \ V /|  _/  _/                         |
5 |                          / /__ | | | | | |                           |
6 |                         /_____||_| |_| |_|                           |
7 |                                                                      |
8 \---------------------------------------------------------------------*/
9 /** \file       zypp/Resolver.h
10  *
11 */
12 #ifndef ZYPP_RESOLVER_H
13 #define ZYPP_RESOLVER_H
14
15 #include <iosfwd>
16 #include <functional>
17
18 #include "zypp/base/ReferenceCounted.h"
19 #include "zypp/base/PtrTypes.h"
20
21 #include "zypp/ResPool.h"
22 #include "zypp/solver/detail/Resolver.h"
23 #include "zypp/solver/detail/SolverQueueItem.h"
24 #include "zypp/ProblemTypes.h"
25
26 ///////////////////////////////////////////////////////////////////
27 namespace zypp
28 { /////////////////////////////////////////////////////////////////
29
30
31   ///////////////////////////////////////////////////////////////////
32   //
33   //    CLASS NAME : Resolver
34   //
35   /**
36    * Dependency resolver interface.
37    *
38    * To resolve dependencies after making changes to the \ref ResPool (using
39    * \ref addRequire(), \ref addConflict(), \ref applySolutions(), or by making
40    * the changes directly on the \ref PoolItem status objects,
41    * call the \ref resolvePool() method.
42    */
43   class Resolver : public base::ReferenceCounted, private base::NonCopyable
44   {
45   public:
46
47     /** Ctor */
48     Resolver( const ResPool & pool );
49     /** Dtor */
50     virtual ~Resolver();
51
52     /**
53      * Resolve package dependencies:
54      *
55      * Enter \ref systemVerification mode to monitor and repair dependencies
56      * of already installed packages, and solve immediately.
57      *
58      * Call \ref setSystemVerification to turn of this mode.
59      **/
60     bool verifySystem();
61
62
63     /**
64      * Resolve package dependencies:
65      *
66      * Try to execute all pending transactions (there may be more than
67      * one!).
68      * The solver collects all transactions (install/delete resolvables)
69      * from the pool, generates task, solving it and writes the
70      * results back to pool
71      *
72      * Returns "true" on success (i.e., if there were no problems that
73      * need user interaction) and "false" if there were problems.  In
74      * the latter case, use problems() and later applySolutions()
75      * below.
76      **/
77     bool resolvePool();
78
79
80     /**
81      * Resolve package dependencies:
82      *
83      * The solver works off the given queue and writes back the solution
84      * to pool.
85      *
86      * Returns "true" on success (i.e., if there were no problems that
87      * need user interaction) and "false" if there were problems.  In
88      * the latter case, use problems() and later applySolutions()
89      * below.
90      * The solution could be that the solver remove/add some entries
91      * in the task queue. So make a new call of resolveQueue after you
92      * have applied any solution AND check the parameter "queue" if
93      * there has been any changes by the solver and adapt these changes
94      * to e.g. the selectables.
95      *
96      **/
97     bool resolveQueue( solver::detail::SolverQueueItemList & queue );
98
99     /*
100      * Undo solver changes done in resolvePool()
101      * Throwing away all ignored dependencies.
102      */
103     void undo();
104
105     /*
106      * Resets solver information and verify option.
107      */
108     void reset();
109
110
111     /**
112      * Do an distribution upgrade
113      *
114      * Perform a distribution upgrade. This performs an update of
115      * all packages with a special resolver algorithm which takes
116      * care of package splits, pattern  and  product  updates,
117      * etc.
118      *
119      * \see \ref addUpgradeRepo
120      **/
121     bool doUpgrade();
122
123     /**
124      * Update to newest package
125      *
126      * Install the newest version of your installed packages as
127      * far as possible. This means a newer package will NOT be
128      * installed if it generates dependency problems.
129      * So the user will not get an error message.
130      *
131      **/
132     void doUpdate( );
133
134     /**
135      * Unmaintained packages which does not fit to
136      * the updated system (broken dependencies) will be
137      * deleted.
138      * Return the list of deleted items.
139      * Note : This list is valid after the call doUpgrade() only.
140      **/
141     std::list<PoolItem> problematicUpdateItems() const;
142
143     /**
144      * Return the dependency problems found by the last call to
145      * resolveDependencies(). If there were no problems, the returned
146      * list will be empty.
147      **/
148     ResolverProblemList problems();
149
150
151     /**
152      * Apply problem solutions. No more than one solution per problem
153      * can be applied.
154      **/
155     void applySolutions( const ProblemSolutionList & solutions );
156
157
158     /**
159      * Remove resolvables which are conflicts with others or
160      * have unfulfilled requirements.
161      * This behaviour is favourited by ZMD.
162      **/
163     void setForceResolve( bool force );
164     bool forceResolve();
165
166     /**
167      * Ignore recommended packages that were already recommended by
168      * the installed packages
169      **/
170     void setIgnoreAlreadyRecommended( bool yesno_r );
171     bool ignoreAlreadyRecommended();
172
173     /**
174      * Setting whether required packages are installed ONLY
175      * So recommended packages, language packages and packages which depend
176      * on hardware (modalias) will not be regarded.
177      **/
178     void setOnlyRequires( bool yesno_r );
179     void resetOnlyRequires(); // set back to default (described in zypp.conf)
180     bool onlyRequires();
181
182     /**
183      * Whether the \ref Resolver is in upgrade mode.
184      */
185     bool upgradeMode() const;
186
187     /**
188      * Setting whether the solver should allow or disallow vendor changes.
189      *
190      * If OFF (the default) the solver will replace packages with packages
191      * of the same (or equivalent) vendor ony.
192      *
193      * \see \ref VendorAttr for definition of vendor equivalence.
194      **/
195     void setAllowVendorChange( bool yesno_r );
196     void setDefaultAllowVendorChange(); // set back to default (in zypp.conf)
197     bool allowVendorChange() const;
198
199     /**
200      * System verification mode also monitors and repairs dependencies
201      * of already installed packages.
202      * \see \ref verifySystem
203      */
204     void setSystemVerification( bool yesno_r );
205     void setDefaultSystemVerification();
206     bool systemVerification() const;
207
208     /**
209      * Set whether to solve source packages build dependencies per default.
210      * Usually turned off and if, enabled per source package.
211      * \NOTE This affects only source packges selected in the \ref ResPool. No solver rule
212      * will be generated for them. Source packages requested via e.g. \ref addRequire will
213      * always be solved.
214      * \NOTE Be carefull. The older the source package is, the stranger may be the
215      * result of solving it's build dependencies.
216      */
217     void setSolveSrcPackages( bool yesno_r );
218     void setDefaultSolveSrcPackages();
219     bool solveSrcPackages() const;
220
221     /**
222      * Adding request to perform a dist upgrade restricted to this repository.
223      * This is what e.g. <tt>zypper dup --repo myrepo</tt> should perform.
224      * \see \ref doUpgrade
225      */
226     void addUpgradeRepo( Repository repo_r );
227
228     /**
229      * Remove the upgrade request for this repo.
230      */
231     void removeUpgradeRepo( Repository repo_r );
232
233     /**
234      * Remove all upgrade repo requests.
235      */
236     void removeUpgradeRepos();
237
238     /**
239      * Adding additional requirement
240      *
241      */
242     void addRequire( const Capability & capability );
243
244     /**
245      * Adding additional conflict
246      *
247      */
248     void addConflict( const Capability & capability );
249
250     /**
251      * Remove the additional requirement set by \ref addRequire(Capability).
252      *
253      */
254     void removeRequire( const Capability & capability );
255
256     /**
257      * Remove the additional conflict set by \ref addConflict(Capability).
258      *
259      */
260     void removeConflict( const Capability & capability );
261
262     /**
263      * Get all the additional requirements set by \ref addRequire(Capability).
264      *
265      */
266     CapabilitySet getRequire();
267
268     /**
269      * Get all the additional conflicts set by \ref addConflict(Capability).
270      *
271      */
272     CapabilitySet getConflict();
273
274     /**
275      * Generates a solver Testcase of the current state
276      *
277      * \parame dumpPath destination directory of the created directory
278      * \return true if it was successful
279      */
280     bool createSolverTestcase( const std::string & dumpPath = "/var/log/YaST2/solverTestcase", bool runSolver = true );
281
282     /**
283      * Gives information about WHO has pused an installation of an given item.
284      *
285      * \param item    Evaluate additional information for this resolvable.
286      * \return A list of structures which contains:
287      *          item                Item which has triggered the installation of the given param item.
288      *          initialInstallation This item has triggered the installation
289      *                              Not already fullfilled requierement only.
290      *          cap                 Capability which has triggerd this installation
291      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
292      *
293      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
294      *
295      */
296     solver::detail::ItemCapKindList isInstalledBy( const PoolItem & item );
297
298     /**
299      * Gives information about WHICH additional items will be installed due the installation of an item.
300      *
301      * \param item     Evaluate additional information for this resolvable.
302      * \return A list of structures which contains:
303      *          item                Item which has triggered the installation of the given param item.
304      *          initialInstallation This item has triggered the installation
305      *                              Not already fullfilled requierement only.
306      *          cap                 Capability which has triggerd this installation
307      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
308      *
309      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
310      *
311      */
312     solver::detail::ItemCapKindList installs( const PoolItem & item );
313
314     /**
315      * Gives information about WHICH installed items are requested by the installation of an item.
316      *
317      * \param item     Evaluate additional information for this resolvable.
318      * \return A list of structures which contains:
319      *          item                Item which has triggered the installation of the given param item.
320      *          initialInstallation This item has triggered the installation
321      *                              Not already fullfilled requierement only.
322      *          cap                 Capability which has triggerd this installation
323      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
324      *
325      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
326      *
327      */
328     solver::detail::ItemCapKindList satifiedByInstalled( const PoolItem & item );
329
330
331     /**
332      * Gives information about WHICH items require an already installed item.
333      *
334      * \param item     Evaluate additional information for this resolvable.
335      * \return A list of structures which contains:
336      *          item                Item which has triggered the installation of the given param item.
337      *          initialInstallation This item has triggered the installation
338      *                              Not already fullfilled requierement only.
339      *          cap                 Capability which has triggerd this installation
340      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
341      *
342      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
343      *
344      */
345     solver::detail::ItemCapKindList installedSatisfied( const PoolItem & item );
346
347
348
349   private:
350     solver::detail::Resolver_Ptr _pimpl;
351   };
352   ///////////////////////////////////////////////////////////////////
353
354   /////////////////////////////////////////////////////////////////
355 } // namespace zypp
356 ///////////////////////////////////////////////////////////////////
357 #endif // ZYPP_RESOLVER_H