|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- /*
- * High-level, real-time safe, templated, C++ doubly-linked list
- * Copyright (C) 2013 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the GPL.txt file
- */
-
- #ifndef __RT_LIST_HPP__
- #define __RT_LIST_HPP__
-
- #include "CarlaUtils.hpp"
-
- extern "C" {
- #include "rtmempool/list.h"
- #include "rtmempool/rtmempool.h"
- }
-
- // Declare non copyable and prevent heap allocation
- #define LIST_DECLARATIONS(ClassName) \
- ClassName(ClassName&); \
- ClassName(const ClassName&); \
- ClassName& operator=(const ClassName&); \
- static void* operator new (size_t) { return nullptr; } \
- static void operator delete (void*) {}
-
- typedef struct list_head k_list_head;
-
- // -----------------------------------------------------------------------
- // Abstract List class
- // _allocate() and _deallocate are virtual calls provided by subclasses
-
- template<typename T>
- class List
- {
- protected:
- struct Data {
- T value;
- k_list_head siblings;
- };
-
- List()
- : kDataSize(sizeof(Data)),
- fCount(0)
- {
- _init();
- }
-
- virtual ~List()
- {
- CARLA_ASSERT(fCount == 0);
- }
-
- public:
- class Itenerator {
- public:
- Itenerator(const k_list_head* queue)
- : kQueue(queue),
- fEntry(queue->next),
- fEntry2(fEntry->next),
- fData(nullptr)
- {
- CARLA_ASSERT(kQueue != nullptr);
- CARLA_ASSERT(fEntry != nullptr);
- CARLA_ASSERT(fEntry2 != nullptr);
- }
-
- bool valid()
- {
- return (fEntry != kQueue);
- }
-
- void next()
- {
- fEntry = fEntry2;
- fEntry2 = fEntry->next;
- }
-
- T& operator*()
- {
- fData = list_entry(fEntry, Data, siblings);
- CARLA_ASSERT(fData != nullptr);
- return fData->value;
- }
-
- private:
- const k_list_head* const kQueue;
- k_list_head* fEntry;
- k_list_head* fEntry2;
- Data* fData;
-
- friend class List;
- };
-
- Itenerator begin() const
- {
- return Itenerator(&fQueue);
- }
-
- void clear()
- {
- if (fCount != 0)
- {
- k_list_head* entry;
- k_list_head* entry2;
-
- list_for_each_safe(entry, entry2, &fQueue)
- {
- if (Data* data = list_entry(entry, Data, siblings))
- _deallocate(data);
- }
- }
-
- _init();
- }
-
- size_t count() const
- {
- return fCount;
- }
-
- bool isEmpty() const
- {
- return (fCount == 0);
- }
-
- bool append(const T& value)
- {
- if (Data* const data = _allocate())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add_tail(&data->siblings, &fQueue);
- ++fCount;
- return true;
- }
-
- return false;
- }
-
- bool appendAt(const T& value, const Itenerator& it)
- {
- if (Data* const data = _allocate())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add_tail(&data->siblings, it.fEntry->next);
- ++fCount;
- return true;
- }
-
- return false;
- }
-
- bool insert(const T& value)
- {
- if (Data* const data = _allocate())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add(&data->siblings, &fQueue);
- ++fCount;
- return true;
- }
-
- return false;
- }
-
- bool insertAt(const T& value, const Itenerator& it)
- {
- if (Data* const data = _allocate())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add(&data->siblings, it.fEntry->prev);
- ++fCount;
- return true;
- }
-
- return false;
- }
-
- T& getAt(const size_t index, const bool remove = false)
- {
- if (fCount == 0 || index >= fCount)
- return _getEmpty();
-
- size_t i = 0;
- Data* data = nullptr;
- k_list_head* entry;
- k_list_head* entry2;
-
- list_for_each_safe(entry, entry2, &fQueue)
- {
- if (index != i++)
- continue;
-
- data = list_entry(entry, Data, siblings);
-
- if (remove)
- {
- --fCount;
- list_del(entry);
-
- if (data != nullptr)
- _deallocate(data);
- }
-
- break;
- }
-
- CARLA_ASSERT(data != nullptr);
-
- return (data != nullptr) ? data->value : _getEmpty();
- }
-
- T& getFirst(const bool remove = false)
- {
- return _getFirstOrLast(true, remove);
- }
-
- T& getLast(const bool remove = false)
- {
- return _getFirstOrLast(false, remove);
- }
-
- void remove(Itenerator& it)
- {
- CARLA_ASSERT(it.fEntry != nullptr);
- CARLA_ASSERT(it.fData != nullptr);
-
- if (it.fEntry != nullptr && it.fData != nullptr)
- {
- --fCount;
- list_del(it.fEntry);
- _deallocate(it.fData);
- }
- }
-
- bool removeOne(const T& value)
- {
- Data* data = nullptr;
- k_list_head* entry;
- k_list_head* entry2;
-
- list_for_each_safe(entry, entry2, &fQueue)
- {
- data = list_entry(entry, Data, siblings);
-
- CARLA_ASSERT(data != nullptr);
-
- if (data != nullptr && data->value == value)
- {
- --fCount;
- list_del(entry);
- _deallocate(data);
- break;
- }
- }
-
- return (data != nullptr);
- }
-
- void removeAll(const T& value)
- {
- Data* data;
- k_list_head* entry;
- k_list_head* entry2;
-
- list_for_each_safe(entry, entry2, &fQueue)
- {
- data = list_entry(entry, Data, siblings);
-
- CARLA_ASSERT(data != nullptr);
-
- if (data != nullptr && data->value == value)
- {
- --fCount;
- list_del(entry);
- _deallocate(data);
- }
- }
- }
-
- void spliceAppend(List& list, const bool init = false)
- {
- if (init)
- {
- list_splice_tail_init(&fQueue, &list.fQueue);
- list.fCount += fCount;
- fCount = 0;
- }
- else
- {
- list_splice_tail(&fQueue, &list.fQueue);
- list.fCount += fCount;
- }
- }
-
- void spliceInsert(List& list, const bool init = false)
- {
- if (init)
- {
- list_splice_init(&fQueue, &list.fQueue);
- list.fCount += fCount;
- fCount = 0;
- }
- else
- {
- list_splice(&fQueue, &list.fQueue);
- list.fCount += fCount;
- }
- }
-
- protected:
- const size_t kDataSize;
- size_t fCount;
- k_list_head fQueue;
-
- virtual Data* _allocate() = 0;
- virtual void _deallocate(Data* const dataPtr) = 0;
-
- private:
- void _init()
- {
- fCount = 0;
- INIT_LIST_HEAD(&fQueue);
- }
-
- T& _getFirstOrLast(const bool first, const bool remove)
- {
- if (fCount == 0)
- return _getEmpty();
-
- k_list_head* const entry = first ? fQueue.next : fQueue.prev;
- Data* const data = list_entry(entry, Data, siblings);
-
- CARLA_ASSERT(data != nullptr);
-
- if (data == nullptr)
- return _getEmpty();
-
- T& ret = data->value;
-
- if (data != nullptr && remove)
- {
- --fCount;
- list_del(entry);
- _deallocate(data);
- }
-
- return ret;
- }
-
- T& _getEmpty()
- {
- static T value;
- static bool reset = true;
-
- if (reset)
- {
- reset = false;
- carla_zeroStruct<T>(value);
- }
-
- return value;
- }
-
- LIST_DECLARATIONS(List)
- };
-
- // -----------------------------------------------------------------------
- // Realtime safe list
-
- template<typename T>
- class RtList : public List<T>
- {
- public:
- // -------------------------------------------------------------------
- // RtMemPool C++ class
-
- class Pool
- {
- public:
- Pool(const size_t minPreallocated, const size_t maxPreallocated)
- : fHandle(nullptr),
- kDataSize(sizeof(typename List<T>::Data))
- {
- resize(minPreallocated, maxPreallocated);
- }
-
- ~Pool()
- {
- if (fHandle != nullptr)
- {
- rtsafe_memory_pool_destroy(fHandle);
- fHandle = nullptr;
- }
- }
-
- void* allocate_atomic()
- {
- return rtsafe_memory_pool_allocate_atomic(fHandle);
- }
-
- void* allocate_sleepy()
- {
- return rtsafe_memory_pool_allocate_sleepy(fHandle);
- }
-
- void deallocate(void* const dataPtr)
- {
- rtsafe_memory_pool_deallocate(fHandle, dataPtr);
- }
-
- void resize(const size_t minPreallocated, const size_t maxPreallocated)
- {
- if (fHandle != nullptr)
- {
- rtsafe_memory_pool_destroy(fHandle);
- fHandle = nullptr;
- }
-
- rtsafe_memory_pool_create(&fHandle, nullptr, kDataSize, minPreallocated, maxPreallocated);
- CARLA_ASSERT(fHandle != nullptr);
- }
-
- bool operator==(const Pool& pool) const
- {
- return (fHandle == pool.fHandle && kDataSize == pool.kDataSize);
- }
-
- bool operator!=(const Pool& pool) const
- {
- return (fHandle != pool.fHandle || kDataSize != pool.kDataSize);
- }
-
- private:
- RtMemPool_Handle fHandle;
- const size_t kDataSize;
- };
-
- // -------------------------------------------------------------------
- // Now the actual list code
-
- RtList(Pool& memPool)
- : fMemPool(memPool)
- {
- }
-
- ~RtList() override
- {
- }
-
- void append_sleepy(const T& value)
- {
- if (typename List<T>::Data* const data = _allocate_sleepy())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add_tail(&data->siblings, &this->fQueue);
- ++this->fCount;
- }
- }
-
- void insert_sleepy(const T& value)
- {
- if (typename List<T>::Data* const data = _allocate_sleepy())
- {
- std::memcpy(&data->value, &value, sizeof(T));
- list_add(&data->siblings, &this->fQueue);
- ++this->fCount;
- }
- }
-
- void resize(const size_t minPreallocated, const size_t maxPreallocated)
- {
- this->clear();
-
- fMemPool.resize(minPreallocated, maxPreallocated);
- }
-
- void spliceAppend(RtList& list, const bool init = false)
- {
- CARLA_ASSERT(fMemPool == list.fMemPool);
-
- List<T>::spliceAppend(list, init);
- }
-
- void spliceInsert(RtList& list, const bool init = false)
- {
- CARLA_ASSERT(fMemPool == list.fMemPool);
-
- List<T>::spliceInsert(list, init);
- }
-
- private:
- Pool& fMemPool;
-
- typename List<T>::Data* _allocate() override
- {
- return _allocate_atomic();
- }
-
- typename List<T>::Data* _allocate_atomic()
- {
- return (typename List<T>::Data*)fMemPool.allocate_atomic();
- }
-
- typename List<T>::Data* _allocate_sleepy()
- {
- return (typename List<T>::Data*)fMemPool.allocate_sleepy();
- }
-
- void _deallocate(typename List<T>::Data* const dataPtr) override
- {
- fMemPool.deallocate(dataPtr);
- }
-
- LIST_DECLARATIONS(RtList)
- };
-
- // -----------------------------------------------------------------------
- // Non-Realtime list, using malloc/free methods
-
- template<typename T>
- class NonRtList : public List<T>
- {
- public:
- NonRtList()
- {
- }
-
- ~NonRtList() override
- {
- }
-
- private:
- typename List<T>::Data* _allocate() override
- {
- return (typename List<T>::Data*)std::malloc(this->kDataSize);
- }
-
- void _deallocate(typename List<T>::Data* const dataPtr) override
- {
- CARLA_ASSERT(dataPtr != nullptr);
- std::free(dataPtr);
- }
-
- LIST_DECLARATIONS(NonRtList)
- };
-
- // -----------------------------------------------------------------------
- // Non-Realtime list, using new/delete methods
-
- template<typename T>
- class NonRtListNew : public List<T>
- {
- public:
- NonRtListNew()
- {
- }
-
- ~NonRtListNew() override
- {
- }
-
- private:
- typename List<T>::Data* _allocate() override
- {
- return new typename List<T>::Data;
- }
-
- void _deallocate(typename List<T>::Data* const dataPtr) override
- {
- CARLA_ASSERT(dataPtr != nullptr);
- delete dataPtr;
- }
-
- LIST_DECLARATIONS(NonRtListNew)
- };
-
- // -----------------------------------------------------------------------
-
- #endif // __RT_LIST_HPP__
|