hello-world-cpp/task_3/log_writer.cpp
2025-01-13 19:59:39 +10:00

74 lines
1.6 KiB
C++

#include "log_writer.h"
int LogWriter::write_log(const std::string& log_line) {
std::string new_line = "\n";
int fd = open(
"main.log",
O_WRONLY|O_APPEND|O_CREAT,
0777
);
if (fd == -1) {
return -1; // Ошибка при открытии файла
}
write(fd, log_line.c_str(), log_line.length());
write(fd, new_line.c_str(), new_line.length());
close(fd);
return 0;
}
void LogWriter::log_start_line(){
std::string log_line = (
"start programm with pid " +
std::to_string(getpid()) +
" at " +
MyTime::get_current_time()
);
write_log(log_line);
}
void LogWriter::log_counter(long long int counter){
std::string log_line = (
"counter at " +
MyTime::get_current_time() +
" in process with pid " +
std::to_string(getpid()) +
" is " +
std::to_string(counter)
);
write_log(log_line);
}
void LogWriter::log_copy_start(std::string copy_name) {
std::string log_line = (
copy_name +
" is started at " +
MyTime::get_current_time() +
" with pid " +
std::to_string(getpid())
);
write_log(log_line);
}
void LogWriter::log_copy_finish(std::string copy_name) {
std::string log_line = (
copy_name +
" is finished at " +
MyTime::get_current_time()
);
write_log(log_line);
}
void LogWriter::log_copy_error(std::string copy_name) {
std::string log_line = (
copy_name +
" is not finished"
);
write_log(log_line);
}