|
libzypp 17.31.32
|
Class representing one possible solution to a problem found during resolving. More...
#include <ProblemSolution.h>

Classes | |
| class | Impl |
| ProblemSolution implementation. More... | |
Public Types | |
| typedef solver::detail::SolutionAction_Ptr | SolutionAction_Ptr |
| typedef solver::detail::SolutionActionList | SolutionActionList |
Public Member Functions | |
| ProblemSolution () | |
| Constructor. | |
| ProblemSolution (std::string description) | |
| Constructor. | |
| ProblemSolution (std::string description, std::string details) | |
| Constructor. | |
| virtual | ~ProblemSolution () |
| Destructor. | |
| const std::string & | description () const |
| Return a one-line text description of this solution. | |
| const std::string & | details () const |
| Return a (possibly multi-line) detailed description of this solution or an empty string if there are no useful details. | |
| const SolutionActionList & | actions () const |
| Return the list of actions forming this solution. | |
| void | setDescription (std::string description) |
| Set description of the solution. | |
| void | setDetails (std::string details) |
| Set detail description of the solution. | |
| void | pushDescriptionDetail (std::string description, bool front=false) |
| Collect multiple action descriptions in details (NL separated) | |
| void | addAction (SolutionAction_Ptr action) |
| Add an action to the actions list. | |
| bool | skipsPatchesOnly () const |
| The solution contains only 'do not install patch:' actions. | |
| std::optional< std::set< PoolItem > > | getIfSkipsPatchesOnly () const |
| The patches if skipsPatchesOnly is true. | |
Public Member Functions inherited from zypp::base::ReferenceCounted | |
| ReferenceCounted () | |
| Default ctor. | |
| ReferenceCounted (const ReferenceCounted &rhs) | |
| Copy ctor. | |
| virtual | ~ReferenceCounted () |
| Dtor. | |
| ReferenceCounted & | operator= (const ReferenceCounted &) |
| Assignment. | |
| unsigned | refCount () const |
| Return reference counter value. | |
| void | ref () const |
| Add a reference. | |
| void | unref () const |
| Release a reference. | |
Private Attributes | |
| RWCOW_pointer< Impl > | _pimpl |
Related Symbols | |
(Note that these are not member symbols.) | |
| std::ostream & | operator<< (std::ostream &, const ProblemSolution &obj) |
| Stream output. | |
| std::ostream & | operator<< (std::ostream &, const ProblemSolutionList &obj) |
| Stream output. | |
Related Symbols inherited from zypp::base::ReferenceCounted | |
| void | intrusive_ptr_add_ref (const ReferenceCounted *ptr_r) |
| intrusive_ptr hook to add_ref. | |
| void | intrusive_ptr_release (const ReferenceCounted *ptr_r) |
| intrusive_ptr hook to release. | |
| std::ostream & | operator<< (std::ostream &str, const ReferenceCounted &obj) |
| Stream output. | |
Additional Inherited Members | |
Static Public Member Functions inherited from zypp::base::ReferenceCounted | |
| static void | add_ref (const ReferenceCounted *ptr_r) |
| Called by zypp::intrusive_ptr to add a reference. | |
| static void | release (const ReferenceCounted *ptr_r) |
| Called by zypp::intrusive_ptr to add a reference. | |
Protected Member Functions inherited from zypp::base::ReferenceCounted | |
| virtual std::ostream & | dumpOn (std::ostream &str) const |
| Overload to realize std::ostream & operator<<. | |
| virtual void | ref_to (unsigned) const |
| Trigger derived classes after refCount was increased. | |
| virtual void | unref_to (unsigned) const |
| Trigger derived classes after refCount was decreased. | |
Class representing one possible solution to a problem found during resolving.
All problems should have at least 2-3 (mutually exclusive) solutions:
Definition at line 40 of file ProblemSolution.h.
| typedef solver::detail::SolutionAction_Ptr zypp::ProblemSolution::SolutionAction_Ptr |
Definition at line 43 of file ProblemSolution.h.
Definition at line 44 of file ProblemSolution.h.
| zypp::ProblemSolution::ProblemSolution | ( | ) |
Constructor.
Definition at line 90 of file ProblemSolution.cc.
| zypp::ProblemSolution::ProblemSolution | ( | std::string | description | ) |
Constructor.
Definition at line 94 of file ProblemSolution.cc.
| zypp::ProblemSolution::ProblemSolution | ( | std::string | description, |
| std::string | details ) |
Constructor.
Definition at line 98 of file ProblemSolution.cc.
|
virtual |
Destructor.
Definition at line 102 of file ProblemSolution.cc.
| const std::string & zypp::ProblemSolution::description | ( | ) | const |
Return a one-line text description of this solution.
Definition at line 106 of file ProblemSolution.cc.
| const std::string & zypp::ProblemSolution::details | ( | ) | const |
Return a (possibly multi-line) detailed description of this solution or an empty string if there are no useful details.
Definition at line 109 of file ProblemSolution.cc.
| const ProblemSolution::SolutionActionList & zypp::ProblemSolution::actions | ( | ) | const |
Return the list of actions forming this solution.
Definition at line 112 of file ProblemSolution.cc.
| void zypp::ProblemSolution::setDescription | ( | std::string | description | ) |
Set description of the solution.
Definition at line 116 of file ProblemSolution.cc.
| void zypp::ProblemSolution::setDetails | ( | std::string | details | ) |
Set detail description of the solution.
Definition at line 119 of file ProblemSolution.cc.
Collect multiple action descriptions in details (NL separated)
Definition at line 122 of file ProblemSolution.cc.
| void zypp::ProblemSolution::addAction | ( | SolutionAction_Ptr | action | ) |
Add an action to the actions list.
Definition at line 143 of file ProblemSolution.cc.
| bool zypp::ProblemSolution::skipsPatchesOnly | ( | ) | const |
The solution contains only 'do not install patch:' actions.
Definition at line 146 of file ProblemSolution.cc.
| std::optional< std::set< PoolItem > > zypp::ProblemSolution::getIfSkipsPatchesOnly | ( | ) | const |
The patches if skipsPatchesOnly is true.
Definition at line 153 of file ProblemSolution.cc.
|
related |
Stream output.
Definition at line 161 of file ProblemSolution.cc.
|
related |
Stream output.
Definition at line 171 of file ProblemSolution.cc.
|
private |
Definition at line 105 of file ProblemSolution.h.