cchar.c revision 1.9 1 /* $NetBSD: cchar.c,v 1.9 2018/11/20 21:42:52 uwe Exp $ */
2
3 /*
4 * Copyright (c) 2005 The NetBSD Foundation Inc.
5 * All rights reserved.
6 *
7 * This code is derived from code donated to the NetBSD Foundation
8 * by Ruibiao Qiu <ruibiao (at) arl.wustl.edu,ruibiao (at) gmail.com>.
9 *
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the NetBSD Foundation nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
24 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
25 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37 #include <sys/cdefs.h>
38 #ifndef lint
39 __RCSID("$NetBSD: cchar.c,v 1.9 2018/11/20 21:42:52 uwe Exp $");
40 #endif /* not lint */
41
42 #include <string.h>
43
44 #include "curses.h"
45 #include "curses_private.h"
46
47 /*
48 * getcchar --
49 * get a wide-character string and rendition from a cchar_t
50 */
51 int
52 getcchar(const cchar_t *wcval, wchar_t *wch, attr_t *attrs,
53 short *color_pair, void *opts)
54 {
55 #ifndef HAVE_WCHAR
56 return ERR;
57 #else
58 wchar_t *wp;
59 size_t len;
60
61 if (__predict_false(opts != NULL))
62 return ERR;
63
64 wp = wmemchr(wcval->vals, L'\0', CCHARW_MAX);
65 len = wp ? wp - wcval->vals : CCHARW_MAX;
66
67 if (wch == NULL)
68 return (int)len;
69 if (attrs == 0 || color_pair == 0)
70 return ERR;
71 if (len > 0) {
72 *attrs = wcval->attributes;
73 if (__using_color)
74 *color_pair = PAIR_NUMBER(wcval->attributes);
75 else
76 *color_pair = 0;
77 wmemcpy(wch, wcval->vals, len);
78 wch[len] = L'\0';
79 }
80 return OK;
81 #endif /* HAVE_WCHAR */
82 }
83
84 /*
85 * setcchar --
86 * set cchar_t from a wide-character string and rendition
87 */
88 int
89 setcchar(cchar_t *wcval, const wchar_t *wch, const attr_t attrs,
90 short color_pair, const void *opts)
91 {
92 #ifndef HAVE_WCHAR
93 return ERR;
94 #else
95 int i;
96 size_t len;
97
98 if (__predict_false(opts != NULL))
99 return ERR;
100
101 len = wcslen(wch);
102 if (len > CCHARW_MAX || (len > 1 && wcwidth(wch[0]) < 0))
103 return ERR;
104
105 /*
106 * If we have a following spacing-character, stop at that point. We
107 * are only interested in adding non-spacing characters.
108 */
109 for (i = 1; i < len; ++i) {
110 if (wcwidth(wch[i]) != 0) {
111 len = i;
112 break;
113 }
114 }
115
116 memset(wcval, 0, sizeof(*wcval));
117 if (len != 0) {
118 wcval->attributes = attrs & ~__COLOR;
119 if (__using_color && color_pair)
120 wcval->attributes |= COLOR_PAIR(color_pair);
121 wcval->elements = 1;
122 memcpy(&wcval->vals, wch, len * sizeof(wchar_t));
123 }
124
125 return OK;
126 #endif /* HAVE_WCHAR */
127 }
128
129 void
130 __cursesi_chtype_to_cchar(chtype in, cchar_t *out)
131 {
132 unsigned int idx;
133
134 if (in & __ACS_IS_WACS) {
135 idx = in & __CHARTEXT;
136 if (idx < NUM_ACS) {
137 memcpy(out, &_wacs_char[idx], sizeof(cchar_t));
138 out->attributes |= in & __ATTRIBUTES;
139 return;
140 }
141 }
142 out->vals[0] = in & __CHARTEXT;
143 out->attributes = in & __ATTRIBUTES;
144 out->elements = 1;
145 }
146