X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Ffile_log.cc;h=f6eaa58f8ebaf85b4e02630fee9ab869f91115c2;hp=a9522bad507dc722033074c9a5abd45c7770dcf5;hb=HEAD;hpb=809bcfd85fad2ef7d4131c054be4cccd5bcc9d05 diff --git a/src/lib/file_log.cc b/src/lib/file_log.cc index a9522bad5..5265e2a9d 100644 --- a/src/lib/file_log.cc +++ b/src/lib/file_log.cc @@ -22,6 +22,8 @@ #include "file_log.h" #include "cross.h" #include "config.h" +#include +#include #include #include #include @@ -51,14 +53,13 @@ FileLog::FileLog (boost::filesystem::path file, int types) void FileLog::do_log (shared_ptr entry) { - auto f = fopen_boost (_file, "a"); + dcp::File f(_file, "a"); if (!f) { cout << "(could not log to " << _file.string() << " error " << errno << "): " << entry->get() << "\n"; return; } - fprintf (f, "%s\n", entry->get().c_str()); - fclose (f); + fprintf(f.get(), "%s\n", entry->get().c_str()); } @@ -70,7 +71,7 @@ FileLog::head_and_tail (int amount) const uintmax_t head_amount = amount; uintmax_t tail_amount = amount; boost::system::error_code ec; - uintmax_t size = boost::filesystem::file_size (_file, ec); + uintmax_t size = dcp::filesystem::file_size(_file, ec); if (size == static_cast(-1)) { return ""; } @@ -80,7 +81,7 @@ FileLog::head_and_tail (int amount) const tail_amount = 0; } - auto f = fopen_boost (_file, "r"); + dcp::File f(_file, "r"); if (!f) { return ""; } @@ -89,21 +90,19 @@ FileLog::head_and_tail (int amount) const std::vector buffer(max(head_amount, tail_amount) + 1); - int N = fread (buffer.data(), 1, head_amount, f); + int N = f.read(buffer.data(), 1, head_amount); buffer[N] = '\0'; out += string (buffer.data()); if (tail_amount > 0) { out += "\n .\n .\n .\n"; - fseek (f, - tail_amount - 1, SEEK_END); + f.seek(- tail_amount - 1, SEEK_END); - N = fread (buffer.data(), 1, tail_amount, f); + N = f.read(buffer.data(), 1, tail_amount); buffer[N] = '\0'; - out += string (buffer.data()) + "\n"; + out += string(buffer.data()) + "\n"; } - fclose (f); - return out; }