libzypp 17.31.23
|
A zypp history log line split into fields. More...
#include <HistoryLogData.h>
Classes | |
class | Impl |
Public Types | |
enum | Index { DATE_INDEX = 0 , ACTION_INDEX = 1 } |
< indices of known fields More... | |
typedef shared_ptr< HistoryLogData > | Ptr |
typedef shared_ptr< const HistoryLogData > | constPtr |
typedef std::vector< std::string > | FieldVector |
typedef FieldVector::size_type | size_type |
typedef FieldVector::const_iterator | const_iterator |
Public Member Functions | |
HistoryLogData (FieldVector &fields_r, size_type expect_r=2) | |
Ctor moving FieldVector (via swap). | |
HistoryLogData (FieldVector &fields_r, HistoryActionID action_r, size_type expect_r=2) | |
Ctor moving FieldVector (via swap). | |
virtual | ~HistoryLogData () |
Dtor. | |
bool | empty () const |
Whether FieldVector is empty. | |
size_type | size () const |
Number of fields in vector. | |
const_iterator | begin () const |
Iterator pointing to 1st element in vector (or end()). | |
const_iterator | end () const |
Iterator pointing behind the last element in vector. | |
const std::string & | optionalAt (size_type idx_r) const |
Access (optional) field by number. | |
const std::string & | operator[] (size_type idx_r) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const std::string & | at (size_type idx_r) const |
Access (required) field by number. | |
Date | date () const |
date | |
HistoryActionID | action () const |
HistoryActionID (or NONE_e if unknown) | |
Static Public Member Functions | |
static Ptr | create (FieldVector &fields_r) |
Factory method creating HistoryLogData classes. | |
Protected Member Functions | |
HistoryLogData & | operator= (const HistoryLogData &) |
no base class assign | |
Private Attributes | |
RWCOW_pointer< Impl > | _pimpl |
Implementation class. | |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const HistoryLogData &obj) |
Stream output. | |
A zypp history log line split into fields.
Each valid history log line starts with a date and HistoryActionID field. Subsequent fields depend on the kind of action. See derived classes for convenient access to those flields.
HistoryLogData itself provides mostly generic access to the fields plain string values. Derived classes for well known entries tell
Definition at line 105 of file HistoryLogData.h.
Definition at line 108 of file HistoryLogData.h.
typedef shared_ptr<const HistoryLogData> zypp::HistoryLogData::constPtr |
Definition at line 109 of file HistoryLogData.h.
typedef std::vector<std::string> zypp::HistoryLogData::FieldVector |
Definition at line 111 of file HistoryLogData.h.
typedef FieldVector::size_type zypp::HistoryLogData::size_type |
Definition at line 112 of file HistoryLogData.h.
typedef FieldVector::const_iterator zypp::HistoryLogData::const_iterator |
Definition at line 113 of file HistoryLogData.h.
< indices of known fields
Enumerator | |
---|---|
DATE_INDEX | date |
ACTION_INDEX |
Definition at line 172 of file HistoryLogData.h.
|
explicit |
Ctor moving FieldVector (via swap).
ParseException | if fields_r has not at least expect_r entries |
Definition at line 172 of file HistoryLogData.cc.
zypp::HistoryLogData::HistoryLogData | ( | FieldVector & | fields_r, |
HistoryActionID | action_r, | ||
size_type | expect_r = 2 |
||
) |
Ctor moving FieldVector (via swap).
ParseException | if fields_r has the wrong HistoryActionID or not at least expect_r entries. |
Definition at line 176 of file HistoryLogData.cc.
|
virtual |
Dtor.
Definition at line 180 of file HistoryLogData.cc.
|
static |
Factory method creating HistoryLogData classes.
Moves fields_r into a HistoryLogData or derived object, depending on the HistoryActionID. For known action ids a coresponing HistoryLogData class is created, to allow convenient access to the field values. For unknown action ids a plain HistoryLogData object is created. HistoryActionID NONE_e id used in this case.
ParseException | if fields_r does not contain the required format. |
Definition at line 183 of file HistoryLogData.cc.
bool zypp::HistoryLogData::empty | ( | ) | const |
Whether FieldVector is empty.
Definition at line 209 of file HistoryLogData.cc.
HistoryLogData::size_type zypp::HistoryLogData::size | ( | ) | const |
Number of fields in vector.
Definition at line 212 of file HistoryLogData.cc.
HistoryLogData::const_iterator zypp::HistoryLogData::begin | ( | ) | const |
Iterator pointing to 1st element in vector (or end()).
Definition at line 215 of file HistoryLogData.cc.
HistoryLogData::const_iterator zypp::HistoryLogData::end | ( | ) | const |
Iterator pointing behind the last element in vector.
Definition at line 218 of file HistoryLogData.cc.
const std::string & zypp::HistoryLogData::optionalAt | ( | size_type | idx_r | ) | const |
Access (optional) field by number.
Definition at line 221 of file HistoryLogData.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 162 of file HistoryLogData.h.
const std::string & zypp::HistoryLogData::at | ( | size_type | idx_r | ) | const |
Access (required) field by number.
std::out_of_range | if idx_r is out of range. |
Definition at line 227 of file HistoryLogData.cc.
Date zypp::HistoryLogData::date | ( | ) | const |
date
Definition at line 231 of file HistoryLogData.cc.
HistoryActionID zypp::HistoryLogData::action | ( | ) | const |
HistoryActionID (or NONE_e
if unknown)
Definition at line 234 of file HistoryLogData.cc.
|
protected |
no base class assign
|
related |
Stream output.
Definition at line 238 of file HistoryLogData.cc.
|
private |