libzypp  17.9.0
Resolver.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* Resolver.h
3  *
4  * Copyright (C) 2000-2002 Ximian, Inc.
5  * Copyright (C) 2005 SUSE Linux Products GmbH
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License,
9  * version 2, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19  * 02111-1307, USA.
20  */
21 
22 #ifndef ZYPP_SOLVER_DETAIL_RESOLVER_H
23 #define ZYPP_SOLVER_DETAIL_RESOLVER_H
24 #ifndef ZYPP_USE_RESOLVER_INTERNALS
25 #error Do not directly include this file!
26 #else
27 
28 #include <iosfwd>
29 #include <string>
30 #include <list>
31 #include <map>
32 
33 #include "zypp/ResPool.h"
34 #include "zypp/TriBool.h"
35 #include "zypp/base/SerialNumber.h"
36 #include "zypp/base/NonCopyable.h"
37 
38 #include "zypp/ProblemTypes.h"
39 #include "zypp/ResolverProblem.h"
40 #include "zypp/ProblemSolution.h"
41 #include "zypp/Capabilities.h"
42 #include "zypp/Capability.h"
43 
45 namespace zypp
46 {
47  namespace sat
48  {
49  class Transaction;
50  }
52  namespace solver
53  {
55  namespace detail
56  {
57  class SATResolver;
58  typedef std::list<PoolItem> PoolItemList;
59  typedef std::set<PoolItem> PoolItemSet;
60 
62 //
63 // CLASS NAME : Resolver
71 class Resolver : private base::NonCopyable
72 {
73  typedef std::multimap<PoolItem,ItemCapKind> ItemCapKindMap;
74  private:
75  ResPool _pool;
76  SATResolver *_satResolver;
77  SerialNumberWatcher _poolchanged;
78 
79  CapabilitySet _extra_requires;
80  CapabilitySet _extra_conflicts;
81  std::set<Repository> _upgradeRepos;
82 
83  // Regard dependencies of the item weak onl
84  PoolItemList _addWeak;
85 
88  bool _upgradeMode; // Resolver has been called with doUpgrade
89  bool _updateMode; // Resolver has been called with doUpdate
90  bool _verifying; // The system will be checked
91  bool _onlyRequires; // do install required resolvables only
92  // no recommended resolvables, language
93  // packages, hardware packages (modalias)
94  bool _solveSrcPackages; // whether to generate solver jobs for selected source packges.
95  bool _cleandepsOnRemove; // whether removing a package should also remove no longer needed requirements
96 
97  bool _ignoreAlreadyRecommended; //ignore recommended packages that have already been recommended by the installed packages
98  ResolverNamespaces _inr; // Try to re-evaluate recommendations for these namespaces
100 
101  // Additional QueueItems which has to be regarded by the solver
102  // This will be used e.g. by solution actions
103  solver::detail::SolverQueueItemList _removed_queue_items;
104  solver::detail::SolverQueueItemList _added_queue_items;
105 
106  // Additional information about the solverrun
107  ItemCapKindMap _isInstalledBy;
108  ItemCapKindMap _installs;
109  ItemCapKindMap _satifiedByInstalled;
110  ItemCapKindMap _installedSatisfied;
111 
112  // helpers
113  void collectResolverInfo();
114 
115  // Unmaintained packages which does not fit to the updated system
116  // (broken dependencies) will be deleted.
117  // returns true if solving was successful
118  bool checkUnmaintainedItems ();
119 
120  void solverInit();
121 
122  public:
123 
124  Resolver( const ResPool & pool );
125  virtual ~Resolver();
126 
127  // ---------------------------------- I/O
128 
129  std::ostream & dumpOn( std::ostream & str ) const;
130 
131  friend std::ostream& operator<<( std::ostream& str, const Resolver & obj )
132  { return obj.dumpOn (str); }
133 
134  // ---------------------------------- methods
135 
136  ResPool pool() const;
137  void setPool( const ResPool & pool ) { _pool = pool; }
138 
139  void addUpgradeRepo( Repository repo_r ) { if ( repo_r && ! repo_r.isSystemRepo() ) _upgradeRepos.insert( repo_r ); }
140  bool upgradingRepo( Repository repo_r ) const { return( _upgradeRepos.find( repo_r ) != _upgradeRepos.end() ); }
141  void removeUpgradeRepo( Repository repo_r ) { _upgradeRepos.erase( repo_r ); }
142  void removeUpgradeRepos() { _upgradeRepos.clear(); }
143  const std::set<Repository> & upgradeRepos() const { return _upgradeRepos; }
144 
145  void addExtraRequire( const Capability & capability );
146  void removeExtraRequire( const Capability & capability );
147  void addExtraConflict( const Capability & capability );
148  void removeExtraConflict( const Capability & capability );
149 
150  void removeQueueItem( SolverQueueItem_Ptr item );
151  void addQueueItem( SolverQueueItem_Ptr item );
152 
153  CapabilitySet extraRequires() const { return _extra_requires; }
154  CapabilitySet extraConflicts() const { return _extra_conflicts; }
155 
156  void addWeak( const PoolItem & item );
157 
158  bool verifySystem();
159  bool resolvePool();
160  bool resolveQueue( SolverQueueItemList & queue );
161  void doUpdate();
162 
163  bool doUpgrade();
164  PoolItemList problematicUpdateItems() const;
165 
168  bool ignoreAlreadyRecommended() const { return _ignoreAlreadyRecommended; }
169  void setIgnoreAlreadyRecommended( bool yesno_r ) { _ignoreAlreadyRecommended = yesno_r; }
170 
171  ResolverNamespaces inr() const { return _inr; }
172  void setInr( ResolverNamespaces namespaces_r ) { _inr = namespaces_r; }
173 
174  bool onlyRequires () const { return _onlyRequires; }
175  void setOnlyRequires( TriBool state_r );
176 
177  bool isUpgradeMode() const { return _upgradeMode; }// Resolver has been called with doUpgrade
178  void setUpgradeMode( bool yesno_r ) { _upgradeMode = yesno_r; }
179 
180  bool isUpdateMode() const { return _updateMode; } // Resolver has been called with doUpdate
181  void setUpdateMode( bool yesno_r ) { _updateMode = yesno_r; }
182 
183  bool isVerifyingMode() const { return _verifying; } // The system will be checked
184  void setVerifyingMode( TriBool state_r ) { _verifying = indeterminate(state_r) ? false : bool(state_r); }
185 
186  bool solveSrcPackages() const { return _solveSrcPackages; }
187  void setSolveSrcPackages( TriBool state_r ) { _solveSrcPackages = indeterminate(state_r) ? false : bool(state_r); }
188 
189  bool cleandepsOnRemove() const { return _cleandepsOnRemove; }
190  void setCleandepsOnRemove( TriBool state_r );
192 
193 #define ZOLV_FLAG_TRIBOOL( ZSETTER, ZGETTER ) \
194  void ZSETTER( TriBool state_r ); \
195  bool ZGETTER() const; \
196 
197  ZOLV_FLAG_TRIBOOL( setForceResolve, forceResolve )
198 
199  ZOLV_FLAG_TRIBOOL( setAllowDowngrade, allowDowngrade )
200  ZOLV_FLAG_TRIBOOL( setAllowNameChange, allowNameChange )
201  ZOLV_FLAG_TRIBOOL( setAllowArchChange, allowArchChange )
202  ZOLV_FLAG_TRIBOOL( setAllowVendorChange, allowVendorChange )
203 
204  ZOLV_FLAG_TRIBOOL( dupSetAllowDowngrade, dupAllowDowngrade )
205  ZOLV_FLAG_TRIBOOL( dupSetAllowNameChange, dupAllowNameChange )
206  ZOLV_FLAG_TRIBOOL( dupSetAllowArchChange, dupAllowArchChange )
207  ZOLV_FLAG_TRIBOOL( dupSetAllowVendorChange, dupAllowVendorChange )
208 
209 #undef ZOLV_FLAG_TRIBOOL
210 
211  ResolverProblemList problems() const;
212 
213  void applySolutions( const ProblemSolutionList & solutions );
214  bool applySolution( const ProblemSolution & solution );
215 
216  // Return the Transaction computed by the last solver run.
217  sat::Transaction getTransaction();
218 
219  // reset all SOLVER transaction in pool
220  void undo();
221 
222  void reset( bool keepExtras = false );
223 
224  // Get more information about the solverrun
225  // Which item will be installed by another item or triggers an item for
226  // installation
227  ItemCapKindList isInstalledBy( const PoolItem & item );
228  ItemCapKindList installs( const PoolItem & item );
229  ItemCapKindList satifiedByInstalled (const PoolItem & item );
230  ItemCapKindList installedSatisfied( const PoolItem & item );
231 
232 };
233 
235  };// namespace detail
238  };// namespace solver
241 };// namespace zypp
243 #endif // ZYPP_USE_RESOLVER_INTERNALS
244 #endif // ZYPP_SOLVER_DETAIL_RESOLVER_H
std::list< ProblemSolution_Ptr > ProblemSolutionList
Definition: ProblemTypes.h:43
String related utilities and Regular expression matching.
std::list< SolverQueueItem_Ptr > SolverQueueItemList
Definition: Types.h:45
boost::logic::tribool TriBool
3-state boolean logic (true, false and indeterminate).
Definition: String.h:30
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
std::list< ResolverProblem_Ptr > ResolverProblemList
Definition: ProblemTypes.h:46
ostream & operator<<(ostream &os, const SolutionActionList &actionlist)
std::ostream & dumpOn(std::ostream &str, const Capability &obj)
Definition: Capability.cc:444
std::unordered_set< Capability > CapabilitySet
Definition: Capability.h:33
std::list< ItemCapKind > ItemCapKindList
Definition: Types.h:41
ZOLV_FLAG_TRIBOOL(setAllowNameChange, allowNameChange, _allownamechange, true) ZOLV_FLAG_TRIBOOL(setAllowVendorChange
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1