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
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/check_op.h"
// check_op.h is a widely included header and its size has significant impact on
// build time. Try not to raise this limit unless absolutely necessary. See
// https://chromium.googlesource.com/chromium/src/+/HEAD/docs/wmax_tokens.md
#ifndef NACL_TC_REV
#pragma clang max_tokens_here 244000
#endif
#include <string.h>
#include <cstdio>
#include <sstream>
namespace logging {
char* CheckOpValueStr(int v) {
char buf[50];
snprintf(buf, sizeof(buf), "%d", v);
return strdup(buf);
}
char* CheckOpValueStr(unsigned v) {
char buf[50];
snprintf(buf, sizeof(buf), "%u", v);
return strdup(buf);
}
char* CheckOpValueStr(long v) {
char buf[50];
snprintf(buf, sizeof(buf), "%ld", v);
return strdup(buf);
}
char* CheckOpValueStr(unsigned long v) {
char buf[50];
snprintf(buf, sizeof(buf), "%lu", v);
return strdup(buf);
}
char* CheckOpValueStr(long long v) {
char buf[50];
snprintf(buf, sizeof(buf), "%lld", v);
return strdup(buf);
}
char* CheckOpValueStr(unsigned long long v) {
char buf[50];
snprintf(buf, sizeof(buf), "%llu", v);
return strdup(buf);
}
char* CheckOpValueStr(const void* v) {
char buf[50];
snprintf(buf, sizeof(buf), "%p", v);
return strdup(buf);
}
char* CheckOpValueStr(std::nullptr_t v) {
return strdup("nullptr");
}
char* CheckOpValueStr(const std::string& v) {
return strdup(v.c_str());
}
char* CheckOpValueStr(double v) {
char buf[50];
snprintf(buf, sizeof(buf), "%.6lf", v);
return strdup(buf);
}
char* StreamValToStr(const void* v,
void (*stream_func)(std::ostream&, const void*)) {
std::stringstream ss;
stream_func(ss, v);
return strdup(ss.str().c_str());
}
CheckOpResult::CheckOpResult(const char* expr_str, char* v1_str, char* v2_str) {
std::ostringstream ss;
ss << expr_str << " (" << v1_str << " vs. " << v2_str << ")";
message_ = strdup(ss.str().c_str());
free(v1_str);
free(v2_str);
}
} // namespace logging
|