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 :(before "End Types")
71 struct trace_line {
72 int depth;
73 string label;
74 string contents;
75 trace_line(string l, string c) :depth(0), label(l), contents(c) {}
76 trace_line(int d, string l, string c) :depth(d), label(l), contents(c) {}
77 };
78
79
80
81 :(before "End Commandline Options(*arg)")
82 else if (is_equal(*arg, "--trace")) {
83 Save_trace = true;
84 }
85 :(before "End Commandline Parsing")
86 if (Save_trace) {
87 cerr << "initializing trace\n";
88 Trace_stream = new trace_stream;
89 }
90 :(code)
91 void cleanup_main() {
92 if (!Trace_stream) return;
93 if (Save_trace)
94 Trace_stream->save();
95 delete Trace_stream;
96 Trace_stream = NULL;
97 }
98 :(before "End One-time Setup")
99 atexit(cleanup_main);
100
101 :(before "End Types")
102
103
104
105 const int Max_depth = 9999;
106 const int Error_depth = 0;
107 const int Warn_depth = 1;
108
109 struct trace_stream {
110 vector<trace_line> past_lines;
111
112 ostringstream* curr_stream;
113 string curr_label;
114 int curr_depth;
115 int collect_depth;
116 ofstream null_stream;
117 trace_stream() :curr_stream(NULL), curr_depth(Max_depth), collect_depth(Max_depth) {}
118 ~trace_stream() { if (curr_stream) delete curr_stream; }
119
120 ostream& stream(string label) {
121 return stream(Max_depth, label);
122 }
123
124 ostream& stream(int depth, string label) {
125 if (depth > collect_depth) return null_stream;
126 curr_stream = new ostringstream;
127 curr_label = label;
128 curr_depth = depth;
129 (*curr_stream) << std::hex;
130 return *curr_stream;
131 }
132
133 void save() {
134 cerr << "saving trace to 'last_run'\n";
135 ofstream fout("last_run");
136 fout << readable_contents("");
137 fout.close();
138 }
139
140
141 void newline();
142
143 string readable_contents(string label);
144 };
145
146 :(code)
147 void trace_stream::newline() {
148 if (!curr_stream) return;
149 string curr_contents = curr_stream->str();
150 if (!curr_contents.empty()) {
151 past_lines.push_back(trace_line(curr_depth, trim(curr_label), curr_contents));
152 if ((!Hide_errors && curr_depth == Error_depth)
153 || (!Hide_warnings && !Hide_errors && curr_depth == Warn_depth)
154 || Dump_trace
155 || (!Dump_label.empty() && curr_label == Dump_label))
156 cerr << curr_label << ": " << curr_contents << '\n';
157 }
158 delete curr_stream;
159 curr_stream = NULL;
160 curr_label.clear();
161 curr_depth = Max_depth;
162 }
163
164 string trace_stream::readable_contents(string label) {
165 ostringstream output;
166 label = trim(label);
167 for (vector<trace_line>::iterator p = past_lines.begin(); p != past_lines.end(); ++p)
168 if (label.empty() || label == p->label) {
169 output << std::setw(4) << p->depth << ' ' << p->label << ": " << p->contents << '\n';
170 }
171 return output.str();
172 }
173
174 :(before "End Globals")
175 trace_stream* Trace_stream = NULL;
176 int Trace_errors = 0;
177
178
179 :(before "End Globals")
180 bool Flag_dump_trace = false;
181 :(before "End Commandline Options(*arg)")
182 else if (is_equal(*arg, "--dump")) {
183 Flag_dump_trace = true;
184 }
185
186 :(before "End Globals")
187 bool Hide_errors = false;
188 bool Hide_warnings = false;
189 bool Dump_trace = false;
190 string Dump_label = "";
191 :(before "End Reset")
192 Hide_errors = false;
193 Hide_warnings = false;
194 Dump_trace = Flag_dump_trace;
195 Dump_label = "";
196
197 :(before "End Test Setup")
198 Hide_warnings = true;
199
200 :(before "End Includes")
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220 :(before "End Test Teardown")
221 if (Passed && !Hide_errors && trace_contains_errors()) {
222 Passed = false;
223 }
224 :(code)
225 bool trace_contains_errors() {
226 return Trace_errors > 0 || trace_count("error") > 0;
227 }
228
229 :(before "End Types")
230 struct end {};
231 :(code)
232 ostream& operator<<(ostream& os, end ) {
233 if (Trace_stream) Trace_stream->newline();
234 return os;
235 }
236
237 :(before "End Globals")
238 bool Save_trace = false;
239
240
241 :(before "End Types")
242 struct lease_tracer {
243 lease_tracer();
244 ~lease_tracer();
245 };
246 :(code)
247 lease_tracer::lease_tracer() { Trace_stream = new trace_stream; }
248 lease_tracer::~lease_tracer() {
249 if (Save_trace) Trace_stream->save();
250 delete Trace_stream, Trace_stream = NULL;
251 }
252 :(before "End Includes")
253
254 :(before "End Test Setup")
255 START_TRACING_UNTIL_END_OF_SCOPE
256
257 :(before "End Includes")
258
259
260
261
262 if (Passed && trace_contains_errors()) { \
263 cerr << "\nF - " << __FUNCTION__ << "(" << __FILE__ << ":" << __LINE__ << "): unexpected errors\n"; \
264 DUMP("error"); \
265 Passed = false; \
266 return; \
267 }
268
269
270 if (Passed && trace_count(label) != (count)) { \
271 cerr << "\nF - " << __FUNCTION__ << "(" << __FILE__ << ":" << __LINE__ << "): trace_count of " << label << " should be " << count << '\n'; \
272 cerr << " got " << trace_count(label) << '\n'; \
273 DUMP(label); \
274 Passed = false; \
275 return; \
276 }
277
278
279
280 :(code)
281 bool check_trace_contents(string FUNCTION, string FILE, int LINE, string expected) {
282 if (!Passed) return false;
283 if (!Trace_stream) return false;
284 vector<string> expected_lines = split(expected, "^D");
285 int curr_expected_line = 0;
286 while (curr_expected_line < SIZE(expected_lines) && expected_lines.at(curr_expected_line).empty())
287 ++curr_expected_line;
288 if (curr_expected_line == SIZE(expected_lines)) return true;
289 string label, contents;
290 split_label_contents(expected_lines.at(curr_expected_line), &label, &contents);
291 for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) {
292 if (label != p->label) continue;
293 if (contents != trim(p->contents)) continue;
294 ++curr_expected_line;
295 while (curr_expected_line < SIZE(expected_lines) && expected_lines.at(curr_expected_line).empty())
296 ++curr_expected_line;
297 if (curr_expected_line == SIZE(expected_lines)) return true;
298 split_label_contents(expected_lines.at(curr_expected_line), &label, &contents);
299 }
300
301 if (line_exists_anywhere(label, contents)) {
302 cerr << "\nF - " << FUNCTION << "(" << FILE << ":" << LINE << "): line [" << label << ": " << contents << "] out of order in trace:\n";
303 DUMP("");
304 }
305 else {
306 cerr << "\nF - " << FUNCTION << "(" << FILE << ":" << LINE << "): missing [" << contents << "] in trace:\n";
307 DUMP(label);
308 }
309 Passed = false;
310 return false;
311 }
312
313 void split_label_contents(const string& s, string* label, string* contents) {
314 static const string delim(": ");
315 size_t pos = s.find(delim);
316 if (pos == string::npos) {
317 *label = "";
318 *contents = trim(s);
319 }
320 else {
321 *label = trim(s.substr(0, pos));
322 *contents = trim(s.substr(pos+SIZE(delim)));
323 }
324 }
325
326 bool line_exists_anywhere(const string& label, const string& contents) {
327 for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) {
328 if (label != p->label) continue;
329 if (contents == trim(p->contents)) return true;
330 }
331 return false;
332 }
333
334 int trace_count(string label) {
335 return trace_count(label, "");
336 }
337
338 int trace_count(string label, string line) {
339 if (!Trace_stream) return 0;
340 long result = 0;
341 for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) {
342 if (label == p->label) {
343 if (line == "" || trim(line) == trim(p->contents))
344 ++result;
345 }
346 }
347 return result;
348 }
349
350 int trace_count_prefix(string label, string prefix) {
351 if (!Trace_stream) return 0;
352 long result = 0;
353 for (vector<trace_line>::iterator p = Trace_stream->past_lines.begin(); p != Trace_stream->past_lines.end(); ++p) {
354 if (label == p->label) {
355 if (starts_with(trim(p->contents), trim(prefix)))
356 ++result;
357 }
358 }
359 return result;
360 }
361
362 bool trace_doesnt_contain(string label, string line) {
363 return trace_count(label, line) == 0;
364 }
365
366 bool trace_doesnt_contain(string expected) {
367 vector<string> tmp = split_first(expected, ": ");
368 if (SIZE(tmp) == 1) {
369 raise << expected << ": missing label or contents in trace line\n" << end();
370 assert(false);
371 }
372 return trace_doesnt_contain(tmp.at(0), tmp.at(1));
373 }
374
375 vector<string> split(string s, string delim) {
376 vector<string> result;
377 size_t begin=0, end=s.find(delim);
378 while (true) {
379 if (end == string::npos) {
380 result.push_back(string(s, begin, string::npos));
381 break;
382 }
383 result.push_back(string(s, begin, end-begin));
384 begin = end+SIZE(delim);
385 end = s.find(delim, begin);
386 }
387 return result;
388 }
389
390 vector<string> split_first(string s, string delim) {
391 vector<string> result;
392 size_t end=s.find(delim);
393 result.push_back(string(s, 0, end));
394 if (end != string::npos)
395 result.push_back(string(s, end+SIZE(delim), string::npos));
396 return result;
397 }
398
399 string trim(const string& s) {
400 string::const_iterator first = s.begin();
401 while (first != s.end() && isspace(*first))
402 ++first;
403 if (first == s.end()) return "";
404
405 string::const_iterator last = --s.end();
406 while (last != s.begin() && isspace(*last))
407 --last;
408 ++last;
409 return string(first, last);
410 }
411
412 :(before "End Includes")
413
414 using std::vector;
415
416 using std::list;
417
418 using std::set;
419
420
421 using std::istringstream;
422 using std::ostringstream;
423
424
425 using std::ifstream;
426 using std::ofstream;