#ifndef QLIST_H
#define QLIST_H
#include <QtCore/qiterator.h>
#include <QtCore/qatomic.h>
#include <QtCore/qalgorithms.h>
#ifndef QT_NO_STL
#include <iterator>
#include <list>
#endif
#include <new>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Core)
template <typename T> class QVector;
template <typename T> class QSet;
struct Q_CORE_EXPORT QListData {
struct Data {
QBasicAtomicInt ref;
int alloc, begin, end;
uint sharable : 1;
void *array[1];
};
enum { DataHeaderSize = sizeof(Data) - sizeof(void *) };
Data *detach();
Data *detach2();
void realloc(int alloc);
static Data shared_null;
Data *d;
void **erase(void **xi);
void **append();
void **append(const QListData &l);
void **prepend();
void **insert(int i);
void remove(int i);
void remove(int i, int n);
void move(int from, int to);
inline int size() const { return d->end - d->begin; }
inline bool isEmpty() const { return d->end == d->begin; }
inline void **at(int i) const { return d->array + d->begin + i; }
inline void **begin() const { return d->array + d->begin; }
inline void **end() const { return d->array + d->end; }
};
template <typename T>
00091 class QList
{
struct Node { void *v;
#if defined(Q_CC_BOR)
Q_INLINE_TEMPLATE T &t();
#else
Q_INLINE_TEMPLATE T &t()
{ return *reinterpret_cast<T*>(QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic
? v : this); }
#endif
};
union { QListData p; QListData::Data *d; };
public:
00106 inline QList() : d(&QListData::shared_null) { d->ref.ref(); }
00107 inline QList(const QList<T> &l) : d(l.d) { d->ref.ref(); if (!d->sharable) detach_helper(); }
~QList();
QList<T> &operator=(const QList<T> &l);
bool operator==(const QList<T> &l) const;
00111 inline bool operator!=(const QList<T> &l) const { return !(*this == l); }
00113 inline int size() const { return p.size(); }
00115 inline void detach() { if (d->ref != 1) detach_helper(); }
00116 inline bool isDetached() const { return d->ref == 1; }
00117 inline void setSharable(bool sharable) { if (!sharable) detach(); d->sharable = sharable; }
00119 inline bool isEmpty() const { return p.isEmpty(); }
void clear();
const T &at(int i) const;
const T &operator[](int i) const;
T &operator[](int i);
void append(const T &t);
void prepend(const T &t);
void insert(int i, const T &t);
void replace(int i, const T &t);
void removeAt(int i);
int removeAll(const T &t);
bool removeOne(const T &t);
T takeAt(int i);
T takeFirst();
T takeLast();
void move(int from, int to);
void swap(int i, int j);
int indexOf(const T &t, int from = 0) const;
int lastIndexOf(const T &t, int from = -1) const;
QBool contains(const T &t) const;
int count(const T &t) const;
class const_iterator;
00146 class iterator {
public:
Node *i;
00149 typedef std::random_access_iterator_tag iterator_category;
00150 typedef ptrdiff_t difference_type;
00151 typedef T value_type;
00152 typedef T *pointer;
00153 typedef T &reference;
00155 inline iterator() : i(0) {}
00156 inline iterator(Node *n) : i(n) {}
00157 inline iterator(const iterator &o): i(o.i){}
00158 inline T &operator*() const { return i->t(); }
00159 inline T *operator->() const { return &i->t(); }
00160 inline T &operator[](int j) const { return i[j].t(); }
inline bool operator==(const iterator &o) const { return i == o.i; }
inline bool operator!=(const iterator &o) const { return i != o.i; }
inline bool operator<(const iterator& other) const { return i < other.i; }
inline bool operator<=(const iterator& other) const { return i <= other.i; }
inline bool operator>(const iterator& other) const { return i > other.i; }
inline bool operator>=(const iterator& other) const { return i >= other.i; }
#ifndef QT_STRICT_ITERATORS
00168 inline bool operator==(const const_iterator &o) const
{ return i == o.i; }
00170 inline bool operator!=(const const_iterator &o) const
{ return i != o.i; }
00172 inline bool operator<(const const_iterator& other) const
{ return i < other.i; }
00174 inline bool operator<=(const const_iterator& other) const
{ return i <= other.i; }
00176 inline bool operator>(const const_iterator& other) const
{ return i > other.i; }
00178 inline bool operator>=(const const_iterator& other) const
{ return i >= other.i; }
#endif
00181 inline iterator &operator++() { ++i; return *this; }
00182 inline iterator operator++(int) { Node *n = i; ++i; return n; }
00183 inline iterator &operator--() { i--; return *this; }
00184 inline iterator operator--(int) { Node *n = i; i--; return n; }
00185 inline iterator &operator+=(int j) { i+=j; return *this; }
00186 inline iterator &operator-=(int j) { i-=j; return *this; }
00187 inline iterator operator+(int j) const { return iterator(i+j); }
00188 inline iterator operator-(int j) const { return iterator(i-j); }
00189 inline int operator-(iterator j) const { return i - j.i; }
};
friend class iterator;
00193 class const_iterator {
public:
Node *i;
00196 typedef std::random_access_iterator_tag iterator_category;
00197 typedef ptrdiff_t difference_type;
00198 typedef T value_type;
00199 typedef const T *pointer;
00200 typedef const T &reference;
00202 inline const_iterator() : i(0) {}
00203 inline const_iterator(Node *n) : i(n) {}
00204 inline const_iterator(const const_iterator &o): i(o.i) {}
#ifdef QT_STRICT_ITERATORS
inline explicit const_iterator(const iterator &o): i(o.i) {}
#else
00208 inline const_iterator(const iterator &o): i(o.i) {}
#endif
00210 inline const T &operator*() const { return i->t(); }
00211 inline const T *operator->() const { return &i->t(); }
00212 inline const T &operator[](int j) const { return i[j].t(); }
00213 inline bool operator==(const const_iterator &o) const { return i == o.i; }
00214 inline bool operator!=(const const_iterator &o) const { return i != o.i; }
00215 inline bool operator<(const const_iterator& other) const { return i < other.i; }
00216 inline bool operator<=(const const_iterator& other) const { return i <= other.i; }
00217 inline bool operator>(const const_iterator& other) const { return i > other.i; }
00218 inline bool operator>=(const const_iterator& other) const { return i >= other.i; }
00219 inline const_iterator &operator++() { ++i; return *this; }
00220 inline const_iterator operator++(int) { Node *n = i; ++i; return n; }
00221 inline const_iterator &operator--() { i--; return *this; }
00222 inline const_iterator operator--(int) { Node *n = i; i--; return n; }
00223 inline const_iterator &operator+=(int j) { i+=j; return *this; }
00224 inline const_iterator &operator-=(int j) { i-=j; return *this; }
00225 inline const_iterator operator+(int j) const { return const_iterator(i+j); }
00226 inline const_iterator operator-(int j) const { return const_iterator(i-j); }
00227 inline int operator-(const_iterator j) const { return i - j.i; }
};
friend class const_iterator;
00232 inline iterator begin() { detach(); return reinterpret_cast<Node *>(p.begin()); }
00233 inline const_iterator begin() const { return reinterpret_cast<Node *>(p.begin()); }
00234 inline const_iterator constBegin() const { return reinterpret_cast<Node *>(p.begin()); }
00235 inline iterator end() { detach(); return reinterpret_cast<Node *>(p.end()); }
00236 inline const_iterator end() const { return reinterpret_cast<Node *>(p.end()); }
00237 inline const_iterator constEnd() const { return reinterpret_cast<Node *>(p.end()); }
iterator insert(iterator before, const T &t);
iterator erase(iterator pos);
iterator erase(iterator first, iterator last);
00243 typedef iterator Iterator;
00244 typedef const_iterator ConstIterator;
00245 inline int count() const { return p.size(); }
00246 inline T& first() { Q_ASSERT(!isEmpty()); return *begin(); }
00247 inline const T& first() const { Q_ASSERT(!isEmpty()); return *begin(); }
00248 T& last() { Q_ASSERT(!isEmpty()); return *(--end()); }
00249 const T& last() const { Q_ASSERT(!isEmpty()); return *(--end()); }
00250 inline void removeFirst() { Q_ASSERT(!isEmpty()); erase(begin()); }
00251 inline void removeLast() { Q_ASSERT(!isEmpty()); erase(--end()); }
QList<T> mid(int pos, int length = -1) const;
T value(int i) const;
T value(int i, const T &defaultValue) const;
00258 inline void push_back(const T &t) { append(t); }
00259 inline void push_front(const T &t) { prepend(t); }
00260 inline T& front() { return first(); }
00261 inline const T& front() const { return first(); }
00262 inline T& back() { return last(); }
00263 inline const T& back() const { return last(); }
00264 inline void pop_front() { removeFirst(); }
00265 inline void pop_back() { removeLast(); }
00266 inline bool empty() const { return isEmpty(); }
00267 typedef int size_type;
00268 typedef T value_type;
00269 typedef value_type *pointer;
00270 typedef const value_type *const_pointer;
00271 typedef value_type &reference;
00272 typedef const value_type &const_reference;
00273 typedef ptrdiff_t difference_type;
#ifdef QT3_SUPPORT
inline QT3_SUPPORT iterator remove(iterator pos) { return erase(pos); }
inline QT3_SUPPORT int remove(const T &t) { return removeAll(t); }
inline QT3_SUPPORT int findIndex(const T& t) const { return indexOf(t); }
inline QT3_SUPPORT iterator find(const T& t)
{ int i = indexOf(t); return (i == -1 ? end() : (begin()+i)); }
inline QT3_SUPPORT const_iterator find (const T& t) const
{ int i = indexOf(t); return (i == -1 ? end() : (begin()+i)); }
inline QT3_SUPPORT iterator find(iterator from, const T& t)
{ int i = indexOf(t, from - begin()); return i == -1 ? end() : begin()+i; }
inline QT3_SUPPORT const_iterator find(const_iterator from, const T& t) const
{ int i = indexOf(t, from - begin()); return i == -1 ? end() : begin()+i; }
#endif
QList<T> &operator+=(const QList<T> &l);
00291 inline QList<T> operator+(const QList<T> &l) const
{ QList n = *this; n += l; return n; }
00293 inline QList<T> &operator+=(const T &t)
{ append(t); return *this; }
00295 inline QList<T> &operator<< (const T &t)
{ append(t); return *this; }
00297 inline QList<T> &operator<<(const QList<T> &l)
{ *this += l; return *this; }
QVector<T> toVector() const;
QSet<T> toSet() const;
static QList<T> fromVector(const QVector<T> &vector);
static QList<T> fromSet(const QSet<T> &set);
#ifndef QT_NO_STL
00307 static inline QList<T> fromStdList(const std::list<T> &list)
{ QList<T> tmp; qCopy(list.begin(), list.end(), std::back_inserter(tmp)); return tmp; }
00309 inline std::list<T> toStdList() const
{ std::list<T> tmp; qCopy(constBegin(), constEnd(), std::back_inserter(tmp)); return tmp; }
#endif
private:
void detach_helper();
void free(QListData::Data *d);
void node_construct(Node *n, const T &t);
void node_destruct(Node *n);
void node_copy(Node *from, Node *to, Node *src);
void node_destruct(Node *from, Node *to);
};
#if defined(Q_CC_BOR)
template <typename T>
Q_INLINE_TEMPLATE T &QList<T>::Node::t()
{ return QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic ? *(T*)v:*(T*)this; }
#endif
template <typename T>
Q_INLINE_TEMPLATE void QList<T>::node_construct(Node *n, const T &t)
{
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) n->v = new T(t);
else if (QTypeInfo<T>::isComplex) new (n) T(t);
else *reinterpret_cast<T*>(n) = t;
}
template <typename T>
Q_INLINE_TEMPLATE void QList<T>::node_destruct(Node *n)
{
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) delete reinterpret_cast<T*>(n->v);
else if (QTypeInfo<T>::isComplex) reinterpret_cast<T*>(n)->~T();
}
template <typename T>
Q_INLINE_TEMPLATE void QList<T>::node_copy(Node *from, Node *to, Node *src)
{
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic)
while(from != to)
(from++)->v = new T(*reinterpret_cast<T*>((src++)->v));
else if (QTypeInfo<T>::isComplex)
while(from != to)
new (from++) T(*reinterpret_cast<T*>(src++));
}
template <typename T>
Q_INLINE_TEMPLATE void QList<T>::node_destruct(Node *from, Node *to)
{
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic)
while(from != to) --to, delete reinterpret_cast<T*>(to->v);
else if (QTypeInfo<T>::isComplex)
while (from != to) --to, reinterpret_cast<T*>(to)->~T();
}
template <typename T>
00365 Q_INLINE_TEMPLATE QList<T> &QList<T>::operator=(const QList<T> &l)
{
if (d != l.d) {
l.d->ref.ref();
if (!d->ref.deref())
free(d);
d = l.d;
if (!d->sharable)
detach_helper();
}
return *this;
}
template <typename T>
00378 inline typename QList<T>::iterator QList<T>::insert(iterator before, const T &t)
{ Node *n = reinterpret_cast<Node *>(p.insert(before.i-reinterpret_cast<Node *>(p.begin())));
node_construct(n,t); return n; }
template <typename T>
00382 inline typename QList<T>::iterator QList<T>::erase(iterator it)
{ node_destruct(it.i);
return reinterpret_cast<Node *>(p.erase(reinterpret_cast<void**>(it.i))); }
template <typename T>
00386 inline const T &QList<T>::at(int i) const
{ Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::at", "index out of range");
return reinterpret_cast<Node *>(p.at(i))->t(); }
template <typename T>
00390 inline const T &QList<T>::operator[](int i) const
{ Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::operator[]", "index out of range");
return reinterpret_cast<Node *>(p.at(i))->t(); }
template <typename T>
00394 inline T &QList<T>::operator[](int i)
{ Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::operator[]", "index out of range");
detach(); return reinterpret_cast<Node *>(p.at(i))->t(); }
template <typename T>
00398 inline void QList<T>::removeAt(int i)
{ if(i >= 0 && i < p.size()) { detach();
node_destruct(reinterpret_cast<Node *>(p.at(i))); p.remove(i); } }
template <typename T>
00402 inline T QList<T>::takeAt(int i)
{ Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::take", "index out of range");
detach(); Node *n = reinterpret_cast<Node *>(p.at(i)); T t = n->t(); node_destruct(n);
p.remove(i); return t; }
template <typename T>
00407 inline T QList<T>::takeFirst()
{ T t = first(); removeFirst(); return t; }
template <typename T>
00410 inline T QList<T>::takeLast()
{ T t = last(); removeLast(); return t; }
template <typename T>
00414 Q_OUTOFLINE_TEMPLATE void QList<T>::append(const T &t)
{
detach();
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
node_construct(reinterpret_cast<Node *>(p.append()), t);
} else {
const T cpy(t);
node_construct(reinterpret_cast<Node *>(p.append()), cpy);
}
}
template <typename T>
00426 inline void QList<T>::prepend(const T &t)
{
detach();
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
node_construct(reinterpret_cast<Node *>(p.prepend()), t);
} else {
const T cpy(t);
node_construct(reinterpret_cast<Node *>(p.prepend()), cpy);
}
}
template <typename T>
00438 inline void QList<T>::insert(int i, const T &t)
{
detach();
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
node_construct(reinterpret_cast<Node *>(p.insert(i)), t);
} else {
const T cpy(t);
node_construct(reinterpret_cast<Node *>(p.insert(i)), cpy);
}
}
template <typename T>
00450 inline void QList<T>::replace(int i, const T &t)
{
Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::replace", "index out of range");
detach();
if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
reinterpret_cast<Node *>(p.at(i))->t() = t;
} else {
const T cpy(t);
reinterpret_cast<Node *>(p.at(i))->t() = cpy;
}
}
template <typename T>
00463 inline void QList<T>::swap(int i, int j)
{
Q_ASSERT_X(i >= 0 && i < p.size() && j >= 0 && j < p.size(),
"QList<T>::swap", "index out of range");
detach();
void *t = d->array[d->begin + i];
d->array[d->begin + i] = d->array[d->begin + j];
d->array[d->begin + j] = t;
}
template <typename T>
00474 inline void QList<T>::move(int from, int to)
{
Q_ASSERT_X(from >= 0 && from < p.size() && to >= 0 && to < p.size(),
"QList<T>::move", "index out of range");
detach();
p.move(from, to);
}
template<typename T>
00483 Q_OUTOFLINE_TEMPLATE QList<T> QList<T>::mid(int pos, int length) const
{
if (length < 0)
length = size() - pos;
if (pos == 0 && length == size())
return *this;
QList<T> cpy;
if (pos + length > size())
length = size() - pos;
for (int i = pos; i < pos + length; ++i)
cpy += at(i);
return cpy;
}
template<typename T>
00498 Q_OUTOFLINE_TEMPLATE T QList<T>::value(int i) const
{
if (i < 0 || i >= p.size()) {
return T();
}
return reinterpret_cast<Node *>(p.at(i))->t();
}
template<typename T>
00507 Q_OUTOFLINE_TEMPLATE T QList<T>::value(int i, const T& defaultValue) const
{
return ((i < 0 || i >= p.size()) ? defaultValue : reinterpret_cast<Node *>(p.at(i))->t());
}
template <typename T>
Q_OUTOFLINE_TEMPLATE void QList<T>::detach_helper()
{
Node *n = reinterpret_cast<Node *>(p.begin());
QListData::Data *x = p.detach2();
node_copy(reinterpret_cast<Node *>(p.begin()), reinterpret_cast<Node *>(p.end()), n);
if (!x->ref.deref())
free(x);
}
template <typename T>
00523 Q_OUTOFLINE_TEMPLATE QList<T>::~QList()
{
if (d && !d->ref.deref())
free(d);
}
template <typename T>
00530 Q_OUTOFLINE_TEMPLATE bool QList<T>::operator==(const QList<T> &l) const
{
if (p.size() != l.p.size())
return false;
if (d == l.d)
return true;
Node *i = reinterpret_cast<Node *>(p.end());
Node *b = reinterpret_cast<Node *>(p.begin());
Node *li = reinterpret_cast<Node *>(l.p.end());
while (i != b) {
--i; --li;
if (!(i->t() == li->t()))
return false;
}
return true;
}
template <typename T>
Q_OUTOFLINE_TEMPLATE void QList<T>::free(QListData::Data *data)
{
node_destruct(reinterpret_cast<Node *>(data->array + data->begin),
reinterpret_cast<Node *>(data->array + data->end));
if (data->ref == 0)
qFree(data);
}
template <typename T>
00559 Q_OUTOFLINE_TEMPLATE void QList<T>::clear()
{
*this = QList<T>();
}
template <typename T>
00565 Q_OUTOFLINE_TEMPLATE int QList<T>::removeAll(const T &_t)
{
detach();
const T t = _t;
int removedCount=0, i=0;
Node *n;
while (i < p.size())
if ((n = reinterpret_cast<Node *>(p.at(i)))->t() == t) {
node_destruct(n);
p.remove(i);
++removedCount;
} else {
++i;
}
return removedCount;
}
template <typename T>
00583 Q_OUTOFLINE_TEMPLATE bool QList<T>::removeOne(const T &_t)
{
detach();
int index = indexOf(_t);
if (index != -1) {
removeAt(index);
return true;
}
return false;
}
template <typename T>
Q_OUTOFLINE_TEMPLATE typename QList<T>::iterator QList<T>::erase(typename QList<T>::iterator afirst,
typename QList<T>::iterator alast)
{
for (Node *n = afirst.i; n < alast.i; ++n)
node_destruct(n);
int idx = afirst - begin();
p.remove(idx, alast - afirst);
return begin() + idx;
}
template <typename T>
00606 Q_OUTOFLINE_TEMPLATE QList<T> &QList<T>::operator+=(const QList<T> &l)
{
detach();
Node *n = reinterpret_cast<Node *>(p.append(l.p));
node_copy(n, reinterpret_cast<Node *>(p.end()), reinterpret_cast<Node *>(l.p.begin()));
return *this;
}
template <typename T>
00615 Q_OUTOFLINE_TEMPLATE int QList<T>::indexOf(const T &t, int from) const
{
if (from < 0)
from = qMax(from + p.size(), 0);
if (from < p.size()) {
Node *n = reinterpret_cast<Node *>(p.at(from -1));
Node *e = reinterpret_cast<Node *>(p.end());
while (++n != e)
if (n->t() == t)
return n - reinterpret_cast<Node *>(p.begin());
}
return -1;
}
template <typename T>
00630 Q_OUTOFLINE_TEMPLATE int QList<T>::lastIndexOf(const T &t, int from) const
{
if (from < 0)
from += p.size();
else if (from >= p.size())
from = p.size()-1;
if (from >= 0) {
Node *b = reinterpret_cast<Node *>(p.begin());
Node *n = reinterpret_cast<Node *>(p.at(from + 1));
while (n-- != b) {
if (n->t() == t)
return n - b;
}
}
return -1;
}
template <typename T>
00648 Q_OUTOFLINE_TEMPLATE QBool QList<T>::contains(const T &t) const
{
Node *b = reinterpret_cast<Node *>(p.begin());
Node *i = reinterpret_cast<Node *>(p.end());
while (i-- != b)
if (i->t() == t)
return QBool(true);
return QBool(false);
}
template <typename T>
00659 Q_OUTOFLINE_TEMPLATE int QList<T>::count(const T &t) const
{
int c = 0;
Node *b = reinterpret_cast<Node *>(p.begin());
Node *i = reinterpret_cast<Node *>(p.end());
while (i-- != b)
if (i->t() == t)
++c;
return c;
}
Q_DECLARE_SEQUENTIAL_ITERATOR(List)
Q_DECLARE_MUTABLE_SEQUENTIAL_ITERATOR(List)
QT_END_NAMESPACE
QT_END_HEADER
#endif // QLIST_H