]> git.sesse.net Git - cubemap/blobdiff - accesslog.cpp
Revert "Rewrite the entire internal signal handling/wakeup."
[cubemap] / accesslog.cpp
index 7dfadff5bbd5923a0ef74ac1566b32c506a80f3c..03aeec8a51fb284884410418c1c9eef901cfd725 100644 (file)
@@ -1,9 +1,9 @@
+#include <errno.h>
+#include <poll.h>
+#include <stddef.h>
 #include <stdio.h>
+#include <time.h>
 #include <unistd.h>
-#include <sys/poll.h>
-#include <errno.h>
-
-#include <algorithm>
 #include <string>
 #include <vector>
 
@@ -51,23 +51,21 @@ void AccessLogThread::do_work()
                        swap(pending_writes, writes);
                }
 
-               if (logfp == NULL) {
-                       continue;
+               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));
+                       }
+                       fflush(logfp);
                }
-
-               // 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));
-               }
-               fflush(logfp);
                
                // Wait until the stop_fd pipe is closed, one second has passed.
                // or a spurious signal arrives.
@@ -89,9 +87,11 @@ void AccessLogThread::do_work()
                        continue;
                }
        }
-       
-       if (fclose(logfp) == EOF) {
-               log_perror("fclose");
+
+       if (logfp != NULL) {    
+               if (fclose(logfp) == EOF) {
+                       log_perror("fclose");
+               }
        }
 
        logfp = NULL;