-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcrow.cpp
420 lines (358 loc) · 12.4 KB
/
crow.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
_____ _____ _____ _ _ _
| | __ | | | | | Crow - a Sentry client for C++
| --| -| | | | | | version 0.0.6
|_____|__|__|_____|_____| https://github.com/nlohmann/crow
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
Copyright (c) 2018 Niels Lohmann <http://nlohmann.me>.
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.
*/
/*!
* @file crow.cpp
* @brief implementation of class crow
*/
#include <exception> // current_exception, exception, get_terminate, rethrow_exception, set_terminate
#include <regex> // regex, regex_match, smatch
#include <stdexcept> // invalid_argument
#include <sstream> // stringstream
#include <crow/crow.hpp>
#include <src/crow_config.hpp>
#include <src/crow_utilities.hpp>
#include <thirdparty/curl_wrapper/curl_wrapper.hpp>
#include <thirdparty/json/json.hpp>
using json = nlohmann::json;
namespace nlohmann
{
class crow;
crow* crow::m_client_that_installed_termination_handler = nullptr;
crow::crow(const std::string& dsn,
const json& context,
const double sample_rate,
const bool install_handlers)
: m_sample_rate(static_cast<int>(sample_rate * 100.0))
, m_enabled(not dsn.empty())
{
// process DSN
if (not dsn.empty())
{
const std::regex dsn_regex("(http[s]?)://([^:]+)(:([^@]+))?@([^/]+)/([0-9]+)");
std::smatch pieces_match;
if (std::regex_match(dsn, pieces_match, dsn_regex) and pieces_match.size() == 7)
{
const auto scheme = pieces_match.str(1);
m_public_key = pieces_match.str(2);
m_secret_key = pieces_match.str(4);
const auto host = pieces_match.str(5);
const auto project_id = pieces_match.str(6);
m_store_url = scheme + "://" + host + "/api/" + project_id + "/store/";
}
else
{
throw std::invalid_argument("DNS " + dsn + " is invalid");
}
}
// manage context
clear_context();
merge_context(context);
// install termination handler
if (install_handlers)
{
install_handler();
}
}
void crow::install_handler()
{
if (existing_termination_handler == nullptr)
{
existing_termination_handler = std::get_terminate();
std::set_terminate(&new_termination_handler);
// we remember this client, because we will use it to report
// uncaught exceptions with it
m_client_that_installed_termination_handler = this;
}
}
void crow::capture_message(const std::string& message,
const json& attributes)
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["message"] = message;
m_payload["event_id"] = nlohmann::crow_utilities::generate_uuid();
m_payload["timestamp"] = nlohmann::crow_utilities::get_iso8601();
if (attributes.is_object())
{
// logger
auto logger = attributes.find("logger");
if (logger != attributes.end())
{
m_payload["logger"] = *logger;
}
// level
m_payload["level"] = attributes.value("level", "error");
// context
auto context = attributes.find("context");
if (context != attributes.end())
{
merge_context(*context);
}
// extra
auto extra = attributes.find("extra");
if (extra != attributes.end())
{
m_payload["extra"] = *extra;
}
}
enqueue_post();
}
void crow::capture_exception(const std::exception& exception,
const json& context,
const bool handled)
{
std::stringstream thread_id;
thread_id << std::this_thread::get_id();
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["exception"].push_back({{"type", crow_utilities::pretty_name(typeid(exception).name())},
{"value", exception.what()},
{"module", crow_utilities::pretty_name(typeid(exception).name(), true)},
{"mechanism", {{"handled", handled}, {"description", handled ? "handled exception" : "unhandled exception"}}},
{"stacktrace", {{"frames", crow_utilities::get_backtrace()}}},
{"thread_id", thread_id.str()}});
m_payload["event_id"] = crow_utilities::generate_uuid();
m_payload["timestamp"] = nlohmann::crow_utilities::get_iso8601();
// add given context
merge_context(context);
enqueue_post();
// we want to support at most m_maximal_jobs running jobs
m_jobs.reserve(m_maximal_jobs);
}
void crow::add_breadcrumb(const std::string& message,
const json& attributes)
{
json breadcrumb =
{
{"event_id", crow_utilities::generate_uuid()},
{"message", message},
{"level", "info"},
{"type", "default"},
{"category", "log"},
{"timestamp", crow_utilities::get_timestamp()}
};
if (attributes.is_object())
{
// type
auto type = attributes.find("type");
if (type != attributes.end())
{
breadcrumb["type"] = *type;
}
// level
auto level = attributes.find("level");
if (level != attributes.end())
{
breadcrumb["level"] = *level;
}
// category
auto category = attributes.find("category");
if (category != attributes.end())
{
breadcrumb["category"] = *category;
}
// data
auto data = attributes.find("data");
if (data != attributes.end())
{
breadcrumb["data"] = *data;
}
}
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["breadcrumbs"]["values"].push_back(std::move(breadcrumb));
}
std::string crow::get_last_event_id() const
{
if (not m_posts)
{
return "";
}
std::lock_guard<std::mutex> lock(m_jobs_mutex);
if (not m_jobs.empty() and m_jobs.back().valid())
{
m_last_event_id = m_jobs.back().get();
m_jobs.clear();
}
assert(not m_last_event_id.empty());
return m_last_event_id;
}
const json& crow::get_context() const
{
return m_payload;
}
void crow::set_release( const std::string & release )
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["release"] = release;
}
void crow::add_user_context(const json& data)
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["user"].update(data);
}
void crow::add_tags_context(const json& data)
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["tags"].update(data);
}
void crow::add_request_context(const json& data)
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["request"].update(data);
}
void crow::add_extra_context(const json& data)
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload["extra"].update(data);
}
void crow::merge_context(const json& context)
{
if (context.is_object())
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
for (const auto& el : context.items())
{
if (el.key() == "user" or el.key() == "request" or el.key() == "extra" or el.key() == "tags")
{
m_payload[el.key()].update(el.value());
}
else
{
throw std::runtime_error("invalid context");
}
}
}
}
void crow::clear_context()
{
std::lock_guard<std::mutex> lock(m_payload_mutex);
m_payload.clear();
m_payload["platform"] = "c";
m_payload["sdk"]["name"] = "crow";
m_payload["sdk"]["version"] = NLOHMANN_CROW_VERSION;
// add context: app
m_payload["contexts"]["app"]["build_type"] = NLOHMANN_CROW_CMAKE_BUILD_TYPE;
m_payload["contexts"]["app"]["pointer_size"] = NLOHMANN_CROW_BITS;
// add context: device
m_payload["contexts"]["device"]["arch"] = NLOHMANN_CROW_CMAKE_SYSTEM_PROCESSOR;
m_payload["contexts"]["device"]["name"] = NLOHMANN_CROW_HOSTNAME;
m_payload["contexts"]["device"]["model"] = NLOHMANN_CROW_SYSCTL_HW_MODEL;
m_payload["contexts"]["device"]["memory_size"] = NLOHMANN_CROW_TOTAL_PHYSICAL_MEMORY;
// add context: os
m_payload["contexts"]["os"]["name"] = NLOHMANN_CROW_CMAKE_SYSTEM_NAME;
m_payload["contexts"]["os"]["version"] = NLOHMANN_CROW_OS_RELEASE;
if (not std::string(NLOHMANN_CROW_OS_VERSION).empty())
{
m_payload["contexts"]["os"]["build"] = NLOHMANN_CROW_OS_VERSION;
}
else
{
m_payload["contexts"]["os"]["build"] = NLOHMANN_CROW_CMAKE_SYSTEM_VERSION;
}
if (not std::string(NLOHMANN_CROW_UNAME).empty())
{
m_payload["contexts"]["os"]["kernel_version"] = NLOHMANN_CROW_UNAME;
}
else if (not std::string(NLOHMANN_CROW_SYSTEMINFO).empty())
{
m_payload["contexts"]["os"]["kernel_version"] = NLOHMANN_CROW_SYSTEMINFO;
}
// add context: runtime
m_payload["contexts"]["runtime"]["name"] = NLOHMANN_CROW_CMAKE_CXX_COMPILER_ID;
m_payload["contexts"]["runtime"]["version"] = NLOHMANN_CROW_CMAKE_CXX_COMPILER_VERSION;
m_payload["contexts"]["runtime"]["detail"] = NLOHMANN_CROW_CXX;
// add context: user
const char* user = getenv("USER");
if (user == nullptr)
{
user = getenv("USERNAME");
}
if (user)
{
m_payload["user"]["id"] = std::string(user) + "@" + NLOHMANN_CROW_HOSTNAME;
m_payload["user"]["username"] = user;
}
}
std::string crow::post(json payload) const
{
curl_wrapper curl;
// add security header
std::string security_header = "X-Sentry-Auth: Sentry sentry_version=5,sentry_client=crow/";
security_header += std::string(NLOHMANN_CROW_VERSION) + ",sentry_timestamp=";
security_header += std::to_string(crow_utilities::get_timestamp());
security_header += ",sentry_key=" + m_public_key;
security_header += ",sentry_secret=" + m_secret_key;
curl.set_header(security_header.c_str());
return curl.post(m_store_url, payload, true).data;
}
void crow::enqueue_post()
{
if (not m_enabled)
{
return;
}
// https://docs.sentry.io/clientdev/features/#event-sampling
const auto rand = crow_utilities::get_random_number(0, 99);
if (rand >= m_sample_rate)
{
return;
}
// we want to change the job list
std::lock_guard<std::mutex> lock_jobs(m_jobs_mutex);
// remember we made a post and now can rely on a last id
m_posts = true;
// enforce maximal number of running jobs
if (m_jobs.size() == m_maximal_jobs)
{
// clearing the vector of futures means waiting for their result; we do
// not need to save an event id, because we will add another post job
// below
m_jobs.clear();
}
// add the new job
m_jobs.emplace_back(std::async(std::launch::async, [this]()
{
return json::parse(post(m_payload)).at("id").get<std::string>();
}));
assert(not m_jobs.empty());
assert(m_jobs.back().valid());
}
void crow::new_termination_handler()
{
assert(m_client_that_installed_termination_handler != nullptr);
auto current_ex = std::current_exception();
if (current_ex)
{
m_client_that_installed_termination_handler->add_breadcrumb("uncaught exception", {{"type", "exceptiomn"}, {"level", "critical"}});
try
{
std::rethrow_exception(current_ex);
}
catch (const std::exception& e)
{
m_client_that_installed_termination_handler->capture_exception(e, nullptr, false);
}
}
m_client_that_installed_termination_handler->existing_termination_handler();
}
}