#include <signal.h>
#include <limits.h> /* for INT_MAX */
+#include "mod_serf.h"
+
+#if AP_HAS_SERF
+#include "serf.h"
+#endif
+
/* Limit on the total --- clients will be locked out if more servers than
* this are needed. It is intended solely to keep the server from crashing
* when things get out of hand.
static apr_pollset_t *event_pollset;
+#if AP_HAS_SERF
+typedef struct {
+ apr_pollset_t *pollset;
+ apr_pool_t *pool;
+} s_baton_t;
+
+static serf_context_t *g_serf;
+#endif
+
/* The structure used to pass unique initialization info to each thread */
typedef struct
{
{
PT_CSD,
PT_ACCEPT
+#if AP_HAS_SERF
+ , PT_SERF
+#endif
} poll_type_e;
typedef struct
case AP_MPMQ_IS_ASYNC:
*result = 1;
return APR_SUCCESS;
+ case AP_MPMQ_HAS_SERF:
+ *result = 1;
+ return APR_SUCCESS;
case AP_MPMQ_HARD_LIMIT_DAEMONS:
*result = server_limit;
return APR_SUCCESS;
*/
}
+
+#if AP_HAS_SERF
+static apr_status_t s_socket_add(void *user_baton,
+ apr_pollfd_t *pfd,
+ void *serf_baton)
+{
+ s_baton_t *s = (s_baton_t*)user_baton;
+ /* XXXXX: recycle listener_poll_types */
+ listener_poll_type *pt = malloc(sizeof(*pt));
+ pt->type = PT_SERF;
+ pt->baton = serf_baton;
+ pfd->client_data = pt;
+ return apr_pollset_add(s->pollset, pfd);
+}
+
+static apr_status_t s_socket_remove(void *user_baton,
+ apr_pollfd_t *pfd,
+ void *serf_baton)
+{
+ s_baton_t *s = (s_baton_t*)user_baton;
+ listener_poll_type *pt = pfd->client_data;
+ free(pt);
+ return apr_pollset_remove(s->pollset, pfd);
+}
+#endif
+
static apr_status_t init_pollset(apr_pool_t *p)
{
+#if AP_HAS_SERF
+ s_baton_t *baton = NULL;
+#endif
apr_status_t rv;
ap_listen_rec *lr;
listener_poll_type *pt;
lr->accept_func = ap_unixd_accept;
}
+#if AP_HAS_SERF
+ baton = apr_pcalloc(p, sizeof(*baton));
+ baton->pollset = event_pollset;
+ /* TODO: subpools, threads, reuse, etc. -- currently use malloc() inside :( */
+ baton->pool = p;
+
+ g_serf = serf_context_create_ex(baton,
+ s_socket_add,
+ s_socket_remove, p);
+
+ ap_register_provider(p, "mpm_serf",
+ "instance", "0", g_serf);
+
+#endif
+
return APR_SUCCESS;
}
apr_thread_mutex_unlock(g_timer_ring_mtx);
}
+#if AP_HAS_SERF
+ rc = serf_context_prerun(g_serf);
+ if (rc != APR_SUCCESS) {
+ /* TOOD: what should do here? ugh. */
+ }
+
+#endif
rc = apr_pollset_poll(event_pollset, timeout_interval, &num,
&out_pfd);
have_idle_worker = 0;
}
}
- else {
+ else if (pt->type == PT_ACCEPT) {
/* A Listener Socket is ready for an accept() */
lr = (ap_listen_rec *) pt->baton;
return NULL;
}
}
-
apr_pool_tag(ptrans, "transaction");
rc = lr->accept_func(&csd, lr, ptrans);
ap_push_pool(worker_queue_info, ptrans);
}
} /* if:else on pt->type */
+#if AP_HAS_SERF
+ else if (pt->type == PT_SERF) {
+ /* send socket to serf. */
+ /* XXXX: this doesn't require get_worker(&have_idle_worker) */
+ serf_event_trigger(g_serf, pt->baton, out_pfd);
+ }
+#endif
out_pfd++;
num--;
} /* while for processing poll */