1c43e99fdSEd Maste /*
2c43e99fdSEd Maste * This sample code shows how to use Libevent to read from a named pipe.
3c43e99fdSEd Maste * XXX This code could make better use of the Libevent interfaces.
4c43e99fdSEd Maste *
5c43e99fdSEd Maste * XXX This does not work on Windows; ignore everything inside the _WIN32 block.
6c43e99fdSEd Maste *
7c43e99fdSEd Maste * On UNIX, compile with:
8c43e99fdSEd Maste * cc -I/usr/local/include -o event-read-fifo event-read-fifo.c \
9c43e99fdSEd Maste * -L/usr/local/lib -levent
10c43e99fdSEd Maste */
11c43e99fdSEd Maste
12c43e99fdSEd Maste #include <event2/event-config.h>
13c43e99fdSEd Maste
14c43e99fdSEd Maste #include <sys/types.h>
15c43e99fdSEd Maste #include <sys/stat.h>
16c43e99fdSEd Maste #ifndef _WIN32
17c43e99fdSEd Maste #include <sys/queue.h>
18c43e99fdSEd Maste #include <unistd.h>
19c43e99fdSEd Maste #include <sys/time.h>
20c43e99fdSEd Maste #include <signal.h>
21c43e99fdSEd Maste #else
22c43e99fdSEd Maste #include <winsock2.h>
23c43e99fdSEd Maste #include <windows.h>
24c43e99fdSEd Maste #endif
25c43e99fdSEd Maste #include <fcntl.h>
26c43e99fdSEd Maste #include <stdlib.h>
27c43e99fdSEd Maste #include <stdio.h>
28c43e99fdSEd Maste #include <string.h>
29c43e99fdSEd Maste #include <errno.h>
30c43e99fdSEd Maste
31c43e99fdSEd Maste #include <event2/event.h>
32c43e99fdSEd Maste
33c43e99fdSEd Maste static void
fifo_read(evutil_socket_t fd,short event,void * arg)34c43e99fdSEd Maste fifo_read(evutil_socket_t fd, short event, void *arg)
35c43e99fdSEd Maste {
36c43e99fdSEd Maste char buf[255];
37c43e99fdSEd Maste int len;
38c43e99fdSEd Maste struct event *ev = arg;
39c43e99fdSEd Maste #ifdef _WIN32
40c43e99fdSEd Maste DWORD dwBytesRead;
41c43e99fdSEd Maste #endif
42c43e99fdSEd Maste
43c43e99fdSEd Maste fprintf(stderr, "fifo_read called with fd: %d, event: %d, arg: %p\n",
44c43e99fdSEd Maste (int)fd, event, arg);
45c43e99fdSEd Maste #ifdef _WIN32
46c43e99fdSEd Maste len = ReadFile((HANDLE)fd, buf, sizeof(buf) - 1, &dwBytesRead, NULL);
47c43e99fdSEd Maste
48c43e99fdSEd Maste /* Check for end of file. */
49c43e99fdSEd Maste if (len && dwBytesRead == 0) {
50c43e99fdSEd Maste fprintf(stderr, "End Of File");
51c43e99fdSEd Maste event_del(ev);
52c43e99fdSEd Maste return;
53c43e99fdSEd Maste }
54c43e99fdSEd Maste
55c43e99fdSEd Maste buf[dwBytesRead] = '\0';
56c43e99fdSEd Maste #else
57c43e99fdSEd Maste len = read(fd, buf, sizeof(buf) - 1);
58c43e99fdSEd Maste
59c43e99fdSEd Maste if (len <= 0) {
60c43e99fdSEd Maste if (len == -1)
61c43e99fdSEd Maste perror("read");
62c43e99fdSEd Maste else if (len == 0)
63c43e99fdSEd Maste fprintf(stderr, "Connection closed\n");
64c43e99fdSEd Maste event_del(ev);
65c43e99fdSEd Maste event_base_loopbreak(event_get_base(ev));
66c43e99fdSEd Maste return;
67c43e99fdSEd Maste }
68c43e99fdSEd Maste
69c43e99fdSEd Maste buf[len] = '\0';
70c43e99fdSEd Maste #endif
71c43e99fdSEd Maste fprintf(stdout, "Read: %s\n", buf);
72c43e99fdSEd Maste }
73c43e99fdSEd Maste
74c43e99fdSEd Maste /* On Unix, cleanup event.fifo if SIGINT is received. */
75c43e99fdSEd Maste #ifndef _WIN32
76c43e99fdSEd Maste static void
signal_cb(evutil_socket_t fd,short event,void * arg)77c43e99fdSEd Maste signal_cb(evutil_socket_t fd, short event, void *arg)
78c43e99fdSEd Maste {
79c43e99fdSEd Maste struct event_base *base = arg;
80c43e99fdSEd Maste event_base_loopbreak(base);
81c43e99fdSEd Maste }
82c43e99fdSEd Maste #endif
83c43e99fdSEd Maste
84c43e99fdSEd Maste int
main(int argc,char ** argv)85c43e99fdSEd Maste main(int argc, char **argv)
86c43e99fdSEd Maste {
87c43e99fdSEd Maste struct event *evfifo;
88c43e99fdSEd Maste struct event_base* base;
89c43e99fdSEd Maste #ifdef _WIN32
90c43e99fdSEd Maste HANDLE socket;
91c43e99fdSEd Maste /* Open a file. */
92c43e99fdSEd Maste socket = CreateFileA("test.txt", /* open File */
93c43e99fdSEd Maste GENERIC_READ, /* open for reading */
94c43e99fdSEd Maste 0, /* do not share */
95c43e99fdSEd Maste NULL, /* no security */
96c43e99fdSEd Maste OPEN_EXISTING, /* existing file only */
97c43e99fdSEd Maste FILE_ATTRIBUTE_NORMAL, /* normal file */
98c43e99fdSEd Maste NULL); /* no attr. template */
99c43e99fdSEd Maste
100c43e99fdSEd Maste if (socket == INVALID_HANDLE_VALUE)
101c43e99fdSEd Maste return 1;
102c43e99fdSEd Maste
103c43e99fdSEd Maste #else
104c43e99fdSEd Maste struct event *signal_int;
105c43e99fdSEd Maste struct stat st;
106c43e99fdSEd Maste const char *fifo = "event.fifo";
107c43e99fdSEd Maste int socket;
108c43e99fdSEd Maste
109c43e99fdSEd Maste if (lstat(fifo, &st) == 0) {
110c43e99fdSEd Maste if ((st.st_mode & S_IFMT) == S_IFREG) {
111c43e99fdSEd Maste errno = EEXIST;
112c43e99fdSEd Maste perror("lstat");
113c43e99fdSEd Maste exit(1);
114c43e99fdSEd Maste }
115c43e99fdSEd Maste }
116c43e99fdSEd Maste
117c43e99fdSEd Maste unlink(fifo);
118c43e99fdSEd Maste if (mkfifo(fifo, 0600) == -1) {
119c43e99fdSEd Maste perror("mkfifo");
120c43e99fdSEd Maste exit(1);
121c43e99fdSEd Maste }
122c43e99fdSEd Maste
123c43e99fdSEd Maste socket = open(fifo, O_RDONLY | O_NONBLOCK, 0);
124c43e99fdSEd Maste
125c43e99fdSEd Maste if (socket == -1) {
126c43e99fdSEd Maste perror("open");
127c43e99fdSEd Maste exit(1);
128c43e99fdSEd Maste }
129c43e99fdSEd Maste
130c43e99fdSEd Maste fprintf(stderr, "Write data to %s\n", fifo);
131c43e99fdSEd Maste #endif
132*b50261e2SCy Schubert /* Initialize the event library */
133c43e99fdSEd Maste base = event_base_new();
134c43e99fdSEd Maste
135*b50261e2SCy Schubert /* Initialize one event */
136c43e99fdSEd Maste #ifdef _WIN32
137c43e99fdSEd Maste evfifo = event_new(base, (evutil_socket_t)socket, EV_READ|EV_PERSIST, fifo_read,
138c43e99fdSEd Maste event_self_cbarg());
139c43e99fdSEd Maste #else
140c43e99fdSEd Maste /* catch SIGINT so that event.fifo can be cleaned up */
141c43e99fdSEd Maste signal_int = evsignal_new(base, SIGINT, signal_cb, base);
142c43e99fdSEd Maste event_add(signal_int, NULL);
143c43e99fdSEd Maste
144c43e99fdSEd Maste evfifo = event_new(base, socket, EV_READ|EV_PERSIST, fifo_read,
145c43e99fdSEd Maste event_self_cbarg());
146c43e99fdSEd Maste #endif
147c43e99fdSEd Maste
148c43e99fdSEd Maste /* Add it to the active events, without a timeout */
149c43e99fdSEd Maste event_add(evfifo, NULL);
150c43e99fdSEd Maste
151c43e99fdSEd Maste event_base_dispatch(base);
152c43e99fdSEd Maste event_base_free(base);
153c43e99fdSEd Maste #ifdef _WIN32
154c43e99fdSEd Maste CloseHandle(socket);
155c43e99fdSEd Maste #else
156c43e99fdSEd Maste close(socket);
157c43e99fdSEd Maste unlink(fifo);
158c43e99fdSEd Maste #endif
159c43e99fdSEd Maste libevent_global_shutdown();
160c43e99fdSEd Maste return (0);
161c43e99fdSEd Maste }
162c43e99fdSEd Maste
163