qlist.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:23k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtCore module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QLIST_H
  38. #define QLIST_H
  39. #include <QtCore/qiterator.h>
  40. #include <QtCore/qatomic.h>
  41. #include <QtCore/qalgorithms.h>
  42. #ifndef QT_NO_STL
  43. #include <iterator>
  44. #include <list>
  45. #endif
  46. #include <new>
  47. QT_BEGIN_HEADER
  48. QT_BEGIN_NAMESPACE
  49. QT_MODULE(Core)
  50. template <typename T> class QVector;
  51. template <typename T> class QSet;
  52. struct Q_CORE_EXPORT QListData {
  53.     struct Data {
  54.         QBasicAtomicInt ref;
  55.         int alloc, begin, end;
  56.         uint sharable : 1;
  57.         void *array[1];
  58.     };
  59.     enum { DataHeaderSize = sizeof(Data) - sizeof(void *) };
  60.     Data *detach(); // remove in 5.0
  61.     Data *detach2();
  62.     void realloc(int alloc);
  63.     static Data shared_null;
  64.     Data *d;
  65.     void **erase(void **xi);
  66.     void **append();
  67.     void **append(const QListData &l);
  68.     void **prepend();
  69.     void **insert(int i);
  70.     void remove(int i);
  71.     void remove(int i, int n);
  72.     void move(int from, int to);
  73.     inline int size() const { return d->end - d->begin; }
  74.     inline bool isEmpty() const { return d->end  == d->begin; }
  75.     inline void **at(int i) const { return d->array + d->begin + i; }
  76.     inline void **begin() const { return d->array + d->begin; }
  77.     inline void **end() const { return d->array + d->end; }
  78. };
  79. template <typename T>
  80. class QList
  81. {
  82.     struct Node { void *v;
  83. #if defined(Q_CC_BOR)
  84.         Q_INLINE_TEMPLATE T &t();
  85. #else
  86.         Q_INLINE_TEMPLATE T &t()
  87.         { return *reinterpret_cast<T*>(QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic
  88.                                        ? v : this); }
  89. #endif
  90.     };
  91.     union { QListData p; QListData::Data *d; };
  92. public:
  93.     inline QList() : d(&QListData::shared_null) { d->ref.ref(); }
  94.     inline QList(const QList<T> &l) : d(l.d) { d->ref.ref(); if (!d->sharable) detach_helper(); }
  95.     ~QList();
  96.     QList<T> &operator=(const QList<T> &l);
  97.     bool operator==(const QList<T> &l) const;
  98.     inline bool operator!=(const QList<T> &l) const { return !(*this == l); }
  99.     inline int size() const { return p.size(); }
  100.     inline void detach() { if (d->ref != 1) detach_helper(); }
  101.     inline bool isDetached() const { return d->ref == 1; }
  102.     inline void setSharable(bool sharable) { if (!sharable) detach(); d->sharable = sharable; }
  103.     inline bool isEmpty() const { return p.isEmpty(); }
  104.     void clear();
  105.     const T &at(int i) const;
  106.     const T &operator[](int i) const;
  107.     T &operator[](int i);
  108.     void append(const T &t);
  109.     void prepend(const T &t);
  110.     void insert(int i, const T &t);
  111.     void replace(int i, const T &t);
  112.     void removeAt(int i);
  113.     int removeAll(const T &t);
  114.     bool removeOne(const T &t);
  115.     T takeAt(int i);
  116.     T takeFirst();
  117.     T takeLast();
  118.     void move(int from, int to);
  119.     void swap(int i, int j);
  120.     int indexOf(const T &t, int from = 0) const;
  121.     int lastIndexOf(const T &t, int from = -1) const;
  122.     QBool contains(const T &t) const;
  123.     int count(const T &t) const;
  124.     class const_iterator;
  125.     class iterator {
  126.     public:
  127.         Node *i;
  128.         typedef std::random_access_iterator_tag  iterator_category;
  129.         typedef ptrdiff_t  difference_type;
  130.         typedef T value_type;
  131.         typedef T *pointer;
  132.         typedef T &reference;
  133.         inline iterator() : i(0) {}
  134.         inline iterator(Node *n) : i(n) {}
  135.         inline iterator(const iterator &o): i(o.i){}
  136.         inline T &operator*() const { return i->t(); }
  137.         inline T *operator->() const { return &i->t(); }
  138.         inline T &operator[](int j) const { return i[j].t(); }
  139.         inline bool operator==(const iterator &o) const { return i == o.i; }
  140.         inline bool operator!=(const iterator &o) const { return i != o.i; }
  141.         inline bool operator<(const iterator& other) const { return i < other.i; }
  142.         inline bool operator<=(const iterator& other) const { return i <= other.i; }
  143.         inline bool operator>(const iterator& other) const { return i > other.i; }
  144.         inline bool operator>=(const iterator& other) const { return i >= other.i; }
  145. #ifndef QT_STRICT_ITERATORS
  146.         inline bool operator==(const const_iterator &o) const
  147.             { return i == o.i; }
  148.         inline bool operator!=(const const_iterator &o) const
  149.             { return i != o.i; }
  150.         inline bool operator<(const const_iterator& other) const
  151.             { return i < other.i; }
  152.         inline bool operator<=(const const_iterator& other) const
  153.             { return i <= other.i; }
  154.         inline bool operator>(const const_iterator& other) const
  155.             { return i > other.i; }
  156.         inline bool operator>=(const const_iterator& other) const
  157.             { return i >= other.i; }
  158. #endif
  159.         inline iterator &operator++() { ++i; return *this; }
  160.         inline iterator operator++(int) { Node *n = i; ++i; return n; }
  161.         inline iterator &operator--() { i--; return *this; }
  162.         inline iterator operator--(int) { Node *n = i; i--; return n; }
  163.         inline iterator &operator+=(int j) { i+=j; return *this; }
  164.         inline iterator &operator-=(int j) { i-=j; return *this; }
  165.         inline iterator operator+(int j) const { return iterator(i+j); }
  166.         inline iterator operator-(int j) const { return iterator(i-j); }
  167.         inline int operator-(iterator j) const { return i - j.i; }
  168.     };
  169.     friend class iterator;
  170.     class const_iterator {
  171.     public:
  172.         Node *i;
  173.         typedef std::random_access_iterator_tag  iterator_category;
  174.         typedef ptrdiff_t difference_type;
  175.         typedef T value_type;
  176.         typedef const T *pointer;
  177.         typedef const T &reference;
  178.         inline const_iterator() : i(0) {}
  179.         inline const_iterator(Node *n) : i(n) {}
  180.         inline const_iterator(const const_iterator &o): i(o.i) {}
  181. #ifdef QT_STRICT_ITERATORS
  182.         inline explicit const_iterator(const iterator &o): i(o.i) {}
  183. #else
  184.         inline const_iterator(const iterator &o): i(o.i) {}
  185. #endif
  186.         inline const T &operator*() const { return i->t(); }
  187.         inline const T *operator->() const { return &i->t(); }
  188.         inline const T &operator[](int j) const { return i[j].t(); }
  189.         inline bool operator==(const const_iterator &o) const { return i == o.i; }
  190.         inline bool operator!=(const const_iterator &o) const { return i != o.i; }
  191.         inline bool operator<(const const_iterator& other) const { return i < other.i; }
  192.         inline bool operator<=(const const_iterator& other) const { return i <= other.i; }
  193.         inline bool operator>(const const_iterator& other) const { return i > other.i; }
  194.         inline bool operator>=(const const_iterator& other) const { return i >= other.i; }
  195.         inline const_iterator &operator++() { ++i; return *this; }
  196.         inline const_iterator operator++(int) { Node *n = i; ++i; return n; }
  197.         inline const_iterator &operator--() { i--; return *this; }
  198.         inline const_iterator operator--(int) { Node *n = i; i--; return n; }
  199.         inline const_iterator &operator+=(int j) { i+=j; return *this; }
  200.         inline const_iterator &operator-=(int j) { i-=j; return *this; }
  201.         inline const_iterator operator+(int j) const { return const_iterator(i+j); }
  202.         inline const_iterator operator-(int j) const { return const_iterator(i-j); }
  203.         inline int operator-(const_iterator j) const { return i - j.i; }
  204.     };
  205.     friend class const_iterator;
  206.     // stl style
  207.     inline iterator begin() { detach(); return reinterpret_cast<Node *>(p.begin()); }
  208.     inline const_iterator begin() const { return reinterpret_cast<Node *>(p.begin()); }
  209.     inline const_iterator constBegin() const { return reinterpret_cast<Node *>(p.begin()); }
  210.     inline iterator end() { detach(); return reinterpret_cast<Node *>(p.end()); }
  211.     inline const_iterator end() const { return reinterpret_cast<Node *>(p.end()); }
  212.     inline const_iterator constEnd() const { return reinterpret_cast<Node *>(p.end()); }
  213.     iterator insert(iterator before, const T &t);
  214.     iterator erase(iterator pos);
  215.     iterator erase(iterator first, iterator last);
  216.     // more Qt
  217.     typedef iterator Iterator;
  218.     typedef const_iterator ConstIterator;
  219.     inline int count() const { return p.size(); }
  220.     inline T& first() { Q_ASSERT(!isEmpty()); return *begin(); }
  221.     inline const T& first() const { Q_ASSERT(!isEmpty()); return *begin(); }
  222.     T& last() { Q_ASSERT(!isEmpty()); return *(--end()); }
  223.     const T& last() const { Q_ASSERT(!isEmpty()); return *(--end()); }
  224.     inline void removeFirst() { Q_ASSERT(!isEmpty()); erase(begin()); }
  225.     inline void removeLast() { Q_ASSERT(!isEmpty()); erase(--end()); }
  226.     QList<T> mid(int pos, int length = -1) const;
  227.     T value(int i) const;
  228.     T value(int i, const T &defaultValue) const;
  229.     // stl compatibility
  230.     inline void push_back(const T &t) { append(t); }
  231.     inline void push_front(const T &t) { prepend(t); }
  232.     inline T& front() { return first(); }
  233.     inline const T& front() const { return first(); }
  234.     inline T& back() { return last(); }
  235.     inline const T& back() const { return last(); }
  236.     inline void pop_front() { removeFirst(); }
  237.     inline void pop_back() { removeLast(); }
  238.     inline bool empty() const { return isEmpty(); }
  239.     typedef int size_type;
  240.     typedef T value_type;
  241.     typedef value_type *pointer;
  242.     typedef const value_type *const_pointer;
  243.     typedef value_type &reference;
  244.     typedef const value_type &const_reference;
  245.     typedef ptrdiff_t difference_type;
  246. #ifdef QT3_SUPPORT
  247.     inline QT3_SUPPORT iterator remove(iterator pos) { return erase(pos); }
  248.     inline QT3_SUPPORT int remove(const T &t) { return removeAll(t); }
  249.     inline QT3_SUPPORT int findIndex(const T& t) const { return indexOf(t); }
  250.     inline QT3_SUPPORT iterator find(const T& t)
  251.     { int i = indexOf(t); return (i == -1 ? end() : (begin()+i)); }
  252.     inline QT3_SUPPORT const_iterator find (const T& t) const
  253.     { int i = indexOf(t); return (i == -1 ? end() : (begin()+i)); }
  254.     inline QT3_SUPPORT iterator find(iterator from, const T& t)
  255.     { int i = indexOf(t, from - begin()); return i == -1 ? end() : begin()+i; }
  256.     inline QT3_SUPPORT const_iterator find(const_iterator from, const T& t) const
  257.     { int i = indexOf(t, from - begin()); return i == -1 ? end() : begin()+i; }
  258. #endif
  259.     // comfort
  260.     QList<T> &operator+=(const QList<T> &l);
  261.     inline QList<T> operator+(const QList<T> &l) const
  262.     { QList n = *this; n += l; return n; }
  263.     inline QList<T> &operator+=(const T &t)
  264.     { append(t); return *this; }
  265.     inline QList<T> &operator<< (const T &t)
  266.     { append(t); return *this; }
  267.     inline QList<T> &operator<<(const QList<T> &l)
  268.     { *this += l; return *this; }
  269.     QVector<T> toVector() const;
  270.     QSet<T> toSet() const;
  271.     static QList<T> fromVector(const QVector<T> &vector);
  272.     static QList<T> fromSet(const QSet<T> &set);
  273. #ifndef QT_NO_STL
  274.     static inline QList<T> fromStdList(const std::list<T> &list)
  275.     { QList<T> tmp; qCopy(list.begin(), list.end(), std::back_inserter(tmp)); return tmp; }
  276.     inline std::list<T> toStdList() const
  277.     { std::list<T> tmp; qCopy(constBegin(), constEnd(), std::back_inserter(tmp)); return tmp; }
  278. #endif
  279. private:
  280.     void detach_helper();
  281.     void free(QListData::Data *d);
  282.     void node_construct(Node *n, const T &t);
  283.     void node_destruct(Node *n);
  284.     void node_copy(Node *from, Node *to, Node *src);
  285.     void node_destruct(Node *from, Node *to);
  286. };
  287. #if defined(Q_CC_BOR)
  288. template <typename T>
  289. Q_INLINE_TEMPLATE T &QList<T>::Node::t()
  290. { return QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic ? *(T*)v:*(T*)this; }
  291. #endif
  292. template <typename T>
  293. Q_INLINE_TEMPLATE void QList<T>::node_construct(Node *n, const T &t)
  294. {
  295.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) n->v = new T(t);
  296.     else if (QTypeInfo<T>::isComplex) new (n) T(t);
  297.     else *reinterpret_cast<T*>(n) = t;
  298. }
  299. template <typename T>
  300. Q_INLINE_TEMPLATE void QList<T>::node_destruct(Node *n)
  301. {
  302.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) delete reinterpret_cast<T*>(n->v);
  303.     else if (QTypeInfo<T>::isComplex) reinterpret_cast<T*>(n)->~T();
  304. }
  305. template <typename T>
  306. Q_INLINE_TEMPLATE void QList<T>::node_copy(Node *from, Node *to, Node *src)
  307. {
  308.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic)
  309.         while(from != to)
  310.             (from++)->v = new T(*reinterpret_cast<T*>((src++)->v));
  311.     else if (QTypeInfo<T>::isComplex)
  312.         while(from != to)
  313.             new (from++) T(*reinterpret_cast<T*>(src++));
  314. }
  315. template <typename T>
  316. Q_INLINE_TEMPLATE void QList<T>::node_destruct(Node *from, Node *to)
  317. {
  318.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic)
  319.         while(from != to) --to, delete reinterpret_cast<T*>(to->v);
  320.     else if (QTypeInfo<T>::isComplex)
  321.         while (from != to) --to, reinterpret_cast<T*>(to)->~T();
  322. }
  323. template <typename T>
  324. Q_INLINE_TEMPLATE QList<T> &QList<T>::operator=(const QList<T> &l)
  325. {
  326.     if (d != l.d) {
  327.         l.d->ref.ref();
  328.         if (!d->ref.deref())
  329.             free(d);
  330.         d = l.d;
  331.         if (!d->sharable)
  332.             detach_helper();
  333.     }
  334.     return *this;
  335. }
  336. template <typename T>
  337. inline typename QList<T>::iterator QList<T>::insert(iterator before, const T &t)
  338. { Node *n = reinterpret_cast<Node *>(p.insert(before.i-reinterpret_cast<Node *>(p.begin())));
  339.  node_construct(n,t); return n; }
  340. template <typename T>
  341. inline typename QList<T>::iterator QList<T>::erase(iterator it)
  342. { node_destruct(it.i);
  343.  return reinterpret_cast<Node *>(p.erase(reinterpret_cast<void**>(it.i))); }
  344. template <typename T>
  345. inline const T &QList<T>::at(int i) const
  346. { Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::at", "index out of range");
  347.  return reinterpret_cast<Node *>(p.at(i))->t(); }
  348. template <typename T>
  349. inline const T &QList<T>::operator[](int i) const
  350. { Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::operator[]", "index out of range");
  351.  return reinterpret_cast<Node *>(p.at(i))->t(); }
  352. template <typename T>
  353. inline T &QList<T>::operator[](int i)
  354. { Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::operator[]", "index out of range");
  355.   detach(); return reinterpret_cast<Node *>(p.at(i))->t(); }
  356. template <typename T>
  357. inline void QList<T>::removeAt(int i)
  358. { if(i >= 0 && i < p.size()) { detach();
  359.  node_destruct(reinterpret_cast<Node *>(p.at(i))); p.remove(i); } }
  360. template <typename T>
  361. inline T QList<T>::takeAt(int i)
  362. { Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::take", "index out of range");
  363.  detach(); Node *n = reinterpret_cast<Node *>(p.at(i)); T t = n->t(); node_destruct(n);
  364.  p.remove(i); return t; }
  365. template <typename T>
  366. inline T QList<T>::takeFirst()
  367. { T t = first(); removeFirst(); return t; }
  368. template <typename T>
  369. inline T QList<T>::takeLast()
  370. { T t = last(); removeLast(); return t; }
  371. template <typename T>
  372. Q_OUTOFLINE_TEMPLATE void QList<T>::append(const T &t)
  373. {
  374.     detach();
  375.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
  376.         node_construct(reinterpret_cast<Node *>(p.append()), t);
  377.     } else {
  378.         const T cpy(t);
  379.         node_construct(reinterpret_cast<Node *>(p.append()), cpy);
  380.     }
  381. }
  382. template <typename T>
  383. inline void QList<T>::prepend(const T &t)
  384. {
  385.     detach();
  386.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
  387.         node_construct(reinterpret_cast<Node *>(p.prepend()), t);
  388.     } else {
  389.         const T cpy(t);
  390.         node_construct(reinterpret_cast<Node *>(p.prepend()), cpy);
  391.     }
  392. }
  393. template <typename T>
  394. inline void QList<T>::insert(int i, const T &t)
  395. {
  396.     detach();
  397.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
  398.         node_construct(reinterpret_cast<Node *>(p.insert(i)), t);
  399.     } else {
  400.         const T cpy(t);
  401.         node_construct(reinterpret_cast<Node *>(p.insert(i)), cpy);
  402.     }
  403. }
  404. template <typename T>
  405. inline void QList<T>::replace(int i, const T &t)
  406. {
  407.     Q_ASSERT_X(i >= 0 && i < p.size(), "QList<T>::replace", "index out of range");
  408.     detach();
  409.     if (QTypeInfo<T>::isLarge || QTypeInfo<T>::isStatic) {
  410.         reinterpret_cast<Node *>(p.at(i))->t() = t;
  411.     } else {
  412.         const T cpy(t);
  413.         reinterpret_cast<Node *>(p.at(i))->t() = cpy;
  414.     }
  415. }
  416. template <typename T>
  417. inline void QList<T>::swap(int i, int j)
  418. {
  419.     Q_ASSERT_X(i >= 0 && i < p.size() && j >= 0 && j < p.size(),
  420.                 "QList<T>::swap", "index out of range");
  421.     detach();
  422.     void *t = d->array[d->begin + i];
  423.     d->array[d->begin + i] = d->array[d->begin + j];
  424.     d->array[d->begin + j] = t;
  425. }
  426. template <typename T>
  427. inline void QList<T>::move(int from, int to)
  428. {
  429.     Q_ASSERT_X(from >= 0 && from < p.size() && to >= 0 && to < p.size(),
  430.                "QList<T>::move", "index out of range");
  431.     detach();
  432.     p.move(from, to);
  433. }
  434. template<typename T>
  435. Q_OUTOFLINE_TEMPLATE QList<T> QList<T>::mid(int pos, int length) const
  436. {
  437.     if (length < 0)
  438.         length = size() - pos;
  439.     if (pos == 0 && length == size())
  440.         return *this;
  441.     QList<T> cpy;
  442.     if (pos + length > size())
  443.         length = size() - pos;
  444.     for (int i = pos; i < pos + length; ++i)
  445.         cpy += at(i);
  446.     return cpy;
  447. }
  448. template<typename T>
  449. Q_OUTOFLINE_TEMPLATE T QList<T>::value(int i) const
  450. {
  451.     if (i < 0 || i >= p.size()) {
  452.         return T();
  453.     }
  454.     return reinterpret_cast<Node *>(p.at(i))->t();
  455. }
  456. template<typename T>
  457. Q_OUTOFLINE_TEMPLATE T QList<T>::value(int i, const T& defaultValue) const
  458. {
  459.     return ((i < 0 || i >= p.size()) ? defaultValue : reinterpret_cast<Node *>(p.at(i))->t());
  460. }
  461. template <typename T>
  462. Q_OUTOFLINE_TEMPLATE void QList<T>::detach_helper()
  463. {
  464.     Node *n = reinterpret_cast<Node *>(p.begin());
  465.     QListData::Data *x = p.detach2();
  466.     node_copy(reinterpret_cast<Node *>(p.begin()), reinterpret_cast<Node *>(p.end()), n);
  467.     if (!x->ref.deref())
  468.         free(x);
  469. }
  470. template <typename T>
  471. Q_OUTOFLINE_TEMPLATE QList<T>::~QList()
  472. {
  473.     if (d && !d->ref.deref())
  474.         free(d);
  475. }
  476. template <typename T>
  477. Q_OUTOFLINE_TEMPLATE bool QList<T>::operator==(const QList<T> &l) const
  478. {
  479.     if (p.size() != l.p.size())
  480.         return false;
  481.     if (d == l.d)
  482.         return true;
  483.     Node *i = reinterpret_cast<Node *>(p.end());
  484.     Node *b = reinterpret_cast<Node *>(p.begin());
  485.     Node *li = reinterpret_cast<Node *>(l.p.end());
  486.     while (i != b) {
  487.         --i; --li;
  488.         if (!(i->t() == li->t()))
  489.             return false;
  490.     }
  491.     return true;
  492. }
  493. // ### Qt 5: rename freeData() to avoid confusion with std::free()
  494. template <typename T>
  495. Q_OUTOFLINE_TEMPLATE void QList<T>::free(QListData::Data *data)
  496. {
  497.     node_destruct(reinterpret_cast<Node *>(data->array + data->begin),
  498.                   reinterpret_cast<Node *>(data->array + data->end));
  499.     if (data->ref == 0)
  500.         qFree(data);
  501. }
  502. template <typename T>
  503. Q_OUTOFLINE_TEMPLATE void QList<T>::clear()
  504. {
  505.     *this = QList<T>();
  506. }
  507. template <typename T>
  508. Q_OUTOFLINE_TEMPLATE int QList<T>::removeAll(const T &_t)
  509. {
  510.     detach();
  511.     const T t = _t;
  512.     int removedCount=0, i=0;
  513.     Node *n;
  514.     while (i < p.size())
  515.         if ((n = reinterpret_cast<Node *>(p.at(i)))->t() == t) {
  516.             node_destruct(n);
  517.             p.remove(i);
  518.             ++removedCount;
  519.         } else {
  520.             ++i;
  521.         }
  522.     return removedCount;
  523. }
  524. template <typename T>
  525. Q_OUTOFLINE_TEMPLATE bool QList<T>::removeOne(const T &_t)
  526. {
  527.     detach();
  528.     int index = indexOf(_t);
  529.     if (index != -1) {
  530.         removeAt(index);
  531.         return true;
  532.     }
  533.     return false;
  534. }
  535. template <typename T>
  536. Q_OUTOFLINE_TEMPLATE typename QList<T>::iterator QList<T>::erase(typename QList<T>::iterator afirst,
  537.                                                                  typename QList<T>::iterator alast)
  538. {
  539.     for (Node *n = afirst.i; n < alast.i; ++n)
  540.         node_destruct(n);
  541.     int idx = afirst - begin();
  542.     p.remove(idx, alast - afirst);
  543.     return begin() + idx;
  544. }
  545. template <typename T>
  546. Q_OUTOFLINE_TEMPLATE QList<T> &QList<T>::operator+=(const QList<T> &l)
  547. {
  548.     detach();
  549.     Node *n = reinterpret_cast<Node *>(p.append(l.p));
  550.     node_copy(n, reinterpret_cast<Node *>(p.end()), reinterpret_cast<Node *>(l.p.begin()));
  551.     return *this;
  552. }
  553. template <typename T>
  554. Q_OUTOFLINE_TEMPLATE int QList<T>::indexOf(const T &t, int from) const
  555. {
  556.     if (from < 0)
  557.         from = qMax(from + p.size(), 0);
  558.     if (from < p.size()) {
  559.         Node *n = reinterpret_cast<Node *>(p.at(from -1));
  560.         Node *e = reinterpret_cast<Node *>(p.end());
  561.         while (++n != e)
  562.             if (n->t() == t)
  563.                 return n - reinterpret_cast<Node *>(p.begin());
  564.     }
  565.     return -1;
  566. }
  567. template <typename T>
  568. Q_OUTOFLINE_TEMPLATE int QList<T>::lastIndexOf(const T &t, int from) const
  569. {
  570.     if (from < 0)
  571.         from += p.size();
  572.     else if (from >= p.size())
  573.         from = p.size()-1;
  574.     if (from >= 0) {
  575.         Node *b = reinterpret_cast<Node *>(p.begin());
  576.         Node *n = reinterpret_cast<Node *>(p.at(from + 1));
  577.         while (n-- != b) {
  578.             if (n->t() == t)
  579.                 return n - b;
  580.         }
  581.     }
  582.     return -1;
  583. }
  584. template <typename T>
  585. Q_OUTOFLINE_TEMPLATE QBool QList<T>::contains(const T &t) const
  586. {
  587.     Node *b = reinterpret_cast<Node *>(p.begin());
  588.     Node *i = reinterpret_cast<Node *>(p.end());
  589.     while (i-- != b)
  590.         if (i->t() == t)
  591.             return QBool(true);
  592.     return QBool(false);
  593. }
  594. template <typename T>
  595. Q_OUTOFLINE_TEMPLATE int QList<T>::count(const T &t) const
  596. {
  597.     int c = 0;
  598.     Node *b = reinterpret_cast<Node *>(p.begin());
  599.     Node *i = reinterpret_cast<Node *>(p.end());
  600.     while (i-- != b)
  601.         if (i->t() == t)
  602.             ++c;
  603.     return c;
  604. }
  605. Q_DECLARE_SEQUENTIAL_ITERATOR(List)
  606. Q_DECLARE_MUTABLE_SEQUENTIAL_ITERATOR(List)
  607. QT_END_NAMESPACE
  608. QT_END_HEADER
  609. #endif // QLIST_H