libzypp 17.31.23
|
Libsolv transaction wrapper. More...
#include <sat/Transaction.h>
Classes | |
struct | FilterAction |
struct | Impl |
Transaction implementation. More... | |
struct | LoadFromPoolType |
Ctor arg type. More... | |
class | Step |
A single step within a Transaction. More... | |
Public Types | |
enum | StepType { TRANSACTION_IGNORE = 0x00 , TRANSACTION_ERASE = 0x10 , TRANSACTION_INSTALL = 0x20 , TRANSACTION_MULTIINSTALL = 0x30 } |
Type of (rpm) action to perform in a Step. More... | |
enum | StepStage { STEP_TODO = (1 << 0) , STEP_DONE = (1 << 1) , STEP_ERROR = (1 << 2) } |
Step action result. More... | |
typedef detail::Transaction_iterator | iterator |
typedef detail::Transaction_const_iterator | const_iterator |
Public Types inherited from zypp::sat::SolvIterMixin< Transaction, detail::Transaction_const_iterator > | |
typedef size_t | size_type |
typedef detail::Transaction_const_iterator | Solvable_iterator |
typedef transform_iterator< asPoolItem, Solvable_iterator > | PoolItem_iterator |
typedef transform_iterator< ui::asSelectable, UnifiedSolvable_iterator > | Selectable_iterator |
Public Member Functions | |
ZYPP_DECLARE_FLAGS (StepStages, StepStage) | |
Transaction () | |
Default ctor: empty transaction. | |
Transaction (LoadFromPoolType) | |
Ctor loading the default pools transaction. | |
~Transaction () | |
Dtor. | |
bool | valid () const |
Whether transaction actually contains data and also fits the current pools content. | |
operator bool () const | |
Validate object in a boolean context: valid. | |
bool | order () |
Order transaction steps for commit. | |
bool | empty () const |
Whether the transaction contains any steps. | |
size_t | size () const |
Number of steps in transaction steps. | |
const_iterator | begin () const |
Iterator to the first TransactionStep. | |
iterator | begin () |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const_iterator | end () const |
Iterator behind the last TransactionStep. | |
iterator | end () |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const_iterator | find (const sat::Solvable &solv_r) const |
Return iterator pointing to solv_r or end. | |
iterator | find (const sat::Solvable &solv_r) |
const_iterator | find (const ResObject::constPtr &resolvable_r) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
iterator | find (const ResObject::constPtr &resolvable_r) |
const_iterator | find (const PoolItem &pi_r) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
iterator | find (const PoolItem &pi_r) |
Public Member Functions inherited from zypp::sat::SolvIterMixin< Transaction, detail::Transaction_const_iterator > | |
bool | empty () const |
Whether the collection is epmty. | |
size_type | size () const |
Size of the collection. | |
bool | contains (const TSolv &solv_r) const |
Whether collection contains a specific Solvable. | |
Solvable_iterator | solvableBegin () const |
Solvable_iterator | solvableEnd () const |
Iterable< Solvable_iterator > | solvable () const |
PoolItem_iterator | poolItemBegin () const |
PoolItem_iterator | poolItemEnd () const |
Iterable< PoolItem_iterator > | poolItem () const |
Selectable_iterator | selectableBegin () const |
Selectable_iterator | selectableEnd () const |
Iterable< Selectable_iterator > | selectable () const |
Static Public Attributes | |
static constexpr LoadFromPoolType | loadFromPool = LoadFromPoolType() |
Friends | |
std::ostream & | operator<< (std::ostream &str, const Transaction &obj) |
std::ostream & | dumpOn (std::ostream &str, const Transaction &obj) |
bool | operator== (const Transaction &lhs, const Transaction &rhs) |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const Transaction &obj) |
Stream output. | |
std::ostream & | dumpOn (std::ostream &str, const Transaction &obj) |
Verbose stream output. | |
bool | operator== (const Transaction &lhs, const Transaction &rhs) |
bool | operator!= (const Transaction &lhs, const Transaction &rhs) |
Iterate action steps (omit TRANSACTION_IGNORE steps). | |
All these methods allow to pass an optional OR'd combination of StepStages as filter. Per default all steps are processed/counted. Transaction trans;
{
... // process all steps not DONE (ERROR and TODO)
}
action_iterator actionBegin(StepStages filter_r=StepStages()) const Pointer to the 1st action step in [filtered] transaction. Definition: Transaction.h:380 action_iterator actionEnd() const Pointer behind the last action step in transaction. Definition: Transaction.h:383 | |
typedef filter_iterator< FilterAction, const_iterator > | action_iterator |
RW_pointer< Impl > | _pimpl |
Pointer to implementation. | |
bool | actionEmpty (StepStages filter_r=StepStages()) const |
Whether the [filtered] transaction contains any steps . | |
size_t | actionSize (StepStages filter_r=StepStages()) const |
Number of steps in [filtered] transaction steps. | |
action_iterator | actionBegin (StepStages filter_r=StepStages()) const |
Pointer to the 1st action step in [filtered] transaction. | |
action_iterator | actionEnd () const |
Pointer behind the last action step in transaction. | |
Iterable< action_iterator > | action (StepStages filter_r=StepStages()) const |
Iterate the [filtered] transaction steps. | |
int | installedResult (Queue &result_r) const |
Return all packages that would be installed after the transaction is run. | |
StringQueue | autoInstalled () const |
Return the ident strings of all packages that would be auto-installed after the transaction is run. | |
void | autoInstalled (const StringQueue &queue_r) |
Set the ident strings of all packages that would be auto-installed after the transaction is run. | |
Additional Inherited Members | |
Protected Member Functions inherited from zypp::sat::SolvIterMixin< Transaction, detail::Transaction_const_iterator > | |
SolvIterMixin () | |
SolvIterMixin (const SolvIterMixin &) | |
~SolvIterMixin () | |
void | operator= (const SolvIterMixin &) |
Libsolv transaction wrapper.
Definition at line 51 of file Transaction.h.
Definition at line 115 of file Transaction.h.
Definition at line 116 of file Transaction.h.
Definition at line 154 of file Transaction.h.
Type of (rpm) action to perform in a Step.
Definition at line 62 of file Transaction.h.
Step action result.
Enumerator | |
---|---|
STEP_TODO | [__] unprocessed |
STEP_DONE | [OK] success |
STEP_ERROR | [**] error |
Definition at line 71 of file Transaction.h.
zypp::sat::Transaction::Transaction | ( | ) |
Default ctor: empty transaction.
Definition at line 314 of file Transaction.cc.
zypp::sat::Transaction::Transaction | ( | LoadFromPoolType | ) |
Ctor loading the default pools transaction.
Definition at line 318 of file Transaction.cc.
zypp::sat::Transaction::~Transaction | ( | ) |
Dtor.
Definition at line 322 of file Transaction.cc.
zypp::sat::Transaction::ZYPP_DECLARE_FLAGS | ( | StepStages | , |
StepStage | |||
) |
bool zypp::sat::Transaction::valid | ( | ) | const |
Whether transaction actually contains data and also fits the current pools content.
Definition at line 325 of file Transaction.cc.
|
inlineexplicit |
Validate object in a boolean context: valid.
Definition at line 99 of file Transaction.h.
bool zypp::sat::Transaction::order | ( | ) |
Order transaction steps for commit.
It's cheap to call it for an aleready ordered Transaction. This invalidates outstanding iterators. Returns whether Transaction is valid.
Definition at line 328 of file Transaction.cc.
bool zypp::sat::Transaction::empty | ( | ) | const |
Whether the transaction contains any steps.
Definition at line 331 of file Transaction.cc.
size_t zypp::sat::Transaction::size | ( | ) | const |
Number of steps in transaction steps.
Definition at line 334 of file Transaction.cc.
Transaction::const_iterator zypp::sat::Transaction::begin | ( | ) | const |
Iterator to the first TransactionStep.
Definition at line 337 of file Transaction.cc.
Transaction::iterator zypp::sat::Transaction::begin | ( | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 340 of file Transaction.cc.
Transaction::const_iterator zypp::sat::Transaction::end | ( | ) | const |
Iterator behind the last TransactionStep.
Definition at line 343 of file Transaction.cc.
Transaction::iterator zypp::sat::Transaction::end | ( | ) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 346 of file Transaction.cc.
Transaction::const_iterator zypp::sat::Transaction::find | ( | const sat::Solvable & | solv_r | ) | const |
Return iterator pointing to solv_r or end.
Definition at line 349 of file Transaction.cc.
Transaction::iterator zypp::sat::Transaction::find | ( | const sat::Solvable & | solv_r | ) |
Definition at line 352 of file Transaction.cc.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 352 of file Transaction.h.
|
inline |
Definition at line 355 of file Transaction.h.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 358 of file Transaction.h.
|
inline |
Definition at line 361 of file Transaction.h.
|
inline |
Whether the [filtered] transaction contains any steps .
Definition at line 386 of file Transaction.h.
|
inline |
Number of steps in [filtered] transaction steps.
Definition at line 389 of file Transaction.h.
|
inline |
Pointer to the 1st action step in [filtered] transaction.
Definition at line 380 of file Transaction.h.
|
inline |
Pointer behind the last action step in transaction.
Definition at line 383 of file Transaction.h.
|
inline |
Iterate the [filtered] transaction steps.
Definition at line 397 of file Transaction.h.
int zypp::sat::Transaction::installedResult | ( | Queue & | result_r | ) | const |
Return all packages that would be installed after the transaction is run.
The new packages are put at the head of the queue, the number of new packages is returned. (wraps libsolv::transaction_installedresult)
Definition at line 355 of file Transaction.cc.
StringQueue zypp::sat::Transaction::autoInstalled | ( | ) | const |
Return the ident strings of all packages that would be auto-installed after the transaction is run.
Definition at line 358 of file Transaction.cc.
void zypp::sat::Transaction::autoInstalled | ( | const StringQueue & | queue_r | ) |
Set the ident strings of all packages that would be auto-installed after the transaction is run.
Definition at line 361 of file Transaction.cc.
|
friend |
Definition at line 364 of file Transaction.cc.
|
friend |
Definition at line 367 of file Transaction.cc.
|
friend |
Definition at line 376 of file Transaction.cc.
|
related |
Stream output.
Definition at line 364 of file Transaction.cc.
|
related |
Verbose stream output.
Definition at line 367 of file Transaction.cc.
|
related |
Definition at line 376 of file Transaction.cc.
|
related |
Definition at line 204 of file Transaction.h.
|
staticconstexpr |
Definition at line 82 of file Transaction.h.
|
private |
Pointer to implementation.
Definition at line 189 of file Transaction.h.