-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
logging.h
115 lines (93 loc) · 3.93 KB
/
logging.h
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
// Copyright 2010-2024 Google LLC
// 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 OR_TOOLS_UTIL_LOGGING_H_
#define OR_TOOLS_UTIL_LOGGING_H_
#include <cstdint>
#include <functional>
#include <string>
#include <vector>
#include "ortools/base/timer.h"
namespace operations_research {
// Custom logger class. It allows passing callbacks to process log messages.
//
// If no callbacks have been added, all logging will use the standard logging
// facilities. As soon as one callback is added, it is disabled. Unless
// ForceStandardLogging() has been called.
//
// Note that the callbacks will get the message unchanged. No '\n' will be
// added.
//
// Important: This class is currently not thread-safe, it is easy to add a mutex
// if needed. In CP-SAT, we currently make sure all access to this class do not
// happen concurrently.
class SolverLogger {
public:
SolverLogger();
// Enables all logging.
//
// Note that this is used by the logging macro, but it actually do not
// disable logging if LogInfo() is called directly.
void EnableLogging(bool enable) { is_enabled_ = enable; }
// Returns true iff logging is enabled.
bool LoggingIsEnabled() const { return is_enabled_; }
// Should all messages be displayed on stdout ?
void SetLogToStdOut(bool enable) { log_to_stdout_ = enable; }
// Add a callback listening to all information messages.
//
// They will be run synchronously when LogInfo() is called.
void AddInfoLoggingCallback(
std::function<void(const std::string& message)> callback);
// Removes all callbacks registered via AddInfoLoggingCallback().
void ClearInfoLoggingCallbacks();
// Returns the number of registered callbacks.
int NumInfoLoggingCallbacks() const { return info_callbacks_.size(); }
// Logs a given information message and dispatch it to all callbacks.
void LogInfo(const char* source_filename, int source_line,
const std::string& message);
// Facility to avoid having multi megabytes logs when it brings little
// benefits. Logs with the same id will be kept under an average of
// throttling_rate_ logs per second.
int GetNewThrottledId();
void ThrottledLog(int id, const std::string& message);
// To not loose the last message of a throttled log, we keep it in memory and
// when this function is called we flush logs whose rate is now under the
// limit.
void FlushPendingThrottledLogs(bool ignore_rates = false);
private:
struct ThrottlingData {
int64_t num_displayed_logs = 0;
int64_t num_last_skipped_logs = 0;
std::string last_skipped_message;
void UpdateWhenDisplayed() {
num_displayed_logs++;
num_last_skipped_logs = 0;
last_skipped_message = "";
}
};
bool RateIsOk(const ThrottlingData& data);
bool is_enabled_ = false;
bool log_to_stdout_ = false;
std::vector<std::function<void(const std::string& message)>> info_callbacks_;
// TODO(user): Expose? for now we never change this. We start throttling after
// throttling_threshold_ logs of a given id, and we enforce a fixed logging
// rate afterwards, so that latter burst can still be seen.
const int throttling_threshold_ = 20;
const double throttling_rate_ = 1.0;
WallTimer timer_;
std::vector<ThrottlingData> id_to_throttling_data_;
};
#define SOLVER_LOG(logger, ...) \
if ((logger)->LoggingIsEnabled()) \
(logger)->LogInfo(__FILE__, __LINE__, absl::StrCat(__VA_ARGS__))
} // namespace operations_research
#endif // OR_TOOLS_UTIL_LOGGING_H_