2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#include "td/telegram/Log.h"
|
|
|
|
|
2021-05-18 03:35:36 +02:00
|
|
|
#include "td/telegram/Client.h"
|
2018-10-24 17:42:40 +02:00
|
|
|
#include "td/telegram/Logging.h"
|
2018-10-28 18:30:47 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
|
2018-01-09 10:40:56 +01:00
|
|
|
#include "td/utils/common.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2018-09-01 21:44:20 +02:00
|
|
|
#include <mutex>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
2018-01-09 10:40:56 +01:00
|
|
|
|
2018-09-01 21:44:20 +02:00
|
|
|
static std::mutex log_mutex;
|
2018-10-24 17:42:40 +02:00
|
|
|
static string log_file_path;
|
2018-01-09 10:40:56 +01:00
|
|
|
static int64 max_log_file_size = 10 << 20;
|
2018-01-24 16:45:57 +01:00
|
|
|
static Log::FatalErrorCallbackPtr fatal_error_callback;
|
|
|
|
|
2021-05-18 03:35:36 +02:00
|
|
|
static void fatal_error_callback_wrapper(int verbosity_level, const char *message) {
|
|
|
|
if (verbosity_level == 0) {
|
|
|
|
auto callback = fatal_error_callback;
|
|
|
|
if (callback != nullptr) {
|
|
|
|
callback(message);
|
|
|
|
}
|
|
|
|
}
|
2018-01-24 16:45:57 +01:00
|
|
|
}
|
2018-01-09 10:40:56 +01:00
|
|
|
|
2018-01-28 17:38:59 +01:00
|
|
|
bool Log::set_file_path(string file_path) {
|
2018-09-01 21:44:20 +02:00
|
|
|
std::lock_guard<std::mutex> lock(log_mutex);
|
2018-01-09 10:40:56 +01:00
|
|
|
if (file_path.empty()) {
|
2018-10-24 17:42:40 +02:00
|
|
|
log_file_path.clear();
|
|
|
|
return Logging::set_current_stream(td_api::make_object<td_api::logStreamDefault>()).is_ok();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2020-09-27 13:37:35 +02:00
|
|
|
if (Logging::set_current_stream(td_api::make_object<td_api::logStreamFile>(file_path, max_log_file_size, true))
|
|
|
|
.is_ok()) {
|
2018-10-24 17:42:40 +02:00
|
|
|
log_file_path = std::move(file_path);
|
2018-01-28 17:38:59 +01:00
|
|
|
return true;
|
2018-01-28 15:48:11 +01:00
|
|
|
}
|
2018-01-28 17:38:59 +01:00
|
|
|
|
|
|
|
return false;
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
|
|
|
|
2018-01-09 10:40:56 +01:00
|
|
|
void Log::set_max_file_size(int64 max_file_size) {
|
2018-09-01 21:44:20 +02:00
|
|
|
std::lock_guard<std::mutex> lock(log_mutex);
|
2018-10-24 17:42:40 +02:00
|
|
|
max_log_file_size = max(max_file_size, static_cast<int64>(1));
|
2020-09-27 13:37:35 +02:00
|
|
|
Logging::set_current_stream(td_api::make_object<td_api::logStreamFile>(log_file_path, max_log_file_size, true))
|
|
|
|
.ignore();
|
2018-01-09 10:40:56 +01:00
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
void Log::set_verbosity_level(int new_verbosity_level) {
|
2018-09-01 21:44:20 +02:00
|
|
|
std::lock_guard<std::mutex> lock(log_mutex);
|
2018-10-24 17:42:40 +02:00
|
|
|
Logging::set_verbosity_level(new_verbosity_level).ignore();
|
2018-12-31 20:04:05 +01:00
|
|
|
}
|
2018-01-09 10:40:56 +01:00
|
|
|
|
2018-01-24 16:45:57 +01:00
|
|
|
void Log::set_fatal_error_callback(FatalErrorCallbackPtr callback) {
|
2018-09-01 21:44:20 +02:00
|
|
|
std::lock_guard<std::mutex> lock(log_mutex);
|
2018-01-24 16:45:57 +01:00
|
|
|
if (callback == nullptr) {
|
2021-05-18 03:35:36 +02:00
|
|
|
ClientManager::set_log_message_callback(0, nullptr);
|
2018-01-24 16:45:57 +01:00
|
|
|
fatal_error_callback = nullptr;
|
|
|
|
} else {
|
|
|
|
fatal_error_callback = callback;
|
2021-05-18 03:35:36 +02:00
|
|
|
ClientManager::set_log_message_callback(0, fatal_error_callback_wrapper);
|
2018-01-24 16:45:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|