36#ifndef IMT_BASE_CORE_UTIL_LINKED_LIST_H
37#define IMT_BASE_CORE_UTIL_LINKED_LIST_H
64template<
typename T, LinkedListType type = LinkedListType::SINGLE>
144template<
typename Node,
typename T =
typename Node::ItemType,
typename Allocator = PoolAllocator<Node>, LinkedListType type = LinkedListType::SINGLE>
177 if (m_pNode ==
nullptr) {
193 return (lhs.m_pNode == rhs.m_pNode);
204 return !(lhs == rhs);
214 if (m_pNode !=
nullptr) {
215 m_pNode = m_pNode->m_pNext;
229 template<typename N = Node, typename std::enable_if<N::LIST_TYPE == LinkedListType::DOUBLE, bool>::type =
true>
231 if (m_pNode !=
nullptr) {
232 m_pNode = m_pNode->m_pPrev;
272 explicit operator bool() const noexcept {
273 return m_pNode !=
nullptr;
316 m_allocator {listAllocator},
317 m_listSize {listSize},
326 return Iterator(
const_cast<Node*
>(m_pHead));
355 template<typename N = Node, typename std::enable_if<N::LIST_TYPE == LinkedListType::SINGLE, bool>::type =
true>
356 void push_back(
typename N::ItemType
const& e)
noexcept {
357 Node*
const pNewNode {m_allocator.
allocate()};
358 if (pNewNode ==
nullptr) {
363 bool const headIsNullptr {m_pHead ==
nullptr};
364 bool const tailIsNullptr {m_pTail ==
nullptr};
365 if (!headIsNullptr && tailIsNullptr) {
369 pNewNode->m_item = e;
370 pNewNode->m_pNext =
nullptr;
372 if (m_pHead ==
nullptr) {
377 m_pTail->m_pNext = pNewNode;
378 m_pTail = m_pTail->m_pNext;
390 template<typename N = Node, typename std::enable_if<N::LIST_TYPE == LinkedListType::DOUBLE, bool>::type =
true>
391 void push_back(
typename N::ItemType
const& e)
noexcept {
392 Node*
const pNewNode {m_allocator.
allocate()};
393 if (pNewNode ==
nullptr) {
398 bool const headIsNullptr {m_pHead ==
nullptr};
399 bool const tailIsNullptr {m_pTail ==
nullptr};
400 if (!headIsNullptr && tailIsNullptr) {
404 pNewNode->m_item = e;
405 pNewNode->m_pNext =
nullptr;
407 if (m_pHead ==
nullptr) {
408 pNewNode->m_pPrev =
nullptr;
414 pNewNode->m_pPrev =
const_cast<Node*
>(m_pTail);
415 m_pTail->m_pNext = pNewNode;
416 m_pTail = m_pTail->m_pNext;
430 Node* pOldNode {
const_cast<Node*
>(m_pHead)};
431 m_pHead = m_pHead->m_pNext;
445 return *
const_cast<T*
>(&m_pHead->m_item);
457 return static_cast<T
>(m_pHead->m_item);
467 return m_currentSize;
477 return m_currentSize == 0;
487 return m_listSize == m_currentSize;
496 template<typename I = ItemType, typename N = Node, typename std::enable_if<N::LIST_TYPE == LinkedListType::DOUBLE, bool>::type =
true>
499 while (it !=
end()) {
500 if (it->m_item == item) {
501 if ((it.getPtr() == m_pTail) && (it.getPtr() == m_pHead)) {
505 else if (it.getPtr() == m_pTail) {
506 if (m_pTail !=
nullptr) {
507 m_pTail = m_pTail->m_pPrev;
513 else if (it.getPtr() == m_pHead) {
514 if (m_pHead !=
nullptr) {
515 m_pHead = m_pHead->m_pNext;
522 it->m_pPrev->m_pNext = it->m_pNext;
523 it->m_pNext->m_pPrev = it->m_pPrev;
540 template<
typename TT>
543 while (it !=
cend()) {
544 if (it->m_item == item) {
558 size_t const m_listSize;
563 Node
volatile* m_pHead;
568 Node
volatile* m_pTail;
571 size_t m_currentSize;
void ASSERT_DEBUG1(bool const condition, char_t const *const pMessage) noexcept
"Assert for debugging only" (ASSERT_DEBUG).
void ASSERT_EX(bool const condition) noexcept
void ASSERT_DEBUG(bool const condition) noexcept
LinkedList class iterator.
Iterator & operator--() noexcept
Decrements operator.
Node const & operator*() const noexcept
Gets the current Node as const reference.
Node * operator->() const noexcept
Dereferencing operator.
Iterator & operator=(Node *ptr) &noexcept
Asignment operator.
Node & operator*() noexcept
Gets the current Node as reference.
Node * getPtr() const noexcept
Gets current pointer.
friend bool operator==(Iterator const &lhs, Iterator const &rhs) noexcept
Equal operator.
Node const * getConstPtr() const noexcept
Gets current pointer as const.
friend bool operator!=(Iterator const &lhs, Iterator const &rhs) noexcept
Not equal operator.
Iterator & operator++() noexcept
Increments operator.
Iterator(Node *ptr=nullptr) noexcept
Constructor.
bool empty() const noexcept
Returns if the list is empty.
void pop_front() noexcept
Removes the front element of the list.
typename Node::ItemType ItemType
List item type.
bool contains(const TT &item) const noexcept
Checks if a certain item0 is in the list.
LinkedList(PoolAllocator< Node > &listAllocator, size_t listSize) noexcept
Constructor.
typename LinkedList< Node const >::Iterator ConstIterator
Iterator for the list.
ItemType const & front() const noexcept
Returns the front element of the list.
Iterator begin() noexcept
ConstIterator cend() const noexcept
ItemType & front() noexcept
Returns the front element of the list.
ConstIterator cbegin() const noexcept
void push_back(typename N::ItemType const &e) noexcept
Adds a new element to the back of the SINGLE list.
bool full() const noexcept
Returns if the list is full.
void remove(I const &item) noexcept
Removes a valid item from the list.
size_t size() const noexcept
Returns the current number of elements in the linked list.
fixed size pool allocator
T * allocate() noexcept
Instantiates an object out of the memory pool.
void deallocate(T *const obj) noexcept
Deallocates the pool memory pointed by obj.
LinkedListType
Enum for the linked list types.
@ DOUBLE
use this enumerator to use the single linked list implementation
This is a application specific file which is used to configure Imt.Base.Core.Math.
ListNode * m_pNext
Pointer to next node.
T ItemType
Item type definition.
ListNode * m_pPrev
Pointer to previous node.
T ItemType
Item type definition.
ListNode * m_pNext
Pointer to next node.
Node used for LinkedList class.