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
|
#include <assd.h>
#include <pthread.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#define NTHREADS 10
assh *asshole;
char *username;
void *
io_looper(void *arg)
{
struct timeval before, after;
ass_options opts;
int i, rc;
for (;;) {
/* Get the default options. */
rc = ass_options_get(asshole, &opts);
if (rc == -1) {
fprintf(stderr, "ERROR: Couldn't get options: %s.\n",
ass_errmsg(asshole));
return NULL;
}
/* Add more fallthrough threads. */
opts.fallthrough_threads = 5;
rc = ass_options_set(asshole, &opts);
if (rc == -1) {
fprintf(stderr, "ERROR: Couldn't set options: %s.\n",
ass_errmsg(asshole));
return NULL;
}
for (i = 0; i < 10; i++) {
gettimeofday(&before, NULL);
rc = ass_get(asshole, username);
gettimeofday(&after, NULL);
if (rc == -1) {
if (ass_geterr(asshole) == ASS_TIMEDOUT) {
fprintf(stderr,
"ERROR: response timed out.\n");
continue;
}
fprintf(stderr,
"ERROR: Couldn't perform query: %s.\n",
ass_errmsg(asshole));
return NULL;
}
after.tv_sec -= before.tv_sec;
after.tv_usec -= before.tv_usec;
if (after.tv_usec < 0) {
after.tv_sec--;
after.tv_usec += 1000000;
}
fprintf(stderr, "Request time: %2ld.%06ld seconds.\n",
after.tv_sec, after.tv_usec);
}
}
}
int
main(int argc, char *argv[])
{
pthread_t tids[NTHREADS];
int i;
if (argc != 2) {
printf("Usage: %s query\n", argv[0]);
return 1;
}
username = argv[1];
asshole = ass_sphincter_new();
if (asshole == NULL) {
fprintf(stderr, "ERROR: Couldn't connect to asshole.\n");
return 2;
}
for (i = 0; i < NTHREADS; i++)
pthread_create(&tids[i], NULL, io_looper, NULL);
for (i = 0; i < NTHREADS; i++)
pthread_join(tids[i], NULL);
ass_sphincter_close(asshole);
return 0;
}
|