X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=accesslog.cpp;h=44146504d050395e979826cde015eb7bd4b4b5bf;hp=03aeec8a51fb284884410418c1c9eef901cfd725;hb=b57530552825a13a3cd1924bda99e5e237c722a4;hpb=86eefc0af8cc96d1f63c2f7df697b24b1f4b607b diff --git a/accesslog.cpp b/accesslog.cpp index 03aeec8..4414650 100644 --- a/accesslog.cpp +++ b/accesslog.cpp @@ -1,9 +1,6 @@ -#include -#include #include #include #include -#include #include #include @@ -26,8 +23,11 @@ AccessLogThread::AccessLogThread(const string &filename) void AccessLogThread::write(const ClientStats& client) { - MutexLock lock(&mutex); - pending_writes.push_back(client); + { + MutexLock lock(&mutex); + pending_writes.push_back(client); + } + wakeup(); } void AccessLogThread::do_work() @@ -43,7 +43,7 @@ void AccessLogThread::do_work() } } - while (!should_stop) { + while (!should_stop()) { // Empty the queue. vector writes; { @@ -53,39 +53,27 @@ void AccessLogThread::do_work() if (logfp != NULL) { // Do the actual writes. - time_t now = time(NULL); - for (size_t i = 0; i < writes.size(); ++i) { - fprintf(logfp, "%llu %s %s %d %llu %llu %llu\n", - (long long unsigned)(writes[i].connect_time), - writes[i].remote_addr.c_str(), - writes[i].stream_id.c_str(), - int(now - writes[i].connect_time), - (long long unsigned)(writes[i].bytes_sent), - (long long unsigned)(writes[i].bytes_lost), - (long long unsigned)(writes[i].num_loss_events)); + timespec now; + if (clock_gettime(CLOCK_MONOTONIC_COARSE, &now) == -1) { + log_perror("clock_gettime(CLOCK_MONOTONIC_COARSE)"); + } else { + for (size_t i = 0; i < writes.size(); ++i) { + fprintf(logfp, "%llu %s %s %d %llu %llu %llu\n", + (long long unsigned)(writes[i].connect_time.tv_sec), + writes[i].remote_addr.c_str(), + writes[i].url.c_str(), + int(now.tv_sec - writes[i].connect_time.tv_sec), // Rather coarse. + (long long unsigned)(writes[i].bytes_sent), + (long long unsigned)(writes[i].bytes_lost), + (long long unsigned)(writes[i].num_loss_events)); + } + fflush(logfp); } - fflush(logfp); } - - // Wait until the stop_fd pipe is closed, one second has passed. - // or a spurious signal arrives. - pollfd pfd; - pfd.fd = stop_fd_read; - pfd.events = POLLIN | POLLRDHUP; - int nfds = poll(&pfd, 1, 1000); - if (nfds == 0 || (nfds == -1 && errno == EINTR)) { - continue; - } - if (nfds == 1) { - // Should stop. - break; - } - if (nfds == -1) { - log_perror("poll"); - usleep(100000); - continue; - } + // Wait until we are being woken up, either to quit or because + // there is material in pending_writes. + wait_for_wakeup(NULL); } if (logfp != NULL) {