Remove obsolete UpgradeStatistics class from libzypp.
[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     bool doUpgrade();
120
121     /**
122      * Update to newest package
123      *
124      * Install the newest version of your installed packages as
125      * far as possible. This means a newer package will NOT be
126      * installed if it generates dependency problems.
127      * So the user will not get an error message.
128      *
129      **/
130     void doUpdate( );
131
132
133     /**
134      * Unmaintained packages which does not fit to
135      * the updated system (broken dependencies) will be
136      * deleted.
137      * Return the list of deleted items.
138      * Note : This list is valid after the call doUpgrade() only.
139      **/
140     std::list<PoolItem> problematicUpdateItems() const;
141
142     /**
143      * Return the dependency problems found by the last call to
144      * resolveDependencies(). If there were no problems, the returned
145      * list will be empty.
146      **/
147     ResolverProblemList problems();
148
149
150     /**
151      * Apply problem solutions. No more than one solution per problem
152      * can be applied.
153      **/
154     void applySolutions( const ProblemSolutionList & solutions );
155
156
157     /**
158      * Remove resolvables which are conflicts with others or
159      * have unfulfilled requirements.
160      * This behaviour is favourited by ZMD.
161      **/
162     void setForceResolve( bool force );
163     bool forceResolve();
164
165     /**
166      * Ignore recommended packages that were already recommended by
167      * the installed packages
168      **/
169     void setIgnoreAlreadyRecommended( bool yesno_r );
170     bool ignoreAlreadyRecommended();
171
172     /**
173      * Setting whether required packages are installed ONLY
174      * So recommended packages, language packages and packages which depend
175      * on hardware (modalias) will not be regarded.
176      **/
177     void setOnlyRequires( bool yesno_r );
178     void resetOnlyRequires(); // set back to default (described in zypp.conf)
179     bool onlyRequires();
180
181     /**
182      * Setting whether the solver should allow or disallow vendor changes.
183      *
184      * If OFF (the default) the solver will replace packages with packages
185      * of the same (or equivalent) vendor ony.
186      *
187      * \see \ref VendorAttr for definition of vendor equivalence.
188      **/
189     void setAllowVendorChange( bool yesno_r );
190     void setDefaultAllowVendorChange(); // set back to default (in zypp.conf)
191     bool allowVendorChange() const;
192
193     /**
194      * System verification mode also monitors and repairs dependencies
195      * of already installed packages.
196      * \see \ref verifySystem
197      */
198     void setSystemVerification( bool yesno_r );
199     void setDefaultSystemVerification();
200     bool systemVerification() const;
201
202     /**
203      * Set whether to solve source packages build dependencies per default.
204      * Usually turned off and if, enabled per source package.
205      * \NOTE This affects only source packges selected in the \ref ResPool. No solver rule
206      * will be generated for them. Source packages requested via e.g. \ref addRequire will
207      * always be solved.
208      * \NOTE Be carefull. The older the source package is, the stranger may be the
209      * result of solving it's build dependencies.
210      */
211     void setSolveSrcPackages( bool yesno_r );
212     void setDefaultSolveSrcPackages();
213     bool solveSrcPackages() const;
214
215     /**
216      * Adding additional requirement
217      *
218      */
219     void addRequire( const Capability & capability );
220
221     /**
222      * Adding additional conflict
223      *
224      */
225     void addConflict( const Capability & capability );
226
227     /**
228      * Remove the additional requirement set by \ref addRequire(Capability).
229      *
230      */
231     void removeRequire( const Capability & capability );
232
233     /**
234      * Remove the additional conflict set by \ref addConflict(Capability).
235      *
236      */
237     void removeConflict( const Capability & capability );
238
239     /**
240      * Get all the additional requirements set by \ref addRequire(Capability).
241      *
242      */
243     CapabilitySet getRequire();
244
245     /**
246      * Get all the additional conflicts set by \ref addConflict(Capability).
247      *
248      */
249     CapabilitySet getConflict();
250
251     /**
252      * Generates a solver Testcase of the current state
253      *
254      * \parame dumpPath destination directory of the created directory
255      * \return true if it was successful
256      */
257     bool createSolverTestcase( const std::string & dumpPath = "/var/log/YaST2/solverTestcase" );
258
259     /**
260      * Gives information about WHO has pused an installation of an given item.
261      *
262      * \param item    Evaluate additional information for this resolvable.
263      * \return A list of structures which contains:
264      *          item                Item which has triggered the installation of the given param item.
265      *          initialInstallation This item has triggered the installation
266      *                              Not already fullfilled requierement only.
267      *          cap                 Capability which has triggerd this installation
268      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
269      *
270      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
271      *
272      */
273     solver::detail::ItemCapKindList isInstalledBy( const PoolItem & item );
274
275     /**
276      * Gives information about WHICH additional items will be installed due the installation of an item.
277      *
278      * \param item     Evaluate additional information for this resolvable.
279      * \return A list of structures which contains:
280      *          item                Item which has triggered the installation of the given param item.
281      *          initialInstallation This item has triggered the installation
282      *                              Not already fullfilled requierement only.
283      *          cap                 Capability which has triggerd this installation
284      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
285      *
286      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
287      *
288      */
289     solver::detail::ItemCapKindList installs( const PoolItem & item );
290
291     /**
292      * Gives information about WHICH installed items are requested by the installation of an item.
293      *
294      * \param item     Evaluate additional information for this resolvable.
295      * \return A list of structures which contains:
296      *          item                Item which has triggered the installation of the given param item.
297      *          initialInstallation This item has triggered the installation
298      *                              Not already fullfilled requierement only.
299      *          cap                 Capability which has triggerd this installation
300      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
301      *
302      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
303      *
304      */
305     solver::detail::ItemCapKindList satifiedByInstalled( const PoolItem & item );
306
307
308     /**
309      * Gives information about WHICH items require an already installed item.
310      *
311      * \param item     Evaluate additional information for this resolvable.
312      * \return A list of structures which contains:
313      *          item                Item which has triggered the installation of the given param item.
314      *          initialInstallation This item has triggered the installation
315      *                              Not already fullfilled requierement only.
316      *          cap                 Capability which has triggerd this installation
317      *          capKind             Kind of that capability (e.g.  Dep::REQUIRES,Dep::RECOMMENDS,... )
318      *
319      * Note: In order to have a result start a solver run before. Not matter if it is valid or invalid.
320      *
321      */
322     solver::detail::ItemCapKindList installedSatisfied( const PoolItem & item );
323
324
325
326   private:
327     solver::detail::Resolver_Ptr _pimpl;
328   };
329   ///////////////////////////////////////////////////////////////////
330
331   /////////////////////////////////////////////////////////////////
332 } // namespace zypp
333 ///////////////////////////////////////////////////////////////////
334 #endif // ZYPP_RESOLVER_H