blob: 9e5e4d95bd153a6c35a248b557509e04bbf36422 [file] [log] [blame]
Willy Tarreaufa7e1022008-10-19 07:30:41 +02001/*
2 include/types/stream_interface.h
3 This file describes the stream_interface struct and associated constants.
4
5 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation, version 2.1
10 exclusively.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20*/
21
22#ifndef _TYPES_STREAM_INTERFACE_H
23#define _TYPES_STREAM_INTERFACE_H
24
25#include <stdlib.h>
26
Willy Tarreau48adac52008-08-30 04:58:38 +020027#include <types/buffers.h>
Willy Tarreaufa7e1022008-10-19 07:30:41 +020028#include <common/config.h>
29
30/* A stream interface must have its own errors independantly of the buffer's,
31 * so that applications can rely on what the buffer reports while the stream
32 * interface is performing some retries (eg: connection error).
33 */
34enum {
Willy Tarreauefb453c2008-10-26 20:49:47 +010035 SI_ST_INI = 0, /* interface not sollicitated yet */
36 SI_ST_REQ, /* connection initiation desired and not started yet */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020037 SI_ST_QUE, /* interface waiting in queue */
38 SI_ST_TAR, /* interface in turn-around state after failed connect attempt */
39 SI_ST_ASS, /* server just assigned to this interface */
40 SI_ST_CON, /* initiated connection request (resource exists) */
41 SI_ST_EST, /* connection established (resource exists) */
42 SI_ST_CLO, /* stream interface closed, might not existing anymore */
43};
44
45/* error types reported on the streams interface for more accurate reporting */
46enum {
Willy Tarreaue5ed4062008-08-30 03:17:31 +020047 SI_ET_NONE = 0x0000, /* no error yet, leave it to zero */
48 SI_ET_QUEUE_TO = 0x0001, /* queue timeout */
49 SI_ET_QUEUE_ERR = 0x0002, /* queue error (eg: full) */
50 SI_ET_QUEUE_ABRT = 0x0004, /* aborted in queue by external cause */
51 SI_ET_CONN_TO = 0x0008, /* connection timeout */
52 SI_ET_CONN_ERR = 0x0010, /* connection error (eg: no server available) */
53 SI_ET_CONN_ABRT = 0x0020, /* connection aborted by external cause (eg: abort) */
54 SI_ET_CONN_OTHER = 0x0040, /* connection aborted for other reason (eg: 500) */
55 SI_ET_DATA_TO = 0x0080, /* timeout during data phase */
56 SI_ET_DATA_ERR = 0x0100, /* error during data phase */
57 SI_ET_DATA_ABRT = 0x0200, /* data phase aborted by external cause */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020058};
59
Willy Tarreaud7704b52008-09-04 11:51:16 +020060/* flags set after I/O */
61enum {
62 SI_FL_NONE = 0x0000, /* nothing */
63 SI_FL_EXP = 0x0001, /* timeout has expired */
64};
65
Willy Tarreaufa7e1022008-10-19 07:30:41 +020066struct stream_interface {
67 unsigned int state; /* SI_ST* */
Willy Tarreaue5ed4062008-08-30 03:17:31 +020068 unsigned int prev_state;/* SI_ST*, copy of previous state */
69 void *owner; /* generally a (struct task*) */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020070 int fd; /* file descriptor for a stream driver when known */
Willy Tarreaud7704b52008-09-04 11:51:16 +020071 unsigned int flags; /* SI_FL_*, must be cleared before I/O */
Willy Tarreau35374672008-09-03 18:11:02 +020072 unsigned int exp; /* wake up time for connect, queue, turn-around, ... */
Willy Tarreau3c6ab2e2008-09-04 11:19:41 +020073 int (*shutr)(struct stream_interface *); /* shutr function */
Willy Tarreau48adac52008-08-30 04:58:38 +020074 int (*shutw)(struct stream_interface *); /* shutw function */
75 struct buffer *ib, *ob; /* input and output buffers */
Willy Tarreaue5ed4062008-08-30 03:17:31 +020076 unsigned int err_type; /* first error detected, one of SI_ET_* */
77 void *err_loc; /* commonly the server, NULL when SI_ET_NONE */
Willy Tarreaufa7e1022008-10-19 07:30:41 +020078};
79
80
81#endif /* _TYPES_STREAM_INTERFACE_H */
82
83/*
84 * Local variables:
85 * c-indent-level: 8
86 * c-basic-offset: 8
87 * End:
88 */