13#include <solv/queue.h>
16#include <zypp/base/LogTools.h>
40 : _pimpl( new detail::CQueue )
47 {
return(
_pimpl->count == 0 ); }
53 {
return _pimpl->elements; }
80#define M_RANGE_CKECK(IDX,LOC) if ( IDX >= size_type(_pimpl->count) ) throw std::out_of_range( "zypp::sat::Queue::" LOC )
89 {
return _pimpl->elements[idx_r]; }
92 {
return _pimpl->elements[idx_r]; }
95 { ::queue_empty( *
this ); }
107 { ::queue_pushunique(
_pimpl.
get(), val_r ); }
113 { ::queue_unshift(
_pimpl.
get(), val_r ); }
116 { return ::queue_shift(
_pimpl.
get() ); }
119 {
return _pimpl.get(); }
140 return( l == r || ( l->count == r->count && ::memcmp( l->elements, r->elements, l->count ) == 0 ) );
#define M_RANGE_CKECK(IDX, LOC)
Libsolv Id queue wrapper.
const_iterator find(value_type val_r) const
Return iterator to the 1st occurance of val_r or end.
value_type pop_front()
Pop and return the 1st Id from the queue or 0 if empty.
RWCOW_pointer< detail::CQueue > _pimpl
Pointer to implementation.
void remove(value_type val_r)
Remove all occurances of val_r from the queue.
value_type first() const
Return the 1st Id in the queue or 0 if empty.
void push_front(value_type val_r)
Push a value to the beginning off the Queue.
value_type last() const
Return the last Id in the queue or 0 if empty.
const_iterator end() const
const value_type * const_iterator
Queue()
Default ctor: empty Queue.
const_iterator begin() const
value_type pop()
Pop and return the last Id from the queue or 0 if empty.
detail::IdType value_type
void clear()
Clear the queue.
const value_type & operator[](size_type idx_r) const
Return the Id at idx_r in the queue (no range check)
const value_type & at(size_type idx_r) const
Return the Id at idx_r in the queue.
void push(value_type val_r)
Push a value to the end off the Queue.
void pushUnique(value_type val_r)
Push a value if it's not yet in the Queue.
A Solvable object within the sat Pool.
String related utilities and Regular expression matching.
::s_Queue CQueue
Wrapped libsolv C data type exposed as backdoor.
std::ostream & operator<<(std::ostream &str, const FileConflicts &obj)
std::ostream & dumpOn(std::ostream &str, const LocaleSupport &obj)
bool operator==(const Map &lhs, const Map &rhs)
Easy-to use interface to the ZYPP dependency resolver.
std::ostream & dumpRangeLine(std::ostream &str, TIterator begin, TIterator end)
Print range defined by iterators (single line style).
sat::detail::CQueue * rwcowClone< sat::detail::CQueue >(const sat::detail::CQueue *rhs)
#define for_(IT, BEG, END)
Convenient for-loops using iterator.