Directory: | ./ |
---|---|
File: | include/shared_memory/demos/item.hpp |
Date: | 2022-06-30 06:29:57 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 13 | 22 | 59.1% |
Branches: | 1 | 4 | 25.0% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | #pragma once | ||
2 | #include <array> | ||
3 | #include <iostream> | ||
4 | |||
5 | namespace shared_memory | ||
6 | { | ||
7 | template <int SIZE = 10> | ||
8 | class Item | ||
9 | |||
10 | { | ||
11 | public: | ||
12 | 204 | Item() | |
13 | { | ||
14 |
1/2✓ Branch 1 taken 204 times.
✗ Branch 2 not taken.
|
204 | a_.fill(0); |
15 | 204 | v_ = 0; | |
16 | 204 | } | |
17 | |||
18 | 299 | Item(int value) | |
19 | { | ||
20 | 299 | a_.fill(value); | |
21 | 299 | v_ = value; | |
22 | 299 | } | |
23 | |||
24 | ✗ | void fill(int value) | |
25 | { | ||
26 | ✗ | a_.fill(value); | |
27 | ✗ | v_ = value; | |
28 | } | ||
29 | |||
30 | ✗ | void set(int index, int value) | |
31 | { | ||
32 | ✗ | a_[index] = value; | |
33 | } | ||
34 | |||
35 | 598 | int get() const | |
36 | { | ||
37 | 598 | return v_; | |
38 | } | ||
39 | |||
40 | int get(int index) const | ||
41 | { | ||
42 | return a_[index]; | ||
43 | } | ||
44 | |||
45 | template <class Archive> | ||
46 | 801 | void serialize(Archive& archive) | |
47 | { | ||
48 | 801 | archive(a_, v_); | |
49 | 801 | } | |
50 | |||
51 | ✗ | void compact_print() const | |
52 | { | ||
53 | ✗ | for (int i = 0; i < SIZE; i++) | |
54 | { | ||
55 | ✗ | std::cout << a_[i]; | |
56 | } | ||
57 | ✗ | std::cout << " "; | |
58 | } | ||
59 | |||
60 | void print() const | ||
61 | { | ||
62 | if (SIZE > 0) | ||
63 | { | ||
64 | std::cout << "item: " << a_[0] << "\n"; | ||
65 | return; | ||
66 | } | ||
67 | std::cout << "item: empty\n"; | ||
68 | } | ||
69 | |||
70 | std::array<int, SIZE> a_; | ||
71 | int v_; | ||
72 | }; | ||
73 | |||
74 | } // namespace shared_memory | ||
75 |