2018-08-28 14:43:46 +00:00
|
|
|
#ifndef ODYSSEY_ROUTER_H
|
|
|
|
#define ODYSSEY_ROUTER_H
|
2017-05-26 12:17:45 +00:00
|
|
|
|
|
|
|
/*
|
2018-03-12 14:03:15 +00:00
|
|
|
* Odyssey.
|
2017-05-26 12:17:45 +00:00
|
|
|
*
|
2018-04-04 13:19:58 +00:00
|
|
|
* Scalable PostgreSQL connection pooler.
|
2020-04-02 11:00:56 +00:00
|
|
|
*/
|
2017-05-26 12:17:45 +00:00
|
|
|
|
|
|
|
typedef struct od_router od_router_t;
|
|
|
|
|
2017-05-26 13:44:42 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2018-12-06 14:23:15 +00:00
|
|
|
OD_ROUTER_OK,
|
|
|
|
OD_ROUTER_ERROR,
|
|
|
|
OD_ROUTER_ERROR_NOT_FOUND,
|
|
|
|
OD_ROUTER_ERROR_LIMIT,
|
|
|
|
OD_ROUTER_ERROR_LIMIT_ROUTE,
|
2020-01-27 13:01:53 +00:00
|
|
|
OD_ROUTER_ERROR_TIMEDOUT,
|
|
|
|
OD_ROUTER_ERROR_REPLICATION
|
2018-08-28 14:43:46 +00:00
|
|
|
} od_router_status_t;
|
2017-05-26 13:44:42 +00:00
|
|
|
|
2017-05-26 12:17:45 +00:00
|
|
|
struct od_router
|
|
|
|
{
|
2018-12-06 14:23:15 +00:00
|
|
|
pthread_mutex_t lock;
|
2020-04-02 11:00:56 +00:00
|
|
|
od_rules_t rules;
|
2018-12-06 14:23:15 +00:00
|
|
|
od_route_pool_t route_pool;
|
2019-10-10 10:00:33 +00:00
|
|
|
od_atomic_u32_t clients;
|
2019-10-15 14:15:37 +00:00
|
|
|
od_atomic_u32_t clients_routing;
|
2020-01-23 06:22:58 +00:00
|
|
|
od_atomic_u32_t servers_routing;
|
2017-05-26 12:17:45 +00:00
|
|
|
};
|
|
|
|
|
2018-12-06 14:23:15 +00:00
|
|
|
static inline void
|
|
|
|
od_router_lock(od_router_t *router)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&router->lock);
|
|
|
|
}
|
2017-05-26 13:44:42 +00:00
|
|
|
|
2018-12-06 14:23:15 +00:00
|
|
|
static inline void
|
|
|
|
od_router_unlock(od_router_t *router)
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock(&router->lock);
|
|
|
|
}
|
2017-05-26 12:17:45 +00:00
|
|
|
|
2020-04-02 11:00:56 +00:00
|
|
|
void
|
|
|
|
od_router_init(od_router_t *);
|
|
|
|
void
|
|
|
|
od_router_free(od_router_t *);
|
|
|
|
int
|
|
|
|
od_router_reconfigure(od_router_t *, od_rules_t *);
|
|
|
|
int
|
|
|
|
od_router_expire(od_router_t *, od_list_t *);
|
|
|
|
void
|
|
|
|
od_router_gc(od_router_t *);
|
|
|
|
void
|
|
|
|
od_router_stat(od_router_t *, uint64_t, int, od_route_pool_stat_cb_t, void **);
|
|
|
|
int
|
|
|
|
od_router_foreach(od_router_t *, od_route_pool_cb_t, void **);
|
2017-06-01 09:28:23 +00:00
|
|
|
|
2018-08-28 14:43:46 +00:00
|
|
|
od_router_status_t
|
2020-05-28 06:12:10 +00:00
|
|
|
od_router_route(od_router_t *router, od_config_t *config, od_client_t *client);
|
2017-05-27 13:14:39 +00:00
|
|
|
|
2018-12-06 14:23:15 +00:00
|
|
|
void
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_unroute(od_router_t *, od_client_t *);
|
2017-05-31 10:49:12 +00:00
|
|
|
|
2019-06-27 12:24:44 +00:00
|
|
|
od_router_status_t
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_attach(od_router_t *, od_config_t *, od_client_t *, bool);
|
2017-05-27 13:14:39 +00:00
|
|
|
|
2018-12-06 14:23:15 +00:00
|
|
|
void
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_detach(od_router_t *, od_config_t *, od_client_t *);
|
2017-12-08 13:30:42 +00:00
|
|
|
|
2018-12-06 14:23:15 +00:00
|
|
|
void
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_close(od_router_t *, od_client_t *);
|
2017-05-30 15:04:59 +00:00
|
|
|
|
2018-08-28 14:43:46 +00:00
|
|
|
od_router_status_t
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_cancel(od_router_t *, kiwi_key_t *, od_router_cancel_t *);
|
2018-12-06 14:23:15 +00:00
|
|
|
|
|
|
|
void
|
2020-04-02 11:00:56 +00:00
|
|
|
od_router_kill(od_router_t *, od_id_t *);
|
2017-05-30 11:34:08 +00:00
|
|
|
|
2018-08-28 14:43:46 +00:00
|
|
|
#endif /* ODYSSEY_ROUTER_H */
|