X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/c87e01d1a48d08773380367ef6c547a38a019061..9697f93d664e3bce7ec34e334a9488ccaa3ff685:/sync_queue.h?ds=inline diff --git a/sync_queue.h b/sync_queue.h index c2b24c3..c3f29e5 100644 --- a/sync_queue.h +++ b/sync_queue.h @@ -13,19 +13,21 @@ atomic<_Tp*>::store(_Tp* __v, memory_order __m) volatile # include #endif +#define SYNC_QUEUE_BUFSIZE 16 + template class sync_queue { public: sync_queue() { - node* n = new node(NULL, NULL); - head.store(n); - tail.store(n); + head_node = tail_node = new node(); + head.store(head_node->values); + tail.store(tail_node->values); } ~sync_queue() { - node* n = head.load(); + node* n = head_node; while (n != NULL) { node* prev = n; n = n->next; @@ -42,43 +44,65 @@ public: size_t size() const { size_t count = 0; - for (node* n = head.load()->next; n != NULL; n = n->next) - ++count; + if (head_node == tail_node) { + count = tail.load() - head.load(); + } else { + count = + (head_node->values + (SYNC_QUEUE_BUFSIZE - 1)) - head.load(); + for (node* n = head_node->next; n != tail_node; n = n->next) + count += SYNC_QUEUE_BUFSIZE; + count += tail.load() - tail_node->values; + } return count; } bool push(const T& val) { - node* old_tail = tail.load(); - node* n = new node(val, NULL); - old_tail->next = n; - tail.store(n); + T* old_tail = tail.load(); + T* new_tail; + if (old_tail == tail_node->values + (SYNC_QUEUE_BUFSIZE - 1)) { + tail_node->next = new node(); + tail_node = tail_node->next; + new_tail = tail_node->values; + } else { + new_tail = old_tail + 1; + } + *new_tail = val; + tail.store(new_tail); return (old_tail == head.load()); } bool try_pop(T& res) { - node* old_head = head.load(); - if (old_head == tail.load()) { // empty? + T* old_head = head.load(); + if (old_head == tail.load()) // empty? return false; + + T* new_head; + if (old_head == head_node->values + (SYNC_QUEUE_BUFSIZE - 1)) { + node* old_head_node = head_node; + head_node = head_node->next; + delete old_head_node; + new_head = head_node->values; } else { - node* new_head = old_head->next; - head.store(new_head); - delete old_head; - res = new_head->value; - return true; + new_head = old_head + 1; } + res = *new_head; + head.store(new_head); + return true; } private: struct node { - node(const T& v, node* n): value(v), next(n) { } - T value; + node(): next(NULL) { } + T values[SYNC_QUEUE_BUFSIZE]; node* next; }; - std::atomic head; - std::atomic tail; + node* head_node; + node* tail_node; + std::atomic head; + std::atomic tail; }; #endif // !SYNC_QUEUE_H