1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-04-01 02:42:41 +08:00
spdlog/include/spdlog/sinks/hourly_file_sink.h

169 lines
5.8 KiB
C
Raw Normal View History

2020-12-16 00:21:09 +08:00
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#pragma once
2023-09-29 05:20:26 +08:00
#include <chrono>
#include <cstdio>
#include <ctime>
#include <mutex>
#include <string>
2023-09-28 05:42:16 +08:00
#include "../common.h"
#include "../details/circular_q.h"
#include "../details/file_helper.h"
#include "../details/null_mutex.h"
#include "../details/os.h"
#include "./base_sink.h"
2020-12-16 00:21:09 +08:00
namespace spdlog {
namespace sinks {
/*
* Generator of Hourly log file names in format basename_YYYY-MM-DD_HH.ext
2020-12-16 00:21:09 +08:00
*/
2023-09-25 07:35:55 +08:00
struct hourly_filename_calculator {
static filename_t calc_filename(const filename_t &filename, const tm &now_tm) {
2020-12-16 00:21:09 +08:00
filename_t basename, ext;
std::tie(basename, ext) = details::os::split_by_extension(filename);
2024-12-07 01:21:42 +08:00
std::basic_ostringstream<filename_t::value_type> oss;
oss << basename.native() << '_' << std::setfill(SPDLOG_FILENAME_T('0')) << std::setw(4) << now_tm.tm_year + 1900 << '-'
<< std::setw(2) << now_tm.tm_mon + 1 << '-' << std::setw(2) << now_tm.tm_mday << '_' << std::setw(2) << now_tm.tm_hour
<< ext.native();
2024-12-07 01:21:42 +08:00
return oss.str();
2020-12-16 00:21:09 +08:00
}
};
/*
* Rotating file sink based on time.
* If truncate != false , the created file will be truncated.
* If max_files > 0, retain only the last max_files and delete previous.
* Note that old log files from previous executions will not be deleted by this class,
* rotation and deletion is only applied while the program is running.
2020-12-16 00:21:09 +08:00
*/
2023-09-25 07:35:55 +08:00
template <typename Mutex, typename FileNameCalc = hourly_filename_calculator>
class hourly_file_sink final : public base_sink<Mutex> {
2020-12-16 00:21:09 +08:00
public:
// create hourly file sink which rotates on given time
2024-12-07 01:21:42 +08:00
explicit hourly_file_sink(filename_t base_filename,
bool truncate = false,
uint16_t max_files = 0,
const file_event_handlers &event_handlers = {})
2023-09-25 21:19:10 +08:00
: base_filename_(std::move(base_filename)),
file_helper_{event_handlers},
truncate_(truncate),
max_files_(max_files),
filenames_q_() {
2020-12-16 00:21:09 +08:00
auto now = log_clock::now();
auto filename = FileNameCalc::calc_filename(base_filename_, now_tm(now));
file_helper_.open(filename, truncate_);
remove_init_file_ = file_helper_.size() == 0;
2020-12-16 00:21:09 +08:00
rotation_tp_ = next_rotation_tp_();
2023-09-25 07:35:55 +08:00
if (max_files_ > 0) {
2020-12-16 00:21:09 +08:00
init_filenames_q_();
}
}
2023-09-25 07:35:55 +08:00
filename_t filename() {
2020-12-16 00:21:09 +08:00
std::lock_guard<Mutex> lock(base_sink<Mutex>::mutex_);
return file_helper_.filename();
}
protected:
2023-09-25 07:35:55 +08:00
void sink_it_(const details::log_msg &msg) override {
2020-12-16 00:21:09 +08:00
auto time = msg.time;
bool should_rotate = time >= rotation_tp_;
2023-09-25 07:35:55 +08:00
if (should_rotate) {
if (remove_init_file_) {
file_helper_.close();
details::os::remove(file_helper_.filename());
}
2020-12-16 00:21:09 +08:00
auto filename = FileNameCalc::calc_filename(base_filename_, now_tm(time));
file_helper_.open(filename, truncate_);
rotation_tp_ = next_rotation_tp_();
}
remove_init_file_ = false;
2020-12-16 00:21:09 +08:00
memory_buf_t formatted;
base_sink<Mutex>::formatter_->format(msg, formatted);
file_helper_.write(formatted);
// Do the cleaning only at the end because it might throw on failure.
2023-09-25 07:35:55 +08:00
if (should_rotate && max_files_ > 0) {
2020-12-16 00:21:09 +08:00
delete_old_();
}
}
2023-09-25 07:35:55 +08:00
void flush_() override { file_helper_.flush(); }
2020-12-16 00:21:09 +08:00
private:
2023-09-25 07:35:55 +08:00
void init_filenames_q_() {
2020-12-16 00:21:09 +08:00
using details::os::path_exists;
filenames_q_ = details::circular_q<filename_t>(static_cast<size_t>(max_files_));
std::vector<filename_t> filenames;
auto now = log_clock::now();
2023-09-25 07:35:55 +08:00
while (filenames.size() < max_files_) {
2020-12-16 00:21:09 +08:00
auto filename = FileNameCalc::calc_filename(base_filename_, now_tm(now));
2023-09-25 07:35:55 +08:00
if (!path_exists(filename)) {
2020-12-16 00:21:09 +08:00
break;
}
filenames.emplace_back(filename);
now -= std::chrono::hours(1);
}
2023-09-25 07:35:55 +08:00
for (auto iter = filenames.rbegin(); iter != filenames.rend(); ++iter) {
2020-12-16 00:21:09 +08:00
filenames_q_.push_back(std::move(*iter));
}
}
2023-09-25 07:35:55 +08:00
tm now_tm(log_clock::time_point tp) {
2020-12-16 00:21:09 +08:00
time_t tnow = log_clock::to_time_t(tp);
return spdlog::details::os::localtime(tnow);
}
2023-09-25 07:35:55 +08:00
log_clock::time_point next_rotation_tp_() {
2020-12-16 00:21:09 +08:00
auto now = log_clock::now();
tm date = now_tm(now);
date.tm_min = 0;
date.tm_sec = 0;
auto rotation_time = log_clock::from_time_t(std::mktime(&date));
2023-09-25 07:35:55 +08:00
if (rotation_time > now) {
2020-12-16 00:21:09 +08:00
return rotation_time;
}
return {rotation_time + std::chrono::hours(1)};
}
// Delete the file N rotations ago.
// Throw spdlog_ex on failure to delete the old file.
2023-09-25 07:35:55 +08:00
void delete_old_() {
2020-12-16 00:21:09 +08:00
using details::os::filename_to_str;
using details::os::remove_if_exists;
filename_t current_file = file_helper_.filename();
2023-09-25 07:35:55 +08:00
if (filenames_q_.full()) {
2020-12-16 00:21:09 +08:00
auto old_filename = std::move(filenames_q_.front());
filenames_q_.pop_front();
bool ok = remove_if_exists(old_filename) == 0;
2023-09-25 07:35:55 +08:00
if (!ok) {
2020-12-16 00:21:09 +08:00
filenames_q_.push_back(std::move(current_file));
throw(spdlog_ex("Failed removing hourly file " + filename_to_str(old_filename), errno));
2020-12-16 00:21:09 +08:00
}
}
filenames_q_.push_back(std::move(current_file));
}
filename_t base_filename_;
log_clock::time_point rotation_tp_;
details::file_helper file_helper_;
bool truncate_;
uint16_t max_files_;
details::circular_q<filename_t> filenames_q_;
bool remove_init_file_;
2020-12-16 00:21:09 +08:00
};
using hourly_file_sink_mt = hourly_file_sink<std::mutex>;
using hourly_file_sink_st = hourly_file_sink<details::null_mutex>;
2023-09-25 21:40:05 +08:00
} // namespace sinks
} // namespace spdlog