forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebug.cc
121 lines (103 loc) · 3.22 KB
/
debug.cc
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
// Copyright 2010-2015 RethinkDB, all rights reserved.
#include "debug.hpp"
#include <inttypes.h>
#include "arch/runtime/runtime.hpp"
#include "rdb_protocol/ql2proto.hpp"
#include "time.hpp"
#include "utils.hpp"
void debug_print_quoted_string(printf_buffer_t *buf, const uint8_t *s, size_t n) {
buf->appendf("\"");
for (size_t i = 0; i < n; ++i) {
uint8_t ch = s[i];
switch (ch) {
case '\"':
buf->appendf("\\\"");
break;
case '\\':
buf->appendf("\\\\");
break;
case '\n':
buf->appendf("\\n");
break;
case '\t':
buf->appendf("\\t");
break;
case '\r':
buf->appendf("\\r");
break;
default:
if (ch <= '~' && ch >= ' ') {
// ASCII dependency here
buf->appendf("%c", ch);
} else {
buf->appendf("\\x%02x", ch);
}
break;
}
}
buf->appendf("\"");
}
#ifndef NDEBUG
// Adds the time/thread id prefix to buf.
void debugf_prefix_buf(printf_buffer_t *buf) {
struct timespec t = clock_realtime();
format_time(t, buf, local_or_utc_time_t::local);
if (in_thread_pool()) {
buf->appendf(" Thread %" PRIi32 ": ", get_thread_id().threadnum);
} else {
buf->appendf(" Foreign thread: ");
}
}
void debugf_dump_buf(printf_buffer_t *buf) {
// Writing a single buffer in one shot like this makes it less
// likely that stderr debugfs and stdout printfs get mixed
// together, and probably makes it faster too. (We can't simply
// flockfile both stderr and stdout because there's no established
// rule about which one should be locked first.)
size_t nitems = fwrite(buf->data(), 1, buf->size(), stderr);
guarantee_err(nitems == size_t(buf->size()), "trouble writing to stderr");
int res = fflush(stderr);
guarantee_err(res == 0, "fflush(stderr) failed");
}
void debugf(const char *msg, ...) {
printf_buffer_t buf;
debugf_prefix_buf(&buf);
va_list ap;
va_start(ap, msg);
buf.vappendf(msg, ap);
va_end(ap);
debugf_dump_buf(&buf);
}
#endif // NDEBUG
void debug_print(printf_buffer_t *buf, const std::string& s) {
const char *data = s.data();
debug_print_quoted_string(buf, reinterpret_cast<const uint8_t *>(data), s.size());
}
debugf_in_dtor_t::debugf_in_dtor_t(const char *msg, ...) {
va_list arguments;
va_start(arguments, msg);
message = vstrprintf(msg, arguments);
va_end(arguments);
}
debugf_in_dtor_t::~debugf_in_dtor_t() {
debugf("%s", message.c_str());
}
debug_timer_t::debug_timer_t(std::string _name)
: start(current_microtime()), last(start), name(_name), out("\n") {
tick("start");
}
debug_timer_t::~debug_timer_t() {
tick("end");
#ifndef NDEBUG
debugf("%s", out.c_str());
#else
fprintf(stderr, "%s", out.c_str());
#endif // NDEBUG
}
microtime_t debug_timer_t::tick(const std::string &tag) {
microtime_t prev = last;
last = current_microtime();
out += strprintf("TIMER %s: %15s (%" PRIu64 " %12" PRIu64 " %12" PRIu64 ")\n",
name.c_str(), tag.c_str(), last, last - start, last - prev);
return last - start;
}