1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/plugins/protocol_lws_server_status.c
Andy Green 451cee5d47 polarssl implementation
Signed-off-by: Andy Green <andy@warmcat.com>
2016-04-18 20:05:43 +08:00

148 lines
3.4 KiB
C

/*
* libwebsockets-test-server - libwebsockets test implementation
*
* Copyright (C) 2010-2016 Andy Green <andy@warmcat.com>
*
* This file is made available under the Creative Commons CC0 1.0
* Universal Public Domain Dedication.
*
* The person who associated a work with this deed has dedicated
* the work to the public domain by waiving all of his or her rights
* to the work worldwide under copyright law, including all related
* and neighboring rights, to the extent allowed by law. You can copy,
* modify, distribute and perform the work, even for commercial purposes,
* all without asking permission.
*
* The test apps are intended to be adapted for use in your code, which
* may be proprietary. So unlike the library itself, they are licensed
* Public Domain.
*/
#include "../lib/libwebsockets.h"
#include <string.h>
#include <stdlib.h>
#define LWS_SS_VERSIONS 3
struct lws_ss_dumps {
char buf[32768];
int length;
};
static struct lws_ss_dumps d[LWS_SS_VERSIONS];
static int last_dump;
static uv_timer_t timeout_watcher;
static struct lws_context *context;
static int tow_flag;
struct per_session_data__server_status {
int ver;
int pos;
};
static const struct lws_protocols protocols[];
static void
uv_timeout_cb_server_status(uv_timer_t *w
#if UV_VERSION_MAJOR == 0
, int status
#endif
)
{
int n;
last_dump = (last_dump + 1) % LWS_SS_VERSIONS;
n = lws_json_dump_context(context, d[last_dump].buf + LWS_PRE,
sizeof(d[0].buf) - LWS_PRE);
d[last_dump].length = n;
lws_callback_on_writable_all_protocol(context, &protocols[0]);
}
static int
callback_lws_server_status(struct lws *wsi, enum lws_callback_reasons reason,
void *user, void *in, size_t len)
{
struct lws_protocol_vhost_options *pvo =
(struct lws_protocol_vhost_options *)in;
int m, period = 1000;
switch (reason) {
case LWS_CALLBACK_ESTABLISHED:
lwsl_info("%s: LWS_CALLBACK_ESTABLISHED\n", __func__);
lws_callback_on_writable(wsi);
break;
case LWS_CALLBACK_PROTOCOL_INIT: /* per vhost */
if (tow_flag)
break;
while (pvo) {
if (!strcmp(pvo->name, "update-ms"))
period = atoi(pvo->value);
pvo = pvo->next;
}
context = lws_get_context(wsi);
uv_timer_init(lws_uv_getloop(context, 0), &timeout_watcher);
uv_timer_start(&timeout_watcher,
uv_timeout_cb_server_status, 2000, period);
tow_flag = 1;
break;
case LWS_CALLBACK_PROTOCOL_DESTROY: /* per vhost */
if (!tow_flag)
break;
uv_timer_stop(&timeout_watcher);
tow_flag = 0;
break;
case LWS_CALLBACK_SERVER_WRITEABLE:
m = lws_write(wsi, (unsigned char *)
d[last_dump].buf + LWS_PRE, d[last_dump].length,
LWS_WRITE_TEXT);
if (m < 0)
return -1;
break;
case LWS_CALLBACK_RECEIVE:
break;
default:
break;
}
return 0;
}
static const struct lws_protocols protocols[] = {
{
"lws-server-status",
callback_lws_server_status,
sizeof(struct per_session_data__server_status),
1024,
},
};
LWS_VISIBLE int
init_protocol_lws_server_status(struct lws_context *context,
struct lws_plugin_capability *c)
{
if (c->api_magic != LWS_PLUGIN_API_MAGIC) {
lwsl_err("Plugin API %d, library API %d",
LWS_PLUGIN_API_MAGIC, c->api_magic);
return 1;
}
c->protocols = protocols;
c->count_protocols = ARRAY_SIZE(protocols);
c->extensions = NULL;
c->count_extensions = 0;
return 0;
}
LWS_VISIBLE int
destroy_protocol_lws_server_status(struct lws_context *context)
{
return 0;
}