GCC Code Coverage Report


Directory: ./
File: demos/cond_var_pong.cpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 0 32 0.0%
Branches: 0 74 0.0%

Line Branch Exec Source
1 #include <unistd.h>
2 #include <atomic>
3 #include <iostream>
4 #include <thread>
5 #include <vector>
6
7 #include "shared_memory/condition_variable.hpp"
8 #include "shared_memory/lock.hpp"
9 #include "shared_memory/mutex.hpp"
10
11 #define MUTEX_ID "sm_cond_var_demo_mutex"
12 #define CV_SEGMENT_ID "sm_cond_var_demo_segment"
13 #define RUNNING_SEGMENT_ID "sm_running_demo_segment"
14 #define RUNNING_OBJECT_ID "sm_running_demo_object"
15 #define VALUE 1
16
17 void update_vector()
18 {
19 std::vector<int> v(1000000);
20 shared_memory::Mutex::clean(MUTEX_ID);
21 shared_memory::Mutex mutex(MUTEX_ID);
22 shared_memory::ConditionVariable condition(CV_SEGMENT_ID, true);
23
24 // starting ping
25 std::cout << "\nstarting PING...\n";
26 condition.notify_one();
27 std::cout << "\nstarting PONG...\n";
28
29 for (unsigned int i = 0; i < 10000; i++)
30 {
31 {
32 shared_memory::Lock lock(mutex);
33 condition.wait(lock);
34
35 std::cout << "PONG ";
36 for (unsigned int j = 0; j < v.size(); j++)
37 {
38 v[j] = VALUE;
39 }
40
41 usleep(500);
42
43 for (unsigned int j = 0; j < v.size(); j++)
44 {
45 if (v[j] != VALUE)
46 {
47 std::cout << "\n--- damn, the vector was not locked !\n";
48 break;
49 }
50 if (j < 10)
51 {
52 std::cout << " " << v[j];
53 }
54 }
55 std::cout << "\n";
56 }
57
58 condition.notify_one();
59 }
60
61 // stopping ping
62 shared_memory::set<bool>(RUNNING_SEGMENT_ID, RUNNING_OBJECT_ID, false);
63 }
64
65 int main()
66 {
67 bool go_ahead;
68
69 try
70 {
71 // ping should be started first.
72 // if it is starting, below will not fail
73 bool foo;
74 shared_memory::get<bool>(RUNNING_SEGMENT_ID, RUNNING_OBJECT_ID, foo);
75 go_ahead = true;
76 }
77 catch (...)
78 {
79 std::cout << "\nstart sm_cond_var_ping first !\n\n";
80 }
81
82 if (go_ahead)
83 {
84 shared_memory::set<bool>(RUNNING_SEGMENT_ID, RUNNING_OBJECT_ID, true);
85 update_vector();
86 }
87 }
88