2018-04-30 19:17:32 +08:00
|
|
|
/*
|
|
|
|
* lws-minimal-http-server-eventlib-foreign
|
|
|
|
*
|
2020-02-07 11:39:32 +00:00
|
|
|
* Written in 2010-2020 by Andy Green <andy@warmcat.com>
|
2018-04-30 19:17:32 +08:00
|
|
|
*
|
|
|
|
* This file is made available under the Creative Commons CC0 1.0
|
|
|
|
* Universal Public Domain Dedication.
|
|
|
|
*
|
|
|
|
* This demonstrates the most minimal http server you can make with lws that
|
|
|
|
* uses a libuv event loop created outside lws. It shows how lws can
|
|
|
|
* participate in someone else's event loop and clean up after itself.
|
|
|
|
*
|
|
|
|
* You choose the event loop to work with at runtime, by giving the
|
|
|
|
* --uv, --event or --ev switch. Lws has to have been configured to build the
|
|
|
|
* selected event lib support.
|
|
|
|
*
|
|
|
|
* To keep it simple, it serves stuff from the subdirectory
|
|
|
|
* "./mount-origin" of the directory it was started in.
|
|
|
|
* You can change that by changing mount.origin below.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libwebsockets.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
#include "private.h"
|
2018-04-30 19:17:32 +08:00
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
static struct lws_context_creation_info info;
|
|
|
|
static const struct ops *ops = NULL;
|
|
|
|
struct lws_context *context;
|
|
|
|
int lifetime = 5, reported;
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
enum {
|
|
|
|
TEST_STATE_CREATE_LWS_CONTEXT,
|
|
|
|
TEST_STATE_DESTROY_LWS_CONTEXT,
|
|
|
|
TEST_STATE_EXIT
|
|
|
|
};
|
|
|
|
|
|
|
|
static int sequence = TEST_STATE_CREATE_LWS_CONTEXT;
|
|
|
|
|
|
|
|
static const struct lws_http_mount mount = {
|
|
|
|
/* .mount_next */ NULL, /* linked-list "next" */
|
|
|
|
/* .mountpoint */ "/", /* mountpoint URL */
|
|
|
|
/* .origin */ "./mount-origin", /* serve from dir */
|
|
|
|
/* .def */ "index.html", /* default filename */
|
|
|
|
/* .protocol */ NULL,
|
|
|
|
/* .cgienv */ NULL,
|
|
|
|
/* .extra_mimetypes */ NULL,
|
|
|
|
/* .interpret */ NULL,
|
|
|
|
/* .cgi_timeout */ 0,
|
|
|
|
/* .cache_max_age */ 0,
|
|
|
|
/* .auth_mask */ 0,
|
|
|
|
/* .cache_reusable */ 0,
|
|
|
|
/* .cache_revalidate */ 0,
|
|
|
|
/* .cache_intermediaries */ 0,
|
|
|
|
/* .origin_protocol */ LWSMPRO_FILE, /* files in a dir */
|
|
|
|
/* .mountpoint_len */ 1, /* char count */
|
|
|
|
/* .basic_auth_login_file */ NULL,
|
|
|
|
};
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
void
|
2018-04-30 19:17:32 +08:00
|
|
|
signal_cb(int signum)
|
|
|
|
{
|
|
|
|
lwsl_notice("Signal %d caught, exiting...\n", signum);
|
|
|
|
|
|
|
|
switch (signum) {
|
|
|
|
case SIGTERM:
|
|
|
|
case SIGINT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
lws_context_destroy(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* this is called at 1Hz using a foreign loop timer */
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
void
|
2018-04-30 19:17:32 +08:00
|
|
|
foreign_timer_service(void *foreign_loop)
|
|
|
|
{
|
|
|
|
void *foreign_loops[1];
|
|
|
|
|
|
|
|
lwsl_user("Foreign 1Hz timer\n");
|
|
|
|
|
|
|
|
if (sequence == TEST_STATE_EXIT && !context && !reported) {
|
|
|
|
/*
|
|
|
|
* at this point the lws_context_destroy() we did earlier
|
|
|
|
* has completed and the entire context is wholly destroyed
|
|
|
|
*/
|
|
|
|
lwsl_user("lws_destroy_context() done, continuing for 5s\n");
|
|
|
|
reported = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (--lifetime)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (sequence++) {
|
|
|
|
case TEST_STATE_CREATE_LWS_CONTEXT:
|
|
|
|
/* this only has to exist for the duration of create context */
|
|
|
|
foreign_loops[0] = foreign_loop;
|
|
|
|
info.foreign_loops = foreign_loops;
|
|
|
|
|
|
|
|
context = lws_create_context(&info);
|
|
|
|
if (!context) {
|
|
|
|
lwsl_err("lws init failed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
lwsl_user("LWS Context created and will be active for 10s\n");
|
|
|
|
lifetime = 11;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TEST_STATE_DESTROY_LWS_CONTEXT:
|
|
|
|
/* cleanup the lws part */
|
|
|
|
lwsl_user("Destroying lws context and continuing loop for 5s\n");
|
|
|
|
lws_context_destroy(context);
|
|
|
|
lifetime = 6;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TEST_STATE_EXIT:
|
|
|
|
lwsl_user("Deciding to exit foreign loop too\n");
|
2020-08-27 15:37:14 +01:00
|
|
|
ops->stop();
|
2018-04-30 19:17:32 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, const char **argv)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
int logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE
|
|
|
|
/* for LLL_ verbosity above NOTICE to be built into lws,
|
|
|
|
* lws must have been configured and built with
|
|
|
|
* -DCMAKE_BUILD_TYPE=DEBUG instead of =RELEASE */
|
|
|
|
/* | LLL_INFO */ /* | LLL_PARSER */ /* | LLL_HEADER */
|
|
|
|
/* | LLL_EXT */ /* | LLL_CLIENT */ /* | LLL_LATENCY */
|
|
|
|
/* | LLL_DEBUG */;
|
|
|
|
|
|
|
|
if ((p = lws_cmdline_option(argc, argv, "-d")))
|
|
|
|
logs = atoi(p);
|
|
|
|
|
|
|
|
lws_set_log_level(logs, NULL);
|
2018-05-02 18:35:58 +08:00
|
|
|
lwsl_user("LWS minimal http server eventlib + foreign loop |"
|
2018-04-30 19:17:32 +08:00
|
|
|
" visit http://localhost:7681\n");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We prepare the info here, but don't use it until later in the
|
|
|
|
* timer callback, to demonstrate the independence of the foreign loop
|
|
|
|
* and lws.
|
|
|
|
*/
|
|
|
|
|
|
|
|
memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
|
|
|
|
info.port = 7681;
|
|
|
|
info.mounts = &mount;
|
|
|
|
info.error_document_404 = "/404.html";
|
|
|
|
info.pcontext = &context;
|
2018-11-19 07:40:47 +08:00
|
|
|
info.options =
|
|
|
|
LWS_SERVER_OPTION_HTTP_HEADERS_SECURITY_BEST_PRACTICES_ENFORCE;
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
if (lws_cmdline_option(argc, argv, "-s")) {
|
|
|
|
info.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
|
|
|
|
info.ssl_cert_filepath = "localhost-100y.cert";
|
|
|
|
info.ssl_private_key_filepath = "localhost-100y.key";
|
|
|
|
}
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
/*
|
|
|
|
* We configure lws to use the chosen event loop, and select the
|
|
|
|
* matching event-lib specific code for our demo operations
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LWS_WITH_LIBUV)
|
|
|
|
if (lws_cmdline_option(argc, argv, "--uv")) {
|
2018-04-30 19:17:32 +08:00
|
|
|
info.options |= LWS_SERVER_OPTION_LIBUV;
|
2020-08-27 15:37:14 +01:00
|
|
|
ops = &ops_libuv;
|
|
|
|
lwsl_notice("%s: using libuv event loop\n", __func__);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_LIBEVENT)
|
|
|
|
if (lws_cmdline_option(argc, argv, "--event")) {
|
2018-04-30 19:17:32 +08:00
|
|
|
info.options |= LWS_SERVER_OPTION_LIBEVENT;
|
2020-08-27 15:37:14 +01:00
|
|
|
ops = &ops_libevent;
|
|
|
|
lwsl_notice("%s: using libevent loop\n", __func__);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_LIBEV)
|
|
|
|
if (lws_cmdline_option(argc, argv, "--ev")) {
|
2018-04-30 19:17:32 +08:00
|
|
|
info.options |= LWS_SERVER_OPTION_LIBEV;
|
2020-08-27 15:37:14 +01:00
|
|
|
ops = &ops_libev;
|
|
|
|
lwsl_notice("%s: using libev loop\n", __func__);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
#if defined(LWS_WITH_GLIB)
|
|
|
|
if (lws_cmdline_option(argc, argv, "--glib")) {
|
2020-02-07 11:39:32 +00:00
|
|
|
info.options |= LWS_SERVER_OPTION_GLIB;
|
2020-08-27 15:37:14 +01:00
|
|
|
ops = &ops_glib;
|
|
|
|
lwsl_notice("%s: using glib loop\n", __func__);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2018-04-30 19:17:32 +08:00
|
|
|
lwsl_err("This app only makes sense when used\n");
|
2020-02-07 11:39:32 +00:00
|
|
|
lwsl_err(" with a foreign loop, --uv, --event, --glib, or --ev\n");
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
return 1;
|
2020-08-27 15:37:14 +01:00
|
|
|
}
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
lwsl_user(" This app creates a foreign event loop with a timer +\n");
|
|
|
|
lwsl_user(" signalhandler, and performs a test in three phases:\n");
|
|
|
|
lwsl_user("\n");
|
|
|
|
lwsl_user(" 1) 5s: Runs the loop with just the timer\n");
|
|
|
|
lwsl_user(" 2) 10s: create an lws context serving on localhost:7681\n");
|
|
|
|
lwsl_user(" using the same foreign loop. Destroy it after 10s.\n");
|
|
|
|
lwsl_user(" 3) 5s: Run the loop again with just the timer\n");
|
|
|
|
lwsl_user("\n");
|
|
|
|
lwsl_user(" Finally close only the timer and signalhandler and\n");
|
|
|
|
lwsl_user(" exit the loop cleanly\n");
|
2018-05-02 18:35:58 +08:00
|
|
|
lwsl_user("\n");
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
/* foreign loop specific startup and run */
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
ops->init_and_run();
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
lws_context_destroy(context);
|
|
|
|
|
|
|
|
/* foreign loop specific cleanup and exit */
|
|
|
|
|
2020-08-27 15:37:14 +01:00
|
|
|
ops->cleanup();
|
2018-04-30 19:17:32 +08:00
|
|
|
|
|
|
|
lwsl_user("%s: exiting...\n", __func__);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|