-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathswitch_print.h
executable file
·262 lines (204 loc) · 4.52 KB
/
switch_print.h
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#pragma once
#include "buffer.h"
#ifndef __linux__
#include <pthread.h>
#endif
struct ptr_repr
{
const void *const ptr;
ptr_repr(const void *const p)
: ptr(p)
{
}
inline strwlen8_t Get(char *const out) const
{
return strwlen8_t(out, sprintf(out, "%p", ptr));
}
};
static inline void PrintImpl(Buffer &out, const ptr_repr &repr)
{
out.AppendFmt("%p", repr.ptr);
}
static inline void PrintImpl(void)
{
}
static inline void PrintImpl(Buffer &out)
{
}
static inline void PrintImpl(Buffer &out, const bool &v)
{
if (v)
out.Append(_S("true"));
else
out.Append(_S("false"));
}
static inline void PrintImpl(Buffer &out, const double &v)
{
out.AppendFmt("%lf", v);
}
static inline void PrintImpl(Buffer &out, const char v)
{
out.AppendFmt("%c", v);
}
static inline void PrintImpl(Buffer &out, const void *const ptr)
{
out.AppendFmt("%p", ptr);
}
static inline void PrintImpl(Buffer &out, void *const ptr)
{
out.AppendFmt("%p", ptr);
}
static inline void PrintImpl(Buffer &out, const float &v)
{
out.AppendFmt("%f", v);
}
static inline void PrintImpl(Buffer &out, const int &v)
{
out.AppendFmt("%d", v);
}
static inline void PrintImpl(Buffer &out, const char *p)
{
if (likely(p))
out.Append(p, strlen(p));
else
out.Append(_S("(nullptr)"));
}
static inline void PrintImpl(Buffer &out, char *p)
{
if (likely(p))
out.Append(p, strlen(p));
else
out.Append(_S("(nullptr)"));
}
static inline void PrintImpl(Buffer &out, const uint32_t &v)
{
out.AppendFmt("%" PRIu32, v);
}
static inline void PrintImpl(Buffer &out, const uint8_t &v)
{
out.AppendFmt("%" PRIu32, v);
}
static inline void PrintImpl(Buffer &out, const uint16_t &v)
{
out.AppendFmt("%" PRIu32, v);
}
static inline void PrintImpl(Buffer &out, const int16_t &v)
{
out.AppendFmt("%" PRId32, v);
}
static inline void PrintImpl(Buffer &out, const int8_t &v)
{
out.AppendFmt("%" PRId32, v);
}
static inline void PrintImpl(Buffer &out, const uint64_t &v)
{
out.AppendFmt("%" PRIu64, v);
}
static inline void PrintImpl(Buffer &out, const int64_t &v)
{
out.AppendFmt("%" PRId64, v);
}
static inline void PrintImpl(Buffer &out, const Buffer &o)
{
out.Append(o);
}
static inline void PrintImpl(Buffer &out, const strwlen8_t &o)
{
out.Append(o);
}
static inline void PrintImpl(Buffer &out, const strwlen16_t &o)
{
out.Append(o);
}
static inline void PrintImpl(Buffer &out, const strwlen32_t &o)
{
out.Append(o);
}
template<typename T, typename... Args>
static void PrintImpl(Buffer &b, const T &v, const Args&... args)
{
PrintImpl(b, v);
PrintImpl(b, args...);
}
#ifndef __linux__
static pthread_key_t bufKey;
[[gnu::constructor]] static void _init()
{
pthread_key_create(&bufKey, nullptr);
}
[[gnu::destructor]] static void _tear_down()
{
pthread_key_delete(bufKey);
}
#endif
static inline Buffer &thread_local_buf()
{
#ifdef __linux__
static thread_local Buffer b;
return b;
#else
auto p = (Buffer *)pthread_getspecific(bufKey);
if (!p)
{
p = new Buffer();
pthread_setspecific(bufKey, p);
}
return *p;
#endif
}
template<typename T, typename... Args>
static void Print(const T &v, const Args&... args)
{
auto &b = thread_local_buf();
b.clear();
PrintImpl(b, v);
PrintImpl(b, args...);
const auto r = write(STDOUT_FILENO, b.data(), b.size());
(void)r; // (void)write triggers warning if -Wunused-result is set
// and write() is declared like so
}
template<typename T, typename... Args>
static void ToBuffer(Buffer &out, const T &v, const Args&... args)
{
PrintImpl(out, v);
PrintImpl(out, args...);
}
template<typename A, typename B>
static void PrintImpl(Buffer &b, const std::pair<A, B> &pair)
{
b.Append('<');
PrintImpl(b, pair.first);
b.Append(_S(", "));
PrintImpl(b, pair.second);
b.Append('>');
}
template<typename T>
static void PrintImpl(Buffer &b, const T &v)
{
if (std::is_enum<T>::value)
{
// We can now use 'naked' enums and they will be printed properly
PrintImpl(b, (typename std::underlying_type<T>::type)v);
}
else
{
// catch-all for when we have no PrintImpl() specialization
fprintf(stderr, "Specialization for type not defined\n");
std::abort();
}
}
// Handy alternative to snprintf()
// See also:
// Buffer::append<>
// Buffer::build<>
// RPCString::build<>
template<typename... Args>
static size_t Snprint(char *out, const size_t outLen, Args&&... args)
{
auto &b = thread_local_buf();
b.clear();
ToBuffer(b, std::forward<Args>(args)...);
const auto l = b.size();
b.AsS32().ToCString(out, outLen);
return l;
}