Modify it to adjust Tizen IVI enviroment
[platform/upstream/kmscon.git] / tests / test_key.c
1 /*
2  * test_key - Test client key-input
3  *
4  * Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 #include <errno.h>
27 #include <stdbool.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <termios.h>
31
32 int main()
33 {
34         int res;
35         unsigned char buf;
36         struct termios omode, nmode;
37         bool reset = false;
38
39         fprintf(stderr, "Quit with 'q' (maybe followed by 'enter'/'return')\r\n");
40         fprintf(stderr, "Maybe your terminal may be unusable after this, use 'reset' to fix it\r\n");
41
42         if (tcgetattr(0, &omode) < 0) {
43                 fprintf(stderr, "cannot retrieve terminal attributes (%d): %m\r\n",
44                         errno);
45         } else {
46                 memcpy(&nmode, &omode, sizeof(nmode));
47                 cfmakeraw(&nmode);
48                 if (tcsetattr(0, TCSANOW, &nmode) < 0)
49                         fprintf(stderr, "cannot set terminal attributes (%d): %m\r\n",
50                                 errno);
51                 else
52                         reset = true;
53         }
54
55         while (1) {
56                 res = fread(&buf, 1, 1, stdin);
57                 if (res != 1) {
58                         fprintf(stderr, "error on stdin: %d %d: %m\r\n",
59                                 res, errno);
60                         break;
61                 }
62
63                 if (buf == '\n')
64                         fprintf(stderr, "key: <newline>\r\n");
65                 else
66                         fprintf(stderr, "key: %x %u %o '%c'\r\n",
67                                 (int)buf, buf, buf, buf);
68
69                 if (buf == 'q')
70                         break;
71         }
72
73         if (reset && tcsetattr(0, TCSANOW, &omode) < 0)
74                 fprintf(stderr, "cannot reset terminal attributes (%d): %m\r\n",
75                         errno);
76
77         return 0;
78 }