termo/demo-async.c

74 lines
1.3 KiB
C
Raw Normal View History

// <poll.h> might need this for sigset_t
#define _XOPEN_SOURCE 600
#include <poll.h>
#include <stdio.h>
#include <unistd.h>
#include <locale.h>
2014-10-14 00:08:15 +02:00
#include "termo.h"
static void
2014-10-14 00:08:15 +02:00
on_key (termo_t *tk, termo_key_t *key)
{
char buffer[50];
2014-10-14 00:08:15 +02:00
termo_strfkey (tk, buffer, sizeof buffer, key, TERMO_FORMAT_VIM);
printf ("%s\n", buffer);
}
int
main (int argc, char *argv[])
{
2014-09-23 02:33:06 +02:00
(void) argc;
(void) argv;
2014-10-14 00:08:15 +02:00
TERMO_CHECK_VERSION;
setlocale (LC_CTYPE, "");
2014-10-14 00:08:15 +02:00
termo_t *tk = termo_new (STDIN_FILENO, NULL, 0);
if (!tk)
{
2014-10-14 00:08:15 +02:00
fprintf (stderr, "Cannot allocate termo instance\n");
exit (1);
}
struct pollfd fd;
fd.fd = STDIN_FILENO; // the file descriptor we passed to termo_new()
fd.events = POLLIN;
2014-10-14 00:08:15 +02:00
termo_result_t ret;
termo_key_t key;
int running = 1;
int nextwait = -1;
while (running)
{
if (poll (&fd, 1, nextwait) == 0)
// Timed out
2014-10-14 00:08:15 +02:00
if (termo_getkey_force (tk, &key) == TERMO_RES_KEY)
on_key (tk, &key);
if (fd.revents & (POLLIN | POLLHUP | POLLERR))
2014-10-14 00:08:15 +02:00
termo_advisereadable (tk);
2014-10-14 00:08:15 +02:00
while ((ret = termo_getkey (tk, &key)) == TERMO_RES_KEY)
{
on_key (tk, &key);
2014-10-14 00:08:15 +02:00
if (key.type == TERMO_TYPE_KEY
&& (key.modifiers & TERMO_KEYMOD_CTRL)
&& (key.code.codepoint == 'C' || key.code.codepoint == 'c'))
running = 0;
}
2014-10-14 00:08:15 +02:00
if (ret == TERMO_RES_AGAIN)
nextwait = termo_get_waittime (tk);
else
nextwait = -1;
}
2014-10-14 00:08:15 +02:00
termo_destroy (tk);
}