-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test_libgo.cpp
194 lines (157 loc) · 5.15 KB
/
main_test_libgo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#include <memory>
#include <chrono>
#include <co/all.h>
#include "core/message.h"
// uint64_t getCurMs() {
// return std::chrono::duration_cast<std::chrono::milliseconds >(std::chrono::system_clock::now().time_since_epoch()).count();
// }
// class Point {
// public:
// using ptr = std::shared_ptr<Point>;
// Point() {
// //LOG << "无参构造";
// }
// Point(int x, int y)
// : m_x(x)
// , m_y(y) {
// //LOG << "有参构造";
// }
// Point(const Point& other)
// : m_x(other.m_x)
// , m_y(other.m_y) {
// //LOG << "拷贝构造";
// }
// Point& operator=(const Point& other) {
// m_x = other.m_x;
// m_y = other.m_y;
// //LOG << "赋值构造";
// return *this;
// }
// Point(Point&& other)
// : m_x(std::exchange(other.m_x, 0))
// , m_y(std::exchange(other.m_y, 0)) {
// // LOG << "0移动构造";
// }
// Point& operator=(Point&& other) {
// m_x = std::exchange(other.m_x, 0);
// m_y = std::exchange(other.m_y, 0);
// //LOG << "1移动构造";
// return *this;
// }
// int m_x;
// int m_y;
// };
int main(int argc, char* argv[]) {
// GLog glog(argv[0]);
// auto thread_num = 8;
// auto total_num = 100000;
// auto pnum = 10;
// auto cnum = 1;
// auto pcount = total_num / pnum;
// auto ccount = total_num / cnum;
// uint64_t sum = 0;
// //co_chan<Point::ptr> points(total_num * 2);
// ///co_chan<Point> points(total_num * 2);
// co_chan<Eayew::Message> points(total_num * 2);
// co_chan<void> cw(pnum + cnum);
// auto start_ts = getCurMs();
// WLOG << "start ts " << start_ts << " thread_num " << thread_num << " total num " << total_num;
// //auto p = std::make_shared<Point>(1, 1);
// //auto p = Point(1, 1);
// for (auto i = 0; i < pnum; ++i) {
// go [&, i] {
// for (auto j = 0; j < pcount; ++j) {
// auto val = i * pcount + j;
// Eayew::Message msg;
// //msg.writeData("123");
// points << std::move(msg);
// }
// cw << nullptr;
// auto end_ts = getCurMs();
// WLOG << "produce index " << i << " end ts " << end_ts << " dur(ms) " << end_ts - start_ts << " size " << points.size();
// };
// }
// // co::Scheduler* sched = co::Scheduler::Create();
// // std::thread t([sched]{ sched->Start(1); });
// // t.detach();
// for (auto i = 0; i < cnum; ++i) {
// //go co_scheduler(sched) [&] {
// go [&, i] {
// for (auto j = 0; j < ccount; ++j) {
// Eayew::Message p;
// points >> p;
// //sum += p.m_x;
// }
// cw << nullptr;
// auto end_ts = getCurMs();
// WLOG << "consume index " << i << " end ts " << end_ts << " dur(ms) " << end_ts - start_ts << " sum " << sum << " size " << points.size();
// };
// }
// go [&] {
// for (auto i = 0; i < pnum + cnum; ++i) {
// cw >> nullptr;
// }
// auto end_ts = getCurMs();
// WLOG << "produce & consume end ts " << end_ts << " dur(ms) " << end_ts - start_ts << " sum " << sum << " size " << points.size();
// };
// co_sched.Start(thread_num);
return 0;
}
// package main
// import (
// "sync"
// "time"
// "github.com/astaxie/beego/logs"
// )
// type Point struct {
// X int
// Y int
// Z int
// }
// func NewPoint(x, y, z int) *Point {
// p := &Point{
// X: x,
// Y: y,
// Z: z,
// }
// return p
// }
// func main() {
// //logs.Info("begin...")
// points := make(chan Point, 102400)
// total_num := 1000000
// pnum := 10
// cnum := 1
// pcount := total_num / pnum
// ccount := total_num / cnum
// var sum uint64 = 0
// var wg sync.WaitGroup
// wg.Add(pnum + cnum)
// start_ts := time.Now().UnixMilli()
// logs.Info("start ts ", start_ts, " total num ", total_num)
// for i := 0; i < pnum; i++ {
// go func(i, pcount int) {
// for j := 0; j < pcount; j++ {
// v := i*pcount + j
// points <- Point{v, v, v}
// }
// wg.Done()
// end_ts := time.Now().UnixMilli()
// logs.Info("produce index ", i, " end ts ", time.Now().UnixMilli(), " dur ", end_ts-start_ts, " points len ", len(points))
// }(i, pcount)
// }
// for i := 0; i < cnum; i++ {
// go func(i, ccount int) {
// for j := 0; j < ccount; j++ {
// p := <-points
// sum += uint64(p.X)
// }
// wg.Done()
// end_ts := time.Now().UnixMilli()
// logs.Info("consume index ", i, " end ts ", time.Now().UnixMilli(), " dur ", end_ts-start_ts, " points len ", len(points), " sum ", sum)
// }(i, ccount)
// }
// wg.Wait()
// end_ts := time.Now().UnixMilli()
// logs.Info("produce & consume end ts ", time.Now().UnixMilli(), " dur ", end_ts-start_ts, " sum ", sum)
// }