Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | f8e8b76 | 2012-01-20 15:57:05 +0100 | [diff] [blame] | 2 | * include/proto/queue.h |
| 3 | * This file defines everything related to queues. |
| 4 | * |
| 5 | * Copyright (C) 2000-2012 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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_QUEUE_H |
| 23 | #define _PROTO_QUEUE_H |
| 24 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 26 | #include <common/memory.h> |
| 27 | #include <common/mini-clist.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | |
| 29 | #include <types/proxy.h> |
| 30 | #include <types/queue.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 31 | #include <types/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 32 | #include <types/server.h> |
| 33 | #include <types/task.h> |
| 34 | |
Willy Tarreau | f8e8b76 | 2012-01-20 15:57:05 +0100 | [diff] [blame] | 35 | #include <proto/backend.h> |
| 36 | |
Willy Tarreau | e4d7e55 | 2007-05-13 20:19:55 +0200 | [diff] [blame] | 37 | extern struct pool_head *pool2_pendconn; |
| 38 | |
| 39 | int init_pendconn(); |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 40 | struct stream *pendconn_get_next_strm(struct server *srv, struct proxy *px); |
| 41 | struct pendconn *pendconn_add(struct stream *strm); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 42 | void pendconn_free(struct pendconn *p); |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 43 | void process_srv_queue(struct server *s); |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 44 | unsigned int srv_dynamic_maxconn(const struct server *s); |
Willy Tarreau | 4aac7db | 2014-05-16 11:48:10 +0200 | [diff] [blame] | 45 | int pendconn_redistribute(struct server *s); |
| 46 | int pendconn_grab_from_px(struct server *s); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 47 | |
| 48 | |
| 49 | /* Returns the first pending connection for server <s>, which may be NULL if |
| 50 | * nothing is pending. |
| 51 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 52 | static inline struct pendconn *pendconn_from_srv(const struct server *s) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 53 | if (!s->nbpend) |
| 54 | return NULL; |
| 55 | |
| 56 | return LIST_ELEM(s->pendconns.n, struct pendconn *, list); |
| 57 | } |
| 58 | |
| 59 | /* Returns the first pending connection for proxy <px>, which may be NULL if |
| 60 | * nothing is pending. |
| 61 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 62 | static inline struct pendconn *pendconn_from_px(const struct proxy *px) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 63 | if (!px->nbpend) |
| 64 | return NULL; |
| 65 | |
| 66 | return LIST_ELEM(px->pendconns.n, struct pendconn *, list); |
| 67 | } |
| 68 | |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 69 | /* Returns 0 if all slots are full on a server, or 1 if there are slots available. */ |
| 70 | static inline int server_has_room(const struct server *s) { |
| 71 | return !s->maxconn || s->cur_sess < srv_dynamic_maxconn(s); |
| 72 | } |
| 73 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 74 | /* returns 0 if nothing has to be done for server <s> regarding queued connections, |
Willy Tarreau | 922a806 | 2008-12-04 09:33:58 +0100 | [diff] [blame] | 75 | * and non-zero otherwise. If the server is down, we only check its own queue. Suited |
| 76 | * for and if/else usage. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 77 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 78 | static inline int may_dequeue_tasks(const struct server *s, const struct proxy *p) { |
Willy Tarreau | 87eb1d6 | 2014-05-13 18:51:40 +0200 | [diff] [blame] | 79 | return (s && (s->nbpend || (p->nbpend && srv_is_usable(s))) && |
Willy Tarreau | 7c669d7 | 2008-06-20 15:04:11 +0200 | [diff] [blame] | 80 | (!s->maxconn || s->cur_sess < srv_dynamic_maxconn(s))); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | #endif /* _PROTO_QUEUE_H */ |
| 84 | |
| 85 | /* |
| 86 | * Local variables: |
| 87 | * c-indent-level: 8 |
| 88 | * c-basic-offset: 8 |
| 89 | * End: |
| 90 | */ |