blob: 8d84b29a1142e7adb51c1f11f955792e9e057a68 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef __FDEVENT_H
18#define __FDEVENT_H
19
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +020020#include <stdint.h> /* for int64_t */
21
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080022/* events that may be observed */
23#define FDE_READ 0x0001
24#define FDE_WRITE 0x0002
25#define FDE_ERROR 0x0004
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +020026#define FDE_TIMEOUT 0x0008
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027
28/* features that may be set (via the events set/add/del interface) */
29#define FDE_DONT_CLOSE 0x0080
30
Elliott Hughes2d4121c2015-04-17 09:47:42 -070031struct fdevent;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032
33typedef void (*fd_func)(int fd, unsigned events, void *userdata);
34
35/* Allocate and initialize a new fdevent object
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +020036 * Note: use FD_TIMER as 'fd' to create a fd-less object
37 * (used to implement timers).
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080038*/
39fdevent *fdevent_create(int fd, fd_func func, void *arg);
40
41/* Uninitialize and deallocate an fdevent object that was
42** created by fdevent_create()
43*/
44void fdevent_destroy(fdevent *fde);
45
46/* Initialize an fdevent object that was externally allocated
47*/
48void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
49
50/* Uninitialize an fdevent object that was initialized by
51** fdevent_install()
52*/
53void fdevent_remove(fdevent *item);
54
55/* Change which events should cause notifications
56*/
57void fdevent_set(fdevent *fde, unsigned events);
58void fdevent_add(fdevent *fde, unsigned events);
59void fdevent_del(fdevent *fde, unsigned events);
60
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +020061void fdevent_set_timeout(fdevent *fde, int64_t timeout_ms);
62
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063/* loop forever, handling events.
64*/
65void fdevent_loop();
66
Dan Albert630b9af2014-11-24 23:34:35 -080067struct fdevent {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080068 fdevent *next;
69 fdevent *prev;
70
71 int fd;
JP Abgrall408fa572011-03-16 15:57:42 -070072 int force_eof;
73
Dan Albert630b9af2014-11-24 23:34:35 -080074 uint16_t state;
75 uint16_t events;
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +020076
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077 fd_func func;
78 void *arg;
79};
80
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080081#endif