121 lines
3.6 KiB
C
121 lines
3.6 KiB
C
#ifndef _LIGHTTPD_WORKER_H_
|
|
#define _LIGHTTPD_WORKER_H_
|
|
|
|
#ifndef _LIGHTTPD_BASE_H_
|
|
#error Please include <lighttpd/base.h> instead of this file
|
|
#endif
|
|
|
|
typedef struct liStatistics liStatistics;
|
|
struct liStatistics {
|
|
guint64 bytes_out; /** bytes transfered, outgoing */
|
|
guint64 bytes_in; /** bytes transfered, incoming */
|
|
|
|
guint64 requests; /** processed requests */
|
|
guint64 active_cons_cum; /** cummulative value of active connections, updated once a second */
|
|
|
|
guint64 actions_executed; /** actions executed */
|
|
|
|
/* 5 seconds frame avg */
|
|
guint64 requests_5s;
|
|
guint64 requests_5s_diff;
|
|
guint64 bytes_out_5s;
|
|
guint64 bytes_out_5s_diff;
|
|
guint64 bytes_in_5s;
|
|
guint64 bytes_in_5s_diff;
|
|
guint active_cons_5s;
|
|
ev_tstamp last_avg;
|
|
|
|
/* updated in timer */
|
|
guint64 last_requests;
|
|
double requests_per_sec;
|
|
ev_tstamp last_update;
|
|
};
|
|
|
|
#define CUR_TS(wrk) ev_now((wrk)->loop)
|
|
|
|
/* only locks if there is more than one worker */
|
|
#define WORKER_LOCK(srv, lock) \
|
|
if ((srv)->worker_count > 1) g_static_rec_mutex_lock(lock)
|
|
#define WORKER_UNLOCK(srv, lock) \
|
|
if ((srv)->worker_count > 1) g_static_rec_mutex_unlock(lock)
|
|
|
|
typedef struct liWorkerTS liWorkerTS;
|
|
struct liWorkerTS {
|
|
time_t last_generated;
|
|
GString *str;
|
|
};
|
|
|
|
struct liWorker {
|
|
liServer *srv;
|
|
|
|
GThread *thread; /* managed by server.c */
|
|
guint ndx; /* worker index */
|
|
|
|
struct ev_loop *loop;
|
|
ev_prepare loop_prepare;
|
|
ev_check loop_check;
|
|
ev_async li_worker_stop_watcher, li_worker_suspend_watcher, li_worker_exit_watcher;
|
|
|
|
guint connections_active; /** 0..con_act-1: active connections, con_act..used-1: free connections
|
|
* use with atomic, read direct from local worker context
|
|
*/
|
|
GArray *connections; /** array of (connection*), use only from local worker context */
|
|
ev_tstamp connections_gc_ts;
|
|
|
|
GQueue closing_sockets; /** wait for EOF before shutdown(SHUT_RD) and close() */
|
|
|
|
GString *tmp_str; /**< can be used everywhere for local temporary needed strings */
|
|
|
|
/* keep alive timeout queue */
|
|
ev_timer keep_alive_timer;
|
|
GQueue keep_alive_queue;
|
|
|
|
liWaitQueue io_timeout_queue;
|
|
|
|
liWaitQueue throttle_queue;
|
|
|
|
guint connection_load; /** incremented by server_accept_cb, decremented by worker_con_put. use atomic access */
|
|
|
|
GArray *timestamps_gmt; /** array of (worker_ts), use only from local worker context and through li_worker_current_timestamp(wrk, LI_GMTIME, ndx) */
|
|
GArray *timestamps_local;
|
|
|
|
/* incoming queues */
|
|
/* - new connections (after accept) */
|
|
ev_async new_con_watcher;
|
|
GAsyncQueue *new_con_queue;
|
|
|
|
ev_timer stats_watcher;
|
|
liStatistics stats;
|
|
|
|
/* collect framework */
|
|
ev_async collect_watcher;
|
|
GAsyncQueue *collect_queue;
|
|
|
|
GQueue job_queue;
|
|
ev_timer job_queue_watcher;
|
|
|
|
GAsyncQueue *job_async_queue;
|
|
ev_async job_async_queue_watcher;
|
|
|
|
liStatCache *stat_cache;
|
|
};
|
|
|
|
LI_API liWorker* li_worker_new(liServer *srv, struct ev_loop *loop);
|
|
LI_API void li_worker_free(liWorker *wrk);
|
|
|
|
LI_API void li_worker_run(liWorker *wrk);
|
|
LI_API void li_worker_stop(liWorker *context, liWorker *wrk);
|
|
LI_API void li_worker_suspend(liWorker *context, liWorker *wrk);
|
|
LI_API void li_worker_exit(liWorker *context, liWorker *wrk);
|
|
|
|
LI_API void li_worker_new_con(liWorker *ctx, liWorker *wrk, liSocketAddress remote_addr, int s, liServerSocket *srv_sock);
|
|
|
|
LI_API void li_worker_check_keepalive(liWorker *wrk);
|
|
|
|
LI_API GString* li_worker_current_timestamp(liWorker *wrk, liTimeFunc, guint format_ndx);
|
|
|
|
/* shutdown write and wait for eof before shutdown read and close */
|
|
LI_API void li_worker_add_closing_socket(liWorker *wrk, int fd);
|
|
|
|
#endif
|