#include #include #include #include #include "print.h" #include "util.h" void lprtf(const char * fmt, ...) { va_list args; va_start(args, fmt); String formatted = String::va_fmt(args, fmt); va_end(args); fwrite(formatted.c_str(), 1, formatted.size(), stdout); fflush(stdout); SessionLog::get().append(formatted); } SessionLog & SessionLog::get() { static SessionLog instance; return instance; } SessionLog::SessionLog() { if (!this->enable) return; String filename = String::fmt("%lu.log", getpid()); FILE * file = fopen(filename.c_str(), "w+"); } SessionLog::~SessionLog() { safe_free(&this->file); } void SessionLog::append(const String & str) const { this->append(str.data(), str.size()); } void SessionLog::append(const char * str) const { this->append(str, strlen(str)); } void SessionLog::append(const char * buf, size_t buf_size) const { if (this->file == nullptr) return; if (buf_size == 0) return; fwrite(buf, 1, buf_size, this->file); }