/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtDeclarative module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QINTRUSIVELIST_P_H #define QINTRUSIVELIST_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include QT_BEGIN_NAMESPACE class QIntrusiveListNode; template class QIntrusiveList { public: inline QIntrusiveList(); inline ~QIntrusiveList(); inline bool isEmpty() const; inline void insert(N *n); inline void remove(N *n); inline bool contains(N *) const; class iterator { public: inline iterator(); inline iterator(N *value); inline N *operator*() const; inline N *operator->() const; inline bool operator==(const iterator &other) const; inline bool operator!=(const iterator &other) const; inline iterator &operator++(); inline iterator &erase(); private: N *_value; }; typedef iterator Iterator; inline N *first() const; static inline N *next(N *current); inline iterator begin(); inline iterator end(); private: static inline N *nodeToN(QIntrusiveListNode *node); QIntrusiveListNode *__first; }; class QIntrusiveListNode { public: inline QIntrusiveListNode(); inline ~QIntrusiveListNode(); inline void remove(); inline bool isInList() const; QIntrusiveListNode *_next; QIntrusiveListNode**_prev; }; template QIntrusiveList::iterator::iterator() : _value(0) { } template QIntrusiveList::iterator::iterator(N *value) : _value(value) { } template N *QIntrusiveList::iterator::operator*() const { return _value; } template N *QIntrusiveList::iterator::operator->() const { return _value; } template bool QIntrusiveList::iterator::operator==(const iterator &other) const { return other._value == _value; } template bool QIntrusiveList::iterator::operator!=(const iterator &other) const { return other._value != _value; } template typename QIntrusiveList::iterator &QIntrusiveList::iterator::operator++() { _value = QIntrusiveList::next(_value); return *this; } template typename QIntrusiveList::iterator &QIntrusiveList::iterator::erase() { N *old = _value; _value = QIntrusiveList::next(_value); (old->*member).remove(); return *this; } template QIntrusiveList::QIntrusiveList() : __first(0) { } template QIntrusiveList::~QIntrusiveList() { while (__first) __first->remove(); } template bool QIntrusiveList::isEmpty() const { return __first == 0; } template void QIntrusiveList::insert(N *n) { QIntrusiveListNode *nnode = &(n->*member); nnode->remove(); nnode->_next = __first; if (nnode->_next) nnode->_next->_prev = &nnode->_next; __first = nnode; nnode->_prev = &__first; } template void QIntrusiveList::remove(N *n) { QIntrusiveListNode *nnode = &(n->*member); nnode->remove(); } template bool QIntrusiveList::contains(N *n) const { QIntrusiveListNode *nnode = __first; while (nnode) { if (nodeToN(nnode) == n) return true; nnode = nnode->_next; } return false; } template N *QIntrusiveList::first() const { return __first?nodeToN(__first):0; } template N *QIntrusiveList::next(N *current) { QIntrusiveListNode *nextnode = (current->*member)._next; N *nextstruct = nextnode?nodeToN(nextnode):0; return nextstruct; } template typename QIntrusiveList::iterator QIntrusiveList::begin() { return __first?iterator(nodeToN(__first)):iterator(); } template typename QIntrusiveList::iterator QIntrusiveList::end() { return iterator(); } template N *QIntrusiveList::nodeToN(QIntrusiveListNode *node) { return (N *)((char *)node - ((char *)&(((N *)0)->*member) - (char *)0)); } QIntrusiveListNode::QIntrusiveListNode() : _next(0), _prev(0) { } QIntrusiveListNode::~QIntrusiveListNode() { remove(); } void QIntrusiveListNode::remove() { if (_prev) *_prev = _next; if (_next) _next->_prev = _prev; _prev = 0; _next = 0; } bool QIntrusiveListNode::isInList() const { return _prev != 0; } QT_END_NAMESPACE #endif // QINTRUSIVELIST_P_H