aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-hsrv.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-03-23 11:41:48 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2018-06-13 17:13:51 +0200
commit349bf5c5a91991b791b205df83bf021f8ef0c062 (patch)
tree7da7ee428797f74932dd9eead344362bcafe0c83 /src/afb-hsrv.c
parentaf06c82a63166d0d3fbdc26ae50607a6231d42eb (diff)
afb-hsrv: remove dependency to systemd
Change-Id: I42428e7e57cb104b8575b60b1c7985782e9f779f Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-hsrv.c')
-rw-r--r--src/afb-hsrv.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/src/afb-hsrv.c b/src/afb-hsrv.c
index 7988bfc9..6cb0bb45 100644
--- a/src/afb-hsrv.c
+++ b/src/afb-hsrv.c
@@ -28,13 +28,14 @@
#include <sys/stat.h>
#include <microhttpd.h>
-#include <systemd/sd-event.h>
#include "afb-method.h"
#include "afb-context.h"
#include "afb-xreq.h"
#include "afb-hreq.h"
#include "afb-hsrv.h"
+#include "afb-fdev.h"
+#include "fdev.h"
#include "verbose.h"
#include "locale-root.h"
@@ -63,7 +64,7 @@ struct afb_hsrv {
unsigned refcount;
struct hsrv_handler *handlers;
struct MHD_Daemon *httpd;
- sd_event_source *evsrc;
+ struct fdev *fdev;
char *cache_to;
};
@@ -243,20 +244,19 @@ static void do_run(int signum, void *arg)
if (!signum) {
do { MHD_run(hsrv->httpd); } while(MHD_get_timeout(hsrv->httpd, &to) == MHD_YES && !to);
}
- sd_event_source_set_io_events(hsrv->evsrc, EPOLLIN);
+ fdev_set_events(hsrv->fdev, EPOLLIN);
}
void run_micro_httpd(struct afb_hsrv *hsrv)
{
- sd_event_source_set_io_events(hsrv->evsrc, 0);
+ fdev_set_events(hsrv->fdev, 0);
if (jobs_queue(hsrv, 0, do_run, hsrv) < 0)
do_run(0, hsrv);
}
-static int io_event_callback(sd_event_source *src, int fd, uint32_t revents, void *hsrv)
+static void listen_callback(void *hsrv, uint32_t revents, struct fdev *fdev)
{
run_micro_httpd(hsrv);
- return 0;
}
static int new_client_handler(void *cls, const struct sockaddr *addr, socklen_t addrlen)
@@ -394,8 +394,7 @@ int afb_hsrv_set_cache_timeout(struct afb_hsrv *hsrv, int duration)
int afb_hsrv_start(struct afb_hsrv *hsrv, uint16_t port, unsigned int connection_timeout)
{
- sd_event_source *evsrc;
- int rc;
+ struct fdev *fdev;
struct MHD_Daemon *httpd;
const union MHD_DaemonInfo *info;
@@ -420,24 +419,26 @@ int afb_hsrv_start(struct afb_hsrv *hsrv, uint16_t port, unsigned int connection
return 0;
}
- rc = sd_event_add_io(afb_systemd_get_event_loop(), &evsrc, info->listen_fd, EPOLLIN, io_event_callback, hsrv);
- if (rc < 0) {
+ fdev = afb_fdev_create(info->listen_fd);
+ if (fdev == NULL) {
MHD_stop_daemon(httpd);
- errno = -rc;
ERROR("connection to events for httpd failed");
return 0;
}
+ fdev_set_autoclose(fdev, 0);
+ fdev_set_events(fdev, EPOLLIN);
+ fdev_set_callback(fdev, listen_callback, hsrv);
hsrv->httpd = httpd;
- hsrv->evsrc = evsrc;
+ hsrv->fdev = fdev;
return 1;
}
void afb_hsrv_stop(struct afb_hsrv *hsrv)
{
- if (hsrv->evsrc != NULL) {
- sd_event_source_unref(hsrv->evsrc);
- hsrv->evsrc = NULL;
+ if (hsrv->fdev != NULL) {
+ fdev_unref(hsrv->fdev);
+ hsrv->fdev = NULL;
}
if (hsrv->httpd != NULL)
MHD_stop_daemon(hsrv->httpd);