1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
// o2server.c - benchmark for local message passing
//
// This program works with o2client.c. It is a performance test
// that sends a message back and forth between a client and server.
//
#include "o2.h"
#include "stdio.h"
#include "string.h"
#include "assert.h"
#ifdef WIN32
#include "usleep.h" // special windows implementation of sleep/usleep
#else
#include <unistd.h>
#endif
// To put some weight on fast address lookup, we create N_ADDRS
// different addresses to use.
//
#define N_ADDRS 20
#define MAX_MSG_COUNT 50000
char *client_addresses[N_ADDRS];
int msg_count = 0;
int running = TRUE;
// this is a handler for incoming messages. It simply sends a message
// back to one of the client addresses
//
void server_test(o2_msg_data_ptr msg, const char *types,
o2_arg_ptr *argv, int argc, void *user_data)
{
assert(argc == 1);
msg_count++;
o2_send(client_addresses[msg_count % N_ADDRS], 0, "i", msg_count);
if (msg_count % 10000 == 0) {
printf("server received %d messages\n", msg_count);
}
if (msg_count < 100) {
printf("server message %d is %d\n", msg_count, argv[0]->i32);
}
if (argv[0]->i32 == -1) {
running = FALSE;
} else {
assert(msg_count == argv[0]->i32);
}
}
int main(int argc, const char *argv[])
{
printf("Usage: o2server [debugflags] "
"(see o2.h for flags, use a for all)\n");
if (argc == 2) {
o2_debug_flags(argv[1]);
printf("debug flags are: %s\n", argv[1]);
}
if (argc > 2) {
printf("WARNING: o2server ignoring extra command line argments\n");
}
o2_initialize("test");
o2_service_new("server");
// add our handler for incoming messages to each server address
for (int i = 0; i < N_ADDRS; i++) {
char path[100];
sprintf(path, "/server/benchmark/%d", i);
o2_method_new(path, "i", &server_test, NULL, FALSE, TRUE);
}
// create an address for each destination so we do not have to
// do string manipulation to send a message
for (int i = 0; i < N_ADDRS; i++) {
char path[100];
sprintf(path, "!client/benchmark/%d", i);
client_addresses[i] = (char *) (O2_MALLOC(strlen(path)));
strcpy(client_addresses[i], path);
}
// we are the master clock
o2_clock_set(NULL, NULL);
// wait for client service to be discovered
while (o2_status("client") < O2_REMOTE) {
o2_poll();
usleep(2000); // 2ms
}
printf("We discovered the client at time %g.\n", o2_time_get());
// delay 1 second
double now = o2_time_get();
while (o2_time_get() < now + 1) {
o2_poll();
usleep(2000);
}
printf("Here we go! ...\ntime is %g.\n", o2_time_get());
while (running) {
o2_poll();
//usleep(2000); // 2ms // as fast as possible
}
o2_finish();
printf("SERVER DONE\n");
return 0;
}
|