1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* Copyright (c) 1988 AT&T */ 23*7c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 24*7c478bd9Sstevel@tonic-gate 25*7c478bd9Sstevel@tonic-gate 26*7c478bd9Sstevel@tonic-gate /* 27*7c478bd9Sstevel@tonic-gate * Copyright (c) 1997, by Sun Microsystems, Inc. 28*7c478bd9Sstevel@tonic-gate * All rights reserved. 29*7c478bd9Sstevel@tonic-gate */ 30*7c478bd9Sstevel@tonic-gate 31*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 32*7c478bd9Sstevel@tonic-gate 33*7c478bd9Sstevel@tonic-gate #include <stdlib.h> 34*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 35*7c478bd9Sstevel@tonic-gate #include "curses_inc.h" 36*7c478bd9Sstevel@tonic-gate 37*7c478bd9Sstevel@tonic-gate 38*7c478bd9Sstevel@tonic-gate /* 39*7c478bd9Sstevel@tonic-gate * Translate process code to byte-equivalent 40*7c478bd9Sstevel@tonic-gate * Return the length of the byte-equivalent string 41*7c478bd9Sstevel@tonic-gate */ 42*7c478bd9Sstevel@tonic-gate 43*7c478bd9Sstevel@tonic-gate /* 44*7c478bd9Sstevel@tonic-gate * use _curs_wctomb() instead of _code2byte(code, bytes) 45*7c478bd9Sstevel@tonic-gate */ 46*7c478bd9Sstevel@tonic-gate 47*7c478bd9Sstevel@tonic-gate 48*7c478bd9Sstevel@tonic-gate /* 49*7c478bd9Sstevel@tonic-gate * Translate a set of byte to a single process code 50*7c478bd9Sstevel@tonic-gate */ 51*7c478bd9Sstevel@tonic-gate 52*7c478bd9Sstevel@tonic-gate /* 53*7c478bd9Sstevel@tonic-gate * use _curs_mbtowc() instead of wchar_t _byte2code(bytes) 54*7c478bd9Sstevel@tonic-gate */ 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gate 57*7c478bd9Sstevel@tonic-gate /* 58*7c478bd9Sstevel@tonic-gate * Translate a string of wchar_t to a byte string. 59*7c478bd9Sstevel@tonic-gate * code: the input code string 60*7c478bd9Sstevel@tonic-gate * byte: if not NULL, space to store the output string 61*7c478bd9Sstevel@tonic-gate * n: maximum number of codes to be translated. 62*7c478bd9Sstevel@tonic-gate */ 63*7c478bd9Sstevel@tonic-gate char 64*7c478bd9Sstevel@tonic-gate *_strcode2byte(wchar_t *code, char *byte, int n) 65*7c478bd9Sstevel@tonic-gate { 66*7c478bd9Sstevel@tonic-gate char *bufp; 67*7c478bd9Sstevel@tonic-gate wchar_t *endcode; 68*7c478bd9Sstevel@tonic-gate static char *buf; 69*7c478bd9Sstevel@tonic-gate static int bufsize; 70*7c478bd9Sstevel@tonic-gate 71*7c478bd9Sstevel@tonic-gate /* compute the length of the code string */ 72*7c478bd9Sstevel@tonic-gate if (n < 0) 73*7c478bd9Sstevel@tonic-gate for (n = 0; code[n] != 0; ++n) 74*7c478bd9Sstevel@tonic-gate ; 75*7c478bd9Sstevel@tonic-gate 76*7c478bd9Sstevel@tonic-gate /* get space to store the translated string */ 77*7c478bd9Sstevel@tonic-gate if (!byte && (n*CSMAX+1) > bufsize) { 78*7c478bd9Sstevel@tonic-gate if (buf) 79*7c478bd9Sstevel@tonic-gate free(buf); 80*7c478bd9Sstevel@tonic-gate bufsize = n * CSMAX + 1; 81*7c478bd9Sstevel@tonic-gate if ((buf = malloc(bufsize * sizeof (char))) == NULL) 82*7c478bd9Sstevel@tonic-gate bufsize = 0; 83*7c478bd9Sstevel@tonic-gate } 84*7c478bd9Sstevel@tonic-gate 85*7c478bd9Sstevel@tonic-gate /* no space to do it */ 86*7c478bd9Sstevel@tonic-gate if (!byte && !buf) 87*7c478bd9Sstevel@tonic-gate return (NULL); 88*7c478bd9Sstevel@tonic-gate 89*7c478bd9Sstevel@tonic-gate /* start the translation */ 90*7c478bd9Sstevel@tonic-gate bufp = byte ? byte : buf; 91*7c478bd9Sstevel@tonic-gate endcode = code+n; 92*7c478bd9Sstevel@tonic-gate while (code < endcode && *code) { 93*7c478bd9Sstevel@tonic-gate bufp += _curs_wctomb(bufp, *code & TRIM); 94*7c478bd9Sstevel@tonic-gate ++code; 95*7c478bd9Sstevel@tonic-gate } 96*7c478bd9Sstevel@tonic-gate *bufp = '\0'; 97*7c478bd9Sstevel@tonic-gate 98*7c478bd9Sstevel@tonic-gate return (byte ? byte : buf); 99*7c478bd9Sstevel@tonic-gate } 100*7c478bd9Sstevel@tonic-gate 101*7c478bd9Sstevel@tonic-gate 102*7c478bd9Sstevel@tonic-gate 103*7c478bd9Sstevel@tonic-gate /* 104*7c478bd9Sstevel@tonic-gate * Translate a byte-string to a wchar_t string. 105*7c478bd9Sstevel@tonic-gate */ 106*7c478bd9Sstevel@tonic-gate wchar_t 107*7c478bd9Sstevel@tonic-gate *_strbyte2code(char *byte, wchar_t *code, int n) 108*7c478bd9Sstevel@tonic-gate { 109*7c478bd9Sstevel@tonic-gate char *endbyte; 110*7c478bd9Sstevel@tonic-gate wchar_t *bufp; 111*7c478bd9Sstevel@tonic-gate static wchar_t *buf; 112*7c478bd9Sstevel@tonic-gate static int bufsize; 113*7c478bd9Sstevel@tonic-gate 114*7c478bd9Sstevel@tonic-gate if (n < 0) 115*7c478bd9Sstevel@tonic-gate for (n = 0; byte[n] != '\0'; ++n) 116*7c478bd9Sstevel@tonic-gate ; 117*7c478bd9Sstevel@tonic-gate 118*7c478bd9Sstevel@tonic-gate if (!code && (n + 1) > bufsize) { 119*7c478bd9Sstevel@tonic-gate if (buf) 120*7c478bd9Sstevel@tonic-gate free((char *)buf); 121*7c478bd9Sstevel@tonic-gate bufsize = n + 1; 122*7c478bd9Sstevel@tonic-gate if ((buf = (wchar_t *)malloc(bufsize * sizeof (wchar_t))) == 123*7c478bd9Sstevel@tonic-gate NULL) 124*7c478bd9Sstevel@tonic-gate bufsize = 0; 125*7c478bd9Sstevel@tonic-gate } 126*7c478bd9Sstevel@tonic-gate 127*7c478bd9Sstevel@tonic-gate if (!code && !buf) 128*7c478bd9Sstevel@tonic-gate return (NULL); 129*7c478bd9Sstevel@tonic-gate 130*7c478bd9Sstevel@tonic-gate bufp = code ? code : buf; 131*7c478bd9Sstevel@tonic-gate endbyte = byte + n; 132*7c478bd9Sstevel@tonic-gate 133*7c478bd9Sstevel@tonic-gate while (byte < endbyte && *byte) { 134*7c478bd9Sstevel@tonic-gate int type, width; 135*7c478bd9Sstevel@tonic-gate wchar_t wchar; 136*7c478bd9Sstevel@tonic-gate 137*7c478bd9Sstevel@tonic-gate type = TYPE(*byte & 0377); 138*7c478bd9Sstevel@tonic-gate width = cswidth[type]; 139*7c478bd9Sstevel@tonic-gate if (type == 1 || type == 2) 140*7c478bd9Sstevel@tonic-gate width++; 141*7c478bd9Sstevel@tonic-gate 142*7c478bd9Sstevel@tonic-gate if (byte + width <= endbyte) { 143*7c478bd9Sstevel@tonic-gate (void) _curs_mbtowc(&wchar, byte, width); 144*7c478bd9Sstevel@tonic-gate *bufp++ = wchar; 145*7c478bd9Sstevel@tonic-gate } 146*7c478bd9Sstevel@tonic-gate 147*7c478bd9Sstevel@tonic-gate byte += width; 148*7c478bd9Sstevel@tonic-gate } 149*7c478bd9Sstevel@tonic-gate *bufp = 0; 150*7c478bd9Sstevel@tonic-gate 151*7c478bd9Sstevel@tonic-gate return (code ? code : buf); 152*7c478bd9Sstevel@tonic-gate } 153