]> git.sesse.net Git - jam/blobdiff - jam.c
Print out the statistics, and fix a stats bug.
[jam] / jam.c
diff --git a/jam.c b/jam.c
index fc0b723867e18ade828c9c9ee73aae038b68a873..1b6aaed6cf7625462f638d86eaa9430a5212b585 100644 (file)
--- a/jam.c
+++ b/jam.c
@@ -22,6 +22,12 @@ unsigned room_sources = 0;
 unsigned num_senders = 128;
 unsigned do_listen = 1;
 
+unsigned long long total_bytes_received = 0;
+pthread_mutex_t receive_mutex = PTHREAD_MUTEX_INITIALIZER;
+
+unsigned long long total_bytes_sent = 0;
+pthread_mutex_t send_mutex = PTHREAD_MUTEX_INITIALIZER;
+
 const static struct option longopts[] = {
        { "source-list", required_argument, NULL, 's' },
        { "destination-list", required_argument, NULL, 'd' },
@@ -134,6 +140,7 @@ void *sender_worker(void *arg)
        unsigned i;
        int sock;
        char buf[65536];
+       unsigned long long bytes_sent = 0;
 
        for (i = 0; i < 65536; ++i)
                buf[i] = rand() & 0xff;
@@ -156,15 +163,11 @@ void *sender_worker(void *arg)
                sin.sin_port = htons(port);
                sin.sin_addr = destinations[dst_num];
        
-               fprintf(stderr, "connecting %u\n", i);
-
                if (connect(sock, (struct sockaddr *)&sin, sizeof(sin)) == -1) {
                        perror("connect()");
                        exit(1);
                }
                
-               fprintf(stderr, "connected\n");
-
                while (num_bytes > 0) {
                        unsigned bytes_to_send = num_bytes;
                        unsigned ret;
@@ -180,11 +183,25 @@ void *sender_worker(void *arg)
                        }
 
                        num_bytes -= ret;
+                       bytes_sent += ret;
+
+                       // update the central counter after every 1MB (8ms
+                       // at gigabit speeds, should be enough) of sent data
+                       if (bytes_sent > 1048576) {
+                               pthread_mutex_lock(&send_mutex);
+                               total_bytes_sent += bytes_sent;
+                               pthread_mutex_unlock(&send_mutex);
+
+                               bytes_sent = 0;
+                       }
                }
-               fprintf(stderr, "sent\n");
 
                close(sock);
        }
+                       
+       pthread_mutex_lock(&send_mutex);
+       total_bytes_sent += bytes_sent;
+       pthread_mutex_unlock(&send_mutex);
 
        pthread_exit(0);
 }
@@ -193,24 +210,81 @@ void *receiver_worker(void *arg)
 {
        int sock = (int)arg;
        char buf[65536];
-
-       fprintf(stderr, "Receiver started\n");
+       unsigned long long bytes_received = 0;
 
        for ( ;; ) {
                int ret = read(sock, buf, 65536);
                if (ret == 0)
                        break;
 
-               // FIXME: update stats here
+               bytes_received += ret;
+
+               // update the central counter after every 1MB (8ms
+               // at gigabit speeds, should be enough) of received data
+               if (bytes_received > 1048576) {
+                       pthread_mutex_lock(&receive_mutex);
+                       total_bytes_received += bytes_received;
+                       pthread_mutex_unlock(&receive_mutex);
+
+                       bytes_received = 0;
+               }
        }
        
        if (close(sock) == -1) {
                perror("close()");
                exit(1);
        }
+                       
+       pthread_mutex_lock(&receive_mutex);
+       total_bytes_received += bytes_received;
+       pthread_mutex_unlock(&receive_mutex);
 
        pthread_exit(0);
 }
+       
+void *receiver_dispatcher(void *arg)
+{
+       int server_sock = (int)arg;
+       pthread_attr_t attr;
+       
+       // FIXME: these do not really set errno
+       if (pthread_attr_init(&attr) != 0) {
+               perror("pthread_attr_init()");
+               exit(1);
+       }
+
+       if (pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN + 65536 + 0x4000) != 0) {
+               perror("pthread_attr_setstacksize");
+               exit(1);
+       }
+
+       if (pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED) != 0) {
+               perror("pthread_attr_setdetachstate");
+               exit(1);
+       }
+
+       /*
+        * Listen for incoming connections, spawning off one receiver
+        * thread for each (which will just gobble up the data until
+        * we're done).
+        */
+       for ( ;; ) {
+               struct sockaddr_in addr;
+               socklen_t addr_len = sizeof(addr);
+               pthread_t thread;
+
+               int sock = accept(server_sock, (struct sockaddr *)&addr, &addr_len);
+               if (sock == -1) {
+                       perror("accept()");
+                       exit(1);
+               }
+
+               if (pthread_create(&thread, &attr, receiver_worker, (void *)sock) != 0) {
+                       perror("pthread_create()");
+                       exit(1);
+               }
+       }
+}
 
 int get_server_socket(unsigned short port)
 {
@@ -280,6 +354,15 @@ int main(int argc, char **argv)
                perror("pthread_attr_setdetachstate");
                exit(1);
        }
+               
+       // Fire off the master receiver.
+       if (do_listen) {
+               pthread_t thread;
+               if (pthread_create(&thread, &attr, receiver_dispatcher, (void *)server_sock) != 0) {
+                       perror("pthread_create()");
+                       exit(1);
+               }
+       }
 
        // Fire off sender workers.
        for (i = 0; i < num_senders; ++i) {
@@ -291,31 +374,21 @@ int main(int argc, char **argv)
                }
        }
 
-       /*
-        * Listen for incoming connections, spawning off one receiver
-        * thread for each (which will just gobble up the data until
-        * we're done).
-        */
-       if (!do_listen) {
-               sleep(3600);
-               exit(0);
-       }
-
+       // Just stay around collecting statistics until we're done.
        for ( ;; ) {
-               struct sockaddr_in addr;
-               socklen_t addr_len = sizeof(addr);
-               pthread_t thread;
+               unsigned long long sent, received;
 
-               int sock = accept(server_sock, (struct sockaddr *)&addr, &addr_len);
-               if (sock == -1) {
-                       perror("accept()");
-                       exit(1);
-               }
+               pthread_mutex_lock(&send_mutex);
+               sent = total_bytes_sent;
+               pthread_mutex_unlock(&send_mutex);
+               
+               pthread_mutex_lock(&receive_mutex);
+               received = total_bytes_received;
+               pthread_mutex_unlock(&receive_mutex);
 
-               if (pthread_create(&thread, &attr, receiver_worker, (void *)sock) != 0) {
-                       perror("pthread_create()");
-                       exit(1);
-               }
+               printf("%llu %llu\n", sent, received);
+
+               sleep(1);
        }
 
        exit(0);