]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/widechar/lib_cchar.c
20ccb75b804e77f1fd86a778444e17c1e879b7ff
[ncurses.git] / ncurses / widechar / lib_cchar.c
1 /****************************************************************************
2  * Copyright (c) 2001-2014,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 **      lib_cchar.c
31 **
32 **      The routines setcchar() and getcchar().
33 **
34 */
35
36 #include <curses.priv.h>
37
38 MODULE_ID("$Id: lib_cchar.c,v 1.28 2016/05/28 23:36:34 tom Exp $")
39
40 /* 
41  * The SuSv2 description leaves some room for interpretation.  We'll assume wch
42  * points to a string which is L'\0' terminated, contains at least one
43  * character with strictly positive width, which must be the first, and
44  * contains no characters of negative width.
45  */
46 NCURSES_EXPORT(int)
47 setcchar(cchar_t *wcval,
48          const wchar_t *wch,
49          const attr_t attrs,
50          NCURSES_PAIRS_T color_pair,
51          const void *opts)
52 {
53     unsigned len;
54     int code = OK;
55
56     TR(TRACE_CCALLS, (T_CALLED("setcchar(%p,%s,%lu,%d,%p)"),
57                       (void *) wcval, _nc_viswbuf(wch),
58                       (unsigned long) attrs, (int) color_pair, opts));
59
60     if (opts != NULL
61         || wch == NULL
62         || ((len = (unsigned) wcslen(wch)) > 1 && wcwidth(wch[0]) < 0)) {
63         code = ERR;
64     } else {
65         unsigned i;
66
67         if (len > CCHARW_MAX)
68             len = CCHARW_MAX;
69
70         /*
71          * If we have a following spacing-character, stop at that point.  We
72          * are only interested in adding non-spacing characters.
73          */
74         for (i = 1; i < len; ++i) {
75             if (wcwidth(wch[i]) != 0) {
76                 len = i;
77                 break;
78             }
79         }
80
81         memset(wcval, 0, sizeof(*wcval));
82
83         if (len != 0) {
84             SetAttr(*wcval, attrs);
85             SetPair(CHDEREF(wcval), color_pair);
86             memcpy(&wcval->chars, wch, len * sizeof(wchar_t));
87             TR(TRACE_CCALLS, ("copy %d wchars, first is %s", len,
88                               _tracecchar_t(wcval)));
89         }
90     }
91
92     TR(TRACE_CCALLS, (T_RETURN("%d"), code));
93     return (code);
94 }
95
96 NCURSES_EXPORT(int)
97 getcchar(const cchar_t *wcval,
98          wchar_t *wch,
99          attr_t *attrs,
100          NCURSES_PAIRS_T *color_pair,
101          void *opts)
102 {
103     int code = ERR;
104
105     TR(TRACE_CCALLS, (T_CALLED("getcchar(%p,%p,%p,%p,%p)"),
106                       (const void *) wcval,
107                       (void *) wch,
108                       (void *) attrs,
109                       (void *) color_pair,
110                       opts));
111
112     if (opts == NULL && wcval != NULL) {
113         wchar_t *wp;
114         int len;
115
116         len = ((wp = wmemchr(wcval->chars, L'\0', (size_t) CCHARW_MAX))
117                ? (int) (wp - wcval->chars)
118                : CCHARW_MAX);
119
120         if (wch == NULL) {
121             /*
122              * If the value is a null, set the length to 1.
123              * If the value is not a null, return the length plus 1 for null.
124              */
125             code = (len < CCHARW_MAX) ? (len + 1) : CCHARW_MAX;
126         } else if (attrs == 0 || color_pair == 0) {
127             code = ERR;
128         } else if (len >= 0) {
129             *attrs = AttrOf(*wcval) & A_ATTRIBUTES;
130             *color_pair = (NCURSES_PAIRS_T) GetPair(*wcval);
131             wmemcpy(wch, wcval->chars, (size_t) len);
132             wch[len] = L'\0';
133             code = OK;
134         }
135     }
136
137     TR(TRACE_CCALLS, (T_RETURN("%d"), code));
138     return (code);
139 }