etc/services - sync with NetBSD-8
[minix.git] / external / bsd / libevent / dist / test / bench_cascade.c
blob85e3419cfb757fd5197578d4504694a9319bb211
1 /* $NetBSD: bench_cascade.c,v 1.1.1.1 2013/04/11 16:43:32 christos Exp $ */
2 /*
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
7 * are met:
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>
34 #include <sys/stat.h>
35 #ifdef _EVENT_HAVE_SYS_TIME_H
36 #include <sys/time.h>
37 #endif
38 #ifdef WIN32
39 #define WIN32_LEAN_AND_MEAN
40 #include <windows.h>
41 #else
42 #include <sys/socket.h>
43 #include <sys/resource.h>
44 #endif
45 #include <signal.h>
46 #include <fcntl.h>
47 #include <stdlib.h>
48 #include <stdio.h>
49 #include <string.h>
50 #ifdef _EVENT_HAVE_UNISTD_H
51 #include <unistd.h>
52 #endif
53 #include <errno.h>
55 #include <event.h>
56 #include <evutil.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.
65 static int fired;
66 static evutil_socket_t *pipes;
67 static struct event *events;
69 static void
70 read_cb(evutil_socket_t fd, short which, void *arg)
72 char ch;
73 evutil_socket_t sock = (evutil_socket_t)(ev_intptr_t)arg;
75 recv(fd, &ch, sizeof(ch), 0);
76 if (sock >= 0) {
77 if (send(sock, "e", 1, 0) < 0)
78 perror("send");
80 fired++;
83 static struct timeval *
84 run_once(int num_pipes)
86 int i;
87 evutil_socket_t *cp;
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) {
94 perror("malloc");
95 exit(1);
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");
101 exit(1);
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);
119 fired = 0;
121 /* kick everything off with a single write */
122 if (send(pipes[1], "e", 1, 0) < 0)
123 perror("send");
125 event_dispatch();
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]);
132 close(cp[0]);
133 close(cp[1]);
136 free(pipes);
137 free(events);
139 return (&te);
143 main(int argc, char **argv)
145 #ifndef WIN32
146 struct rlimit rl;
147 #endif
148 int i, c;
149 struct timeval *tv;
151 int num_pipes = 100;
152 while ((c = getopt(argc, argv, "n:")) != -1) {
153 switch (c) {
154 case 'n':
155 num_pipes = atoi(optarg);
156 break;
157 default:
158 fprintf(stderr, "Illegal argument \"%c\"\n", c);
159 exit(1);
163 #ifndef WIN32
164 rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50;
165 if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
166 perror("setrlimit");
167 exit(1);
169 #endif
171 event_init();
173 for (i = 0; i < 25; i++) {
174 tv = run_once(num_pipes);
175 if (tv == NULL)
176 exit(1);
177 fprintf(stdout, "%ld\n",
178 tv->tv_sec * 1000000L + tv->tv_usec);
181 exit(0);