1 /* conn.h - network connection state */
3 /* Copyright (C) 2007 Keith Rarick and Philotic Inc.
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include <sys/types.h>
29 /* A command can be at most LINE_BUF_SIZE chars, including "\r\n". This value
30 * MUST be enough to hold the longest possible command or reply line, which is
31 * currently "USING a{200}\r\n". */
32 #define LINE_BUF_SIZE 208
34 /* CONN_TYPE_* are bit masks */
35 #define CONN_TYPE_PRODUCER 1
36 #define CONN_TYPE_WORKER 2
37 #define CONN_TYPE_WAITING 4
39 #define conn_waiting(c) ((c)->type & CONN_TYPE_WAITING)
41 typedef struct conn
*conn
;
44 conn prev
, next
; /* linked list of connections */
51 /* we cannot share this buffer with the reply line because we might read in
52 * command line data for a subsequent command, and we need to store it
54 char cmd
[LINE_BUF_SIZE
]; /* this string is NOT NUL-terminated */
60 char reply_buf
[LINE_BUF_SIZE
]; /* this string IS NUL-terminated */
62 /* A job to be read from the client. */
65 /* Memoization of the soonest job */
68 /* How many bytes of in_job->body have been read so far. If in_job is NULL
69 * while in_job_read is nonzero, we are in bit bucket mode and
70 * in_job_read's meaning is inverted -- then it counts the bytes that
71 * remain to be thrown away. */
76 struct job reserved_jobs
; /* doubly-linked list header */
81 conn
make_conn(int fd
, char start_state
, tube use
, tube watch
);
83 int conn_set_evq(conn c
, const int events
, evh handler
);
84 int conn_update_evq(conn c
, const int flags
);
86 void conn_close(conn c
);
88 conn
conn_remove(conn c
);
89 void conn_insert(conn head
, conn c
);
91 int count_cur_conns();
92 unsigned int count_tot_conns();
93 int count_cur_producers();
94 int count_cur_workers();
96 void conn_set_producer(conn c
);
97 void conn_set_worker(conn c
);
99 job
soonest_job(conn c
);
100 int has_reserved_this_job(conn c
, job j
);
101 int conn_has_close_deadline(conn c
);
102 int conn_ready(conn c
);