blob: ed2c3afb71680e3817f27a94021648e3c6c491b3 (
plain)
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
|
// Copyright 2022 Huawei Cloud Computing Technology Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef INCLUDED_SRC_BUILDTOOL_COMMON_STATISTICS_HPP
#define INCLUDED_SRC_BUILDTOOL_COMMON_STATISTICS_HPP
#include <atomic>
class Statistics {
public:
void Reset() noexcept {
num_actions_queued_ = 0;
num_actions_executed_ = 0;
num_actions_cached_ = 0;
num_actions_flaky_ = 0;
num_actions_flaky_tainted_ = 0;
num_rebuilt_actions_compared_ = 0;
num_rebuilt_actions_missing_ = 0;
num_trees_analysed_ = 0;
}
void IncrementActionsQueuedCounter() noexcept { ++num_actions_queued_; }
void IncrementActionsExecutedCounter() noexcept { ++num_actions_executed_; }
void IncrementActionsCachedCounter() noexcept { ++num_actions_cached_; }
void IncrementActionsFlakyCounter() noexcept { ++num_actions_flaky_; }
void IncrementActionsFlakyTaintedCounter() noexcept {
++num_actions_flaky_tainted_;
}
void IncrementRebuiltActionMissingCounter() noexcept {
++num_rebuilt_actions_missing_;
}
void IncrementRebuiltActionComparedCounter() noexcept {
++num_rebuilt_actions_compared_;
}
void IncrementExportsCachedCounter() noexcept { ++num_exports_cached_; }
void IncrementExportsUncachedCounter() noexcept { ++num_exports_uncached_; }
void IncrementExportsNotEligibleCounter() noexcept {
++num_exports_not_eligible_;
}
void IncrementExportsFoundCounter() noexcept { ++num_exports_found_; }
void IncrementExportsServedCounter() noexcept { ++num_exports_served_; }
void IncrementTreesAnalysedCounter() noexcept { ++num_trees_analysed_; }
[[nodiscard]] auto ActionsQueuedCounter() const noexcept -> int {
return num_actions_queued_;
}
[[nodiscard]] auto ActionsExecutedCounter() const noexcept -> int {
return num_actions_executed_;
}
[[nodiscard]] auto ActionsCachedCounter() const noexcept -> int {
return num_actions_cached_;
}
[[nodiscard]] auto ActionsFlakyCounter() const noexcept -> int {
return num_actions_flaky_;
}
[[nodiscard]] auto ActionsFlakyTaintedCounter() const noexcept -> int {
return num_actions_flaky_tainted_;
}
[[nodiscard]] auto RebuiltActionMissingCounter() const noexcept -> int {
return num_rebuilt_actions_missing_;
}
[[nodiscard]] auto RebuiltActionComparedCounter() const noexcept -> int {
return num_rebuilt_actions_compared_;
}
[[nodiscard]] auto ExportsCachedCounter() const noexcept -> int {
return num_exports_cached_;
}
[[nodiscard]] auto ExportsUncachedCounter() const noexcept -> int {
return num_exports_uncached_;
}
[[nodiscard]] auto ExportsNotEligibleCounter() const noexcept -> int {
return num_exports_not_eligible_;
}
[[nodiscard]] auto ExportsFoundCounter() const noexcept -> int {
return num_exports_found_;
}
[[nodiscard]] auto ExportsServedCounter() const noexcept -> int {
return num_exports_served_;
}
[[nodiscard]] auto TreesAnalysedCounter() const noexcept -> int {
return num_trees_analysed_;
}
private:
std::atomic<int> num_actions_queued_{};
std::atomic<int> num_actions_executed_{};
std::atomic<int> num_actions_cached_{};
std::atomic<int> num_actions_flaky_{};
std::atomic<int> num_actions_flaky_tainted_{};
std::atomic<int> num_rebuilt_actions_missing_{};
std::atomic<int> num_rebuilt_actions_compared_{};
std::atomic<int> num_exports_cached_{};
std::atomic<int> num_exports_uncached_{};
std::atomic<int> num_exports_not_eligible_{};
std::atomic<int> num_exports_found_{};
std::atomic<int> num_exports_served_{};
std::atomic<int> num_trees_analysed_{};
};
#endif // INCLUDED_SRC_BUILDTOOL_COMMON_STATISTICS_HPP
|