-
Notifications
You must be signed in to change notification settings - Fork 29
/
Bar.cpp
190 lines (168 loc) · 5.91 KB
/
Bar.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
#include "bar/Bar.hpp"
#include <iostream>
#include <string>
#include <utility>
namespace bar {
std::vector<std::string> stringVectorOutput(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "()" << std::endl;
std::vector<std::string> result(level, std::to_string(level));
std::cout << "[" << level << "] Exit " << __func__ << "()" << std::endl;
return result;
}
int stringVectorInput(std::vector<std::string> data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& item : data) {
std::cout << item << ", ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
int stringVectorRefInput(const std::vector<std::string>& data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& item : data) {
std::cout << item << ", ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
std::vector<std::vector<std::string>> stringJaggedArrayOutput(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "()" << std::endl;
std::vector<std::vector<std::string>> result;
result.reserve(level);
for (int i = 1; i <= level; ++i) {
result.emplace_back(std::vector<std::string>(i, std::to_string(i)));
}
std::cout << "[" << level << "] Exit " << __func__ << "()" << std::endl;
return result;
}
int stringJaggedArrayInput(std::vector<std::vector<std::string>> data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& inner : data) {
std::cout << "{";
for (const auto& item : inner) {
std::cout << item << ", ";
}
std::cout << "}, ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
int stringJaggedArrayRefInput(const std::vector<std::vector<std::string>>& data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& inner : data) {
std::cout << "{";
for (const auto& item : inner) {
std::cout << item << ", ";
}
std::cout << "}, ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
std::vector<std::pair<int, int>> pairVectorOutput(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "()" << std::endl;
std::vector<std::pair<int, int>> result(level, std::make_pair(level, level));
std::cout << "[" << level << "] Exit " << __func__ << "()" << std::endl;
return result;
}
int pairVectorInput(std::vector<std::pair<int, int>> data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& item : data) {
std::cout << "[" << item.first << "," << item.second << "], ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
int pairVectorRefInput(const std::vector<std::pair<int, int>>& data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& item : data) {
std::cout << "[" << item.first << "," << item.second << "], ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
std::vector<std::vector<std::pair<int, int>>> pairJaggedArrayOutput(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "()" << std::endl;
std::vector<std::vector<std::pair<int, int>>> result;
result.reserve(level);
for (int i = 1; i <= level; ++i) {
result.emplace_back(std::vector<std::pair<int, int>>(i, std::make_pair(i, i)));
}
std::cout << "[" << level << "] Exit " << __func__ << "()" << std::endl;
return result;
}
int pairJaggedArrayInput(std::vector<std::vector<std::pair<int, int>>> data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& inner : data) {
std::cout << "{";
for (const auto& item : inner) {
std::cout << "[" << item.first << "," << item.second << "], ";
}
std::cout << "}, ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
int pairJaggedArrayRefInput(const std::vector<std::vector<std::pair<int, int>>>& data) {
std::cout << "Enter " << __func__ << "()" << std::endl;
std::cout << "{";
for (const auto& inner : data) {
std::cout << "{";
for (const auto& item : inner) {
std::cout << "[" << item.first << "," << item.second << "], ";
}
std::cout << "}, ";
}
std::cout << "}" << std::endl;
std::cout << "Exit " << __func__ << "()" << std::endl;
return data.size();
}
void freeFunction(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "(int)" << std::endl;
std::cout << "[" << level << "] Exit " << __func__ << "(int)" << std::endl;
}
void freeFunction(int64_t level) {
std::cout << "[" << level << "] Enter " << __func__ << "(int64_t)" << std::endl;
std::cout << "[" << level << "] Exit " << __func__ << "(int64_t)" << std::endl;
}
void Bar::staticFunction(int level) {
std::cout << "[" << level << "] Enter " << __func__ << "(int)" << std::endl;
freeFunction(level + 1);
std::cout << "[" << level << "] Exit " << __func__ << "(int)" << std::endl;
}
void Bar::staticFunction(int64_t level) {
std::cout << "[" << level << "] Enter " << __func__ << "(int64_t)" << std::endl;
freeFunction(level + 1);
std::cout << "[" << level << "] Exit " << __func__ << "(int64_t)" << std::endl;
}
int Bar::getInt() const {
return _intValue;
}
void Bar::setInt(int input) {
_intValue = input;
}
int64_t Bar::getInt64() const {
return _int64Value;
}
void Bar::setInt64(int64_t input) {
_int64Value = input;
}
std::string Bar::operator()() const {
return std::string{"\"Bar\":{\"int\":"} + std::to_string(_intValue) +
",\"int64\":" + std::to_string(_int64Value) + "}";
}
} // namespace bar