atomic_shared_ptr_test.cpp
1 //#define msecsleep(x) (x)
2 
3 //#include "xtime.h"
4 
5 #include "support.h"
6 
7 #include <stdint.h>
8 #include <thread>
9 
10 #include "atomic_smart_ptr.h"
11 #include "xthread.cpp"
12 
13 atomic<int> objcnt = 0;
14 atomic<long> total = 0;
15 atomic<int> xxx = 0;
16 
17 //class A : public atomic_countable<A> {
18 class A {
19 public:
20  A(long x) : m_x(x) {
21 // fprintf(stdout, "c", x);
22  ++objcnt;
23  total += x;
24  if(x < 0)
25  fprintf(stderr, " ??%d", (int)m_x);
26  }
27  virtual ~A() {
28 // fprintf(stdout, "d", m_x);
29  --objcnt;
30  total -= m_x;
31  assert(objcnt >= 0);
32  if(total < 0)
33  fprintf(stderr, " ?%d,%d", (int)m_x, (int)total);
34  }
35  virtual long x() const {return m_x;}
36 
37 long m_x;
38 };
39 class B : public A {
40 public:
41  B(long x) : A(x) {
42  ++objcnt;
43 // fprintf(stdout, "C");
44  }
45  ~B() {
46  --objcnt;
47 // fprintf(stdout, "D");
48  }
49  virtual long x() const {return -m_x;}
50  virtual long xorg() const {return m_x;}
51 };
52 
53 
54 atomic_shared_ptr<A> gp1, gp2, gp3;
55 
56 void
57 start_routine() {
58  printf("start\n");
59  for(int i = 0; i < 400000; i++) {
60  local_shared_ptr<A> p1(new A(4));
61  assert(p1);
62  assert(p1.use_count() == 1);
63  local_shared_ptr<A> p2(new B(9));
65  assert(!p3);
66 
67  p2.swap(gp1);
68  gp2.reset(new A(32));
69  gp3.reset(new A(1001));
70 
71  gp3.reset();
72  gp1 = std::move(p2);
73  assert( !p2);
74  p2 = gp1;
75  gp1 = gp1;
76  p2.swap(p3);
77 
78  for(;;) {
79  local_shared_ptr<A> p(gp1);
80  if(p)
81  xxx = p->x();
82  if(gp1.compareAndSet(p, p1)) {
83  break;
84  }
85 // printf("f");
86  }
87  for(local_shared_ptr<A> p(gp3);;) {
88  if(p)
89  xxx = p->x();
90  if(gp3.compareAndSwap(p, p1)) {
91  break;
92  }
93 // printf("f");
94  }
95  }
96  printf("finish\n");
97  return;
98 }
99 
100 #define NUM_THREADS 4
101 
102 int
103 main(int argc, char **argv)
104 {
105  std::thread threads[NUM_THREADS];
106 
107  for(int i = 0; i < NUM_THREADS; i++) {
108  std::thread th( &start_routine);
109  threads[i].swap(th);
110  }
111  for(int i = 0; i < NUM_THREADS; i++) {
112  threads[i].join();
113  }
114  printf("join\n");
115  gp1.reset();
116  gp2.reset();
117  gp3.reset();
118  if(objcnt != 0) {
119  printf("failed\n");
120  return -1;
121  }
122  if(total != 0) {
123  printf("failed\n");
124  return -1;
125  }
126  printf("succeeded\n");
127  return 0;
128 }

Generated for KAME4 by  doxygen 1.8.3