libzypp  16.22.5
Resolver.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_RESOLVER_H
13 #define ZYPP_RESOLVER_H
14 
15 #include <iosfwd>
16 #include <functional>
17 
19 
20 #include "zypp/solver/Types.h"
22 
24 namespace zypp
25 {
26 
27  namespace sat
28  {
29  class Transaction;
30  }
31 
33  //
34  // CLASS NAME : Resolver
35  //
45  {
46  public:
47 
49  Resolver( const ResPool & pool );
51  virtual ~Resolver();
52 
61  bool verifySystem();
62 
63 
78  bool resolvePool();
79 
80 
99 
100  /*
101  * Undo solver changes done in resolvePool()
102  * Throwing away all ignored dependencies.
103  */
104  void undo();
105 
106  /*
107  * Resets solver information and verify option.
108  */
109  void reset();
110 
111 
125  bool doUpgrade();
126 
136  void doUpdate( );
137 
145  std::list<PoolItem> problematicUpdateItems() const;
146 
153 
154 
159  void applySolutions( const ProblemSolutionList & solutions );
160 
165 
170  void setFocus( ResolverFocus focus_r );
171  ResolverFocus focus() const;
172 
178  void setForceResolve( bool force );
179  bool forceResolve() const;
180 
185  void setIgnoreAlreadyRecommended( bool yesno_r );
186  bool ignoreAlreadyRecommended() const;
187 
193  void setOnlyRequires( bool yesno_r );
194  void resetOnlyRequires(); // set back to default (described in zypp.conf)
195  bool onlyRequires() const;
196 
202  void setUpgradeMode( bool yesno_r );
203  bool upgradeMode() const;
204 
210  void setUpdateMode( bool yesno_r );
211  bool updateMode() const;
212 
213 
219  void setAllowDowngrade( bool yesno_r );
220  void setDefaultAllowDowngrade(); // Set back to default
221  bool allowDowngrade() const;
222 
224  void setAllowNameChange( bool yesno_r );
225  void setDefaultAllowNameChange(); // Set back to default
226  bool allowNameChange() const;
227 
229  void setAllowArchChange( bool yesno_r );
230  void setDefaultAllowArchChange(); // Set back to default
231  bool allowArchChange() const;
232 
236  void setAllowVendorChange( bool yesno_r );
237  void setDefaultAllowVendorChange(); // Set back to default
238  bool allowVendorChange() const;
240 
246  void setSystemVerification( bool yesno_r );
248  bool systemVerification() const;
249 
259  void setSolveSrcPackages( bool yesno_r );
261  bool solveSrcPackages() const;
262 
267  void setCleandepsOnRemove( bool yesno_r );
268  void setDefaultCleandepsOnRemove(); // set back to default (in zypp.conf)
269  bool cleandepsOnRemove() const;
270 
277  void dupSetAllowDowngrade( bool yesno_r );
278  void dupSetDefaultAllowDowngrade(); // Set back to default (in zypp.conf)
279  bool dupAllowDowngrade() const;
280 
282  void dupSetAllowNameChange( bool yesno_r );
283  void dupSetDefaultAllowNameChange(); // Set back to default (in zypp.conf)
284  bool dupAllowNameChange() const;
285 
287  void dupSetAllowArchChange( bool yesno_r );
288  void dupSetDefaultAllowArchChange(); // Set back to default (in zypp.conf)
289  bool dupAllowArchChange() const;
290 
292  void dupSetAllowVendorChange( bool yesno_r );
293  void dupSetDefaultAllowVendorChange(); // Set back to default (in zypp.conf)
294  bool dupAllowVendorChange() const;
296 
308  void addUpgradeRepo( Repository repo_r );
309 
313  bool upgradingRepos() const;
314 
318  bool upgradingRepo( Repository repo_r ) const;
319 
323  void removeUpgradeRepo( Repository repo_r );
324 
328  void removeUpgradeRepos();
330 
335  void addRequire( const Capability & capability );
336 
341  void addConflict( const Capability & capability );
342 
347  void removeRequire( const Capability & capability );
348 
353  void removeConflict( const Capability & capability );
354 
359  CapabilitySet getRequire() const;
360 
365  CapabilitySet getConflict() const;
366 
373  bool createSolverTestcase( const std::string & dumpPath = "/var/log/YaST2/solverTestcase", bool runSolver = true );
374 
390 
406 
422 
423 
439 
440 
441  private:
442  friend std::ostream & operator<<( std::ostream & str, const Resolver & obj );
444  };
446 
448  std::ostream & operator<<( std::ostream & str, const Resolver & obj );
449 
451 } // namespace zypp
453 #endif // ZYPP_RESOLVER_H
bool upgradingRepos() const
Whether there is at least one UpgradeRepo request pending.
Definition: Resolver.cc:134
void doUpdate()
Update to newest package.
Definition: Resolver.cc:78
solver::detail::ItemCapKindList installs(const PoolItem &item)
Gives information about WHICH additional items will be installed due the installation of an item...
Definition: Resolver.cc:159
std::list< ProblemSolution_Ptr > ProblemSolutionList
Definition: ProblemTypes.h:43
bool resolvePool()
Resolve package dependencies:
Definition: Resolver.cc:57
sat::Transaction getTransaction()
Return the Transaction computed by the last solver run.
Definition: Resolver.cc:72
Common types used in the Resolver public API and need to be passed down to the details tree...
std::list< PoolItem > problematicUpdateItems() const
Unmaintained packages which does not fit to the updated system (broken dependencies) will be deleted...
Definition: Resolver.cc:147
void addUpgradeRepo(Repository repo_r)
Adding request to perform a dist upgrade restricted to this repository.
Definition: Resolver.cc:133
bool dupAllowVendorChange() const
void setDefaultAllowVendorChange()
bool createSolverTestcase(const std::string &dumpPath="/var/log/YaST2/solverTestcase", bool runSolver=true)
Generates a solver Testcase of the current state.
Definition: Resolver.cc:150
void setAllowDowngrade(bool yesno_r)
Whether to allow to downgrade installed solvable.
void setAllowNameChange(bool yesno_r)
Whether to allow to change name of installed solvable.
bool allowVendorChange() const
ResolverFocus
The resolvers general attitude.
Definition: ResolverFocus.h:21
bool updateMode() const
Definition: Resolver.cc:98
void setDefaultSolveSrcPackages()
Definition: Resolver.cc:105
void setCleandepsOnRemove(bool yesno_r)
Cleanup when deleting packages.
Definition: Resolver.cc:108
void removeRequire(const Capability &capability)
Remove the additional requirement set by addRequire(Capability).
Definition: Resolver.cc:141
void dupSetDefaultAllowNameChange()
void dupSetAllowNameChange(bool yesno_r)
dup mode: allow to change name of installed solvable
void setAllowVendorChange(bool yesno_r)
Whether to allow to change vendor of installed solvables.
zypp::RW_pointer< solver::detail::ResolverInternal > _pimpl
Definition: Resolver.h:443
void setUpdateMode(bool yesno_r)
Setting whether the solver should perform in 'update' mode or not.
Definition: Resolver.cc:97
void setOnlyRequires(bool yesno_r)
Setting whether required packages are installed ONLY So recommended packages, language packages and p...
Definition: Resolver.cc:90
Libsolv transaction wrapper.
Definition: Transaction.h:51
bool upgradingRepo(Repository repo_r) const
Whether there is an UpgradeRepo request pending for this repo.
Definition: Resolver.cc:135
void undo()
Definition: Resolver.cc:63
bool doUpgrade()
Do an distribution upgrade (DUP)
Definition: Resolver.cc:75
std::list< SolverQueueItem_Ptr > SolverQueueItemList
Definition: Types.h:45
friend std::ostream & operator<<(std::ostream &str, const Resolver &obj)
Definition: Resolver.cc:171
solver::detail::ItemCapKindList isInstalledBy(const PoolItem &item)
Gives information about WHO has pused an installation of an given item.
Definition: Resolver.cc:156
bool ignoreAlreadyRecommended() const
Definition: Resolver.cc:88
bool solveSrcPackages() const
Definition: Resolver.cc:106
bool dupAllowNameChange() const
bool resolveQueue(solver::detail::SolverQueueItemList &queue)
Resolve package dependencies:
Definition: Resolver.cc:60
ResolverProblemList problems()
Return the dependency problems found by the last call to resolveDependencies().
Definition: Resolver.cc:66
void removeUpgradeRepo(Repository repo_r)
Remove an upgrade request for this repo.
Definition: Resolver.cc:136
bool allowNameChange() const
solver::detail::ItemCapKindList installedSatisfied(const PoolItem &item)
Gives information about WHICH items require an already installed item.
Definition: Resolver.cc:165
void setDefaultAllowArchChange()
void setUpgradeMode(bool yesno_r)
Setting whether the solver should perform in 'upgrade' mode or not.
Definition: Resolver.cc:94
solver::detail::ItemCapKindList satifiedByInstalled(const PoolItem &item)
Gives information about WHICH installed items are requested by the installation of an item...
Definition: Resolver.cc:162
bool systemVerification() const
Definition: Resolver.cc:102
void setDefaultCleandepsOnRemove()
Definition: Resolver.cc:109
boost::noncopyable NonCopyable
Ensure derived classes cannot be copied.
Definition: NonCopyable.h:26
std::list< ResolverProblem_Ptr > ResolverProblemList
Definition: ProblemTypes.h:46
Dependency resolver interface.
Definition: Resolver.h:44
bool dupAllowArchChange() const
std::ostream & operator<<(std::ostream &str, const Exception &obj)
Definition: Exception.cc:147
void setDefaultAllowNameChange()
virtual ~Resolver()
Dtor.
Definition: Resolver.cc:46
void resetOnlyRequires()
Definition: Resolver.cc:91
void dupSetDefaultAllowArchChange()
bool cleandepsOnRemove() const
Definition: Resolver.cc:110
CapabilitySet getConflict() const
Get all the additional conflicts set by addConflict(Capability).
Definition: Resolver.cc:145
CapabilitySet getRequire() const
Get all the additional requirements set by addRequire(Capability).
Definition: Resolver.cc:144
void setAllowArchChange(bool yesno_r)
Whether to allow to change architecture of installed solvables.
void setDefaultAllowDowngrade()
bool forceResolve() const
Definition: Resolver.cc:85
void addConflict(const Capability &capability)
Adding additional conflict.
Definition: Resolver.cc:140
Base class for reference counted objects.
bool allowArchChange() const
void setSystemVerification(bool yesno_r)
System verification mode also monitors and repairs dependencies of already installed packages...
Definition: Resolver.cc:100
void applySolutions(const ProblemSolutionList &solutions)
Apply problem solutions.
Definition: Resolver.cc:69
std::unordered_set< Capability > CapabilitySet
Definition: Capability.h:33
Global ResObject pool.
Definition: ResPool.h:60
void addRequire(const Capability &capability)
Adding additional requirement.
Definition: Resolver.cc:139
std::list< ItemCapKind > ItemCapKindList
Definition: Types.h:41
void dupSetDefaultAllowDowngrade()
bool dupAllowDowngrade() const
A sat capability.
Definition: Capability.h:59
void removeConflict(const Capability &capability)
Remove the additional conflict set by addConflict(Capability).
Definition: Resolver.cc:142
bool verifySystem()
Resolve package dependencies:
Definition: Resolver.cc:54
void setForceResolve(bool force)
Remove resolvables which are conflicts with others or have unfulfilled requirements.
Definition: Resolver.cc:84
Combining sat::Solvable and ResStatus.
Definition: PoolItem.h:50
void dupSetAllowDowngrade(bool yesno_r)
dup mode: allow to downgrade installed solvable
bool upgradeMode() const
Definition: Resolver.cc:95
void dupSetAllowArchChange(bool yesno_r)
dup mode: allow to change architecture of installed solvables
void setFocus(ResolverFocus focus_r)
Define the resolvers general attitude when resolving jobs.
Definition: Resolver.cc:81
void reset()
Definition: Resolver.cc:168
ResolverFocus focus() const
Definition: Resolver.cc:82
void setIgnoreAlreadyRecommended(bool yesno_r)
Ignore recommended packages that were already recommended by the installed packages.
Definition: Resolver.cc:87
bool onlyRequires() const
Definition: Resolver.cc:92
bool allowDowngrade() const
void dupSetDefaultAllowVendorChange()
void setDefaultSystemVerification()
Definition: Resolver.cc:101
void removeUpgradeRepos()
Remove all upgrade repo requests.
Definition: Resolver.cc:137
void dupSetAllowVendorChange(bool yesno_r)
dup mode: allow to change vendor of installed solvables
void setSolveSrcPackages(bool yesno_r)
Set whether to solve source packages build dependencies per default.
Definition: Resolver.cc:104
Resolver(const ResPool &pool)
Ctor.
Definition: Resolver.cc:37