1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-22 13:49:21 +02:00

tools/: moved get_key from atrf-path/gui.c to libatrf, for sharing

The old "raw" function becomes get_key_init. Calling get_key_init is
only necessary if one wants to control the moment standard input is
switched to raw mode. If get_key is invoked without a prior call to
get_key_init, it will initialize automatically.

- atrf-path/gui.c (raw, main): renamed "raw" to get_key_init
- atrf-path/gui.c (old_term, restore_term, get_key_init, get_key):
  moved to include/getkey.h and lib/getkey.c
- lib/getkey.c (get_key_init, get_key): made calling get_key_init
  optional
- lib/Makefile (OBJS): added getkey.o
This commit is contained in:
Werner Almesberger 2011-07-04 20:11:16 -03:00
parent 6d1198cccd
commit 56f8b2d038
4 changed files with 100 additions and 60 deletions

View File

@ -15,9 +15,6 @@
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#include <termios.h>
#include <fcntl.h>
#include <errno.h>
#include "SDL.h" #include "SDL.h"
#include "SDL_gfxPrimitives.h" #include "SDL_gfxPrimitives.h"
@ -25,6 +22,7 @@
#include "at86rf230.h" #include "at86rf230.h"
#include "atrf.h" #include "atrf.h"
#include "misctxrx.h" #include "misctxrx.h"
#include "getkey.h"
#include "sweep.h" #include "sweep.h"
#include "gui.h" #include "gui.h"
@ -216,61 +214,6 @@ static void draw_dumps(SDL_Surface *s, int cont_tx)
} }
/* ----- Console input ----------------------------------------------------- */
static struct termios old_term;
static void restore_term(void)
{
if (tcsetattr(0, TCSAFLUSH, &old_term) < 0)
perror("tcsetattr");
}
static void raw(void)
{
struct termios term;
if (tcgetattr(0, &old_term) < 0) {
perror("tcgetattr");
exit(1);
}
term = old_term;
cfmakeraw(&term);
if (tcsetattr(0, TCSAFLUSH, &term) < 0) {
perror("tcsetattr");
exit(1);
}
atexit(restore_term);
if (fcntl(0, F_SETFL, O_NONBLOCK) < 0) {
perror("fcntl");
exit(1);
}
}
static char get_key(void)
{
ssize_t got;
char ch;
got = read(0, &ch, 1);
if (got == 1)
return ch;
if (got >= 0) {
fprintf(stderr, "unexpected read() return value %d\n",
(int) got);
exit(1);
}
if (errno == EAGAIN)
return 0;
perror("read");
exit(1);
}
/* --- temporarily, for optimizing --- */ /* --- temporarily, for optimizing --- */
#if 0 #if 0
@ -322,7 +265,7 @@ int gui(const struct sweep *sweep, int sweeps)
} }
atexit(SDL_Quit); atexit(SDL_Quit);
raw(); get_key_init();
surf = SDL_SetVideoMode(XRES, YRES, 0, SDL_SWSURFACE); surf = SDL_SetVideoMode(XRES, YRES, 0, SDL_SWSURFACE);
if (!surf) { if (!surf) {

19
tools/include/getkey.h Normal file
View File

@ -0,0 +1,19 @@
/*
* include/getkey.h - Get single characters from standard input
*
* Written 2011 by Werner Almesberger
* Copyright 2011 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef GETKEY_H
#define GETKEY_H
void get_key_init(void);
char get_key(void);
#endif /* !GETKEY_H */

View File

@ -19,7 +19,7 @@ OBJS_host = atusb.o atusb-spi.o atusb-common.o usbopen.o
OBJS_ben_jlime = atben.o OBJS_ben_jlime = atben.o
OBJS_ben_openwrt = atben.o OBJS_ben_openwrt = atben.o
OBJS = atrf.o atnet.o misctxrx.o cwtest.o netio.o daemon.o timeout.o \ OBJS = atrf.o atnet.o misctxrx.o cwtest.o netio.o daemon.o timeout.o getkey.o \
$(OBJS_$(TARGET)) $(OBJS_$(TARGET))
.PHONY: all clean spotless .PHONY: all clean spotless

78
tools/lib/getkey.c Normal file
View File

@ -0,0 +1,78 @@
/*
* lib/getkey.c - Get single characters from standard input
*
* Written 2011 by Werner Almesberger
* Copyright 2011 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <errno.h>
static struct termios old_term;
static void restore_term(void)
{
if (tcsetattr(0, TCSAFLUSH, &old_term) < 0)
perror("tcsetattr");
}
void get_key_init(void)
{
static int initialized = 0;
struct termios term;
if (initialized)
return;
initialized = 1;
if (tcgetattr(0, &old_term) < 0) {
perror("tcgetattr");
exit(1);
}
term = old_term;
cfmakeraw(&term);
if (tcsetattr(0, TCSAFLUSH, &term) < 0) {
perror("tcsetattr");
exit(1);
}
atexit(restore_term);
if (fcntl(0, F_SETFL, O_NONBLOCK) < 0) {
perror("fcntl");
exit(1);
}
}
char get_key(void)
{
ssize_t got;
char ch;
get_key_init();
got = read(0, &ch, 1);
if (got == 1)
return ch;
if (got >= 0) {
fprintf(stderr, "unexpected read() return value %d\n",
(int) got);
exit(1);
}
if (errno == EAGAIN)
return 0;
perror("read");
exit(1);
}