A few more fixes for configure.ac files.
[sigrok-cli.git] / anykey.c
blobf0ab52efe6548a9654822781670acd4ab80d046d
1 /*
2 * This file is part of the sigrok project.
4 * Copyright (C) 2011 Bert Vermeulen <bert@biot.com>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <stdio.h>
21 #ifdef _WIN32
22 #include <windows.h>
23 #else
24 #include <termios.h>
25 #endif
26 #include <unistd.h>
27 #include <string.h>
28 #include <glib.h>
29 #include <sigrok.h>
30 #include "sigrok-cli.h"
32 #ifdef _WIN32
33 static HANDLE stdin_handle;
34 static DWORD stdin_mode;
35 #else
36 static struct termios term_orig;
37 #endif
39 static int received_anykey(int fd, int revents, void *user_data)
41 /* Avoid compiler warnings. */
42 (void)fd;
43 (void)revents;
44 (void)user_data;
46 sr_session_stop();
48 return TRUE;
51 /* Turn off buffering on stdin. */
52 void add_anykey(void)
54 #ifdef _WIN32
55 stdin_handle = GetStdHandle(STD_INPUT_HANDLE);
57 if (!GetConsoleMode(stdin_handle, &stdin_mode)) {
58 /* TODO: Error handling. */
61 SetConsoleMode(stdin_handle, 0);
62 #else
63 struct termios term;
65 tcgetattr(STDIN_FILENO, &term);
66 memcpy(&term_orig, &term, sizeof(struct termios));
67 term.c_lflag &= ~(ECHO | ICANON | ISIG);
68 tcsetattr(STDIN_FILENO, TCSADRAIN, &term);
69 #endif
71 sr_session_source_add(STDIN_FILENO, G_IO_IN, -1, received_anykey, NULL);
73 printf("Press any key to stop acquisition.\n");
76 /* Restore stdin attributes. */
77 void clear_anykey(void)
79 #ifdef _WIN32
80 SetConsoleMode(stdin_handle, stdin_mode);
81 #else
82 tcflush(STDIN_FILENO, TCIFLUSH);
83 tcsetattr(STDIN_FILENO, TCSANOW, &term_orig);
84 #endif