have an array of all started jobs
[apps/madmutt.git] / lib-sys / evtloop.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  */
17 /*
18  *  Copyright © 2006 Pierre Habouzit
19  */
20
21 #ifndef MUTT_LIB_SYS_EVTLOOP_H
22 #define MUTT_LIB_SYS_EVTLOOP_H
23
24 #include <lib-lib/lib-lib.h>
25 #include <gnutls/gnutls.h>
26 #include <sys/socket.h>
27
28 typedef enum el_state {
29     EL_LLP_INIT,
30     EL_LLP_READY,
31     EL_LLP_FINI,
32 } el_state;
33
34 typedef enum el_mode {
35     EL_NEW     = 0,
36     EL_READING = 1,
37     EL_WRITING = 2,
38     EL_RDWR    = 3,
39     EL_IDLE    = 4,
40 } el_mode;
41
42 typedef enum el_status {
43     EL_SUCCESS,
44     EL_ERROR,
45     EL_KILLED,
46     EL_RDHUP,
47 } el_status;
48
49 typedef enum el_event {
50     EL_EVT_IN      = EL_READING,
51     EL_EVT_OUT     = EL_WRITING,
52     EL_EVT_INOUT   = EL_RDWR,
53     EL_EVT_RUNNING = 4,
54     EL_EVT_WAKEUP  = 5,
55 } el_event;
56
57 typedef struct job_t {
58     int fd;
59     int ssf;
60
61     gnutls_session_t session;
62     gnutls_certificate_credentials_t xcred;
63
64     el_state state : 2;
65     el_mode  mode  : 3;
66     el_mode  emode : 3;
67
68     int (*llp)(struct job_t *);
69     const struct machine_t *m;
70     void *ptr;
71 } job_t;
72 DO_INIT(job_t, job);
73 void job_wipe(job_t *w);
74 DO_NEW(job_t, job);
75 DO_DELETE(job_t, job);
76
77 typedef struct machine_t {
78     const char *name;
79     __must_check__ int (*setup)(job_t *w, void *);
80     __must_check__ int (*on_event)(job_t *w, el_event);
81     void (*finalize)(job_t *w, el_status);
82 } machine_t;
83
84 #define EL_JOB_CHECK(expr) \
85     do { if ((expr) < 0) return -1; } while (0)
86
87 __must_check__ int el_job_setmode(job_t *w, el_mode);
88 __must_check__ job_t *el_job_start(const machine_t *m, void *cfg);
89 __must_check__ int el_job_release(job_t *j, el_status);
90
91 __must_check__ int el_job_connect(job_t *w, struct sockaddr *, socklen_t len,
92                                   int type, int proto, int ssl);
93 __must_check__ int el_job_starttls(job_t *w);
94 __must_check__ ssize_t el_job_read(job_t *w, buffer_t *buf);
95 __must_check__ ssize_t el_job_write(job_t *w, buffer_t *buf);
96
97
98 int el_dispatch(int timeout);
99 void el_initialize(void);
100 void el_shutdown(void);
101
102 #endif