-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLogCleaner.cpp
52 lines (39 loc) · 1.05 KB
/
LogCleaner.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
#include <fstream>
#include "LogCleaner.h"
LogCleaner& LogCleaner::GetInstance() {
static LogCleaner instance;
return instance;
}
LogCleaner::LogCleaner()
: created_files_log_("created_files.txt"), run_is_valid_(false) {}
LogCleaner::~LogCleaner() {
if (!run_is_valid_) {
for (const auto& file_path : logs_) {
std::remove(file_path.c_str());
}
} else {
WriteLogFile();
}
}
void LogCleaner::WriteLogFile() {
std::ofstream log;
log.open(log_dir_path_ + created_files_log_);
for (const auto& filename : logs_) {
log << filename << std::endl;
}
log.close();
}
void LogCleaner::AddLogFilePath(const std::string& file_path) {
logs_.emplace_back(file_path);
}
void LogCleaner::ValidateUsage() { run_is_valid_ = true; }
void LogCleaner::ClearLastLogs(const std::string& log_dir_path) {
log_dir_path_ = log_dir_path;
std::ifstream last_log;
last_log.open(log_dir_path_ + created_files_log_);
std::string file_path;
while (getline(last_log, file_path)) {
std::remove(file_path.c_str());
}
last_log.close();
}