libzypp  13.10.6
SATResolver.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* SATResolver.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_SAT_RESOLVER_H
23 #define ZYPP_SOLVER_DETAIL_SAT_RESOLVER_H
24 
25 extern "C"
26 {
27 #include <solv/solver.h>
28 #include <solv/pool.h>
29 }
30 
31 #include <iosfwd>
32 #include <list>
33 #include <map>
34 #include <string>
35 
37 #include "zypp/base/PtrTypes.h"
38 #include "zypp/ResPool.h"
39 #include "zypp/base/SerialNumber.h"
40 #include "zypp/ProblemTypes.h"
41 #include "zypp/ResolverProblem.h"
42 #include "zypp/ProblemSolution.h"
43 #include "zypp/Capability.h"
45 
47 namespace zypp
48 {
49 
50  namespace sat
51  {
52  class Transaction;
53  }
54 
56  namespace solver
57  {
58  namespace detail
60  {
61 
62 
64 //
65 // CLASS NAME : SATResolver
72 
73  private:
75  Pool *_SATPool;
76  Solver *_solv;
77  Queue _jobQueue;
78 
79  // list of problematic items (orphaned)
81 
82  // list populated by calls to addPoolItemTo*()
87 
88  // solve results
91 
92  bool _fixsystem; // repair errors in rpm dependency graph
93  bool _allowdowngrade; // allow to downgrade installed solvable
94  bool _allowarchchange; // allow to change architecture of installed solvables
95  bool _allowvendorchange; // allow to change vendor of installed solvables
96  bool _allowuninstall; // allow removal of installed solvables
97  bool _updatesystem; // update
98  bool _noupdateprovide; // true: update packages needs not to provide old package
99  bool _dosplitprovides; // true: consider legacy split provides
100  bool _onlyRequires; // true: consider required packages only
101  bool _ignorealreadyrecommended; // true: ignore recommended packages that were already recommended by the installed packages
104  bool _solveSrcPackages; // false: generate no job rule for source packages selected in the pool
105  bool _cleandepsOnRemove; // whether removing a package should also remove no longer needed requirements
106 
107  // ---------------------------------- methods
108  std::string SATprobleminfoString (Id problem, std::string &detail, Id &ignoreId);
109  void resetItemTransaction (PoolItem item);
110 
111  // Create a SAT solver and reset solver selection in the pool (Collecting
112  void solverInit(const PoolItemList & weakItems);
113  // common solver run with the _jobQueue; Save results back to pool
114  bool solving(const CapabilitySet & requires_caps = CapabilitySet(),
115  const CapabilitySet & conflict_caps = CapabilitySet());
116  // cleanup solver
117  void solverEnd();
118  // set locks for the solver
119  void setLocks();
120  // set requirements for a running system
121  void setSystemRequirements();
122 
123  // Checking if this solvable/item has a buddy which reflect the real
124  // user visible description of an item
125  // e.g. The release package has a buddy to the concerning product item.
126  // This user want's the message "Product foo conflicts with product bar" and
127  // NOT "package release-foo conflicts with package release-bar"
128  // So these functions return the concerning buddy (e.g. product item)
129  sat::Solvable mapSolvable (const Id &id);
130  PoolItem mapItem (const PoolItem &item);
131 
132  public:
133 
134  SATResolver (const ResPool & pool, Pool *SATPool);
135  virtual ~SATResolver();
136 
137  // ---------------------------------- I/O
138 
139  virtual std::ostream & dumpOn( std::ostream & str ) const;
140  friend std::ostream& operator<<(std::ostream& str, const SATResolver & obj)
141  { return obj.dumpOn (str); }
142 
143  ResPool pool (void) const;
144  void setPool (const ResPool & pool) { _pool = pool; }
145 
146  // solver run with pool selected items
147  bool resolvePool(const CapabilitySet & requires_caps,
148  const CapabilitySet & conflict_caps,
149  const PoolItemList & weakItems,
150  const std::set<Repository> & upgradeRepos
151  );
152  // solver run with the given request queue
153  bool resolveQueue(const SolverQueueItemList &requestQueue,
154  const PoolItemList & weakItems
155  );
156  // searching for new packages
157  void doUpdate();
158 
160  void applySolutions (const ProblemSolutionList &solutions);
161 
162  void addPoolItemToInstall (PoolItem item);
164 
165  void addPoolItemToLock (PoolItem item);
166  void addPoolItemToKeep (PoolItem item);
167 
168  void addPoolItemToRemove (PoolItem item);
170 
171  bool fixsystem () const {return _fixsystem;}
172  void setFixsystem ( const bool fixsystem) { _fixsystem = fixsystem;}
173 
176 
177  bool distupgrade () const {return _distupgrade;}
179 
182 
183  bool allowdowngrade () const {return _allowdowngrade;}
185 
186  bool allowarchchange () const {return _allowarchchange;}
188 
189  bool allowvendorchange () const {return _allowvendorchange;}
191 
192  bool allowuninstall () const {return _allowuninstall;}
194 
195  bool updatesystem () const {return _updatesystem;}
197 
198  bool noupdateprovide () const {return _noupdateprovide;}
200 
201  bool dosplitprovides () const {return _dosplitprovides;}
203 
204  bool onlyRequires () const {return _onlyRequires;}
206 
207  bool solveSrcPackages() const { return _solveSrcPackages; }
208  void setSolveSrcPackages( bool state_r ) { _solveSrcPackages = state_r; }
209 
210  bool cleandepsOnRemove() const { return _cleandepsOnRemove; }
211  void setCleandepsOnRemove( bool state_r ) { _cleandepsOnRemove = state_r; }
212 
214 
218 
219 };
220 
222  };// namespace detail
225  };// namespace solver
228 };// namespace zypp
230 
231 #endif // ZYPP_SOLVER_DETAIL_SAT_RESOLVER_H
void addPoolItemToKeep(PoolItem item)
Definition: SATResolver.cc:261
std::list< ProblemSolution_Ptr > ProblemSolutionList
Definition: ProblemTypes.h:42
void setSolveSrcPackages(bool state_r)
Definition: SATResolver.h:208
A Solvable object within the sat Pool.
Definition: Solvable.h:55
void setCleandepsOnRemove(bool state_r)
Definition: SATResolver.h:211
PoolItemList problematicUpdateItems(void) const
Definition: SATResolver.h:213
void addPoolItemsToInstallFromList(PoolItemList &rl)
Definition: SATResolver.cc:227
void setPool(const ResPool &pool)
Definition: SATResolver.h:144
bool distupgrade_removeunsupported() const
Definition: SATResolver.h:180
void setAllowarchchange(const bool allowarchchange)
Definition: SATResolver.h:187
void addPoolItemToLock(PoolItem item)
Definition: SATResolver.cc:253
void resetItemTransaction(PoolItem item)
Definition: SATResolver.cc:173
std::list< PoolItem > PoolItemList
Definition: Types.h:51
std::list< SolverQueueItem_Ptr > SolverQueueItemList
std::tr1::unordered_set< Capability > CapabilitySet
Definition: Capability.h:33
bool solving(const CapabilitySet &requires_caps=CapabilitySet(), const CapabilitySet &conflict_caps=CapabilitySet())
Definition: SATResolver.cc:421
void setUpdatesystem(const bool updatesystem)
Definition: SATResolver.h:196
void addPoolItemToRemove(PoolItem item)
Definition: SATResolver.cc:236
std::string SATprobleminfoString(Id problem, std::string &detail, Id &ignoreId)
Definition: SATResolver.cc:991
void setOnlyRequires(const bool onlyRequires)
Definition: SATResolver.h:205
void addPoolItemToInstall(PoolItem item)
Definition: SATResolver.cc:218
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
std::list< ResolverProblem_Ptr > ResolverProblemList
Definition: ProblemTypes.h:46
void setAllowdowngrade(const bool allowdowngrade)
Definition: SATResolver.h:184
sat::Solvable mapSolvable(const Id &id)
Definition: SATResolver.cc:988
friend std::ostream & operator<<(std::ostream &str, const SATResolver &obj)
Definition: SATResolver.h:140
void setNoupdateprovide(const bool noupdateprovide)
Definition: SATResolver.h:199
void setAllowvendorchange(const bool allowvendorchange)
Definition: SATResolver.h:190
void setDistupgrade_removeunsupported(const bool distupgrade_removeunsupported)
Definition: SATResolver.h:181
void setIgnorealreadyrecommended(const bool ignorealreadyrecommended)
Definition: SATResolver.h:175
Base class for reference counted objects.
void addPoolItemsToRemoveFromList(PoolItemList &rl)
Definition: SATResolver.cc:245
void applySolutions(const ProblemSolutionList &solutions)
void setDosplitprovides(const bool dosplitprovides)
Definition: SATResolver.h:202
bool resolveQueue(const SolverQueueItemList &requestQueue, const PoolItemList &weakItems)
Definition: SATResolver.cc:789
SATResolver(const ResPool &pool, Pool *SATPool)
Definition: SATResolver.cc:137
Global ResObject pool.
Definition: ResPool.h:48
void setDistupgrade(const bool distupgrade)
Definition: SATResolver.h:178
bool resolvePool(const CapabilitySet &requires_caps, const CapabilitySet &conflict_caps, const PoolItemList &weakItems, const std::set< Repository > &upgradeRepos)
Definition: SATResolver.cc:723
void solverInit(const PoolItemList &weakItems)
Definition: SATResolver.cc:631
PoolItem mapItem(const PoolItem &item)
Definition: SATResolver.cc:985
Reference to a PoolItem connecting ResObject and ResStatus.
Definition: PoolItem.h:50
virtual std::ostream & dumpOn(std::ostream &str) const
Overload to realize std::ostream &amp; operator&lt;&lt;.
Definition: SATResolver.cc:111
void setAllowuninstall(const bool allowuninstall)
Definition: SATResolver.h:193
ResolverProblemList problems()
void setFixsystem(const bool fixsystem)
Definition: SATResolver.h:172