]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/obsolete.c
ncurses 6.2 - patch 20210403
[ncurses.git] / ncurses / tinfo / obsolete.c
1 /****************************************************************************
2  * Copyright 2020 Thomas E. Dickey                                          *
3  * Copyright 2013-2014,2016 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Thomas E. Dickey                        2013-on                 *
32  ****************************************************************************/
33
34 /*
35 **      Support for obsolete/unusual features.
36 */
37
38 #include <curses.priv.h>
39
40 MODULE_ID("$Id: obsolete.c,v 1.6 2020/02/02 23:34:34 tom Exp $")
41
42 /*
43  * Obsolete entrypoint retained for binary compatibility.
44  */
45 NCURSES_EXPORT(void)
46 NCURSES_SP_NAME(_nc_set_buffer) (NCURSES_SP_DCLx FILE *ofp, int buffered)
47 {
48 #if NCURSES_SP_FUNCS
49     (void) SP_PARM;
50 #endif
51     (void) ofp;
52     (void) buffered;
53 }
54
55 #if NCURSES_SP_FUNCS
56 NCURSES_EXPORT(void)
57 _nc_set_buffer(FILE *ofp, int buffered)
58 {
59     NCURSES_SP_NAME(_nc_set_buffer) (CURRENT_SCREEN, ofp, buffered);
60 }
61 #endif
62
63 #if !HAVE_STRDUP
64 NCURSES_EXPORT(char *)
65 _nc_strdup(const char *s)
66 {
67     char *result = 0;
68     if (s != 0) {
69         size_t need = strlen(s);
70         result = malloc(need + 1);
71         if (result != 0) {
72             _nc_STRCPY(result, s, need);
73         }
74     }
75     return result;
76 }
77 #endif
78
79 #if USE_MY_MEMMOVE
80 #define DST ((char *)s1)
81 #define SRC ((const char *)s2)
82 NCURSES_EXPORT(void *)
83 _nc_memmove(void *s1, const void *s2, size_t n)
84 {
85     if (n != 0) {
86         if ((DST + n > SRC) && (SRC + n > DST)) {
87             static char *bfr;
88             static size_t length;
89             register size_t j;
90             if (length < n) {
91                 length = (n * 3) / 2;
92                 bfr = typeRealloc(char, length, bfr);
93             }
94             for (j = 0; j < n; j++)
95                 bfr[j] = SRC[j];
96             s2 = bfr;
97         }
98         while (n-- != 0)
99             DST[n] = SRC[n];
100     }
101     return s1;
102 }
103 #endif /* USE_MY_MEMMOVE */
104
105 #ifdef EXP_XTERM_1005
106 NCURSES_EXPORT(int)
107 _nc_conv_to_utf8(unsigned char *target, unsigned source, unsigned limit)
108 {
109 #define CH(n) UChar((source) >> ((n) * 8))
110     int rc = 0;
111
112     if (source <= 0x0000007f)
113         rc = 1;
114     else if (source <= 0x000007ff)
115         rc = 2;
116     else if (source <= 0x0000ffff)
117         rc = 3;
118     else if (source <= 0x001fffff)
119         rc = 4;
120     else if (source <= 0x03ffffff)
121         rc = 5;
122     else                        /* (source <= 0x7fffffff) */
123         rc = 6;
124
125     if ((unsigned) rc > limit) {        /* whatever it is, we cannot decode it */
126         rc = 0;
127     }
128
129     if (target != 0) {
130         switch (rc) {
131         case 1:
132             target[0] = CH(0);
133             break;
134
135         case 2:
136             target[1] = UChar(0x80 | (CH(0) & 0x3f));
137             target[0] = UChar(0xc0 | (CH(0) >> 6) | ((CH(1) & 0x07) << 2));
138             break;
139
140         case 3:
141             target[2] = UChar(0x80 | (CH(0) & 0x3f));
142             target[1] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
143             target[0] = UChar(0xe0 | ((int) (CH(1) & 0xf0) >> 4));
144             break;
145
146         case 4:
147             target[3] = UChar(0x80 | (CH(0) & 0x3f));
148             target[2] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
149             target[1] = UChar(0x80 |
150                               ((int) (CH(1) & 0xf0) >> 4) |
151                               ((int) (CH(2) & 0x03) << 4));
152             target[0] = UChar(0xf0 | ((int) (CH(2) & 0x1f) >> 2));
153             break;
154
155         case 5:
156             target[4] = UChar(0x80 | (CH(0) & 0x3f));
157             target[3] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
158             target[2] = UChar(0x80 |
159                               ((int) (CH(1) & 0xf0) >> 4) |
160                               ((int) (CH(2) & 0x03) << 4));
161             target[1] = UChar(0x80 | (CH(2) >> 2));
162             target[0] = UChar(0xf8 | (CH(3) & 0x03));
163             break;
164
165         case 6:
166             target[5] = UChar(0x80 | (CH(0) & 0x3f));
167             target[4] = UChar(0x80 | (CH(0) >> 6) | ((CH(1) & 0x0f) << 2));
168             target[3] = UChar(0x80 | (CH(1) >> 4) | ((CH(2) & 0x03) << 4));
169             target[2] = UChar(0x80 | (CH(2) >> 2));
170             target[1] = UChar(0x80 | (CH(3) & 0x3f));
171             target[0] = UChar(0xfc | ((int) (CH(3) & 0x40) >> 6));
172             break;
173         }
174     }
175
176     return rc;                  /* number of bytes needed in target */
177 #undef CH
178 }
179
180 NCURSES_EXPORT(int)
181 _nc_conv_to_utf32(unsigned *target, const char *source, unsigned limit)
182 {
183 #define CH(n) UChar((*target) >> ((n) * 8))
184     int rc = 0;
185     int j;
186     unsigned mask = 0;
187
188     /*
189      * Find the number of bytes we will need from the source.
190      */
191     if ((*source & 0x80) == 0) {
192         rc = 1;
193         mask = (unsigned) *source;
194     } else if ((*source & 0xe0) == 0xc0) {
195         rc = 2;
196         mask = (unsigned) (*source & 0x1f);
197     } else if ((*source & 0xf0) == 0xe0) {
198         rc = 3;
199         mask = (unsigned) (*source & 0x0f);
200     } else if ((*source & 0xf8) == 0xf0) {
201         rc = 4;
202         mask = (unsigned) (*source & 0x07);
203     } else if ((*source & 0xfc) == 0xf8) {
204         rc = 5;
205         mask = (unsigned) (*source & 0x03);
206     } else if ((*source & 0xfe) == 0xfc) {
207         rc = 6;
208         mask = (unsigned) (*source & 0x01);
209     }
210
211     if ((unsigned) rc > limit) {        /* whatever it is, we cannot decode it */
212         rc = 0;
213     }
214
215     /*
216      * sanity-check.
217      */
218     if (rc > 1) {
219         for (j = 1; j < rc; j++) {
220             if ((source[j] & 0xc0) != 0x80)
221                 break;
222         }
223         if (j != rc) {
224             rc = 0;
225         }
226     }
227
228     if (target != 0) {
229         int shift = 0;
230         *target = 0;
231         for (j = 1; j < rc; j++) {
232             *target |= (unsigned) (source[rc - j] & 0x3f) << shift;
233             shift += 6;
234         }
235         *target |= mask << shift;
236     }
237     return rc;
238 #undef CH
239 }
240 #endif /* EXP_XTERM_1005 */