XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
queue.hpp
Go to the documentation of this file.
1 
7 #if 0
8 #pragma once
9 #include <xtd/xtd.hpp>
10 
11 namespace xtd{
12  namespace concurrent{
13  template <typename _Ty> class queue{
14  public:
15  using value_type = _Ty;
16 
17  queue() : _head(nullptr), _tail(nullptr){}
18  queue(const queue&) = delete;
19  queue& operator=(const queue&) = delete;
20  ~queue(){
21  while(auto oNode = _head.load()){
22  _head.store(oNode->_next);
23  delete oNode;
24  }
25  }
26 
27  void push(const value_type& src){
28  auto oNode = new node(src);
29  do{
30  oNode->_next = _head.load();
31  }while (!_head.compare_exchange_strong(&oNode, oNode->_next));
32  node::pointer pNull = nullptr;
33  _tail.compare_exchange_strong(&pNull, oNode);
34  }
35  bool try_pop(value_type& ret){
36  do{
37  auto oNode = _head.load();
38  if (!oNode) return false;
39 
40  }while(!_head.)
41  }
42  value_type pop(){
43  auto oNode = _head.load();
44  if (!oNode){
45 
46  }
47  }
48 
49  protected:
50 
51  struct node{
52  using pointer = node *;
53  using atomic_ptr = std::atomic<pointer>;
54  value_type _value;
55  node * _next;
56  node(const value_type& data) : _data(data), _next(nullptr){}
57  node(value_type&& data) : _data(std::move(data)), _next(nullptr){}
58  };
59 
60  node::pointer pop_head(){
61  auto ori = _head.load();
62  if (ori == _tail.load()){
63  return nullptr;
64  }
65  _head.store(ori->_next);
66  return ori;
67  }
68 
69  node::atomic_ptr _head;
70  node::atomic_ptr _tail;
71  };
72  }
73 }
74 
75 #endif
host, target and build configurations and settings Various components are purpose built for specific ...