]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/widechar/lib_get_wch.c
ncurses 6.0 - patch 20170304
[ncurses.git] / ncurses / widechar / lib_get_wch.c
1 /****************************************************************************
2  * Copyright (c) 2002-2011,2016 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Thomas E. Dickey 2002-on                                        *
31  ****************************************************************************/
32
33 /*
34 **      lib_get_wch.c
35 **
36 **      The routine get_wch().
37 **
38 */
39
40 #include <curses.priv.h>
41 #include <ctype.h>
42
43 MODULE_ID("$Id: lib_get_wch.c,v 1.24 2016/05/28 23:36:34 tom Exp $")
44
45 NCURSES_EXPORT(int)
46 wget_wch(WINDOW *win, wint_t *result)
47 {
48     SCREEN *sp;
49     int code;
50     int value = 0;
51     wchar_t wch;
52 #ifndef state_unused
53     mbstate_t state;
54 #endif
55
56     T((T_CALLED("wget_wch(%p)"), (void *) win));
57
58     /*
59      * We can get a stream of single-byte characters and KEY_xxx codes from
60      * _nc_wgetch(), while we want to return a wide character or KEY_xxx code.
61      */
62     _nc_lock_global(curses);
63     sp = _nc_screen_of(win);
64
65     if (sp != 0) {
66         size_t count = 0;
67
68         for (;;) {
69             char buffer[(MB_LEN_MAX * 9) + 1];  /* allow some redundant shifts */
70
71             T(("reading %d of %d", (int) count + 1, (int) sizeof(buffer)));
72             code = _nc_wgetch(win, &value, TRUE EVENTLIST_2nd((_nc_eventlist
73                                                                *) 0));
74             if (code == ERR) {
75                 break;
76             } else if (code == KEY_CODE_YES) {
77                 /*
78                  * If we were processing an incomplete multibyte character,
79                  * return an error since we have a KEY_xxx code which
80                  * interrupts it.  For some cases, we could improve this by
81                  * writing a new version of lib_getch.c(!), but it is not clear
82                  * whether the improvement would be worth the effort.
83                  */
84                 if (count != 0) {
85                     safe_ungetch(SP_PARM, value);
86                     code = ERR;
87                 }
88                 break;
89             } else if (count + 1 >= sizeof(buffer)) {
90                 safe_ungetch(SP_PARM, value);
91                 code = ERR;
92                 break;
93             } else {
94                 int status;
95
96                 buffer[count++] = (char) UChar(value);
97                 reset_mbytes(state);
98                 status = count_mbytes(buffer, count, state);
99                 if (status >= 0) {
100                     reset_mbytes(state);
101                     if (check_mbytes(wch, buffer, count, state) != status) {
102                         code = ERR;     /* the two calls should match */
103                         safe_ungetch(SP_PARM, value);
104                     }
105                     value = wch;
106                     break;
107                 }
108             }
109         }
110     } else {
111         code = ERR;
112     }
113
114     if (result != 0)
115         *result = (wint_t) value;
116
117     _nc_unlock_global(curses);
118     T(("result %#o", value));
119     returnCode(code);
120 }