forked from rethinkdb/rethinkdb_rebirth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_logger.hpp
58 lines (44 loc) · 1.39 KB
/
activity_logger.hpp
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
// Copyright 2010-2013 RethinkDB, all rights reserved.
#ifndef ACTIVITY_LOGGER_HPP_
#define ACTIVITY_LOGGER_HPP_
#include <time.h>
#include <string>
#include <vector>
#include "backtrace.hpp"
#include "containers/scoped.hpp"
#include "threading.hpp"
#include "time.hpp"
class log_event_t {
public:
explicit log_event_t(const std::string &_msg, bool log_bt = true);
std::string print(bool print_bt);
private:
microtime_t timestamp;
std::string msg;
scoped_ptr_t<lazy_backtrace_formatter_t> bt;
DISABLE_COPYING(log_event_t);
};
class activity_logger_t : private home_thread_mixin_t {
public:
explicit activity_logger_t(bool _log_bt = true);
void add(const std::string &msg); // Use value of [log_bt] from constructor
void add(const std::string &msg, bool log_bt);
size_t size();
std::string print(bool print_bt = true);
std::string print_range(size_t start, size_t end, bool print_bt = true);
private:
bool log_bt_;
std::vector<scoped_ptr_t<log_event_t> > events;
DISABLE_COPYING(activity_logger_t);
};
struct fake_activity_logger_t : private home_thread_mixin_t {
explicit fake_activity_logger_t(UNUSED bool b = true) { }
void add(const std::string &msg) {
assert_thread();
events.push_back(msg);
}
private:
std::vector<std::string> events;
DISABLE_COPYING(fake_activity_logger_t);
};
#endif /* ACTIVITY_LOGGER_HPP_ */