genode/repos/base/include/util/fifo.h

191 lines
3.5 KiB
C++

/*
* \brief Queue with first-in first-out semantics
* \author Norman Feske
* \date 2008-08-15
*/
/*
* Copyright (C) 2008-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _INCLUDE__UTIL__FIFO_H_
#define _INCLUDE__UTIL__FIFO_H_
#include <base/printf.h>
namespace Genode {
template<typename> class Fifo;
template <typename> class Fifo_element;
}
/**
* Fifo queue
*
* \param QT queue element type
*/
template <typename QT>
class Genode::Fifo
{
public:
class Element
{
protected:
friend class Fifo;
QT *_next;
bool _is_enqueued;
public:
Element(): _next(0), _is_enqueued(false) { }
/**
* Return true is fifo element is enqueued in a fifo
*/
bool is_enqueued() { return _is_enqueued; }
/**
* Return next element in queue
*/
QT *next() const { return _next; }
};
private:
QT *_head; /* oldest element */
Element *_tail; /* newest element */
public:
/**
* Return true if queue is empty
*/
bool empty() { return _tail == 0; }
/**
* Constructor
*/
Fifo(): _head(0), _tail(0) { }
/**
* Return first queue element
*/
QT *head() const { return _head; }
/**
* Remove element explicitely from queue
*/
void remove(QT *qe)
{
if (empty()) return;
/* if specified element is the first of the queue */
if (qe == _head) {
_head = qe->Element::_next;
if (!_head) _tail = 0;
}
else {
/* search specified element in the queue */
Element *e = _head;
while (e->_next && (e->_next != qe))
e = e->_next;
/* element is not member of the queue */
if (!e->_next) return;
/* e->_next is the element to remove, skip it in list */
e->Element::_next = e->Element::_next->Element::_next;
if (!e->Element::_next) _tail = e;
}
qe->Element::_next = 0;
qe->Element::_is_enqueued = 0;
}
/**
* Attach element at the end of the queue
*/
void enqueue(QT *e)
{
e->Fifo::Element::_next = 0;
e->Fifo::Element::_is_enqueued = true;
if (empty()) {
_tail = _head = e;
return;
}
_tail->Fifo::Element::_next = e;
_tail = e;
}
/**
* Remove head element from queue
*
* \return head element or 0 if queue is empty
*/
QT *dequeue()
{
QT *result = _head;
/* check if queue has only one last element */
if (_head == _tail) {
_head = 0;
_tail = 0;
} else
_head = _head->Fifo::Element::_next;
/* mark fifo queue element as free */
if (result) {
result->Fifo::Element::_next = 0;
result->Fifo::Element::_is_enqueued = false;
}
return result;
}
};
/**
* Helper for using member variables as FIFO elements
*
* \param T type of compound object to be organized in a FIFO
*
* This helper allow the creation of FIFOs that use member variables to
* connect their elements. This way, the organized type does not need to
* publicly inherit 'Fifo<QT>::Element'. Furthermore objects can easily
* be organized in multiple FIFOs by embedding multiple 'Fifo_element'
* member variables.
*/
template <typename T>
class Genode::Fifo_element : public Fifo<Fifo_element<T> >::Element
{
T *_object;
public:
Fifo_element(T *object) : _object(object) { }
/**
* Get typed object pointer
*
* Zero-pointer save: Returns 0 if this pointer is 0 to
* cover the case of accessing an empty FIFO.
*/
inline T *object()
{
if (this) { return _object; }
return 0;
}
};
#endif /* _INCLUDE__UTIL__FIFO_H_ */