-
Notifications
You must be signed in to change notification settings - Fork 106
/
logging.cpp
244 lines (216 loc) · 7.52 KB
/
logging.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
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
/*************************************************************************
* Copyright (C) [2022] by Cambricon, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*************************************************************************/
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <iostream>
#include <sstream>
#include <string>
#include <unordered_map>
#include <memory>
#include <mutex> // NOLINT
#include "core/logging.h"
#include "core/tool.h"
__attribute__((__unused__)) bool mluop_check_large_tensor_dim_size_ =
mluop::getBoolEnvVar("MLUOP_CHECK_DIM_SIZE", false);
namespace {
static int ParseInteger(const char* str, size_t size) {
// Ideally we would use env_var / safe_strto64, but it is
// hard to use here without pulling in a lot of dependencies,
// so we use std:istringstream instead
std::string integer_str(str, size);
std::istringstream ss(integer_str);
int level = 0;
ss >> level;
return level;
}
// Parse log level (int64) from environment variable (char*)
static int64_t LogLevelStrToInt(const char* mluop_env_var_val) {
if (mluop_env_var_val == nullptr) {
return 0;
}
return ParseInteger(mluop_env_var_val, strlen(mluop_env_var_val));
}
// Using StringPiece breaks Windows build.
struct StringData {
struct Hasher {
size_t operator()(const StringData& sdata) const {
// For dependency reasons, we cannot use hash.h here. Use DBJHash instead.
size_t hash = 5381;
const char* data = sdata.data;
for (const char* top = data + sdata.size; data < top; ++data) {
hash = ((hash << 5) + hash) + (*data);
}
return hash;
}
};
StringData() = default;
StringData(const char* data, size_t size) : data(data), size(size) {}
bool operator==(const StringData& rhs) const {
return size == rhs.size && memcmp(data, rhs.data, size) == 0;
}
friend std::ostream& operator<<(std::ostream& out, const StringData& s);
const char* data = nullptr;
size_t size = 0;
};
std::ostream& operator<<(std::ostream& out, const StringData& s) {
out << std::string(s.data, s.size);
return out;
}
// using VmoduleMap = std::unordered_map<StringData, int, StringData::Hasher>;
class VmoduleMap
: public std::unordered_map<StringData, int, StringData::Hasher> {
public:
~VmoduleMap() {
if (env_data) {
free(env_data);
env_data = nullptr;
}
}
const char* load_env(const char* env) {
if (env_data == nullptr) {
env_data = strdup(env);
}
return env_data;
}
private:
char* env_data = nullptr;
};
// Returns a mapping from module name to VLOG level, derived from the
// MLUOP_CPP_VMOUDLE environment variable; ownership is transferred to the
// caller.
VmoduleMap* VmodulesMapFromEnv() {
// The value of the env var is supposed to be of the form:
// "foo=1,bar=2,baz=3"
const char* env = getenv("MLUOP_CPP_VMODULE");
if (env == nullptr) {
// If there is no MLUOP_CPP_VMODULE configuration (most common case), return
// nullptr so that the ShouldVlogModule() API can fast bail out of it.
return nullptr;
}
// The memory returned by getenv() can be invalidated by following getenv() or
// setenv() calls. And since we keep references to it in the VmoduleMap in
// form of StringData objects, make a copy of it.
VmoduleMap* result = new (std::nothrow) VmoduleMap();
// const char* env_data = strdup(env);
const char* env_data =
result->load_env(env); // make sure strdup-ed data could be released
while (true) {
const char* eq = strchr(env_data, '=');
if (eq == nullptr) {
break;
}
const char* after_eq = eq + 1;
// Comma either points at the next comma delimiter, or at a null terminator.
// We check that the integer we parse ends at this delimiter.
const char* comma = strchr(after_eq, ',');
const char* new_env_data;
if (comma == nullptr) {
comma = strchr(after_eq, '\0');
new_env_data = comma;
} else {
new_env_data = comma + 1;
}
(*result)[StringData(env_data, eq - env_data)] =
ParseInteger(after_eq, comma - after_eq);
env_data = new_env_data;
}
return result;
}
} // namespace
namespace mluop {
namespace internal {
static int64_t MinVLogLevelFromEnv() {
const char* mluop_env_var_val = std::getenv("MLUOP_MIN_VLOG_LEVEL");
return LogLevelStrToInt(mluop_env_var_val);
}
int64_t LogMessage::MinVLogLevel() {
static int64_t min_vlog_level = MinVLogLevelFromEnv();
return min_vlog_level;
}
bool LogMessage::VmoduleActivated(const char* fname, int level) {
if (level <= MinVLogLevel()) {
return true;
}
// static VmoduleMap* vmodules = VmodulesMapFromEnv();
static std::unique_ptr<VmoduleMap> vmodules(
VmodulesMapFromEnv()); // friendly to dlopen/dlclose
if (MLUOP_PREDICT_TRUE(vmodules == nullptr)) {
return false;
}
const char* last_slash = strrchr(fname, '/');
const char* module_start = last_slash == nullptr ? fname : last_slash + 1;
const char* dot_after = strchr(module_start, '.');
const char* module_limit =
dot_after == nullptr ? strchr(fname, '\0') : dot_after;
StringData module(module_start, module_limit - module_start);
auto it = vmodules->find(module);
return it != vmodules->end() && it->second >= level;
}
template <>
void MakeCheckOpValueString(std::ostream* os, const char& v) {
if (v >= 32 && v <= 126) {
(*os) << "'" << v << "'";
} else {
(*os) << "char value " << static_cast<short>(v); // NOLINT
}
}
template <>
void MakeCheckOpValueString(std::ostream* os, const signed char& v) { // NOLINT
if (v >= 32 && v <= 126) {
(*os) << "'" << v << "'";
} else {
(*os) << "signed char value " << static_cast<short>(v); // NOLINT
}
}
template <>
void MakeCheckOpValueString(std::ostream* os,
const unsigned char& v) { // NOLINT
if (v >= 32 && v <= 126) {
(*os) << "'" << v << "'";
} else {
(*os) << "unsigned char value "
<< static_cast<unsigned short>(v); // NOLINT
}
}
#if LANG_CXX11
template <>
void MakeCheckOpValueString(std::ostream* os, const std::nullptr_t& p) {
(*os) << "nullptr";
}
#endif
CheckOpMessageBuilder::CheckOpMessageBuilder(const char* exprtext)
: stream_(new std::ostringstream) {
*stream_ << "Check failed: " << exprtext << " (";
}
CheckOpMessageBuilder::~CheckOpMessageBuilder() { delete stream_; }
std::ostream* CheckOpMessageBuilder::ForVar2() {
*stream_ << " vs. ";
return stream_;
}
std::string* CheckOpMessageBuilder::NewString() {
*stream_ << ")";
return new std::string(stream_->str());
}
} // namespace internal
} // namespace mluop