/** * * \section COPYRIGHT * * Copyright 2013-2021 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ #ifndef SRSRAN_INTRUSIVE_LIST_H #define SRSRAN_INTRUSIVE_LIST_H #include #include namespace srsran { struct default_intrusive_tag; /// Base class of T, where T is a node of intrusive_forward_list template struct intrusive_forward_list_element { intrusive_forward_list_element* next_node = nullptr; }; /** * Forward linked list of pointers of type "T" that doesn't rely on allocations. * It leverages each node's internal pointer (thus intrusive) to store the next node of the list. * It supports push_front/pop_front, iteration, clear, etc. * @tparam T node type. It must be a subclass of intrusive_forward_list_element * @tparam Tag useful to differentiate multiple intrusive lists in the same node */ template class intrusive_forward_list { using node_t = intrusive_forward_list_element; template class iterator_impl { using elem_t = typename std::conditional::value, const node_t, node_t>::type; public: using iterator_category = std::forward_iterator_tag; using value_type = U; using difference_type = std::ptrdiff_t; using pointer = U*; using reference = U&; explicit iterator_impl(elem_t* node_ = nullptr) : node(node_) {} iterator_impl& operator++() { node = node->next_node; return *this; } pointer operator->() { return static_cast(node); } reference operator*() { return static_cast(*node); } bool operator==(const iterator_impl& other) const { return node == other.node; } bool operator!=(const iterator_impl& other) const { return node != other.node; } private: elem_t* node; }; public: using iterator = iterator_impl; using const_iterator = iterator_impl; intrusive_forward_list() { static_assert(std::is_base_of::value, "Provided template argument T must have intrusive_forward_list_element as base class"); } intrusive_forward_list(const intrusive_forward_list&) = default; intrusive_forward_list(intrusive_forward_list&& other) noexcept : node(other.node) { other.node = nullptr; } intrusive_forward_list& operator=(const intrusive_forward_list&) = default; intrusive_forward_list& operator =(intrusive_forward_list&& other) noexcept { node = other.node; other.node = nullptr; return *this; } T& front() const { return *static_cast(node); } void push_front(T* t) { node_t* new_head = static_cast(t); new_head->next_node = node; node = new_head; } T* pop_front() { node_t* ret = node; node = node->next_node; return static_cast(ret); } void clear() { while (node != nullptr) { node_t* torem = node; node = node->next_node; torem->next_node = nullptr; } } bool empty() const { return node == nullptr; } iterator begin() { return iterator(node); } iterator end() { return iterator(nullptr); } const_iterator begin() const { return const_iterator(node); } const_iterator end() const { return const_iterator(nullptr); } private: node_t* node = nullptr; }; template struct intrusive_double_linked_list_element { intrusive_double_linked_list_element* next_node = nullptr; intrusive_double_linked_list_element* prev_node = nullptr; }; /** * Double Linked List of pointers of type "T" that doesn't rely on allocations. * Instead, it leverages T's internal pointers to store the next and previous nodes * @tparam T node type. Must be a subclass of intrusive_double_linked_list_element * @tparam Tag tag of nodes. Useful to differentiate separate intrusive lists inside the same T node */ template class intrusive_double_linked_list { using node_t = intrusive_double_linked_list_element; template class iterator_impl { using elem_t = typename std::conditional::value, const node_t, node_t>::type; public: using iterator_category = std::bidirectional_iterator_tag; using value_type = U; using difference_type = std::ptrdiff_t; using pointer = U*; using reference = U&; explicit iterator_impl(elem_t* node_ = nullptr) : node(node_) {} iterator_impl& operator++() { node = node->next_node; return *this; } iterator_impl& operator--() { node = node->prev_node; return *this; } pointer operator->() { return static_cast(node); } reference operator*() { return static_cast(*node); } bool operator==(const iterator_impl& other) const { return node == other.node; } bool operator!=(const iterator_impl& other) const { return node != other.node; } private: elem_t* node; }; public: using iterator = iterator_impl; using const_iterator = iterator_impl; intrusive_double_linked_list() { static_assert(std::is_base_of::value, "Provided template argument T must have intrusive_forward_list_element as base class"); } intrusive_double_linked_list(const intrusive_double_linked_list&) = default; intrusive_double_linked_list(intrusive_double_linked_list&& other) noexcept : node(other.node) { other.node = nullptr; } intrusive_double_linked_list& operator=(const intrusive_double_linked_list&) = default; intrusive_double_linked_list& operator=(intrusive_double_linked_list&& other) noexcept { node = other.node; other.node = nullptr; return *this; } ~intrusive_double_linked_list() { clear(); } T& front() const { return *static_cast(node); } void push_front(T* t) { node_t* new_head = static_cast(t); new_head->prev_node = nullptr; new_head->next_node = node; if (node != nullptr) { node->prev_node = new_head; } node = new_head; } void pop(T* t) { node_t* to_rem = static_cast(t); if (to_rem == node) { node = to_rem->next_node; } if (to_rem->prev_node != nullptr) { to_rem->prev_node->next_node = to_rem->next_node; } if (to_rem->next_node != nullptr) { to_rem->next_node->prev_node = to_rem->prev_node; } to_rem->next_node = nullptr; to_rem->prev_node = nullptr; } void pop_front() { pop(static_cast(node)); } void clear() { while (node != nullptr) { node_t* torem = node; node = node->next_node; torem->next_node = nullptr; torem->prev_node = nullptr; } } bool empty() const { return node == nullptr; } iterator begin() { return iterator(node); } iterator end() { return iterator(nullptr); } const_iterator begin() const { return const_iterator(node); } const_iterator end() const { return const_iterator(nullptr); } private: node_t* node = nullptr; }; } // namespace srsran #endif // SRSRAN_INTRUSIVE_LIST_H