libzypp
13.10.6
|
A zypp history log line split into fieldsEach valid history log line starts with a date and HistoryActionID field. 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). More... | |
HistoryLogData (FieldVector &fields_r, HistoryActionID action_r, size_type expect_r=2) | |
Ctor moving FieldVector (via swap). More... | |
virtual | ~HistoryLogData () |
Dtor. More... | |
bool | empty () const |
Whether FieldVector is empty. More... | |
size_type | size () const |
Number of fields in vector. More... | |
const_iterator | begin () const |
Iterator pointing to 1st element in vector (or end()). More... | |
const_iterator | end () const |
Iterator pointing behind the last element in vector. More... | |
const std::string & | optionalAt (size_type idx_r) const |
Access (optional) field by number. More... | |
const std::string & | operator[] (size_type idx_r) const |
const std::string & | at (size_type idx_r) const |
Access (required) field by number. More... | |
Date | date () const |
date More... | |
HistoryActionID | action () const |
HistoryActionID (or NONE_e if unknown) More... | |
Static Public Member Functions | |
static Ptr | create (FieldVector &fields_r) |
Factory method creating HistoryLogData classes. More... | |
Protected Member Functions | |
HistoryLogData & | operator= (const HistoryLogData &) |
no base class assign More... | |
Private Attributes | |
RWCOW_pointer< Impl > | _pimpl |
Implementation class. More... | |
Related Functions | |
(Note that these are not member functions.) | |
std::ostream & | operator<< (std::ostream &str, const HistoryLogData &obj) |
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 100 of file HistoryLogData.h.
Definition at line 103 of file HistoryLogData.h.
typedef shared_ptr<const HistoryLogData> zypp::HistoryLogData::constPtr |
Definition at line 104 of file HistoryLogData.h.
typedef std::vector<std::string> zypp::HistoryLogData::FieldVector |
Definition at line 106 of file HistoryLogData.h.
typedef FieldVector::size_type zypp::HistoryLogData::size_type |
Definition at line 107 of file HistoryLogData.h.
typedef FieldVector::const_iterator zypp::HistoryLogData::const_iterator |
Definition at line 108 of file HistoryLogData.h.
< indices of known fields
Enumerator | |
---|---|
DATE_INDEX |
date |
ACTION_INDEX |
Definition at line 167 of file HistoryLogData.h.
|
explicit |
Ctor moving FieldVector (via swap).
ParseException | if fields_r has not at least expect_r entries |
Definition at line 166 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 170 of file HistoryLogData.cc.
|
virtual |
Dtor.
Definition at line 174 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 177 of file HistoryLogData.cc.
bool zypp::HistoryLogData::empty | ( | ) | const |
Whether FieldVector is empty.
Definition at line 201 of file HistoryLogData.cc.
HistoryLogData::size_type zypp::HistoryLogData::size | ( | ) | const |
Number of fields in vector.
Definition at line 204 of file HistoryLogData.cc.
HistoryLogData::const_iterator zypp::HistoryLogData::begin | ( | ) | const |
Iterator pointing to 1st element in vector (or end()).
Definition at line 207 of file HistoryLogData.cc.
HistoryLogData::const_iterator zypp::HistoryLogData::end | ( | ) | const |
Iterator pointing behind the last element in vector.
Definition at line 210 of file HistoryLogData.cc.
const std::string & zypp::HistoryLogData::optionalAt | ( | size_type | idx_r | ) | const |
Access (optional) field by number.
Definition at line 213 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 157 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 219 of file HistoryLogData.cc.
Date zypp::HistoryLogData::date | ( | ) | const |
date
Definition at line 223 of file HistoryLogData.cc.
HistoryActionID zypp::HistoryLogData::action | ( | ) | const |
HistoryActionID (or NONE_e
if unknown)
Definition at line 226 of file HistoryLogData.cc.
|
protected |
no base class assign
|
related |
Stream output
Definition at line 230 of file HistoryLogData.cc.
|
private |