1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/minimal-examples/raw/minimal-raw-file/minimal-raw-file.c

161 lines
3.7 KiB
C
Raw Normal View History

2018-03-22 11:43:19 +08:00
/*
* lws-minimal-raw-file
*
* Written in 2010-2019 by Andy Green <andy@warmcat.com>
2018-03-22 11:43:19 +08:00
*
* This file is made available under the Creative Commons CC0 1.0
* Universal Public Domain Dedication.
*
* This demonstrates adopting a file descriptor into the lws event
* loop.
*/
#include <libwebsockets.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
struct raw_vhd {
// lws_sock_file_fd_type u;
int filefd;
2018-03-22 11:43:19 +08:00
};
static char filepath[256];
static int
callback_raw_test(struct lws *wsi, enum lws_callback_reasons reason,
void *user, void *in, size_t len)
{
struct raw_vhd *vhd = (struct raw_vhd *)lws_protocol_vh_priv_get(
lws_get_vhost(wsi), lws_get_protocol(wsi));
lws_sock_file_fd_type u;
2018-03-22 11:43:19 +08:00
uint8_t buf[1024];
int n;
switch (reason) {
case LWS_CALLBACK_PROTOCOL_INIT:
vhd = lws_protocol_vh_priv_zalloc(lws_get_vhost(wsi),
lws_get_protocol(wsi), sizeof(struct raw_vhd));
vhd->filefd = lws_open(filepath, O_RDWR);
if (vhd->filefd == -1) {
2018-03-22 11:43:19 +08:00
lwsl_err("Unable to open %s\n", filepath);
return 1;
}
u.filefd = (lws_filefd_type)(long long)vhd->filefd;
2018-03-22 11:43:19 +08:00
if (!lws_adopt_descriptor_vhost(lws_get_vhost(wsi),
LWS_ADOPT_RAW_FILE_DESC, u,
2018-03-22 11:43:19 +08:00
"raw-test", NULL)) {
lwsl_err("Failed to adopt fifo descriptor\n");
close(vhd->filefd);
vhd->filefd = -1;
2018-03-22 11:43:19 +08:00
return 1;
}
break;
case LWS_CALLBACK_PROTOCOL_DESTROY:
if (vhd && vhd->filefd != -1)
close(vhd->filefd);
2018-03-22 11:43:19 +08:00
break;
/* callbacks related to raw file descriptor */
case LWS_CALLBACK_RAW_ADOPT_FILE:
lwsl_notice("LWS_CALLBACK_RAW_ADOPT_FILE\n");
break;
case LWS_CALLBACK_RAW_RX_FILE:
lwsl_notice("LWS_CALLBACK_RAW_RX_FILE\n");
n = read(vhd->filefd, buf, sizeof(buf));
2018-03-22 11:43:19 +08:00
if (n < 0) {
lwsl_err("Reading from %s failed\n", filepath);
return 1;
}
lwsl_hexdump_level(LLL_NOTICE, buf, n);
break;
case LWS_CALLBACK_RAW_CLOSE_FILE:
lwsl_notice("LWS_CALLBACK_RAW_CLOSE_FILE\n");
break;
case LWS_CALLBACK_RAW_WRITEABLE_FILE:
lwsl_notice("LWS_CALLBACK_RAW_WRITEABLE_FILE\n");
/*
* you can call lws_callback_on_writable() on a raw file wsi as
* usual, and then write directly into the raw filefd here.
*/
break;
default:
break;
}
return 0;
}
static struct lws_protocols protocols[] = {
{ "raw-test", callback_raw_test, 0, 0 },
{ NULL, NULL, 0, 0 } /* terminator */
};
static int interrupted;
void sigint_handler(int sig)
{
interrupted = 1;
}
2018-04-16 07:32:02 +08:00
int main(int argc, const char **argv)
2018-03-22 11:43:19 +08:00
{
struct lws_context_creation_info info;
struct lws_context *context;
2018-04-16 07:32:02 +08:00
const char *p;
int n = 0, logs = LLL_USER | LLL_ERR | LLL_WARN | LLL_NOTICE
2018-03-22 11:43:19 +08:00
/* 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 */
2018-04-16 07:32:02 +08:00
/* | LLL_DEBUG */;
signal(SIGINT, sigint_handler);
if ((p = lws_cmdline_option(argc, argv, "-d")))
logs = atoi(p);
2018-03-22 11:43:19 +08:00
2018-04-16 07:32:02 +08:00
lws_set_log_level(logs, NULL);
2018-03-22 11:43:19 +08:00
lwsl_user("LWS minimal raw file\n");
if (argc < 2) {
lwsl_user("Usage: %s <file to monitor> "
" eg, /dev/ttyUSB0 or /dev/input/event0 or "
"/proc/self/fd/0\n", argv[0]);
return 1;
}
2018-04-16 07:32:02 +08:00
signal(SIGINT, sigint_handler);
memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
info.port = CONTEXT_PORT_NO_LISTEN_SERVER; /* no listen socket for demo */
info.protocols = protocols;
2018-03-22 11:43:19 +08:00
lws_strncpy(filepath, argv[1], sizeof(filepath));
context = lws_create_context(&info);
if (!context) {
lwsl_err("lws init failed\n");
return 1;
}
while (n >= 0 && !interrupted)
n = lws_service(context, 0);
2018-03-22 11:43:19 +08:00
lws_context_destroy(context);
return 0;
}