2013-07-24 07:41:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-06-04 03:36:43 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-01-26 20:54:03 +00:00
|
|
|
|
|
|
|
/* A type-safe doubly-linked list class. */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The classes LinkedList<T> and LinkedListElement<T> together form a
|
|
|
|
* convenient, type-safe doubly-linked list implementation.
|
|
|
|
*
|
|
|
|
* The class T which will be inserted into the linked list must inherit from
|
|
|
|
* LinkedListElement<T>. A given object may be in only one linked list at a
|
|
|
|
* time.
|
|
|
|
*
|
2012-10-24 16:40:35 +00:00
|
|
|
* A LinkedListElement automatically removes itself from the list upon
|
|
|
|
* destruction, and a LinkedList will fatally assert in debug builds if it's
|
|
|
|
* non-empty when it's destructed.
|
|
|
|
*
|
2012-01-26 20:54:03 +00:00
|
|
|
* For example, you might use LinkedList in a simple observer list class as
|
|
|
|
* follows.
|
|
|
|
*
|
|
|
|
* class Observer : public LinkedListElement<Observer>
|
|
|
|
* {
|
2014-06-13 06:34:08 +00:00
|
|
|
* public:
|
|
|
|
* void observe(char* aTopic) { ... }
|
2012-01-26 20:54:03 +00:00
|
|
|
* };
|
|
|
|
*
|
|
|
|
* class ObserverContainer
|
|
|
|
* {
|
2014-06-13 06:34:08 +00:00
|
|
|
* private:
|
|
|
|
* LinkedList<Observer> list;
|
2012-01-26 20:54:03 +00:00
|
|
|
*
|
2014-06-13 06:34:08 +00:00
|
|
|
* public:
|
|
|
|
* void addObserver(Observer* aObserver)
|
|
|
|
* {
|
|
|
|
* // Will assert if |aObserver| is part of another list.
|
|
|
|
* list.insertBack(aObserver);
|
|
|
|
* }
|
2012-01-26 20:54:03 +00:00
|
|
|
*
|
2014-06-13 06:34:08 +00:00
|
|
|
* void removeObserver(Observer* aObserver)
|
|
|
|
* {
|
|
|
|
* // Will assert if |aObserver| is not part of some list.
|
|
|
|
* aObserver.remove();
|
|
|
|
* // Or, will assert if |aObserver| is not part of |list| specifically.
|
|
|
|
* // aObserver.removeFrom(list);
|
|
|
|
* }
|
2012-01-26 20:54:03 +00:00
|
|
|
*
|
2014-06-13 06:34:08 +00:00
|
|
|
* void notifyObservers(char* aTopic)
|
|
|
|
* {
|
|
|
|
* for (Observer* o = list.getFirst(); o != nullptr; o = o->getNext()) {
|
|
|
|
* o->observe(aTopic);
|
2012-01-26 20:54:03 +00:00
|
|
|
* }
|
2014-06-13 06:34:08 +00:00
|
|
|
* }
|
2012-01-26 20:54:03 +00:00
|
|
|
* };
|
|
|
|
*
|
2015-02-04 01:33:05 +00:00
|
|
|
* Additionally, the class AutoCleanLinkedList<T> is a LinkedList<T> that will
|
|
|
|
* remove and delete each element still within itself upon destruction. Note
|
|
|
|
* that because each element is deleted, elements must have been allocated
|
|
|
|
* using |new|.
|
2012-01-26 20:54:03 +00:00
|
|
|
*/
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#ifndef mozilla_LinkedList_h
|
|
|
|
#define mozilla_LinkedList_h
|
2012-01-26 20:54:03 +00:00
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2013-11-24 23:20:12 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2013-08-29 18:54:14 +00:00
|
|
|
#include "mozilla/Move.h"
|
2016-10-17 01:40:49 +00:00
|
|
|
#include "mozilla/RefPtr.h"
|
2012-01-26 20:54:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-10-17 01:40:49 +00:00
|
|
|
template<typename T>
|
|
|
|
class LinkedListElement;
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* LinkedList supports refcounted elements using this adapter class. Clients
|
|
|
|
* using LinkedList<RefPtr<T>> will get a data structure that holds a strong
|
|
|
|
* reference to T as long as T is in the list.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
struct LinkedListElementTraits
|
|
|
|
{
|
|
|
|
typedef T* RawType;
|
|
|
|
typedef const T* ConstRawType;
|
|
|
|
typedef T* ClientType;
|
|
|
|
typedef const T* ConstClientType;
|
|
|
|
|
|
|
|
// These static methods are called when an element is added to or removed from
|
|
|
|
// a linked list. It can be used to keep track ownership in lists that are
|
|
|
|
// supposed to own their elements. If elements are transferred from one list
|
|
|
|
// to another, no enter or exit calls happen since the elements still belong
|
|
|
|
// to a list.
|
|
|
|
static void enterList(LinkedListElement<T>* elt) {}
|
|
|
|
static void exitList(LinkedListElement<T>* elt) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct LinkedListElementTraits<RefPtr<T>>
|
|
|
|
{
|
|
|
|
typedef T* RawType;
|
|
|
|
typedef const T* ConstRawType;
|
|
|
|
typedef RefPtr<T> ClientType;
|
|
|
|
typedef RefPtr<const T> ConstClientType;
|
|
|
|
|
|
|
|
static void enterList(LinkedListElement<RefPtr<T>>* elt) { elt->asT()->AddRef(); }
|
|
|
|
static void exitList(LinkedListElement<RefPtr<T>>* elt) { elt->asT()->Release(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace detail */
|
|
|
|
|
2012-01-26 20:54:03 +00:00
|
|
|
template<typename T>
|
|
|
|
class LinkedList;
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class LinkedListElement
|
|
|
|
{
|
2016-10-17 01:40:49 +00:00
|
|
|
typedef typename detail::LinkedListElementTraits<T> Traits;
|
|
|
|
typedef typename Traits::RawType RawType;
|
|
|
|
typedef typename Traits::ConstRawType ConstRawType;
|
|
|
|
typedef typename Traits::ClientType ClientType;
|
|
|
|
typedef typename Traits::ConstClientType ConstClientType;
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
/*
|
|
|
|
* It's convenient that we return nullptr when getNext() or getPrevious()
|
|
|
|
* hits the end of the list, but doing so costs an extra word of storage in
|
|
|
|
* each linked list node (to keep track of whether |this| is the sentinel
|
|
|
|
* node) and a branch on this value in getNext/getPrevious.
|
|
|
|
*
|
|
|
|
* We could get rid of the extra word of storage by shoving the "is
|
|
|
|
* sentinel" bit into one of the pointers, although this would, of course,
|
|
|
|
* have performance implications of its own.
|
|
|
|
*
|
|
|
|
* But the goal here isn't to win an award for the fastest or slimmest
|
|
|
|
* linked list; rather, we want a *convenient* linked list. So we won't
|
|
|
|
* waste time guessing which micro-optimization strategy is best.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Speaking of unnecessary work, it's worth addressing here why we wrote
|
|
|
|
* mozilla::LinkedList in the first place, instead of using stl::list.
|
|
|
|
*
|
|
|
|
* The key difference between mozilla::LinkedList and stl::list is that
|
|
|
|
* mozilla::LinkedList stores the mPrev/mNext pointers in the object itself,
|
|
|
|
* while stl::list stores the mPrev/mNext pointers in a list element which
|
|
|
|
* itself points to the object being stored.
|
|
|
|
*
|
|
|
|
* mozilla::LinkedList's approach makes it harder to store an object in more
|
|
|
|
* than one list. But the upside is that you can call next() / prev() /
|
|
|
|
* remove() directly on the object. With stl::list, you'd need to store a
|
|
|
|
* pointer to its iterator in the object in order to accomplish this. Not
|
|
|
|
* only would this waste space, but you'd have to remember to update that
|
|
|
|
* pointer every time you added or removed the object from a list.
|
|
|
|
*
|
|
|
|
* In-place, constant-time removal is a killer feature of doubly-linked
|
|
|
|
* lists, and supporting this painlessly was a key design criterion.
|
|
|
|
*/
|
|
|
|
|
|
|
|
private:
|
|
|
|
LinkedListElement* mNext;
|
|
|
|
LinkedListElement* mPrev;
|
|
|
|
const bool mIsSentinel;
|
|
|
|
|
|
|
|
public:
|
|
|
|
LinkedListElement()
|
2015-01-07 05:39:46 +00:00
|
|
|
: mNext(this),
|
|
|
|
mPrev(this),
|
2014-06-13 06:34:08 +00:00
|
|
|
mIsSentinel(false)
|
|
|
|
{ }
|
|
|
|
|
2016-10-19 05:30:51 +00:00
|
|
|
/*
|
|
|
|
* Moves |aOther| into |*this|. If |aOther| is already in a list, then
|
|
|
|
* |aOther| is removed from the list and replaced by |*this|.
|
|
|
|
*/
|
2016-10-19 05:24:23 +00:00
|
|
|
LinkedListElement(LinkedListElement<T>&& aOther)
|
|
|
|
: mIsSentinel(aOther.mIsSentinel)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
2016-10-19 05:30:51 +00:00
|
|
|
adjustLinkForMove(Move(aOther));
|
|
|
|
}
|
2012-01-26 20:54:03 +00:00
|
|
|
|
2016-10-19 05:30:51 +00:00
|
|
|
LinkedListElement& operator=(LinkedListElement<T>&& aOther)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mIsSentinel == aOther.mIsSentinel, "Mismatch NodeKind!");
|
|
|
|
MOZ_ASSERT(!isInList(),
|
|
|
|
"Assigning to an element in a list messes up that list!");
|
|
|
|
adjustLinkForMove(Move(aOther));
|
|
|
|
return *this;
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
2012-01-26 20:54:03 +00:00
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
~LinkedListElement()
|
|
|
|
{
|
|
|
|
if (!mIsSentinel && isInList()) {
|
2012-10-24 00:43:23 +00:00
|
|
|
remove();
|
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the next element in the list, or nullptr if this is the last element
|
|
|
|
* in the list.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType getNext() { return mNext->asT(); }
|
|
|
|
ConstRawType getNext() const { return mNext->asT(); }
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the previous element in the list, or nullptr if this is the first
|
|
|
|
* element in the list.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType getPrevious() { return mPrev->asT(); }
|
|
|
|
ConstRawType getPrevious() const { return mPrev->asT(); }
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert aElem after this element in the list. |this| must be part of a
|
|
|
|
* linked list when you call setNext(); otherwise, this method will assert.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void setNext(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(isInList());
|
|
|
|
setNextUnsafe(aElem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert aElem before this element in the list. |this| must be part of a
|
|
|
|
* linked list when you call setPrevious(); otherwise, this method will
|
|
|
|
* assert.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void setPrevious(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(isInList());
|
|
|
|
setPreviousUnsafe(aElem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove this element from the list which contains it. If this element is
|
|
|
|
* not currently part of a linked list, this method asserts.
|
|
|
|
*/
|
|
|
|
void remove()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(isInList());
|
|
|
|
|
|
|
|
mPrev->mNext = mNext;
|
|
|
|
mNext->mPrev = mPrev;
|
|
|
|
mNext = this;
|
|
|
|
mPrev = this;
|
2016-10-17 01:40:49 +00:00
|
|
|
|
|
|
|
Traits::exitList(this);
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 19:49:21 +00:00
|
|
|
/*
|
|
|
|
* Remove this element from the list containing it. Returns a pointer to the
|
|
|
|
* element that follows this element (before it was removed). This method
|
|
|
|
* asserts if the element does not belong to a list.
|
|
|
|
*/
|
|
|
|
ClientType removeAndGetNext()
|
|
|
|
{
|
|
|
|
ClientType r = getNext();
|
|
|
|
remove();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove this element from the list containing it. Returns a pointer to the
|
|
|
|
* previous element in the containing list (before the removal). This method
|
|
|
|
* asserts if the element does not belong to a list.
|
|
|
|
*/
|
|
|
|
ClientType removeAndGetPrevious()
|
|
|
|
{
|
|
|
|
ClientType r = getPrevious();
|
|
|
|
remove();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
/*
|
|
|
|
* Identical to remove(), but also asserts in debug builds that this element
|
|
|
|
* is in aList.
|
|
|
|
*/
|
|
|
|
void removeFrom(const LinkedList<T>& aList)
|
|
|
|
{
|
|
|
|
aList.assertContains(asT());
|
|
|
|
remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if |this| part is of a linked list, and false otherwise.
|
|
|
|
*/
|
|
|
|
bool isInList() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT((mNext == this) == (mPrev == this));
|
|
|
|
return mNext != this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class LinkedList<T>;
|
2016-10-17 01:40:49 +00:00
|
|
|
friend struct detail::LinkedListElementTraits<T>;
|
2014-06-13 06:34:08 +00:00
|
|
|
|
2016-10-20 09:01:11 +00:00
|
|
|
enum class NodeKind {
|
|
|
|
Normal,
|
|
|
|
Sentinel
|
2014-06-13 06:34:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
explicit LinkedListElement(NodeKind nodeKind)
|
2015-01-07 05:39:46 +00:00
|
|
|
: mNext(this),
|
|
|
|
mPrev(this),
|
2016-10-20 09:01:11 +00:00
|
|
|
mIsSentinel(nodeKind == NodeKind::Sentinel)
|
2014-06-13 06:34:08 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return |this| cast to T* if we're a normal node, or return nullptr if
|
|
|
|
* we're a sentinel node.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType asT()
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
2016-10-17 01:40:49 +00:00
|
|
|
return mIsSentinel ? nullptr : static_cast<RawType>(this);
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
2016-10-17 01:40:49 +00:00
|
|
|
ConstRawType asT() const
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
2016-10-17 01:40:49 +00:00
|
|
|
return mIsSentinel ? nullptr : static_cast<ConstRawType>(this);
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert aElem after this element, but don't check that this element is in
|
|
|
|
* the list. This is called by LinkedList::insertFront().
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void setNextUnsafe(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
LinkedListElement *listElem = static_cast<LinkedListElement*>(aElem);
|
|
|
|
MOZ_ASSERT(!listElem->isInList());
|
|
|
|
|
|
|
|
listElem->mNext = this->mNext;
|
|
|
|
listElem->mPrev = this;
|
|
|
|
this->mNext->mPrev = listElem;
|
|
|
|
this->mNext = listElem;
|
2016-10-17 01:40:49 +00:00
|
|
|
|
|
|
|
Traits::enterList(aElem);
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert aElem before this element, but don't check that this element is in
|
|
|
|
* the list. This is called by LinkedList::insertBack().
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void setPreviousUnsafe(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
LinkedListElement<T>* listElem = static_cast<LinkedListElement<T>*>(aElem);
|
|
|
|
MOZ_ASSERT(!listElem->isInList());
|
|
|
|
|
|
|
|
listElem->mNext = this;
|
|
|
|
listElem->mPrev = this->mPrev;
|
|
|
|
this->mPrev->mNext = listElem;
|
|
|
|
this->mPrev = listElem;
|
2016-10-17 01:40:49 +00:00
|
|
|
|
|
|
|
Traits::enterList(aElem);
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
2016-10-19 05:30:51 +00:00
|
|
|
/*
|
|
|
|
* Adjust mNext and mPrev for implementing move constructor and move
|
|
|
|
* assignment.
|
|
|
|
*/
|
|
|
|
void adjustLinkForMove(LinkedListElement<T>&& aOther)
|
|
|
|
{
|
|
|
|
if (!aOther.isInList()) {
|
|
|
|
mNext = this;
|
|
|
|
mPrev = this;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-17 01:40:49 +00:00
|
|
|
if (!mIsSentinel) {
|
|
|
|
Traits::enterList(this);
|
|
|
|
}
|
|
|
|
|
2016-10-19 05:30:51 +00:00
|
|
|
MOZ_ASSERT(aOther.mNext->mPrev == &aOther);
|
|
|
|
MOZ_ASSERT(aOther.mPrev->mNext == &aOther);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize |this| with |aOther|'s mPrev/mNext pointers, and adjust those
|
|
|
|
* element to point to this one.
|
|
|
|
*/
|
|
|
|
mNext = aOther.mNext;
|
|
|
|
mPrev = aOther.mPrev;
|
|
|
|
|
|
|
|
mNext->mPrev = this;
|
|
|
|
mPrev->mNext = this;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adjust |aOther| so it doesn't think it's in a list. This makes it
|
|
|
|
* safely destructable.
|
|
|
|
*/
|
|
|
|
aOther.mNext = &aOther;
|
|
|
|
aOther.mPrev = &aOther;
|
2016-10-17 01:40:49 +00:00
|
|
|
|
|
|
|
if (!mIsSentinel) {
|
|
|
|
Traits::exitList(&aOther);
|
|
|
|
}
|
2016-10-19 05:30:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-06 23:35:02 +00:00
|
|
|
LinkedListElement& operator=(const LinkedListElement<T>& aOther) = delete;
|
|
|
|
LinkedListElement(const LinkedListElement<T>& aOther) = delete;
|
2012-01-26 20:54:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class LinkedList
|
|
|
|
{
|
2014-06-13 06:34:08 +00:00
|
|
|
private:
|
2016-10-17 01:40:49 +00:00
|
|
|
typedef typename detail::LinkedListElementTraits<T> Traits;
|
|
|
|
typedef typename Traits::RawType RawType;
|
|
|
|
typedef typename Traits::ConstRawType ConstRawType;
|
|
|
|
typedef typename Traits::ClientType ClientType;
|
|
|
|
typedef typename Traits::ConstClientType ConstClientType;
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
LinkedListElement<T> sentinel;
|
|
|
|
|
|
|
|
public:
|
2015-10-07 21:19:42 +00:00
|
|
|
class Iterator {
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType mCurrent;
|
2015-10-07 21:19:42 +00:00
|
|
|
|
|
|
|
public:
|
2016-10-17 01:40:49 +00:00
|
|
|
explicit Iterator(RawType aCurrent) : mCurrent(aCurrent) {}
|
2015-10-07 21:19:42 +00:00
|
|
|
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType operator *() const {
|
2015-10-07 21:19:42 +00:00
|
|
|
return mCurrent;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Iterator& operator++() {
|
|
|
|
mCurrent = mCurrent->getNext();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(Iterator& aOther) const {
|
|
|
|
return mCurrent != aOther.mCurrent;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-10-20 09:01:11 +00:00
|
|
|
LinkedList() : sentinel(LinkedListElement<T>::NodeKind::Sentinel) { }
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
LinkedList(LinkedList<T>&& aOther)
|
|
|
|
: sentinel(mozilla::Move(aOther.sentinel))
|
|
|
|
{ }
|
|
|
|
|
2016-10-19 05:30:51 +00:00
|
|
|
LinkedList& operator=(LinkedList<T>&& aOther)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(isEmpty(), "Assigning to a non-empty list leaks elements in that list!");
|
|
|
|
sentinel = mozilla::Move(aOther.sentinel);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2016-02-16 21:06:20 +00:00
|
|
|
~LinkedList() {
|
|
|
|
MOZ_ASSERT(isEmpty(),
|
|
|
|
"failing this assertion means this LinkedList's creator is "
|
|
|
|
"buggy: it should have removed all this list's elements before "
|
|
|
|
"the list's destruction");
|
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add aElem to the front of the list.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void insertFront(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
/* Bypass setNext()'s this->isInList() assertion. */
|
|
|
|
sentinel.setNextUnsafe(aElem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add aElem to the back of the list.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
void insertBack(RawType aElem)
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
|
|
|
sentinel.setPreviousUnsafe(aElem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the first element of the list, or nullptr if the list is empty.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType getFirst() { return sentinel.getNext(); }
|
|
|
|
ConstRawType getFirst() const { return sentinel.getNext(); }
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the last element of the list, or nullptr if the list is empty.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
RawType getLast() { return sentinel.getPrevious(); }
|
|
|
|
ConstRawType getLast() const { return sentinel.getPrevious(); }
|
2014-06-13 06:34:08 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get and remove the first element of the list. If the list is empty,
|
|
|
|
* return nullptr.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
ClientType popFirst()
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
2016-10-17 01:40:49 +00:00
|
|
|
ClientType ret = sentinel.getNext();
|
2014-06-13 06:34:08 +00:00
|
|
|
if (ret) {
|
2016-10-17 01:40:49 +00:00
|
|
|
static_cast<LinkedListElement<T>*>(RawType(ret))->remove();
|
2012-05-29 18:44:31 +00:00
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get and remove the last element of the list. If the list is empty,
|
|
|
|
* return nullptr.
|
|
|
|
*/
|
2016-10-17 01:40:49 +00:00
|
|
|
ClientType popLast()
|
2014-06-13 06:34:08 +00:00
|
|
|
{
|
2016-10-17 01:40:49 +00:00
|
|
|
ClientType ret = sentinel.getPrevious();
|
2014-06-13 06:34:08 +00:00
|
|
|
if (ret) {
|
2016-10-17 01:40:49 +00:00
|
|
|
static_cast<LinkedListElement<T>*>(RawType(ret))->remove();
|
2012-01-26 20:54:03 +00:00
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if the list is empty, or false otherwise.
|
|
|
|
*/
|
|
|
|
bool isEmpty() const
|
|
|
|
{
|
|
|
|
return !sentinel.isInList();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove all the elements from the list.
|
|
|
|
*
|
|
|
|
* This runs in time linear to the list's length, because we have to mark
|
|
|
|
* each element as not in the list.
|
|
|
|
*/
|
|
|
|
void clear()
|
|
|
|
{
|
|
|
|
while (popFirst()) {
|
|
|
|
continue;
|
2012-01-26 20:54:03 +00:00
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
|
|
|
|
2015-10-07 21:19:42 +00:00
|
|
|
/*
|
|
|
|
* Allow range-based iteration:
|
|
|
|
*
|
|
|
|
* for (MyElementType* elt : myList) { ... }
|
|
|
|
*/
|
|
|
|
Iterator begin() {
|
|
|
|
return Iterator(getFirst());
|
|
|
|
}
|
|
|
|
Iterator end() {
|
|
|
|
return Iterator(nullptr);
|
|
|
|
}
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
/*
|
|
|
|
* Measures the memory consumption of the list excluding |this|. Note that
|
|
|
|
* it only measures the list elements themselves. If the list elements
|
|
|
|
* contain pointers to other memory blocks, those blocks must be measured
|
|
|
|
* separately during a subsequent iteration over the list.
|
|
|
|
*/
|
|
|
|
size_t sizeOfExcludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
size_t n = 0;
|
|
|
|
for (const T* t = getFirst(); t; t = t->getNext()) {
|
|
|
|
n += aMallocSizeOf(t);
|
2012-01-26 20:54:03 +00:00
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like sizeOfExcludingThis(), but measures |this| as well.
|
|
|
|
*/
|
|
|
|
size_t sizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const
|
|
|
|
{
|
|
|
|
return aMallocSizeOf(this) + sizeOfExcludingThis(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In a debug build, make sure that the list is sane (no cycles, consistent
|
|
|
|
* mNext/mPrev pointers, only one sentinel). Has no effect in release builds.
|
|
|
|
*/
|
|
|
|
void debugAssertIsSane() const
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
const LinkedListElement<T>* slow;
|
|
|
|
const LinkedListElement<T>* fast1;
|
|
|
|
const LinkedListElement<T>* fast2;
|
2012-01-26 20:54:03 +00:00
|
|
|
|
2012-03-15 20:30:41 +00:00
|
|
|
/*
|
2014-06-13 06:34:08 +00:00
|
|
|
* Check for cycles in the forward singly-linked list using the
|
|
|
|
* tortoise/hare algorithm.
|
2012-03-15 20:30:41 +00:00
|
|
|
*/
|
2014-06-13 06:34:08 +00:00
|
|
|
for (slow = sentinel.mNext,
|
|
|
|
fast1 = sentinel.mNext->mNext,
|
|
|
|
fast2 = sentinel.mNext->mNext->mNext;
|
|
|
|
slow != &sentinel && fast1 != &sentinel && fast2 != &sentinel;
|
|
|
|
slow = slow->mNext, fast1 = fast2->mNext, fast2 = fast1->mNext) {
|
|
|
|
MOZ_ASSERT(slow != fast1);
|
|
|
|
MOZ_ASSERT(slow != fast2);
|
2012-03-15 20:30:41 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
/* Check for cycles in the backward singly-linked list. */
|
|
|
|
for (slow = sentinel.mPrev,
|
|
|
|
fast1 = sentinel.mPrev->mPrev,
|
|
|
|
fast2 = sentinel.mPrev->mPrev->mPrev;
|
|
|
|
slow != &sentinel && fast1 != &sentinel && fast2 != &sentinel;
|
|
|
|
slow = slow->mPrev, fast1 = fast2->mPrev, fast2 = fast1->mPrev) {
|
|
|
|
MOZ_ASSERT(slow != fast1);
|
|
|
|
MOZ_ASSERT(slow != fast2);
|
2013-11-24 23:20:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-06-13 06:34:08 +00:00
|
|
|
* Check that |sentinel| is the only node in the list with
|
|
|
|
* mIsSentinel == true.
|
2013-11-24 23:20:12 +00:00
|
|
|
*/
|
2014-06-13 06:34:08 +00:00
|
|
|
for (const LinkedListElement<T>* elem = sentinel.mNext;
|
|
|
|
elem != &sentinel;
|
|
|
|
elem = elem->mNext) {
|
|
|
|
MOZ_ASSERT(!elem->mIsSentinel);
|
2013-11-24 23:20:12 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
/* Check that the mNext/mPrev pointers match up. */
|
|
|
|
const LinkedListElement<T>* prev = &sentinel;
|
|
|
|
const LinkedListElement<T>* cur = sentinel.mNext;
|
|
|
|
do {
|
|
|
|
MOZ_ASSERT(cur->mPrev == prev);
|
|
|
|
MOZ_ASSERT(prev->mNext == cur);
|
2012-06-04 03:36:43 +00:00
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
prev = cur;
|
|
|
|
cur = cur->mNext;
|
|
|
|
} while (cur != &sentinel);
|
2012-01-26 20:54:03 +00:00
|
|
|
#endif /* ifdef DEBUG */
|
2014-06-13 06:34:08 +00:00
|
|
|
}
|
2012-06-04 03:36:43 +00:00
|
|
|
|
2014-06-13 06:34:08 +00:00
|
|
|
private:
|
|
|
|
friend class LinkedListElement<T>;
|
2012-10-24 00:43:23 +00:00
|
|
|
|
2016-10-17 01:40:49 +00:00
|
|
|
void assertContains(const RawType aValue) const
|
2014-07-11 02:10:17 +00:00
|
|
|
{
|
2012-10-24 00:43:23 +00:00
|
|
|
#ifdef DEBUG
|
2016-10-17 01:40:49 +00:00
|
|
|
for (ConstRawType elem = getFirst(); elem; elem = elem->getNext()) {
|
2014-06-13 06:34:08 +00:00
|
|
|
if (elem == aValue) {
|
|
|
|
return;
|
2012-10-24 00:43:23 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-13 06:34:08 +00:00
|
|
|
MOZ_CRASH("element wasn't found in this list!");
|
|
|
|
#endif
|
|
|
|
}
|
2012-10-24 00:43:23 +00:00
|
|
|
|
2015-01-06 23:35:02 +00:00
|
|
|
LinkedList& operator=(const LinkedList<T>& aOther) = delete;
|
|
|
|
LinkedList(const LinkedList<T>& aOther) = delete;
|
2012-01-26 20:54:03 +00:00
|
|
|
};
|
|
|
|
|
2015-02-04 01:33:05 +00:00
|
|
|
template <typename T>
|
|
|
|
class AutoCleanLinkedList : public LinkedList<T>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~AutoCleanLinkedList()
|
|
|
|
{
|
|
|
|
while (T* element = this->popFirst()) {
|
|
|
|
delete element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-01-26 20:54:03 +00:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* mozilla_LinkedList_h */
|