libzypp  17.14.0
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