1 /* $NetBSD: bench_cascade.c,v 1.1.1.1 2013/04/11 16:43:32 christos Exp $ */
3 * Copyright 2007-2012 Niels Provos and Nick Mathewson
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include "event2/event-config.h"
30 #include <sys/cdefs.h>
31 __RCSID("$NetBSD: bench_cascade.c,v 1.1.1.1 2013/04/11 16:43:32 christos Exp $");
33 #include <sys/types.h>
35 #ifdef _EVENT_HAVE_SYS_TIME_H
39 #define WIN32_LEAN_AND_MEAN
42 #include <sys/socket.h>
43 #include <sys/resource.h>
50 #ifdef _EVENT_HAVE_UNISTD_H
59 * This benchmark tests how quickly we can propagate a write down a chain
60 * of socket pairs. We start by writing to the first socket pair and all
61 * events will fire subsequently until the last socket pair has been reached
62 * and the benchmark terminates.
66 static evutil_socket_t
*pipes
;
67 static struct event
*events
;
70 read_cb(evutil_socket_t fd
, short which
, void *arg
)
73 evutil_socket_t sock
= (evutil_socket_t
)(ev_intptr_t
)arg
;
75 recv(fd
, &ch
, sizeof(ch
), 0);
77 if (send(sock
, "e", 1, 0) < 0)
83 static struct timeval
*
84 run_once(int num_pipes
)
88 static struct timeval ts
, te
, tv_timeout
;
90 events
= calloc(num_pipes
, sizeof(struct event
));
91 pipes
= calloc(num_pipes
* 2, sizeof(evutil_socket_t
));
93 if (events
== NULL
|| pipes
== NULL
) {
98 for (cp
= pipes
, i
= 0; i
< num_pipes
; i
++, cp
+= 2) {
99 if (evutil_socketpair(AF_UNIX
, SOCK_STREAM
, 0, cp
) == -1) {
100 perror("socketpair");
105 /* measurements includes event setup */
106 evutil_gettimeofday(&ts
, NULL
);
108 /* provide a default timeout for events */
109 evutil_timerclear(&tv_timeout
);
110 tv_timeout
.tv_sec
= 60;
112 for (cp
= pipes
, i
= 0; i
< num_pipes
; i
++, cp
+= 2) {
113 evutil_socket_t fd
= i
< num_pipes
- 1 ? cp
[3] : -1;
114 event_set(&events
[i
], cp
[0], EV_READ
, read_cb
,
115 (void *)(ev_intptr_t
)fd
);
116 event_add(&events
[i
], &tv_timeout
);
121 /* kick everything off with a single write */
122 if (send(pipes
[1], "e", 1, 0) < 0)
127 evutil_gettimeofday(&te
, NULL
);
128 evutil_timersub(&te
, &ts
, &te
);
130 for (cp
= pipes
, i
= 0; i
< num_pipes
; i
++, cp
+= 2) {
131 event_del(&events
[i
]);
143 main(int argc
, char **argv
)
152 while ((c
= getopt(argc
, argv
, "n:")) != -1) {
155 num_pipes
= atoi(optarg
);
158 fprintf(stderr
, "Illegal argument \"%c\"\n", c
);
164 rl
.rlim_cur
= rl
.rlim_max
= num_pipes
* 2 + 50;
165 if (setrlimit(RLIMIT_NOFILE
, &rl
) == -1) {
173 for (i
= 0; i
< 25; i
++) {
174 tv
= run_once(num_pipes
);
177 fprintf(stdout
, "%ld\n",
178 tv
->tv_sec
* 1000000L + tv
->tv_usec
);