-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathrecorder.cpp
84 lines (71 loc) · 1.76 KB
/
recorder.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
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2024 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include"recorder.h"
#include <sys/time.h>
namespace tbox {
namespace trace {
//!定义函数的弱引用
void __attribute((weak)) CommitRecordFunc(
const char *name, const char *module, uint32_t line,
uint64_t end_timepoint_us, uint64_t duration_us
);
namespace{
uint64_t GetCurrentUTCMicroseconds()
{
struct timeval tv;
struct timezone tz;
gettimeofday(&tv, &tz);
return tv.tv_sec * 1000000 + tv.tv_usec;
}
}
Recorder::Recorder(const char *name, const char *module, uint32_t line, bool start_now)
: name_(name)
, module_(module)
, line_(line)
{
if (start_now)
start();
}
Recorder::~Recorder()
{
stop();
}
void Recorder::start()
{
if (CommitRecordFunc)
start_ts_us_ = GetCurrentUTCMicroseconds();
}
void Recorder::stop()
{
if (start_ts_us_ == 0)
return;
auto end_ts_us = GetCurrentUTCMicroseconds();
auto duration_us = end_ts_us - start_ts_us_;
if (CommitRecordFunc)
CommitRecordFunc(name_, module_, line_, end_ts_us, duration_us);
start_ts_us_ = 0;
}
void RecordEvent(const char *name, const char *module, uint32_t line)
{
if (CommitRecordFunc)
CommitRecordFunc(name, module, line, GetCurrentUTCMicroseconds(), 0);
}
}
}