]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/widechar/lib_inwstr.c
ncurses 6.0 - patch 20170114
[ncurses.git] / ncurses / widechar / lib_inwstr.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 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.7 2016/05/28 23:36:34 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
56             getyx(win, row, col);
57
58             text = win->_line[row].text;
59             while (count < n && count != ERR) {
60
61                 if (!isWidecExt(text[col])) {
62                     int inx;
63                     wchar_t wch;
64
65                     for (inx = 0; (inx < CCHARW_MAX)
66                          && ((wch = text[col].chars[inx]) != 0);
67                          ++inx) {
68                         if (count + 1 > n) {
69                             if ((count = last) == 0) {
70                                 count = ERR;    /* error if we store nothing */
71                             }
72                             break;
73                         }
74                         wstr[count++] = wch;
75                     }
76                 }
77                 last = count;
78                 if (++col > win->_maxx) {
79                     break;
80                 }
81             }
82         }
83         if (count > 0) {
84             wstr[count] = '\0';
85             T(("winnwstr returns %s", _nc_viswbuf(wstr)));
86         }
87     }
88     returnCode(count);
89 }
90
91 /*
92  * X/Open says winwstr() returns OK if not ERR.  If that is not a blunder, it
93  * must have a null termination on the string (see above).  Unlike winnstr(),
94  * it does not define what happens for a negative count with winnwstr().
95  */
96 NCURSES_EXPORT(int)
97 winwstr(WINDOW *win, wchar_t *wstr)
98 {
99     int result = OK;
100
101     T((T_CALLED("winwstr(%p,%p)"), (void *) win, (void *) wstr));
102     if (win == 0) {
103         result = ERR;
104     } else if (winnwstr(win, wstr,
105                         CCHARW_MAX * (win->_maxx - win->_curx + 1)) == ERR) {
106         result = ERR;
107     }
108     returnCode(result);
109 }