libzypp  15.28.6
ZYppCommitResult.cc
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
13 #include <iostream>
14 #include "zypp/base/LogTools.h"
15 
16 #include "zypp/ZYppCommitResult.h"
17 
19 namespace zypp
20 {
21 
23  //
24  // CLASS NAME : ZYppCommitResult::Impl
25  //
27 
29  {
30  public:
31  Impl()
32  {}
33 
34  public:
35  Pathname _root;
36  FalseBool _attemptToModify;
40 
41  private:
42  friend Impl * rwcowClone<Impl>( const Impl * rhs );
44  Impl * clone() const { return new Impl( *this ); }
45  };
46 
48  //
49  // CLASS NAME : ZYppCommitResult
50  //
52 
54  : _pimpl( new Impl )
55  {}
56 
58  : _pimpl( lhs_r._pimpl )
59  {}
60 
61  ZYppCommitResult::ZYppCommitResult( const Pathname & root_r )
62  : _pimpl( new Impl )
63  { _pimpl->_root = root_r; }
64 
66  {}
67 
68  const Pathname & ZYppCommitResult::root() const
69  { return _pimpl->_root; }
70 
72  { return _pimpl->_attemptToModify; }
73 
74  void ZYppCommitResult::attemptToModify( bool yesno_r )
75  { _pimpl->_attemptToModify = yesno_r; }
76 
78  { return _pimpl->_transaction; }
79 
81  { return _pimpl->_transaction; }
82 
84  { return _pimpl->_transactionStepList; }
85 
87  { return _pimpl->_transactionStepList; }
88 
90  { return _pimpl->_updateMessages; }
91 
93  { return _pimpl->_updateMessages; }
94 
96 
97  std::ostream & operator<<( std::ostream & str, const ZYppCommitResult & obj )
98  {
100  for_( it, obj.transaction().actionBegin(), obj.transaction().actionEnd() )
101  {
102  ++result[0];
103  switch ( it->stepStage() )
104  {
105  case sat::Transaction::STEP_DONE : ++result[1]; break;
106  case sat::Transaction::STEP_ERROR : ++result[2]; break;
107  case sat::Transaction::STEP_TODO : ++result[3]; break;
108  }
109  }
110  str << "CommitResult "
111  << " (total " << result[0]
112  << ", done " << result[1]
113  << ", error " << result[2]
114  << ", skipped " << result[3]
115  << ", updateMessages " << obj.updateMessages().size()
116  << ")";
117  return str;
118  }
119 
121 } // namespace zypp
std::vector< sat::Transaction::Step > TransactionStepList
Result returned from ZYpp::commit.
TransactionStepList & rTransactionStepList()
Manipulate transactionStepList.
TransactionStepList _transactionStepList
Libsolv transaction wrapper.
Definition: Transaction.h:51
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:27
const UpdateNotifications & updateMessages() const
List of update messages installed during this commit.
const Pathname & root() const
Remembered root directory of the target.
const TransactionStepList & transactionStepList() const
List of sat::Transaction::Step to be executed by commit.
std::ostream & operator<<(std::ostream &str, const Exception &obj)
Definition: Exception.cc:120
RWCOW_pointer< Impl > _pimpl
Pointer to data.
UpdateNotifications _updateMessages
UpdateNotifications & rUpdateMessages()
Manipulate updateMessages Pathnames are relative to the targets root directory.
bool attemptToModify() const
True if at least one attempt to actually install/remove packages was made.
action_iterator actionEnd() const
Pointer behind the last action step in transaction.
Definition: Transaction.h:381
Impl * clone() const
clone for RWCOW_pointer
std::list< UpdateNotificationFile > UpdateNotifications
action_iterator actionBegin(StepStages filter_r=StepStages()) const
Pointer to the 1st action step in [filtered] transaction.
Definition: Transaction.h:378
const sat::Transaction & transaction() const
The full transaction list.
sat::Transaction & rTransaction()
Manipulate transaction.