Line |
Branch |
Exec |
Source |
1 |
|
|
/** |
2 |
|
|
* @file demo_write_array.cpp |
3 |
|
|
* @author Vincent Berenz |
4 |
|
|
* license License BSD-3-Clause |
5 |
|
|
* @copyright Copyright (c) 2019, New York University and Max Planck |
6 |
|
|
* Gesellschaft. |
7 |
|
|
* @date 2019-05-22 |
8 |
|
|
* |
9 |
|
|
* @brief example of writing into interprocesses arrays |
10 |
|
|
* |
11 |
|
|
*/ |
12 |
|
|
|
13 |
|
|
#include <signal.h> |
14 |
|
|
#include <unistd.h> |
15 |
|
|
#include "shared_memory/array.hpp" |
16 |
|
|
#include "shared_memory/demos/item.hpp" |
17 |
|
|
|
18 |
|
|
#define SIZE 4 |
19 |
|
|
#define SEGMENT_SERIALIZED "demo_array_serialized" |
20 |
|
|
#define SEGMENT_FUNDAMENTAL "demo_array_fundamental" |
21 |
|
|
#define SEGMENT_FUNDAMENTAL_ARRAY "demo_array_fundamental_array" |
22 |
|
|
|
23 |
|
|
static bool RUNNING = true; |
24 |
|
|
|
25 |
|
✗ |
void stop(int) |
26 |
|
|
{ |
27 |
|
✗ |
RUNNING = false; |
28 |
|
|
} |
29 |
|
|
|
30 |
|
|
/** |
31 |
|
|
* @brief create interprocesses arrays and write into them. Run demo_read_array |
32 |
|
|
* for a process reading these arrays |
33 |
|
|
*/ |
34 |
|
✗ |
void run() |
35 |
|
|
{ |
36 |
|
|
// in case a previous run did not exit properly |
37 |
|
✗ |
shared_memory::clear_array(SEGMENT_SERIALIZED); |
38 |
|
✗ |
shared_memory::clear_array(SEGMENT_FUNDAMENTAL); |
39 |
|
✗ |
shared_memory::clear_array(SEGMENT_FUNDAMENTAL_ARRAY); |
40 |
|
|
|
41 |
|
|
// it will be safe to have another process |
42 |
|
|
// reading/writting in the same array |
43 |
|
✗ |
bool mutex_protected = true; |
44 |
|
|
|
45 |
|
|
// array declared in this files |
46 |
|
|
// will wipe the shared memory on exit |
47 |
|
✗ |
bool clear_on_destruction = true; |
48 |
|
|
|
49 |
|
|
// array of SIZE Item (Item being themselfs of size SIZE) |
50 |
|
|
// Item implements a serialize function, and instances |
51 |
|
|
// of items will be serialized into a string before being |
52 |
|
|
// written in the shared memory |
53 |
|
|
// see include/shared_memory/demos/item.hpp |
54 |
|
|
shared_memory::array<shared_memory::Item<SIZE> > serialized( |
55 |
|
✗ |
SEGMENT_SERIALIZED, SIZE, mutex_protected, clear_on_destruction); |
56 |
|
|
|
57 |
|
|
// array of SIZE integer |
58 |
|
|
shared_memory::array<int> fundamental( |
59 |
|
✗ |
SEGMENT_FUNDAMENTAL, SIZE, mutex_protected, clear_on_destruction); |
60 |
|
|
|
61 |
|
|
// array of array : SIZE * SIZE |
62 |
|
|
shared_memory::array<int, SIZE> fundamental_array( |
63 |
|
✗ |
SEGMENT_FUNDAMENTAL_ARRAY, SIZE, mutex_protected, clear_on_destruction); |
64 |
|
|
|
65 |
|
✗ |
int count = 0; |
66 |
|
|
|
67 |
|
✗ |
shared_memory::Item<SIZE> item(0); |
68 |
|
|
|
69 |
|
|
int values[SIZE]; |
70 |
|
|
|
71 |
|
✗ |
while (RUNNING) |
72 |
|
|
{ |
73 |
|
✗ |
for (int i = 0; i < SIZE; i++) |
74 |
|
|
{ |
75 |
|
|
// writting items in serialized |
76 |
|
✗ |
item.fill(0); |
77 |
|
✗ |
item.set(i, count); |
78 |
|
✗ |
item.compact_print(); |
79 |
|
✗ |
serialized.set(i, item); |
80 |
|
|
|
81 |
|
|
// writting integers in fundamental |
82 |
|
✗ |
fundamental.set(i, count); |
83 |
|
|
|
84 |
|
|
// writting values in fundamental arrays |
85 |
|
✗ |
for (int j = 0; j < SIZE; j++) |
86 |
|
|
{ |
87 |
|
✗ |
values[j] = 0; |
88 |
|
|
} |
89 |
|
✗ |
values[i] = count; |
90 |
|
✗ |
fundamental_array.set(i, values); |
91 |
|
|
} |
92 |
|
|
|
93 |
|
✗ |
std::cout << std::endl; |
94 |
|
✗ |
count++; |
95 |
|
✗ |
if (count == 10) |
96 |
|
|
{ |
97 |
|
✗ |
count = 0; |
98 |
|
|
} |
99 |
|
✗ |
usleep(100000); |
100 |
|
|
} |
101 |
|
|
} |
102 |
|
|
|
103 |
|
✗ |
int main() |
104 |
|
|
{ |
105 |
|
|
// stop on ctrl+c |
106 |
|
|
struct sigaction cleaning; |
107 |
|
✗ |
cleaning.sa_handler = stop; |
108 |
|
✗ |
sigemptyset(&cleaning.sa_mask); |
109 |
|
✗ |
cleaning.sa_flags = 0; |
110 |
|
✗ |
sigaction(SIGINT, &cleaning, nullptr); |
111 |
|
|
|
112 |
|
✗ |
run(); |
113 |
|
|
} |
114 |
|
|
|