| 1 | #define __USE_GNU
|
|---|
| 2 |
|
|---|
| 3 | #include <errno.h>
|
|---|
| 4 | #include <stdio.h>
|
|---|
| 5 | #include <string.h>
|
|---|
| 6 | #include <unistd.h>
|
|---|
| 7 | extern "C" {
|
|---|
| 8 | #include <sys/socket.h>
|
|---|
| 9 | #include <netinet/in.h>
|
|---|
| 10 | }
|
|---|
| 11 |
|
|---|
| 12 | #include <kernel.hfa>
|
|---|
| 13 | #include <iofwd.hfa>
|
|---|
| 14 | #include <stats.hfa>
|
|---|
| 15 | #include <time.hfa>
|
|---|
| 16 | #include <thread.hfa>
|
|---|
| 17 |
|
|---|
| 18 | #include "filecache.hfa"
|
|---|
| 19 | #include "options.hfa"
|
|---|
| 20 | #include "worker.hfa"
|
|---|
| 21 |
|
|---|
| 22 | extern void register_fixed_files( cluster &, int *, unsigned count );
|
|---|
| 23 |
|
|---|
| 24 | Duration default_preemption() {
|
|---|
| 25 | return 0;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | //=============================================================================================
|
|---|
| 29 | // Globals
|
|---|
| 30 | //=============================================================================================
|
|---|
| 31 | struct ServerProc {
|
|---|
| 32 | processor self;
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | void ?{}( ServerProc & this ) {
|
|---|
| 36 | /* paranoid */ assert( options.clopts.instance != 0p );
|
|---|
| 37 | (this.self){ "Benchmark Processor", *options.clopts.instance };
|
|---|
| 38 |
|
|---|
| 39 | #if !defined(__CFA_NO_STATISTICS__)
|
|---|
| 40 | if( options.clopts.procstats ) {
|
|---|
| 41 | print_stats_at_exit( this.self, options.clopts.instance->print_stats );
|
|---|
| 42 | }
|
|---|
| 43 | if( options.clopts.viewhalts ) {
|
|---|
| 44 | print_halts( this.self );
|
|---|
| 45 | }
|
|---|
| 46 | #endif
|
|---|
| 47 | }
|
|---|
| 48 |
|
|---|
| 49 | extern void init_protocol(void);
|
|---|
| 50 | extern void deinit_protocol(void);
|
|---|
| 51 |
|
|---|
| 52 | //=============================================================================================
|
|---|
| 53 | // Stats Printer
|
|---|
| 54 | //============================================================================================='
|
|---|
| 55 |
|
|---|
| 56 | thread StatsPrinter {};
|
|---|
| 57 |
|
|---|
| 58 | void ?{}( StatsPrinter & this ) {
|
|---|
| 59 | ((thread&)this){ "Stats Printer Thread" };
|
|---|
| 60 | }
|
|---|
| 61 |
|
|---|
| 62 | void main(StatsPrinter & this) {
|
|---|
| 63 | LOOP: for() {
|
|---|
| 64 | waitfor( ^?{} : this) {
|
|---|
| 65 | break LOOP;
|
|---|
| 66 | }
|
|---|
| 67 | or else {}
|
|---|
| 68 |
|
|---|
| 69 | sleep(10`s);
|
|---|
| 70 |
|
|---|
| 71 | print_stats_now( *options.clopts.instance, CFA_STATS_READY_Q | CFA_STATS_IO );
|
|---|
| 72 | }
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | //=============================================================================================
|
|---|
| 76 | // Main
|
|---|
| 77 | //============================================================================================='
|
|---|
| 78 | int main( int argc, char * argv[] ) {
|
|---|
| 79 | //===================
|
|---|
| 80 | // Parse args
|
|---|
| 81 | const char * path = parse_options(argc, argv);
|
|---|
| 82 |
|
|---|
| 83 | //===================
|
|---|
| 84 | // Open Files
|
|---|
| 85 | printf("Filling cache from %s\n", path);
|
|---|
| 86 | fill_cache( path );
|
|---|
| 87 |
|
|---|
| 88 | //===================
|
|---|
| 89 | // Open Socket
|
|---|
| 90 | printf("%ld : Listening on port %d\n", getpid(), options.socket.port);
|
|---|
| 91 | int server_fd = socket(AF_INET, SOCK_STREAM, 0);
|
|---|
| 92 | if(server_fd < 0) {
|
|---|
| 93 | abort( "socket error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 94 | }
|
|---|
| 95 |
|
|---|
| 96 | int ret = 0;
|
|---|
| 97 | struct sockaddr_in address;
|
|---|
| 98 | int addrlen = sizeof(address);
|
|---|
| 99 | memset( (char *)&address, '\0' );
|
|---|
| 100 | address.sin_family = AF_INET;
|
|---|
| 101 | address.sin_addr.s_addr = htonl(INADDR_ANY);
|
|---|
| 102 | address.sin_port = htons( options.socket.port );
|
|---|
| 103 |
|
|---|
| 104 | int waited = 0;
|
|---|
| 105 | for() {
|
|---|
| 106 | ret = bind( server_fd, (struct sockaddr *)&address, sizeof(address) );
|
|---|
| 107 | if(ret < 0) {
|
|---|
| 108 | if(errno == EADDRINUSE) {
|
|---|
| 109 | if(waited == 0) {
|
|---|
| 110 | printf("Waiting for port\n");
|
|---|
| 111 | } else {
|
|---|
| 112 | printf("\r%d", waited);
|
|---|
| 113 | fflush(stdout);
|
|---|
| 114 | }
|
|---|
| 115 | waited ++;
|
|---|
| 116 | sleep( 1`s );
|
|---|
| 117 | continue;
|
|---|
| 118 | }
|
|---|
| 119 | abort( "bind error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 120 | }
|
|---|
| 121 | break;
|
|---|
| 122 | }
|
|---|
| 123 |
|
|---|
| 124 | ret = listen( server_fd, options.socket.backlog );
|
|---|
| 125 | if(ret < 0) {
|
|---|
| 126 | abort( "listen error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| 129 | //===================
|
|---|
| 130 | // Run Server Cluster
|
|---|
| 131 | {
|
|---|
| 132 | cluster cl = { "Server Cluster", options.clopts.params };
|
|---|
| 133 | #if !defined(__CFA_NO_STATISTICS__)
|
|---|
| 134 | print_stats_at_exit( cl, CFA_STATS_READY_Q | CFA_STATS_IO );
|
|---|
| 135 | #endif
|
|---|
| 136 | options.clopts.instance = &cl;
|
|---|
| 137 |
|
|---|
| 138 |
|
|---|
| 139 | int pipe_cnt = options.clopts.nworkers * 2;
|
|---|
| 140 | int pipe_off;
|
|---|
| 141 | int * fds;
|
|---|
| 142 | [fds, pipe_off] = filefds( pipe_cnt );
|
|---|
| 143 | for(i; 0 ~ pipe_cnt ~ 2) {
|
|---|
| 144 | int ret = pipe(&fds[pipe_off + i]);
|
|---|
| 145 | if( ret < 0 ) { abort( "pipe error: (%d) %s\n", (int)errno, strerror(errno) ); }
|
|---|
| 146 | }
|
|---|
| 147 |
|
|---|
| 148 | if(options.file_cache.fixed_fds) {
|
|---|
| 149 | register_fixed_files(cl, fds, pipe_off);
|
|---|
| 150 | }
|
|---|
| 151 |
|
|---|
| 152 | {
|
|---|
| 153 | ServerProc procs[options.clopts.nprocs];
|
|---|
| 154 | StatsPrinter printer;
|
|---|
| 155 |
|
|---|
| 156 | init_protocol();
|
|---|
| 157 | {
|
|---|
| 158 | Worker workers[options.clopts.nworkers];
|
|---|
| 159 | for(i; options.clopts.nworkers) {
|
|---|
| 160 | // if( options.file_cache.fixed_fds ) {
|
|---|
| 161 | // workers[i].pipe[0] = pipe_off + (i * 2) + 0;
|
|---|
| 162 | // workers[i].pipe[1] = pipe_off + (i * 2) + 1;
|
|---|
| 163 | // }
|
|---|
| 164 | // else
|
|---|
| 165 | {
|
|---|
| 166 | workers[i].pipe[0] = fds[pipe_off + (i * 2) + 0];
|
|---|
| 167 | workers[i].pipe[1] = fds[pipe_off + (i * 2) + 1];
|
|---|
| 168 | workers[i].sockfd = server_fd;
|
|---|
| 169 | workers[i].addr = (struct sockaddr *)&address;
|
|---|
| 170 | workers[i].addrlen = (socklen_t*)&addrlen;
|
|---|
| 171 | workers[i].flags = 0;
|
|---|
| 172 | }
|
|---|
| 173 | unpark( workers[i] );
|
|---|
| 174 | }
|
|---|
| 175 | printf("%d workers started on %d processors\n", options.clopts.nworkers, options.clopts.nprocs);
|
|---|
| 176 | {
|
|---|
| 177 | char buffer[128];
|
|---|
| 178 | while(int ret = cfa_read(0, buffer, 128, 0, -1`s, 0p, 0p); ret != 0) {
|
|---|
| 179 | if(ret < 0) abort( "main read error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 180 | }
|
|---|
| 181 |
|
|---|
| 182 | printf("Shutting Down\n");
|
|---|
| 183 | }
|
|---|
| 184 |
|
|---|
| 185 | for(i; options.clopts.nworkers) {
|
|---|
| 186 | workers[i].done = true;
|
|---|
| 187 | cancel(workers[i].cancel);
|
|---|
| 188 | }
|
|---|
| 189 |
|
|---|
| 190 | printf("Shutting down socket\n");
|
|---|
| 191 | int ret = shutdown( server_fd, SHUT_RD );
|
|---|
| 192 | if( ret < 0 ) { abort( "shutdown error: (%d) %s\n", (int)errno, strerror(errno) ); }
|
|---|
| 193 |
|
|---|
| 194 | //===================
|
|---|
| 195 | // Close Socket
|
|---|
| 196 | printf("Closing Socket\n");
|
|---|
| 197 | ret = close( server_fd );
|
|---|
| 198 | if(ret < 0) {
|
|---|
| 199 | abort( "close socket error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 200 | }
|
|---|
| 201 | }
|
|---|
| 202 | printf("Workers Closed\n");
|
|---|
| 203 |
|
|---|
| 204 | deinit_protocol();
|
|---|
| 205 | }
|
|---|
| 206 |
|
|---|
| 207 | for(i; pipe_cnt) {
|
|---|
| 208 | ret = close( fds[pipe_off + i] );
|
|---|
| 209 | if(ret < 0) {
|
|---|
| 210 | abort( "close pipe error: (%d) %s\n", (int)errno, strerror(errno) );
|
|---|
| 211 | }
|
|---|
| 212 | }
|
|---|
| 213 | free(fds);
|
|---|
| 214 |
|
|---|
| 215 | }
|
|---|
| 216 |
|
|---|
| 217 | //===================
|
|---|
| 218 | // Close Files
|
|---|
| 219 | printf("Closing Files\n");
|
|---|
| 220 | close_cache();
|
|---|
| 221 | }
|
|---|