]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/widechar/lib_inwstr.c
ncurses 6.1 - patch 20190413
[ncurses.git] / ncurses / widechar / lib_inwstr.c
1 /****************************************************************************
2  * Copyright (c) 2002-2016,2017 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 Dickey                                                    *
31  ****************************************************************************/
32
33 /*
34 **      lib_inwstr.c
35 **
36 **      The routines winnwstr() and winwstr().
37 **
38 */
39
40 #include <curses.priv.h>
41
42 MODULE_ID("$Id: lib_inwstr.c,v 1.8 2017/10/29 00:03:29 tom Exp $")
43
44 NCURSES_EXPORT(int)
45 winnwstr(WINDOW *win, wchar_t *wstr, int n)
46 {
47     int count = 0;
48     cchar_t *text;
49
50     T((T_CALLED("winnwstr(%p,%p,%d)"), (void *) win, (void *) wstr, n));
51     if (wstr != 0) {
52         if (win) {
53             int row, col;
54             int last = 0;
55             bool done = FALSE;
56
57             getyx(win, row, col);
58
59             text = win->_line[row].text;
60             while (count < n && !done && count != ERR) {
61
62                 if (!isWidecExt(text[col])) {
63                     int inx;
64                     wchar_t wch;
65
66                     for (inx = 0; (inx < CCHARW_MAX)
67                          && ((wch = text[col].chars[inx]) != 0);
68                          ++inx) {
69                         if (count + 1 > n) {
70                             done = TRUE;
71                             if (last == 0) {
72                                 count = ERR;    /* error if we store nothing */
73                             } else {
74                                 count = last;   /* only store complete chars */
75                             }
76                             break;
77                         }
78                         wstr[count++] = wch;
79                     }
80                 }
81                 last = count;
82                 if (++col > win->_maxx) {
83                     break;
84                 }
85             }
86         }
87         if (count > 0) {
88             wstr[count] = '\0';
89             T(("winnwstr returns %s", _nc_viswbuf(wstr)));
90         }
91     }
92     returnCode(count);
93 }
94
95 /*
96  * X/Open says winwstr() returns OK if not ERR.  If that is not a blunder, it
97  * must have a null termination on the string (see above).  Unlike winnstr(),
98  * it does not define what happens for a negative count with winnwstr().
99  */
100 NCURSES_EXPORT(int)
101 winwstr(WINDOW *win, wchar_t *wstr)
102 {
103     int result = OK;
104
105     T((T_CALLED("winwstr(%p,%p)"), (void *) win, (void *) wstr));
106     if (win == 0) {
107         result = ERR;
108     } else if (winnwstr(win, wstr,
109                         CCHARW_MAX * (win->_maxx - win->_curx + 1)) == ERR) {
110         result = ERR;
111     }
112     returnCode(result);
113 }