Home | History | Annotate | Line # | Download | only in modules
citrus_iso2022.c revision 1.14
      1  1.14  tshiozak /*	$NetBSD: citrus_iso2022.c,v 1.14 2005/10/29 18:02:04 tshiozak Exp $	*/
      2   1.1  tshiozak 
      3   1.1  tshiozak /*-
      4   1.1  tshiozak  * Copyright (c)1999, 2002 Citrus Project,
      5   1.1  tshiozak  * All rights reserved.
      6   1.1  tshiozak  *
      7   1.1  tshiozak  * Redistribution and use in source and binary forms, with or without
      8   1.1  tshiozak  * modification, are permitted provided that the following conditions
      9   1.1  tshiozak  * are met:
     10   1.1  tshiozak  * 1. Redistributions of source code must retain the above copyright
     11   1.1  tshiozak  *    notice, this list of conditions and the following disclaimer.
     12   1.1  tshiozak  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  tshiozak  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  tshiozak  *    documentation and/or other materials provided with the distribution.
     15   1.1  tshiozak  *
     16   1.1  tshiozak  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17   1.1  tshiozak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18   1.1  tshiozak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19   1.1  tshiozak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20   1.1  tshiozak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21   1.1  tshiozak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22   1.1  tshiozak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23   1.1  tshiozak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24   1.1  tshiozak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  tshiozak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  tshiozak  * SUCH DAMAGE.
     27   1.1  tshiozak  *
     28   1.1  tshiozak  *	$Citrus: xpg4dl/FreeBSD/lib/libc/locale/iso2022.c,v 1.23 2001/06/21 01:51:44 yamt Exp $
     29   1.1  tshiozak  */
     30   1.1  tshiozak 
     31   1.1  tshiozak #include <sys/cdefs.h>
     32   1.1  tshiozak #if defined(LIBC_SCCS) && !defined(lint)
     33  1.14  tshiozak __RCSID("$NetBSD: citrus_iso2022.c,v 1.14 2005/10/29 18:02:04 tshiozak Exp $");
     34   1.1  tshiozak #endif /* LIBC_SCCS and not lint */
     35   1.1  tshiozak 
     36   1.1  tshiozak #include <assert.h>
     37   1.1  tshiozak #include <errno.h>
     38   1.1  tshiozak #include <string.h>
     39   1.1  tshiozak #include <stdio.h>
     40   1.1  tshiozak #include <stdlib.h>
     41   1.1  tshiozak #include <stddef.h>
     42   1.1  tshiozak #include <locale.h>
     43   1.1  tshiozak #include <wchar.h>
     44   1.1  tshiozak #include <sys/types.h>
     45   1.1  tshiozak #include <limits.h>
     46   1.7  tshiozak 
     47   1.7  tshiozak #include "citrus_namespace.h"
     48   1.7  tshiozak #include "citrus_types.h"
     49   1.1  tshiozak #include "citrus_module.h"
     50   1.1  tshiozak #include "citrus_ctype.h"
     51   1.7  tshiozak #include "citrus_stdenc.h"
     52   1.1  tshiozak #include "citrus_iso2022.h"
     53   1.1  tshiozak 
     54   1.1  tshiozak 
     55   1.1  tshiozak /* ----------------------------------------------------------------------
     56   1.1  tshiozak  * private stuffs used by templates
     57   1.1  tshiozak  */
     58   1.1  tshiozak 
     59   1.1  tshiozak 
     60   1.1  tshiozak /*
     61   1.1  tshiozak  * wchar_t mappings:
     62   1.1  tshiozak  * ASCII (ESC ( B)		00000000 00000000 00000000 0xxxxxxx
     63   1.1  tshiozak  * iso-8859-1 (ESC , A)		00000000 00000000 00000000 1xxxxxxx
     64   1.1  tshiozak  * 94 charset (ESC ( F)		0fffffff 00000000 00000000 0xxxxxxx
     65   1.1  tshiozak  * 94 charset (ESC ( M F)	0fffffff 1mmmmmmm 00000000 0xxxxxxx
     66   1.1  tshiozak  * 96 charset (ESC , F)		0fffffff 00000000 00000000 1xxxxxxx
     67   1.1  tshiozak  * 96 charset (ESC , M F)	0fffffff 1mmmmmmm 00000000 1xxxxxxx
     68   1.1  tshiozak  * 94x94 charset (ESC $ ( F)	0fffffff 00000000 0xxxxxxx 0xxxxxxx
     69   1.1  tshiozak  * 96x96 charset (ESC $ , F)	0fffffff 00000000 0xxxxxxx 1xxxxxxx
     70   1.1  tshiozak  * 94x94 charset (ESC & V ESC $ ( F)
     71   1.1  tshiozak  *				0fffffff 1vvvvvvv 0xxxxxxx 0xxxxxxx
     72   1.1  tshiozak  * 94x94x94 charset (ESC $ ( F)	0fffffff 0xxxxxxx 0xxxxxxx 0xxxxxxx
     73   1.1  tshiozak  * 96x96x96 charset (ESC $ , F)	0fffffff 0xxxxxxx 0xxxxxxx 1xxxxxxx
     74  1.11    itojun  * reserved for UCS4 co-existence (UCS4 is 31bit encoding thanks to mohta bit)
     75  1.11    itojun  *				1xxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx
     76   1.1  tshiozak  */
     77   1.1  tshiozak 
     78   1.1  tshiozak typedef struct {
     79   1.1  tshiozak 	u_char	type;
     80   1.1  tshiozak #define	CS94		(0U)
     81   1.1  tshiozak #define	CS96		(1U)
     82   1.1  tshiozak #define	CS94MULTI	(2U)
     83   1.1  tshiozak #define	CS96MULTI	(3U)
     84   1.1  tshiozak 
     85   1.1  tshiozak 	u_char	final;
     86   1.1  tshiozak 	u_char	interm;
     87   1.1  tshiozak 	u_char	vers;
     88   1.1  tshiozak } _ISO2022Charset;
     89   1.1  tshiozak 
     90   1.1  tshiozak typedef struct {
     91   1.1  tshiozak 	_ISO2022Charset	g[4];
     92   1.1  tshiozak 	/* need 3 bits to hold -1, 0, ..., 3 */
     93   1.1  tshiozak 	int	gl:3,
     94   1.1  tshiozak 		gr:3,
     95   1.1  tshiozak 		singlegl:3,
     96   1.1  tshiozak 		singlegr:3;
     97   1.1  tshiozak 	char ch[7];	/* longest escape sequence (ESC & V ESC $ ( F) */
     98   1.1  tshiozak 	int chlen;
     99   1.5      yamt 	int flags;
    100   1.5      yamt #define _ISO2022STATE_FLAG_INITIALIZED	1
    101   1.4      yamt } _ISO2022State;
    102   1.1  tshiozak 
    103   1.1  tshiozak typedef struct {
    104   1.1  tshiozak 	_ISO2022Charset	*recommend[4];
    105   1.1  tshiozak 	size_t	recommendsize[4];
    106   1.1  tshiozak 	_ISO2022Charset	initg[4];
    107   1.1  tshiozak 	int	maxcharset;
    108   1.1  tshiozak 	int	flags;
    109   1.1  tshiozak #define	F_8BIT	0x0001
    110   1.1  tshiozak #define	F_NOOLD	0x0002
    111   1.1  tshiozak #define	F_SI	0x0010	/*0F*/
    112   1.1  tshiozak #define	F_SO	0x0020	/*0E*/
    113   1.1  tshiozak #define	F_LS0	0x0010	/*0F*/
    114   1.1  tshiozak #define	F_LS1	0x0020	/*0E*/
    115   1.1  tshiozak #define	F_LS2	0x0040	/*ESC n*/
    116   1.1  tshiozak #define	F_LS3	0x0080	/*ESC o*/
    117   1.1  tshiozak #define	F_LS1R	0x0100	/*ESC ~*/
    118   1.1  tshiozak #define	F_LS2R	0x0200	/*ESC }*/
    119   1.1  tshiozak #define	F_LS3R	0x0400	/*ESC |*/
    120   1.1  tshiozak #define	F_SS2	0x0800	/*ESC N*/
    121   1.1  tshiozak #define	F_SS3	0x1000	/*ESC O*/
    122   1.1  tshiozak #define	F_SS2R	0x2000	/*8E*/
    123   1.1  tshiozak #define	F_SS3R	0x4000	/*8F*/
    124   1.1  tshiozak } _ISO2022EncodingInfo;
    125   1.1  tshiozak typedef struct {
    126   1.1  tshiozak 	_ISO2022EncodingInfo ei;
    127   1.1  tshiozak 	struct {
    128   1.1  tshiozak 		/* for future multi-locale facility */
    129   1.1  tshiozak 		_ISO2022State	s_mblen;
    130   1.1  tshiozak 		_ISO2022State	s_mbrlen;
    131   1.1  tshiozak 		_ISO2022State	s_mbrtowc;
    132   1.1  tshiozak 		_ISO2022State	s_mbtowc;
    133   1.1  tshiozak 		_ISO2022State	s_mbsrtowcs;
    134   1.1  tshiozak 		_ISO2022State	s_wcrtomb;
    135   1.1  tshiozak 		_ISO2022State	s_wcsrtombs;
    136   1.1  tshiozak 		_ISO2022State	s_wctomb;
    137   1.1  tshiozak 	} states;
    138   1.1  tshiozak } _ISO2022CTypeInfo;
    139   1.1  tshiozak 
    140   1.1  tshiozak #define _CEI_TO_EI(_cei_)		(&(_cei_)->ei)
    141   1.1  tshiozak #define _CEI_TO_STATE(_cei_, _func_)	(_cei_)->states.s_##_func_
    142   1.1  tshiozak 
    143   1.1  tshiozak #define _FUNCNAME(m)			_citrus_ISO2022_##m
    144   1.1  tshiozak #define _ENCODING_INFO			_ISO2022EncodingInfo
    145   1.1  tshiozak #define _CTYPE_INFO			_ISO2022CTypeInfo
    146   1.1  tshiozak #define _ENCODING_STATE			_ISO2022State
    147   1.2      yamt #define _ENCODING_MB_CUR_MAX(_ei_)	MB_LEN_MAX
    148   1.1  tshiozak #define _ENCODING_IS_STATE_DEPENDENT	1
    149   1.5      yamt #define _STATE_NEEDS_EXPLICIT_INIT(_ps_)	\
    150   1.5      yamt     (!((_ps_)->flags & _ISO2022STATE_FLAG_INITIALIZED))
    151   1.1  tshiozak 
    152   1.1  tshiozak 
    153   1.1  tshiozak #define _ISO2022INVALID (wchar_t)-1
    154   1.1  tshiozak 
    155   1.1  tshiozak static __inline int isc0(__uint8_t x) { return ((x & 0x1f) == x); }
    156   1.1  tshiozak static __inline int isc1(__uint8_t x) { return (0x80 <= x && x <= 0x9f); }
    157   1.1  tshiozak static __inline int iscntl(__uint8_t x) { return (isc0(x) || isc1(x) || x == 0x7f); }
    158   1.1  tshiozak static __inline int is94(__uint8_t x) { return (0x21 <= x && x <= 0x7e); }
    159   1.1  tshiozak static __inline int is96(__uint8_t x) { return (0x20 <= x && x <= 0x7f); }
    160   1.1  tshiozak static __inline int isecma(__uint8_t x) { return (0x30 <= x && x <= 0x7f); }
    161   1.1  tshiozak static __inline int isinterm(__uint8_t x) { return (0x20 <= x && x <= 0x2f); }
    162   1.1  tshiozak static __inline int isthree(__uint8_t x) { return (0x60 <= x && x <= 0x6f); }
    163   1.1  tshiozak 
    164   1.1  tshiozak static __inline int
    165   1.1  tshiozak getcs(const char * __restrict p, _ISO2022Charset * __restrict cs)
    166   1.1  tshiozak {
    167   1.1  tshiozak 
    168   1.1  tshiozak 	_DIAGASSERT(p != NULL);
    169   1.1  tshiozak 	_DIAGASSERT(cs != NULL);
    170   1.1  tshiozak 
    171   1.1  tshiozak 	if (!strncmp(p, "94$", 3) && p[3] && !p[4]) {
    172   1.1  tshiozak 		cs->final = (u_char)(p[3] & 0xff);
    173   1.1  tshiozak 		cs->interm = '\0';
    174   1.1  tshiozak 		cs->vers = '\0';
    175   1.1  tshiozak 		cs->type = CS94MULTI;
    176   1.1  tshiozak 	} else if (!strncmp(p, "96$", 3) && p[3] && !p[4]) {
    177   1.1  tshiozak 		cs->final = (u_char)(p[3] & 0xff);
    178   1.1  tshiozak 		cs->interm = '\0';
    179   1.1  tshiozak 		cs->vers = '\0';
    180   1.1  tshiozak 		cs->type = CS96MULTI;
    181   1.1  tshiozak 	} else if (!strncmp(p, "94", 2) && p[2] && !p[3]) {
    182   1.1  tshiozak 		cs->final = (u_char)(p[2] & 0xff);
    183   1.1  tshiozak 		cs->interm = '\0';
    184   1.1  tshiozak 		cs->vers = '\0';
    185   1.1  tshiozak 		cs->type = CS94;
    186   1.1  tshiozak 	} else if (!strncmp(p, "96", 2) && p[2] && !p[3]) {
    187   1.1  tshiozak 		cs->final = (u_char )(p[2] & 0xff);
    188   1.1  tshiozak 		cs->interm = '\0';
    189   1.1  tshiozak 		cs->vers = '\0';
    190   1.1  tshiozak 		cs->type = CS96;
    191   1.1  tshiozak 	} else {
    192   1.1  tshiozak 		return 1;
    193   1.1  tshiozak 	}
    194   1.1  tshiozak 
    195   1.1  tshiozak 	return 0;
    196   1.1  tshiozak }
    197   1.1  tshiozak 
    198   1.1  tshiozak 
    199   1.1  tshiozak #define _NOTMATCH	0
    200   1.1  tshiozak #define _MATCH		1
    201   1.1  tshiozak #define _PARSEFAIL	2
    202   1.1  tshiozak 
    203   1.1  tshiozak static __inline int
    204   1.1  tshiozak get_recommend(_ISO2022EncodingInfo * __restrict ei,
    205   1.1  tshiozak 	      const char * __restrict token)
    206   1.1  tshiozak {
    207   1.1  tshiozak 	int i;
    208  1.10    itojun 	_ISO2022Charset cs, *p;
    209   1.1  tshiozak 
    210   1.1  tshiozak 	if (!strchr("0123", token[0]) || token[1] != '=')
    211   1.1  tshiozak 		return (_NOTMATCH);
    212   1.1  tshiozak 
    213   1.1  tshiozak 	if (getcs(&token[2], &cs) == 0)
    214   1.1  tshiozak 		;
    215   1.1  tshiozak 	else if (!strcmp(&token[2], "94")) {
    216   1.1  tshiozak 		cs.final = (u_char)(token[4]);
    217   1.1  tshiozak 		cs.interm = '\0';
    218   1.1  tshiozak 		cs.vers = '\0';
    219   1.1  tshiozak 		cs.type = CS94;
    220   1.1  tshiozak 	} else if (!strcmp(&token[2], "96")) {
    221   1.1  tshiozak 		cs.final = (u_char)(token[4]);
    222   1.1  tshiozak 		cs.interm = '\0';
    223   1.1  tshiozak 		cs.vers = '\0';
    224   1.1  tshiozak 		cs.type = CS96;
    225   1.1  tshiozak 	} else if (!strcmp(&token[2], "94$")) {
    226   1.1  tshiozak 		cs.final = (u_char)(token[5]);
    227   1.1  tshiozak 		cs.interm = '\0';
    228   1.1  tshiozak 		cs.vers = '\0';
    229   1.1  tshiozak 		cs.type = CS94MULTI;
    230   1.1  tshiozak 	} else if (!strcmp(&token[2], "96$")) {
    231   1.1  tshiozak 		cs.final = (u_char)(token[5]);
    232   1.1  tshiozak 		cs.interm = '\0';
    233   1.1  tshiozak 		cs.vers = '\0';
    234   1.1  tshiozak 		cs.type = CS96MULTI;
    235   1.1  tshiozak 	} else {
    236   1.1  tshiozak 		return (_PARSEFAIL);
    237   1.1  tshiozak 	}
    238   1.1  tshiozak 
    239   1.1  tshiozak 	i = token[0] - '0';
    240   1.1  tshiozak 	if (!ei->recommend[i]) {
    241   1.1  tshiozak 		ei->recommend[i] = malloc(sizeof(_ISO2022Charset));
    242   1.1  tshiozak 	} else {
    243  1.10    itojun 		p = realloc(ei->recommend[i],
    244  1.10    itojun 		    sizeof(_ISO2022Charset) * (ei->recommendsize[i] + 1));
    245  1.10    itojun 		if (!p)
    246  1.10    itojun 			return (_PARSEFAIL);
    247  1.10    itojun 		ei->recommend[i] = p;
    248   1.1  tshiozak 	}
    249   1.1  tshiozak 	if (!ei->recommend[i])
    250   1.1  tshiozak 		return (_PARSEFAIL);
    251  1.10    itojun 	ei->recommendsize[i]++;
    252   1.1  tshiozak 
    253   1.1  tshiozak 	(ei->recommend[i] + (ei->recommendsize[i] - 1))->final = cs.final;
    254   1.1  tshiozak 	(ei->recommend[i] + (ei->recommendsize[i] - 1))->interm = cs.interm;
    255   1.1  tshiozak 	(ei->recommend[i] + (ei->recommendsize[i] - 1))->vers = cs.vers;
    256   1.1  tshiozak 	(ei->recommend[i] + (ei->recommendsize[i] - 1))->type = cs.type;
    257   1.1  tshiozak 
    258   1.1  tshiozak 	return (_MATCH);
    259   1.1  tshiozak }
    260   1.1  tshiozak 
    261   1.1  tshiozak static __inline int
    262   1.1  tshiozak get_initg(_ISO2022EncodingInfo * __restrict ei,
    263   1.1  tshiozak 	  const char * __restrict token)
    264   1.1  tshiozak {
    265   1.1  tshiozak 	_ISO2022Charset cs;
    266   1.1  tshiozak 
    267   1.1  tshiozak 	if (strncmp("INIT", &token[0], 4) ||
    268   1.1  tshiozak 	    !strchr("0123", token[4]) ||
    269   1.1  tshiozak 	    token[5] != '=')
    270   1.1  tshiozak 		return (_NOTMATCH);
    271   1.1  tshiozak 
    272   1.1  tshiozak 	if (getcs(&token[6], &cs) != 0)
    273   1.1  tshiozak 		return (_PARSEFAIL);
    274   1.1  tshiozak 
    275   1.1  tshiozak 	ei->initg[token[4] - '0'].type = cs.type;
    276   1.1  tshiozak 	ei->initg[token[4] - '0'].final = cs.final;
    277   1.1  tshiozak 	ei->initg[token[4] - '0'].interm = cs.interm;
    278   1.1  tshiozak 	ei->initg[token[4] - '0'].vers = cs.vers;
    279   1.1  tshiozak 
    280   1.1  tshiozak 	return (_MATCH);
    281   1.1  tshiozak }
    282   1.1  tshiozak 
    283   1.1  tshiozak static __inline int
    284   1.1  tshiozak get_max(_ISO2022EncodingInfo * __restrict ei,
    285   1.1  tshiozak 	const char * __restrict token)
    286   1.1  tshiozak {
    287   1.1  tshiozak 	if (!strcmp(token, "MAX1")) {
    288   1.1  tshiozak 		ei->maxcharset = 1;
    289   1.1  tshiozak 	} else if (!strcmp(token, "MAX2")) {
    290   1.1  tshiozak 		ei->maxcharset = 2;
    291   1.1  tshiozak 	} else if (!strcmp(token, "MAX3")) {
    292   1.1  tshiozak 		ei->maxcharset = 3;
    293   1.1  tshiozak 	} else
    294   1.1  tshiozak 		return (_NOTMATCH);
    295   1.1  tshiozak 
    296   1.1  tshiozak 	return (_MATCH);
    297   1.1  tshiozak }
    298   1.1  tshiozak 
    299   1.1  tshiozak 
    300   1.1  tshiozak static __inline int
    301   1.1  tshiozak get_flags(_ISO2022EncodingInfo * __restrict ei,
    302   1.1  tshiozak 	  const char * __restrict token)
    303   1.1  tshiozak {
    304   1.1  tshiozak 	int i;
    305   1.1  tshiozak 	static struct {
    306   1.1  tshiozak 		const char	*tag;
    307   1.1  tshiozak 		int		flag;
    308   1.1  tshiozak 	} const tags[] = {
    309   1.1  tshiozak 		{ "DUMMY",	0	},
    310   1.1  tshiozak 		{ "8BIT",	F_8BIT	},
    311   1.1  tshiozak 		{ "NOOLD",	F_NOOLD	},
    312   1.1  tshiozak 		{ "SI",		F_SI	},
    313   1.1  tshiozak 		{ "SO",		F_SO	},
    314   1.1  tshiozak 		{ "LS0",	F_LS0	},
    315   1.1  tshiozak 		{ "LS1",	F_LS1	},
    316   1.1  tshiozak 		{ "LS2",	F_LS2	},
    317   1.1  tshiozak 		{ "LS3",	F_LS3	},
    318   1.1  tshiozak 		{ "LS1R",	F_LS1R	},
    319   1.1  tshiozak 		{ "LS2R",	F_LS2R	},
    320   1.1  tshiozak 		{ "LS3R",	F_LS3R	},
    321   1.1  tshiozak 		{ "SS2",	F_SS2	},
    322   1.1  tshiozak 		{ "SS3",	F_SS3	},
    323   1.1  tshiozak 		{ "SS2R",	F_SS2R	},
    324   1.1  tshiozak 		{ "SS3R",	F_SS3R	},
    325   1.1  tshiozak 		{ NULL,		0 }
    326   1.1  tshiozak 	};
    327   1.1  tshiozak 
    328   1.1  tshiozak 	for (i = 0; tags[i].tag; i++) {
    329   1.1  tshiozak 		if (!strcmp(token, tags[i].tag)) {
    330   1.1  tshiozak 			ei->flags |= tags[i].flag;
    331   1.1  tshiozak 			return (_MATCH);
    332   1.1  tshiozak 		}
    333   1.1  tshiozak 	}
    334   1.1  tshiozak 
    335   1.1  tshiozak 	return (_NOTMATCH);
    336   1.1  tshiozak }
    337   1.1  tshiozak 
    338   1.1  tshiozak 
    339   1.1  tshiozak static __inline int
    340   1.1  tshiozak _citrus_ISO2022_parse_variable(_ISO2022EncodingInfo * __restrict ei,
    341   1.1  tshiozak 			       const void * __restrict var, size_t lenvar)
    342   1.1  tshiozak {
    343   1.1  tshiozak 	char const *v, *e;
    344   1.1  tshiozak 	char buf[20];
    345   1.1  tshiozak 	int i, len, ret;
    346   1.1  tshiozak 
    347   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    348   1.1  tshiozak 
    349   1.1  tshiozak 
    350   1.1  tshiozak 	/*
    351   1.1  tshiozak 	 * parse VARIABLE section.
    352   1.1  tshiozak 	 */
    353   1.1  tshiozak 
    354   1.1  tshiozak 	if (!var)
    355   1.1  tshiozak 		return (EFTYPE);
    356   1.1  tshiozak 
    357   1.1  tshiozak 	v = (const char *) var;
    358   1.1  tshiozak 
    359   1.1  tshiozak 	/* initialize structure */
    360   1.1  tshiozak 	ei->maxcharset = 0;
    361   1.1  tshiozak 	for (i = 0; i < 4; i++) {
    362   1.1  tshiozak 		ei->recommend[i] = NULL;
    363   1.1  tshiozak 		ei->recommendsize[i] = 0;
    364   1.1  tshiozak 	}
    365   1.1  tshiozak 	ei->flags = 0;
    366   1.1  tshiozak 
    367   1.1  tshiozak 	while (*v) {
    368   1.1  tshiozak 		while (*v == ' ' || *v == '\t')
    369   1.1  tshiozak 			++v;
    370   1.1  tshiozak 
    371   1.1  tshiozak 		/* find the token */
    372   1.1  tshiozak 		e = v;
    373   1.1  tshiozak 		while (*e && *e != ' ' && *e != '\t')
    374   1.1  tshiozak 			++e;
    375   1.7  tshiozak 
    376   1.7  tshiozak 		len = e-v;
    377   1.7  tshiozak 		if (len == 0)
    378   1.7  tshiozak 			break;
    379   1.7  tshiozak 		if (len>=sizeof(buf))
    380   1.7  tshiozak 			goto parsefail;
    381   1.9    itojun 		snprintf(buf, sizeof(buf), "%.*s", len, v);
    382   1.1  tshiozak 
    383   1.1  tshiozak 		if ((ret = get_recommend(ei, buf)) != _NOTMATCH)
    384   1.1  tshiozak 			;
    385   1.1  tshiozak 		else if ((ret = get_initg(ei, buf)) != _NOTMATCH)
    386   1.1  tshiozak 			;
    387   1.1  tshiozak 		else if ((ret = get_max(ei, buf)) != _NOTMATCH)
    388   1.1  tshiozak 			;
    389   1.1  tshiozak 		else if ((ret = get_flags(ei, buf)) != _NOTMATCH)
    390   1.1  tshiozak 			;
    391   1.1  tshiozak 		else
    392   1.1  tshiozak 			ret = _PARSEFAIL;
    393   1.1  tshiozak 		if (ret==_PARSEFAIL)
    394   1.1  tshiozak 			goto parsefail;
    395   1.1  tshiozak 		v = e;
    396   1.1  tshiozak 
    397   1.1  tshiozak 	}
    398   1.1  tshiozak 
    399   1.1  tshiozak 	return (0);
    400   1.1  tshiozak 
    401   1.1  tshiozak parsefail:
    402   1.1  tshiozak 	free(ei->recommend[0]);
    403   1.1  tshiozak 	free(ei->recommend[1]);
    404   1.1  tshiozak 	free(ei->recommend[2]);
    405   1.1  tshiozak 	free(ei->recommend[3]);
    406   1.1  tshiozak 
    407   1.1  tshiozak 	return (EFTYPE);
    408   1.1  tshiozak }
    409   1.1  tshiozak 
    410   1.1  tshiozak static __inline void
    411   1.1  tshiozak /*ARGSUSED*/
    412   1.1  tshiozak _citrus_ISO2022_init_state(_ISO2022EncodingInfo * __restrict ei,
    413   1.1  tshiozak 			   _ISO2022State * __restrict s)
    414   1.1  tshiozak {
    415   1.1  tshiozak 	int i;
    416   1.1  tshiozak 
    417   1.1  tshiozak 	memset(s, 0, sizeof(*s));
    418   1.1  tshiozak 	s->gl = 0;
    419   1.1  tshiozak 	s->gr = (ei->flags & F_8BIT) ? 1 : -1;
    420   1.1  tshiozak 
    421   1.1  tshiozak 	for (i = 0; i < 4; i++) {
    422   1.1  tshiozak 		if (ei->initg[i].final) {
    423   1.1  tshiozak 			s->g[i].type = ei->initg[i].type;
    424   1.1  tshiozak 			s->g[i].final = ei->initg[i].final;
    425   1.1  tshiozak 			s->g[i].interm = ei->initg[i].interm;
    426   1.1  tshiozak 		}
    427   1.1  tshiozak 	}
    428   1.1  tshiozak 	s->singlegl = s->singlegr = -1;
    429   1.5      yamt 	s->flags |= _ISO2022STATE_FLAG_INITIALIZED;
    430   1.1  tshiozak }
    431   1.1  tshiozak 
    432   1.1  tshiozak static __inline void
    433   1.1  tshiozak /*ARGSUSED*/
    434   1.1  tshiozak _citrus_ISO2022_pack_state(_ISO2022EncodingInfo * __restrict ei,
    435   1.1  tshiozak 			   void * __restrict pspriv,
    436   1.1  tshiozak 			   const _ISO2022State * __restrict s)
    437   1.1  tshiozak {
    438   1.1  tshiozak 	memcpy(pspriv, (const void *)s, sizeof(*s));
    439   1.1  tshiozak }
    440   1.1  tshiozak 
    441   1.1  tshiozak static __inline void
    442   1.1  tshiozak /*ARGSUSED*/
    443   1.1  tshiozak _citrus_ISO2022_unpack_state(_ISO2022EncodingInfo * __restrict ei,
    444   1.1  tshiozak 			     _ISO2022State * __restrict s,
    445   1.1  tshiozak 			     const void * __restrict pspriv)
    446   1.1  tshiozak {
    447   1.1  tshiozak 	memcpy((void *)s, pspriv, sizeof(*s));
    448   1.1  tshiozak }
    449   1.1  tshiozak 
    450   1.1  tshiozak static int
    451   1.1  tshiozak /*ARGSUSED*/
    452   1.7  tshiozak _citrus_ISO2022_encoding_module_init(_ISO2022EncodingInfo * __restrict ei,
    453   1.7  tshiozak 				     const void * __restrict var,
    454   1.7  tshiozak 				     size_t lenvar)
    455   1.1  tshiozak {
    456   1.1  tshiozak 
    457   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    458   1.1  tshiozak 
    459   1.1  tshiozak 	return _citrus_ISO2022_parse_variable(ei, var, lenvar);
    460   1.1  tshiozak }
    461   1.1  tshiozak 
    462   1.1  tshiozak static void
    463   1.1  tshiozak /*ARGSUSED*/
    464   1.7  tshiozak _citrus_ISO2022_encoding_module_uninit(_ISO2022EncodingInfo *ei)
    465   1.1  tshiozak {
    466   1.1  tshiozak }
    467   1.1  tshiozak 
    468   1.1  tshiozak #define	ESC	'\033'
    469   1.1  tshiozak #define	ECMA	-1
    470   1.1  tshiozak #define	INTERM	-2
    471   1.1  tshiozak #define	OECMA	-3
    472  1.12      yamt static const struct seqtable {
    473   1.1  tshiozak 	int type;
    474   1.1  tshiozak 	int csoff;
    475   1.1  tshiozak 	int finaloff;
    476   1.1  tshiozak 	int intermoff;
    477   1.1  tshiozak 	int versoff;
    478   1.1  tshiozak 	int len;
    479   1.1  tshiozak 	int chars[10];
    480   1.1  tshiozak } seqtable[] = {
    481   1.1  tshiozak 	/* G0 94MULTI special */
    482   1.1  tshiozak 	{ CS94MULTI, -1, 2, -1, -1,	3, { ESC, '$', OECMA }, },
    483   1.1  tshiozak 	/* G0 94MULTI special with version identification */
    484   1.1  tshiozak 	{ CS94MULTI, -1, 5, -1, 2,	6, { ESC, '&', ECMA, ESC, '$', OECMA }, },
    485   1.1  tshiozak 	/* G? 94 */
    486   1.1  tshiozak 	{ CS94, 1, 2, -1, -1,		3, { ESC, CS94, ECMA, }, },
    487   1.1  tshiozak 	/* G? 94 with 2nd intermediate char */
    488   1.1  tshiozak 	{ CS94, 1, 3, 2, -1,		4, { ESC, CS94, INTERM, ECMA, }, },
    489   1.1  tshiozak 	/* G? 96 */
    490   1.1  tshiozak 	{ CS96, 1, 2, -1, -1,		3, { ESC, CS96, ECMA, }, },
    491   1.1  tshiozak 	/* G? 96 with 2nd intermediate char */
    492   1.1  tshiozak 	{ CS96, 1, 3, 2, -1,		4, { ESC, CS96, INTERM, ECMA, }, },
    493   1.1  tshiozak 	/* G? 94MULTI */
    494   1.1  tshiozak 	{ CS94MULTI, 2, 3, -1, -1,	4, { ESC, '$', CS94, ECMA, }, },
    495   1.1  tshiozak 	/* G? 96MULTI */
    496   1.1  tshiozak 	{ CS96MULTI, 2, 3, -1, -1,	4, { ESC, '$', CS96, ECMA, }, },
    497   1.1  tshiozak 	/* G? 94MULTI with version specification */
    498   1.1  tshiozak 	{ CS94MULTI, 5, 6, -1, 2,	7, { ESC, '&', ECMA, ESC, '$', CS94, ECMA, }, },
    499   1.1  tshiozak 	/* LS2/3 */
    500   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, 'n', }, },
    501   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, 'o', }, },
    502   1.1  tshiozak 	/* LS1/2/3R */
    503   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, '~', }, },
    504   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, /*{*/ '}', }, },
    505   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, '|', }, },
    506   1.1  tshiozak 	/* SS2/3 */
    507   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, 'N', }, },
    508   1.1  tshiozak 	{ -1, -1, -1, -1, -1,		2, { ESC, 'O', }, },
    509   1.1  tshiozak 	/* end of records */
    510   1.1  tshiozak 	{ 0, }
    511   1.1  tshiozak };
    512   1.1  tshiozak 
    513   1.1  tshiozak static int
    514   1.1  tshiozak seqmatch(const char * __restrict s, size_t n,
    515   1.1  tshiozak 	 const struct seqtable * __restrict sp)
    516   1.1  tshiozak {
    517   1.1  tshiozak 	const int *p;
    518   1.1  tshiozak 
    519   1.1  tshiozak 	_DIAGASSERT(s != NULL);
    520   1.1  tshiozak 	_DIAGASSERT(sp != NULL);
    521   1.1  tshiozak 
    522   1.1  tshiozak 	p = sp->chars;
    523   1.1  tshiozak 	while (p - sp->chars < n && p - sp->chars < sp->len) {
    524   1.1  tshiozak 		switch (*p) {
    525   1.1  tshiozak 		case ECMA:
    526   1.1  tshiozak 			if (!isecma(*s))
    527   1.1  tshiozak 				goto terminate;
    528   1.1  tshiozak 			break;
    529   1.1  tshiozak 		case OECMA:
    530   1.1  tshiozak 			if (*s && strchr("@AB", *s))
    531   1.1  tshiozak 				break;
    532   1.1  tshiozak 			else
    533   1.1  tshiozak 				goto terminate;
    534   1.1  tshiozak 		case INTERM:
    535   1.1  tshiozak 			if (!isinterm(*s))
    536   1.1  tshiozak 				goto terminate;
    537   1.1  tshiozak 			break;
    538   1.1  tshiozak 		case CS94:
    539   1.1  tshiozak 			if (*s && strchr("()*+", *s))
    540   1.1  tshiozak 				break;
    541   1.1  tshiozak 			else
    542   1.1  tshiozak 				goto terminate;
    543   1.1  tshiozak 		case CS96:
    544   1.1  tshiozak 			if (*s && strchr(",-./", *s))
    545   1.1  tshiozak 				break;
    546   1.1  tshiozak 			else
    547   1.1  tshiozak 				goto terminate;
    548   1.1  tshiozak 		default:
    549   1.1  tshiozak 			if (*s != *p)
    550   1.1  tshiozak 				goto terminate;
    551   1.1  tshiozak 			break;
    552   1.1  tshiozak 		}
    553   1.1  tshiozak 
    554   1.1  tshiozak 		p++;
    555   1.1  tshiozak 		s++;
    556   1.1  tshiozak 	}
    557   1.1  tshiozak 
    558   1.1  tshiozak terminate:
    559   1.1  tshiozak 	return p - sp->chars;
    560   1.1  tshiozak }
    561   1.1  tshiozak 
    562   1.1  tshiozak static wchar_t
    563   1.1  tshiozak _ISO2022_sgetwchar(_ISO2022EncodingInfo * __restrict ei,
    564  1.14  tshiozak 		const char * __restrict string, size_t n,
    565  1.14  tshiozak 		const char ** __restrict result,
    566  1.14  tshiozak 		_ISO2022State * __restrict psenc)
    567   1.1  tshiozak {
    568   1.1  tshiozak 	wchar_t wchar = 0;
    569   1.1  tshiozak 	int cur;
    570  1.12      yamt 	const struct seqtable *sp;
    571   1.1  tshiozak 	int nmatch;
    572   1.1  tshiozak 	int i;
    573   1.1  tshiozak 
    574   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    575  1.13   tnozaki 	_DIAGASSERT(psenc != NULL);
    576   1.1  tshiozak 	_DIAGASSERT(string != NULL);
    577   1.1  tshiozak 	/* result may be NULL */
    578   1.1  tshiozak 
    579   1.1  tshiozak 	while (1) {
    580   1.1  tshiozak 		/* SI/SO */
    581   1.1  tshiozak 		if (1 <= n && string[0] == '\017') {
    582   1.1  tshiozak 			psenc->gl = 0;
    583   1.1  tshiozak 			string++;
    584   1.1  tshiozak 			n--;
    585   1.1  tshiozak 			continue;
    586   1.1  tshiozak 		}
    587   1.1  tshiozak 		if (1 <= n && string[0] == '\016') {
    588   1.1  tshiozak 			psenc->gl = 1;
    589   1.1  tshiozak 			string++;
    590   1.1  tshiozak 			n--;
    591   1.1  tshiozak 			continue;
    592   1.1  tshiozak 		}
    593   1.1  tshiozak 
    594   1.1  tshiozak 		/* SS2/3R */
    595   1.1  tshiozak 		if (1 <= n && string[0] && strchr("\217\216", string[0])) {
    596   1.1  tshiozak 			psenc->singlegl = psenc->singlegr =
    597   1.1  tshiozak 			    (string[0] - '\216') + 2;
    598   1.1  tshiozak 			string++;
    599   1.1  tshiozak 			n--;
    600   1.1  tshiozak 			continue;
    601   1.1  tshiozak 		}
    602   1.1  tshiozak 
    603   1.1  tshiozak 		/* eat the letter if this is not ESC */
    604   1.1  tshiozak 		if (1 <= n && string[0] != '\033')
    605   1.1  tshiozak 			break;
    606   1.1  tshiozak 
    607   1.1  tshiozak 		/* look for a perfect match from escape sequences */
    608   1.1  tshiozak 		for (sp = &seqtable[0]; sp->len; sp++) {
    609   1.1  tshiozak 			nmatch = seqmatch(string, n, sp);
    610   1.1  tshiozak 			if (sp->len == nmatch && n >= sp->len)
    611   1.1  tshiozak 				break;
    612   1.1  tshiozak 		}
    613   1.1  tshiozak 
    614   1.1  tshiozak 		if (!sp->len)
    615   1.1  tshiozak 			goto notseq;
    616   1.1  tshiozak 
    617   1.1  tshiozak 		if (sp->type != -1) {
    618   1.1  tshiozak 			if (sp->csoff == -1)
    619   1.1  tshiozak 				i = 0;
    620   1.1  tshiozak 			else {
    621   1.1  tshiozak 				switch (sp->type) {
    622   1.1  tshiozak 				case CS94:
    623   1.1  tshiozak 				case CS94MULTI:
    624   1.1  tshiozak 					i = string[sp->csoff] - '(';
    625   1.1  tshiozak 					break;
    626   1.1  tshiozak 				case CS96:
    627   1.1  tshiozak 				case CS96MULTI:
    628   1.1  tshiozak 					i = string[sp->csoff] - ',';
    629   1.1  tshiozak 					break;
    630   1.1  tshiozak 				}
    631   1.1  tshiozak 			}
    632   1.1  tshiozak 			psenc->g[i].type = sp->type;
    633   1.1  tshiozak 			psenc->g[i].final = '\0';
    634   1.1  tshiozak 			psenc->g[i].interm = '\0';
    635   1.1  tshiozak 			psenc->g[i].vers = '\0';
    636   1.1  tshiozak 			/* sp->finaloff must not be -1 */
    637   1.1  tshiozak 			if (sp->finaloff != -1)
    638   1.1  tshiozak 				psenc->g[i].final = string[sp->finaloff];
    639   1.1  tshiozak 			if (sp->intermoff != -1)
    640   1.1  tshiozak 				psenc->g[i].interm = string[sp->intermoff];
    641   1.1  tshiozak 			if (sp->versoff != -1)
    642   1.1  tshiozak 				psenc->g[i].vers = string[sp->versoff];
    643   1.1  tshiozak 
    644   1.1  tshiozak 			string += sp->len;
    645   1.1  tshiozak 			n -= sp->len;
    646   1.1  tshiozak 			continue;
    647   1.1  tshiozak 		}
    648   1.1  tshiozak 
    649   1.1  tshiozak 		/* LS2/3 */
    650   1.1  tshiozak 		if (2 <= n && string[0] == '\033'
    651   1.1  tshiozak 		 && string[1] && strchr("no", string[1])) {
    652   1.1  tshiozak 			psenc->gl = string[1] - 'n' + 2;
    653   1.1  tshiozak 			string += 2;
    654   1.1  tshiozak 			n -= 2;
    655   1.1  tshiozak 			continue;
    656   1.1  tshiozak 		}
    657   1.1  tshiozak 
    658   1.1  tshiozak 		/* LS1/2/3R */
    659   1.1  tshiozak 			/* XXX: { for vi showmatch */
    660   1.1  tshiozak 		if (2 <= n && string[0] == '\033'
    661   1.1  tshiozak 		 && string[1] && strchr("~}|", string[1])) {
    662   1.1  tshiozak 			psenc->gr = 3 - (string[1] - '|');
    663   1.1  tshiozak 			string += 2;
    664   1.1  tshiozak 			n -= 2;
    665   1.1  tshiozak 			continue;
    666   1.1  tshiozak 		}
    667   1.1  tshiozak 
    668   1.1  tshiozak 		/* SS2/3 */
    669   1.1  tshiozak 		if (2 <= n && string[0] == '\033'
    670   1.1  tshiozak 		 && string[1] && strchr("NO", string[1])) {
    671   1.1  tshiozak 			psenc->singlegl = (string[1] - 'N') + 2;
    672   1.1  tshiozak 			string += 2;
    673   1.1  tshiozak 			n -= 2;
    674   1.1  tshiozak 			continue;
    675   1.1  tshiozak 		}
    676   1.1  tshiozak 
    677   1.1  tshiozak 	notseq:
    678   1.1  tshiozak 		/*
    679   1.1  tshiozak 		 * if we've got an unknown escape sequence, eat the ESC at the
    680   1.1  tshiozak 		 * head.  otherwise, wait till full escape sequence comes.
    681   1.1  tshiozak 		 */
    682   1.1  tshiozak 		for (sp = &seqtable[0]; sp->len; sp++) {
    683   1.1  tshiozak 			nmatch = seqmatch(string, n, sp);
    684   1.1  tshiozak 			if (!nmatch)
    685   1.1  tshiozak 				continue;
    686   1.1  tshiozak 
    687   1.1  tshiozak 			/*
    688   1.1  tshiozak 			 * if we are in the middle of escape sequence,
    689   1.1  tshiozak 			 * we still need to wait for more characters to come
    690   1.1  tshiozak 			 */
    691   1.1  tshiozak 			if (n < sp->len) {
    692   1.1  tshiozak 				if (nmatch == n) {
    693   1.1  tshiozak 					if (result)
    694   1.1  tshiozak 						*result = string;
    695   1.1  tshiozak 					return (_ISO2022INVALID);
    696   1.1  tshiozak 				}
    697   1.1  tshiozak 			} else {
    698   1.1  tshiozak 				if (nmatch == sp->len) {
    699   1.1  tshiozak 					/* this case should not happen */
    700   1.1  tshiozak 					goto eat;
    701   1.1  tshiozak 				}
    702   1.1  tshiozak 			}
    703   1.1  tshiozak 		}
    704   1.1  tshiozak 
    705   1.1  tshiozak 		break;
    706   1.1  tshiozak 	}
    707   1.1  tshiozak 
    708   1.1  tshiozak eat:
    709   1.1  tshiozak 	/* no letter to eat */
    710   1.1  tshiozak 	if (n < 1) {
    711   1.1  tshiozak 		if (result)
    712   1.1  tshiozak 			*result = string;
    713   1.1  tshiozak 		return (_ISO2022INVALID);
    714   1.1  tshiozak 	}
    715   1.1  tshiozak 
    716   1.1  tshiozak 	/* normal chars.  always eat C0/C1 as is. */
    717   1.1  tshiozak 	if (iscntl(*string & 0xff))
    718   1.1  tshiozak 		cur = -1;
    719   1.1  tshiozak 	else if (*string & 0x80) {
    720   1.1  tshiozak 		cur = (psenc->singlegr == -1)
    721   1.1  tshiozak 			? psenc->gr : psenc->singlegr;
    722   1.1  tshiozak 	} else {
    723   1.1  tshiozak 		cur = (psenc->singlegl == -1)
    724   1.1  tshiozak 			? psenc->gl : psenc->singlegl;
    725   1.1  tshiozak 	}
    726   1.1  tshiozak 
    727   1.1  tshiozak 	if (cur == -1) {
    728   1.1  tshiozak asis:
    729   1.1  tshiozak 		wchar = *string++ & 0xff;
    730   1.1  tshiozak 		if (result)
    731   1.1  tshiozak 			*result = string;
    732   1.1  tshiozak 		/* reset single shift state */
    733   1.1  tshiozak 		psenc->singlegr = psenc->singlegl = -1;
    734   1.1  tshiozak 		return wchar;
    735   1.1  tshiozak 	}
    736   1.1  tshiozak 
    737   1.1  tshiozak 	/* length error check */
    738   1.1  tshiozak 	switch (psenc->g[cur].type) {
    739   1.1  tshiozak 	case CS94MULTI:
    740   1.1  tshiozak 	case CS96MULTI:
    741   1.1  tshiozak 		if (!isthree(psenc->g[cur].final)) {
    742   1.1  tshiozak 			if (2 <= n
    743   1.1  tshiozak 			 && (string[0] & 0x80) == (string[1] & 0x80))
    744   1.1  tshiozak 				break;
    745   1.1  tshiozak 		} else {
    746   1.1  tshiozak 			if (3 <= n
    747   1.1  tshiozak 			 && (string[0] & 0x80) == (string[1] & 0x80)
    748   1.1  tshiozak 			 && (string[0] & 0x80) == (string[2] & 0x80))
    749   1.1  tshiozak 				break;
    750   1.1  tshiozak 		}
    751   1.1  tshiozak 
    752   1.1  tshiozak 		/* we still need to wait for more characters to come */
    753   1.1  tshiozak 		if (result)
    754   1.1  tshiozak 			*result = string;
    755   1.1  tshiozak 		return (_ISO2022INVALID);
    756   1.1  tshiozak 
    757   1.1  tshiozak 	case CS94:
    758   1.1  tshiozak 	case CS96:
    759   1.1  tshiozak 		if (1 <= n)
    760   1.1  tshiozak 			break;
    761   1.1  tshiozak 
    762   1.1  tshiozak 		/* we still need to wait for more characters to come */
    763   1.1  tshiozak 		if (result)
    764   1.1  tshiozak 			*result = string;
    765   1.1  tshiozak 		return (_ISO2022INVALID);
    766   1.1  tshiozak 	}
    767   1.1  tshiozak 
    768   1.1  tshiozak 	/* range check */
    769   1.1  tshiozak 	switch (psenc->g[cur].type) {
    770   1.1  tshiozak 	case CS94:
    771   1.1  tshiozak 		if (!(is94(string[0] & 0x7f)))
    772   1.1  tshiozak 			goto asis;
    773   1.1  tshiozak 	case CS96:
    774   1.1  tshiozak 		if (!(is96(string[0] & 0x7f)))
    775   1.1  tshiozak 			goto asis;
    776   1.1  tshiozak 		break;
    777   1.1  tshiozak 	case CS94MULTI:
    778   1.1  tshiozak 		if (!(is94(string[0] & 0x7f) && is94(string[1] & 0x7f)))
    779   1.1  tshiozak 			goto asis;
    780   1.1  tshiozak 		break;
    781   1.1  tshiozak 	case CS96MULTI:
    782   1.1  tshiozak 		if (!(is96(string[0] & 0x7f) && is96(string[1] & 0x7f)))
    783   1.1  tshiozak 			goto asis;
    784   1.1  tshiozak 		break;
    785   1.1  tshiozak 	}
    786   1.1  tshiozak 
    787   1.1  tshiozak 	/* extract the character. */
    788   1.1  tshiozak 	switch (psenc->g[cur].type) {
    789   1.1  tshiozak 	case CS94:
    790   1.1  tshiozak 		/* special case for ASCII. */
    791   1.1  tshiozak 		if (psenc->g[cur].final == 'B' && !psenc->g[cur].interm) {
    792   1.1  tshiozak 			wchar = *string++;
    793   1.1  tshiozak 			wchar &= 0x7f;
    794   1.1  tshiozak 			break;
    795   1.1  tshiozak 		}
    796   1.1  tshiozak 		wchar = psenc->g[cur].final;
    797   1.1  tshiozak 		wchar = (wchar << 8);
    798   1.1  tshiozak 		wchar |= (psenc->g[cur].interm ? (0x80 | psenc->g[cur].interm) : 0);
    799   1.1  tshiozak 		wchar = (wchar << 8);
    800   1.1  tshiozak 		wchar = (wchar << 8) | (*string++ & 0x7f);
    801   1.1  tshiozak 		break;
    802   1.1  tshiozak 	case CS96:
    803   1.1  tshiozak 		/* special case for ISO-8859-1. */
    804   1.1  tshiozak 		if (psenc->g[cur].final == 'A' && !psenc->g[cur].interm) {
    805   1.1  tshiozak 			wchar = *string++;
    806   1.1  tshiozak 			wchar &= 0x7f;
    807   1.1  tshiozak 			wchar |= 0x80;
    808   1.1  tshiozak 			break;
    809   1.1  tshiozak 		}
    810   1.1  tshiozak 		wchar = psenc->g[cur].final;
    811   1.1  tshiozak 		wchar = (wchar << 8);
    812   1.1  tshiozak 		wchar |= (psenc->g[cur].interm ? (0x80 | psenc->g[cur].interm) : 0);
    813   1.1  tshiozak 		wchar = (wchar << 8);
    814   1.1  tshiozak 		wchar = (wchar << 8) | (*string++ & 0x7f);
    815   1.1  tshiozak 		wchar |= 0x80;
    816   1.1  tshiozak 		break;
    817   1.1  tshiozak 	case CS94MULTI:
    818   1.1  tshiozak 	case CS96MULTI:
    819   1.1  tshiozak 		wchar = psenc->g[cur].final;
    820   1.1  tshiozak 		wchar = (wchar << 8);
    821   1.1  tshiozak 		if (isthree(psenc->g[cur].final))
    822   1.1  tshiozak 			wchar |= (*string++ & 0x7f);
    823   1.1  tshiozak 		wchar = (wchar << 8) | (*string++ & 0x7f);
    824   1.1  tshiozak 		wchar = (wchar << 8) | (*string++ & 0x7f);
    825   1.1  tshiozak 		if (psenc->g[cur].type == CS96MULTI)
    826   1.1  tshiozak 			wchar |= 0x80;
    827   1.1  tshiozak 		break;
    828   1.1  tshiozak 	}
    829   1.1  tshiozak 
    830   1.1  tshiozak 	if (result)
    831   1.1  tshiozak 		*result = string;
    832   1.1  tshiozak 	/* reset single shift state */
    833   1.1  tshiozak 	psenc->singlegr = psenc->singlegl = -1;
    834   1.1  tshiozak 	return wchar;
    835   1.1  tshiozak }
    836   1.1  tshiozak 
    837   1.1  tshiozak 
    838   1.1  tshiozak 
    839   1.1  tshiozak static int
    840   1.1  tshiozak _citrus_ISO2022_mbrtowc_priv(_ISO2022EncodingInfo * __restrict ei,
    841   1.1  tshiozak 			     wchar_t * __restrict pwc,
    842   1.1  tshiozak 			     const char ** __restrict s,
    843   1.1  tshiozak 			     size_t n, _ISO2022State * __restrict psenc,
    844   1.1  tshiozak 			     size_t * __restrict nresult)
    845   1.1  tshiozak {
    846   1.1  tshiozak 	wchar_t wchar;
    847   1.1  tshiozak 	const char *s0, *p, *result;
    848   1.1  tshiozak 	int c;
    849   1.1  tshiozak 	int chlenbak;
    850   1.1  tshiozak 
    851   1.1  tshiozak 	_DIAGASSERT(nresult != 0);
    852   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    853   1.1  tshiozak 	_DIAGASSERT(psenc != NULL);
    854   1.1  tshiozak 	_DIAGASSERT(s != NULL);
    855   1.1  tshiozak 
    856   1.1  tshiozak 	s0 = *s;
    857   1.1  tshiozak 	c = 0;
    858   1.1  tshiozak 	chlenbak = psenc->chlen;
    859   1.1  tshiozak 
    860   1.1  tshiozak 	/*
    861   1.1  tshiozak 	 * if we have something in buffer, use that.
    862   1.1  tshiozak 	 * otherwise, skip here
    863   1.1  tshiozak 	 */
    864   1.1  tshiozak 	if (psenc->chlen < 0 || psenc->chlen > sizeof(psenc->ch)) {
    865   1.1  tshiozak 		/* illgeal state */
    866   1.1  tshiozak 		_citrus_ISO2022_init_state(ei, psenc);
    867   1.1  tshiozak 		goto encoding_error;
    868   1.1  tshiozak 	}
    869   1.1  tshiozak 	if (psenc->chlen == 0)
    870   1.1  tshiozak 		goto emptybuf;
    871   1.1  tshiozak 
    872   1.1  tshiozak 	/* buffer is not empty */
    873   1.1  tshiozak 	p = psenc->ch;
    874   1.1  tshiozak 	while (psenc->chlen < sizeof(psenc->ch) && n >= 0) {
    875   1.1  tshiozak 		if (n > 0) {
    876   1.1  tshiozak 			psenc->ch[psenc->chlen++] = *s0++;
    877   1.1  tshiozak 			n--;
    878   1.1  tshiozak 		}
    879   1.1  tshiozak 
    880   1.1  tshiozak 		wchar = _ISO2022_sgetwchar(ei, p, psenc->chlen - (p-psenc->ch),
    881   1.1  tshiozak 					   &result, psenc);
    882  1.14  tshiozak 		c += result - p;
    883   1.1  tshiozak 		if (wchar != _ISO2022INVALID) {
    884   1.1  tshiozak 			if (psenc->chlen > c)
    885   1.1  tshiozak 				memmove(psenc->ch, result, psenc->chlen - c);
    886   1.1  tshiozak 			if (psenc->chlen < c)
    887   1.1  tshiozak 				psenc->chlen = 0;
    888   1.1  tshiozak 			else
    889   1.1  tshiozak 				psenc->chlen -= c;
    890   1.1  tshiozak 			goto output;
    891   1.1  tshiozak 		}
    892   1.1  tshiozak 
    893  1.14  tshiozak 		if (n == 0) {
    894  1.14  tshiozak 			if ((result - p) == psenc->chlen)
    895  1.14  tshiozak 				/* complete shift sequence. */
    896  1.14  tshiozak 				psenc->chlen = 0;
    897  1.14  tshiozak 			goto restart;
    898  1.14  tshiozak 		}
    899  1.14  tshiozak 
    900   1.1  tshiozak 		p = result;
    901   1.1  tshiozak 	}
    902   1.1  tshiozak 
    903   1.1  tshiozak 	/* escape sequence too long? */
    904   1.1  tshiozak 	goto encoding_error;
    905   1.1  tshiozak 
    906   1.1  tshiozak emptybuf:
    907   1.1  tshiozak 	wchar = _ISO2022_sgetwchar(ei, s0, n, &result, psenc);
    908   1.1  tshiozak 	if (wchar != _ISO2022INVALID) {
    909   1.1  tshiozak 		c += result - s0;
    910   1.1  tshiozak 		psenc->chlen = 0;
    911   1.1  tshiozak 		s0 = result;
    912   1.1  tshiozak 		goto output;
    913   1.1  tshiozak 	}
    914  1.14  tshiozak 	if (result > s0) {
    915   1.1  tshiozak 		c += (result - s0);
    916   1.1  tshiozak 		n -= (result - s0);
    917   1.1  tshiozak 		s0 = result;
    918  1.14  tshiozak 		if (n>0)
    919  1.14  tshiozak 			goto emptybuf;
    920  1.14  tshiozak 		/* complete shift sequence. */
    921  1.14  tshiozak 		goto restart;
    922   1.1  tshiozak 	}
    923   1.1  tshiozak 	n += c;
    924   1.1  tshiozak 	if (n < sizeof(psenc->ch)) {
    925   1.1  tshiozak 		memcpy(psenc->ch, s0 - c, n);
    926   1.1  tshiozak 		psenc->chlen = n;
    927   1.1  tshiozak 		s0 = result;
    928   1.1  tshiozak 		goto restart;
    929   1.1  tshiozak 	}
    930   1.1  tshiozak 
    931   1.1  tshiozak 	/* escape sequence too long? */
    932   1.1  tshiozak 
    933   1.1  tshiozak encoding_error:
    934   1.1  tshiozak 	psenc->chlen = 0;
    935   1.1  tshiozak 	*nresult = (size_t)-1;
    936   1.1  tshiozak 	return (EILSEQ);
    937   1.1  tshiozak 
    938   1.1  tshiozak output:
    939   1.1  tshiozak 	*s = s0;
    940   1.1  tshiozak 	if (pwc)
    941   1.1  tshiozak 		*pwc = wchar;
    942   1.1  tshiozak 
    943   1.1  tshiozak 	if (!wchar)
    944   1.1  tshiozak 		*nresult = 0;
    945   1.1  tshiozak 	else
    946   1.1  tshiozak 		*nresult = c - chlenbak;
    947   1.1  tshiozak 
    948   1.1  tshiozak 	return (0);
    949   1.1  tshiozak 
    950   1.1  tshiozak restart:
    951   1.1  tshiozak 	*s = s0;
    952   1.1  tshiozak 	*nresult = (size_t)-2;
    953   1.1  tshiozak 
    954   1.1  tshiozak 	return (0);
    955   1.1  tshiozak }
    956   1.1  tshiozak 
    957   1.1  tshiozak static int
    958   1.1  tshiozak recommendation(_ISO2022EncodingInfo * __restrict ei,
    959   1.1  tshiozak 	       _ISO2022Charset * __restrict cs)
    960   1.1  tshiozak {
    961   1.1  tshiozak 	int i, j;
    962   1.1  tshiozak 	_ISO2022Charset *recommend;
    963   1.1  tshiozak 
    964   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
    965   1.1  tshiozak 	_DIAGASSERT(cs != NULL);
    966   1.1  tshiozak 
    967   1.1  tshiozak 	/* first, try a exact match. */
    968   1.1  tshiozak 	for (i = 0; i < 4; i++) {
    969   1.1  tshiozak 		recommend = ei->recommend[i];
    970   1.1  tshiozak 		for (j = 0; j < ei->recommendsize[i]; j++) {
    971   1.1  tshiozak 			if (cs->type != recommend[j].type)
    972   1.1  tshiozak 				continue;
    973   1.1  tshiozak 			if (cs->final != recommend[j].final)
    974   1.1  tshiozak 				continue;
    975   1.1  tshiozak 			if (cs->interm != recommend[j].interm)
    976   1.1  tshiozak 				continue;
    977   1.1  tshiozak 
    978   1.1  tshiozak 			return i;
    979   1.1  tshiozak 		}
    980   1.1  tshiozak 	}
    981   1.1  tshiozak 
    982   1.1  tshiozak 	/* then, try a wildcard match over final char. */
    983   1.1  tshiozak 	for (i = 0; i < 4; i++) {
    984   1.1  tshiozak 		recommend = ei->recommend[i];
    985   1.1  tshiozak 		for (j = 0; j < ei->recommendsize[i]; j++) {
    986   1.1  tshiozak 			if (cs->type != recommend[j].type)
    987   1.1  tshiozak 				continue;
    988   1.1  tshiozak 			if (cs->final && (cs->final != recommend[j].final))
    989   1.1  tshiozak 				continue;
    990   1.1  tshiozak 			if (cs->interm && (cs->interm != recommend[j].interm))
    991   1.1  tshiozak 				continue;
    992   1.1  tshiozak 
    993   1.1  tshiozak 			return i;
    994   1.1  tshiozak 		}
    995   1.1  tshiozak 	}
    996   1.1  tshiozak 
    997   1.1  tshiozak 	/* there's no recommendation. make a guess. */
    998   1.1  tshiozak 	if (ei->maxcharset == 0) {
    999   1.1  tshiozak 		return 0;
   1000   1.1  tshiozak 	} else {
   1001   1.1  tshiozak 		switch (cs->type) {
   1002   1.1  tshiozak 		case CS94:
   1003   1.1  tshiozak 		case CS94MULTI:
   1004   1.1  tshiozak 			return 0;
   1005   1.1  tshiozak 		case CS96:
   1006   1.1  tshiozak 		case CS96MULTI:
   1007   1.1  tshiozak 			return 1;
   1008   1.1  tshiozak 		}
   1009   1.1  tshiozak 	}
   1010   1.1  tshiozak 	return 0;
   1011   1.1  tshiozak }
   1012   1.1  tshiozak 
   1013   1.1  tshiozak static int
   1014   1.7  tshiozak _ISO2022_sputwchar(_ISO2022EncodingInfo * __restrict ei, wchar_t wc,
   1015   1.1  tshiozak 		   char * __restrict string, size_t n,
   1016   1.1  tshiozak 		   char ** __restrict result,
   1017   1.1  tshiozak 		   _ISO2022State * __restrict psenc)
   1018   1.1  tshiozak {
   1019   1.1  tshiozak 	int i = 0, len;
   1020   1.1  tshiozak 	_ISO2022Charset cs;
   1021   1.1  tshiozak 	char *p;
   1022   1.1  tshiozak 	char tmp[MB_LEN_MAX];
   1023   1.1  tshiozak 	int target;
   1024   1.1  tshiozak 	u_char mask;
   1025   1.1  tshiozak 	int bit8;
   1026   1.1  tshiozak 
   1027   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
   1028   1.1  tshiozak 	_DIAGASSERT(string != NULL);
   1029   1.1  tshiozak 	/* result may be NULL */
   1030   1.1  tshiozak 	/* state appears to be unused */
   1031   1.1  tshiozak 
   1032   1.7  tshiozak 	if (iscntl(wc & 0xff)) {
   1033   1.1  tshiozak 		/* go back to ASCII on control chars */
   1034   1.1  tshiozak 		cs.type = CS94;
   1035   1.1  tshiozak 		cs.final = 'B';
   1036   1.1  tshiozak 		cs.interm = '\0';
   1037   1.7  tshiozak 	} else if (!(wc & ~0xff)) {
   1038   1.7  tshiozak 		if (wc & 0x80) {
   1039   1.1  tshiozak 			/* special treatment for ISO-8859-1 */
   1040   1.1  tshiozak 			cs.type = CS96;
   1041   1.1  tshiozak 			cs.final = 'A';
   1042   1.1  tshiozak 			cs.interm = '\0';
   1043   1.1  tshiozak 		} else {
   1044   1.1  tshiozak 			/* special treatment for ASCII */
   1045   1.1  tshiozak 			cs.type = CS94;
   1046   1.1  tshiozak 			cs.final = 'B';
   1047   1.1  tshiozak 			cs.interm = '\0';
   1048   1.1  tshiozak 		}
   1049   1.1  tshiozak 	} else {
   1050   1.7  tshiozak 		cs.final = (wc >> 24) & 0x7f;
   1051   1.7  tshiozak 		if ((wc >> 16) & 0x80)
   1052   1.7  tshiozak 			cs.interm = (wc >> 16) & 0x7f;
   1053   1.1  tshiozak 		else
   1054   1.1  tshiozak 			cs.interm = '\0';
   1055   1.7  tshiozak 		if (wc & 0x80)
   1056   1.7  tshiozak 			cs.type = (wc & 0x00007f00) ? CS96MULTI : CS96;
   1057   1.1  tshiozak 		else
   1058   1.7  tshiozak 			cs.type = (wc & 0x00007f00) ? CS94MULTI : CS94;
   1059   1.1  tshiozak 	}
   1060   1.1  tshiozak 	target = recommendation(ei, &cs);
   1061   1.1  tshiozak 	p = tmp;
   1062   1.1  tshiozak 	bit8 = ei->flags & F_8BIT;
   1063   1.1  tshiozak 
   1064   1.1  tshiozak 	/* designate the charset onto the target plane(G0/1/2/3). */
   1065   1.1  tshiozak 	if (psenc->g[target].type == cs.type
   1066   1.1  tshiozak 	 && psenc->g[target].final == cs.final
   1067   1.1  tshiozak 	 && psenc->g[target].interm == cs.interm)
   1068   1.1  tshiozak 		goto planeok;
   1069   1.1  tshiozak 
   1070   1.1  tshiozak 	*p++ = '\033';
   1071   1.1  tshiozak 	if (cs.type == CS94MULTI || cs.type == CS96MULTI)
   1072   1.1  tshiozak 		*p++ = '$';
   1073   1.1  tshiozak 	if (target == 0 && cs.type == CS94MULTI && strchr("@AB", cs.final)
   1074   1.1  tshiozak 	 && !cs.interm && !(ei->flags & F_NOOLD))
   1075   1.1  tshiozak 		;
   1076   1.1  tshiozak 	else if (cs.type == CS94 || cs.type == CS94MULTI)
   1077   1.1  tshiozak 		*p++ = "()*+"[target];
   1078   1.1  tshiozak 	else
   1079   1.1  tshiozak 		*p++ = ",-./"[target];
   1080   1.1  tshiozak 	if (cs.interm)
   1081   1.1  tshiozak 		*p++ = cs.interm;
   1082   1.1  tshiozak 	*p++ = cs.final;
   1083   1.1  tshiozak 
   1084   1.1  tshiozak 	psenc->g[target].type = cs.type;
   1085   1.1  tshiozak 	psenc->g[target].final = cs.final;
   1086   1.1  tshiozak 	psenc->g[target].interm = cs.interm;
   1087   1.1  tshiozak 
   1088   1.1  tshiozak planeok:
   1089   1.1  tshiozak 	/* invoke the plane onto GL or GR. */
   1090   1.1  tshiozak 	if (psenc->gl == target)
   1091   1.1  tshiozak 		goto sideok;
   1092   1.1  tshiozak 	if (bit8 && psenc->gr == target)
   1093   1.1  tshiozak 		goto sideok;
   1094   1.1  tshiozak 
   1095   1.1  tshiozak 	if (target == 0 && (ei->flags & F_LS0)) {
   1096   1.1  tshiozak 		*p++ = '\017';
   1097   1.1  tshiozak 		psenc->gl = 0;
   1098   1.1  tshiozak 	} else if (target == 1 && (ei->flags & F_LS1)) {
   1099   1.1  tshiozak 		*p++ = '\016';
   1100   1.1  tshiozak 		psenc->gl = 1;
   1101   1.1  tshiozak 	} else if (target == 2 && (ei->flags & F_LS2)) {
   1102   1.1  tshiozak 		*p++ = '\033';
   1103   1.1  tshiozak 		*p++ = 'n';
   1104   1.1  tshiozak 		psenc->gl = 2;
   1105   1.1  tshiozak 	} else if (target == 3 && (ei->flags & F_LS3)) {
   1106   1.1  tshiozak 		*p++ = '\033';
   1107   1.1  tshiozak 		*p++ = 'o';
   1108   1.1  tshiozak 		psenc->gl = 3;
   1109   1.1  tshiozak 	} else if (bit8 && target == 1 && (ei->flags & F_LS1R)) {
   1110   1.1  tshiozak 		*p++ = '\033';
   1111   1.1  tshiozak 		*p++ = '~';
   1112   1.1  tshiozak 		psenc->gr = 1;
   1113   1.1  tshiozak 	} else if (bit8 && target == 2 && (ei->flags & F_LS2R)) {
   1114   1.1  tshiozak 		*p++ = '\033';
   1115   1.1  tshiozak 		/*{*/
   1116   1.1  tshiozak 		*p++ = '}';
   1117   1.1  tshiozak 		psenc->gr = 2;
   1118   1.1  tshiozak 	} else if (bit8 && target == 3 && (ei->flags & F_LS3R)) {
   1119   1.1  tshiozak 		*p++ = '\033';
   1120   1.1  tshiozak 		*p++ = '|';
   1121   1.1  tshiozak 		psenc->gr = 3;
   1122   1.1  tshiozak 	} else if (target == 2 && (ei->flags & F_SS2)) {
   1123   1.1  tshiozak 		*p++ = '\033';
   1124   1.1  tshiozak 		*p++ = 'N';
   1125   1.1  tshiozak 		psenc->singlegl = 2;
   1126   1.1  tshiozak 	} else if (target == 3 && (ei->flags & F_SS3)) {
   1127   1.1  tshiozak 		*p++ = '\033';
   1128   1.1  tshiozak 		*p++ = 'O';
   1129   1.1  tshiozak 		psenc->singlegl = 3;
   1130   1.1  tshiozak 	} else if (bit8 && target == 2 && (ei->flags & F_SS2R)) {
   1131   1.1  tshiozak 		*p++ = '\216';
   1132   1.1  tshiozak 		*p++ = 'N';
   1133   1.1  tshiozak 		psenc->singlegl = psenc->singlegr = 2;
   1134   1.1  tshiozak 	} else if (bit8 && target == 3 && (ei->flags & F_SS3R)) {
   1135   1.1  tshiozak 		*p++ = '\217';
   1136   1.1  tshiozak 		*p++ = 'O';
   1137   1.1  tshiozak 		psenc->singlegl = psenc->singlegr = 3;
   1138   1.1  tshiozak 	} else
   1139   1.1  tshiozak 		abort();
   1140   1.1  tshiozak 
   1141   1.1  tshiozak sideok:
   1142   1.1  tshiozak 	if (psenc->singlegl == target)
   1143   1.1  tshiozak 		mask = 0x00;
   1144   1.1  tshiozak 	else if (psenc->singlegr == target)
   1145   1.1  tshiozak 		mask = 0x80;
   1146   1.1  tshiozak 	else if (psenc->gl == target)
   1147   1.1  tshiozak 		mask = 0x00;
   1148   1.1  tshiozak 	else if ((ei->flags & F_8BIT) && psenc->gr == target)
   1149   1.1  tshiozak 		mask = 0x80;
   1150   1.1  tshiozak 	else
   1151   1.1  tshiozak 		abort();
   1152   1.1  tshiozak 
   1153   1.1  tshiozak 	switch (cs.type) {
   1154   1.1  tshiozak 	case CS94:
   1155   1.1  tshiozak 	case CS96:
   1156   1.1  tshiozak 		i = 1;
   1157   1.1  tshiozak 		break;
   1158   1.1  tshiozak 	case CS94MULTI:
   1159   1.1  tshiozak 	case CS96MULTI:
   1160   1.1  tshiozak 		i = isthree(cs.final) ? 3 : 2;
   1161   1.1  tshiozak 		break;
   1162   1.1  tshiozak 	}
   1163   1.8  tshiozak 	while (i-- > 0)
   1164   1.8  tshiozak 		*p++ = ((wc >> (i << 3)) & 0x7f) | mask;
   1165   1.1  tshiozak 
   1166   1.1  tshiozak 	/* reset single shift state */
   1167   1.1  tshiozak 	psenc->singlegl = psenc->singlegr = -1;
   1168   1.1  tshiozak 
   1169   1.1  tshiozak 	len = p - tmp;
   1170   1.1  tshiozak 	if (n < len) {
   1171   1.1  tshiozak 		if (result)
   1172   1.1  tshiozak 			*result = (char *)0;
   1173   1.1  tshiozak 	} else {
   1174   1.1  tshiozak 		if (result)
   1175   1.1  tshiozak 			*result = string + len;
   1176   1.1  tshiozak 		memcpy(string, tmp, len);
   1177   1.1  tshiozak 	}
   1178   1.1  tshiozak 	return len;
   1179   1.8  tshiozak }
   1180   1.8  tshiozak 
   1181   1.8  tshiozak static int
   1182   1.8  tshiozak _citrus_ISO2022_put_state_reset(_ISO2022EncodingInfo * __restrict ei,
   1183   1.8  tshiozak 				char * __restrict s, size_t n,
   1184   1.8  tshiozak 				_ISO2022State * __restrict psenc,
   1185   1.8  tshiozak 				size_t * __restrict nresult)
   1186   1.8  tshiozak {
   1187   1.8  tshiozak 	char buf[MB_LEN_MAX];
   1188   1.8  tshiozak 	char *result;
   1189   1.8  tshiozak 	int len, ret;
   1190   1.8  tshiozak 
   1191   1.8  tshiozak 	_DIAGASSERT(ei != NULL);
   1192   1.8  tshiozak 	_DIAGASSERT(nresult != 0);
   1193   1.8  tshiozak 	_DIAGASSERT(s != NULL);
   1194   1.8  tshiozak 
   1195   1.8  tshiozak 	/* XXX state will be modified after this operation... */
   1196   1.8  tshiozak 	len = _ISO2022_sputwchar(ei, L'\0', buf, sizeof(buf), &result, psenc);
   1197   1.8  tshiozak 	if (len==0) {
   1198   1.8  tshiozak 		ret = EINVAL;
   1199   1.8  tshiozak 		goto err;
   1200   1.8  tshiozak 	}
   1201   1.8  tshiozak 	if (sizeof(buf) < len || n < len-1) {
   1202   1.8  tshiozak 		/* XXX should recover state? */
   1203   1.8  tshiozak 		ret = E2BIG;
   1204   1.8  tshiozak 		goto err;
   1205   1.8  tshiozak 	}
   1206   1.8  tshiozak 
   1207   1.8  tshiozak 	memcpy(s, buf, len-1);
   1208   1.8  tshiozak 	*nresult = (size_t)(len-1);
   1209   1.8  tshiozak 	return (0);
   1210   1.8  tshiozak 
   1211   1.8  tshiozak err:
   1212   1.8  tshiozak 	/* bound check failure */
   1213   1.8  tshiozak 	*nresult = (size_t)-1;
   1214   1.8  tshiozak 	return ret;
   1215   1.1  tshiozak }
   1216   1.1  tshiozak 
   1217   1.1  tshiozak static int
   1218   1.1  tshiozak _citrus_ISO2022_wcrtomb_priv(_ISO2022EncodingInfo * __restrict ei,
   1219   1.1  tshiozak 			     char * __restrict s, size_t n, wchar_t wc,
   1220   1.1  tshiozak 			     _ISO2022State * __restrict psenc,
   1221   1.1  tshiozak 			     size_t * __restrict nresult)
   1222   1.1  tshiozak {
   1223   1.1  tshiozak 	char buf[MB_LEN_MAX];
   1224   1.1  tshiozak 	char *result;
   1225   1.7  tshiozak 	int len, ret;
   1226   1.1  tshiozak 
   1227   1.1  tshiozak 	_DIAGASSERT(ei != NULL);
   1228   1.1  tshiozak 	_DIAGASSERT(nresult != 0);
   1229   1.1  tshiozak 	_DIAGASSERT(s != NULL);
   1230   1.1  tshiozak 
   1231   1.1  tshiozak 	/* XXX state will be modified after this operation... */
   1232   1.1  tshiozak 	len = _ISO2022_sputwchar(ei, wc, buf, sizeof(buf), &result, psenc);
   1233   1.1  tshiozak 	if (sizeof(buf) < len || n < len) {
   1234   1.1  tshiozak 		/* XXX should recover state? */
   1235   1.7  tshiozak 		ret = E2BIG;
   1236   1.7  tshiozak 		goto err;
   1237   1.1  tshiozak 	}
   1238   1.1  tshiozak 
   1239   1.1  tshiozak 	memcpy(s, buf, len);
   1240   1.1  tshiozak 	*nresult = (size_t)len;
   1241   1.1  tshiozak 	return (0);
   1242   1.1  tshiozak 
   1243   1.7  tshiozak err:
   1244   1.1  tshiozak 	/* bound check failure */
   1245   1.1  tshiozak 	*nresult = (size_t)-1;
   1246   1.7  tshiozak 	return ret;
   1247   1.7  tshiozak }
   1248   1.7  tshiozak 
   1249   1.7  tshiozak static __inline int
   1250   1.7  tshiozak /*ARGSUSED*/
   1251   1.7  tshiozak _citrus_ISO2022_stdenc_wctocs(_ISO2022EncodingInfo * __restrict ei,
   1252   1.7  tshiozak 			      _csid_t * __restrict csid,
   1253   1.7  tshiozak 			      _index_t * __restrict idx, wchar_t wc)
   1254   1.7  tshiozak {
   1255   1.7  tshiozak 	wchar_t m, nm;
   1256   1.7  tshiozak 
   1257   1.7  tshiozak 	_DIAGASSERT(csid != NULL && idx != NULL);
   1258   1.7  tshiozak 
   1259   1.7  tshiozak 	m = wc & 0x7FFF8080;
   1260   1.7  tshiozak 	nm = wc & 0x007F7F7F;
   1261   1.7  tshiozak 	if (m & 0x00800000) {
   1262   1.7  tshiozak 		nm &= 0x00007F7F;
   1263   1.7  tshiozak 	} else {
   1264   1.7  tshiozak 		m &= 0x7F008080;
   1265   1.7  tshiozak 	}
   1266   1.7  tshiozak 	if (nm & 0x007F0000) {
   1267   1.7  tshiozak 		/* ^3 mark */
   1268   1.7  tshiozak 		m |= 0x007F0000;
   1269   1.7  tshiozak 	} else if (nm & 0x00007F00) {
   1270   1.7  tshiozak 		/* ^2 mark */
   1271   1.7  tshiozak 		m |= 0x00007F00;
   1272   1.7  tshiozak 	}
   1273   1.7  tshiozak 	*csid = (_csid_t)m;
   1274   1.7  tshiozak 	*idx  = (_index_t)nm;
   1275   1.7  tshiozak 
   1276   1.7  tshiozak 	return (0);
   1277   1.7  tshiozak }
   1278   1.7  tshiozak 
   1279   1.7  tshiozak static __inline int
   1280   1.7  tshiozak /*ARGSUSED*/
   1281   1.7  tshiozak _citrus_ISO2022_stdenc_cstowc(_ISO2022EncodingInfo * __restrict ei,
   1282   1.7  tshiozak 			      wchar_t * __restrict wc,
   1283   1.7  tshiozak 			      _csid_t csid, _index_t idx)
   1284   1.7  tshiozak {
   1285   1.7  tshiozak 
   1286   1.7  tshiozak 	_DIAGASSERT(ei != NULL && wc != NULL);
   1287   1.7  tshiozak 
   1288   1.7  tshiozak 	*wc = (wchar_t)(csid & 0x7F808080) | (wchar_t)idx;
   1289   1.7  tshiozak 
   1290   1.7  tshiozak 	return (0);
   1291   1.1  tshiozak }
   1292   1.1  tshiozak 
   1293  1.14  tshiozak static __inline int
   1294  1.14  tshiozak /*ARGSUSED*/
   1295  1.14  tshiozak _citrus_ISO2022_stdenc_get_state_desc_generic(_ISO2022EncodingInfo * __restrict ei,
   1296  1.14  tshiozak 					      _ISO2022State * __restrict psenc,
   1297  1.14  tshiozak 					      int * __restrict rstate)
   1298  1.14  tshiozak {
   1299  1.14  tshiozak 
   1300  1.14  tshiozak 	if (psenc->chlen == 0) {
   1301  1.14  tshiozak 		/* XXX: it should distinguish initial and stable. */
   1302  1.14  tshiozak 		*rstate = _STDENC_SDGEN_STABLE;
   1303  1.14  tshiozak 	} else {
   1304  1.14  tshiozak 		if (psenc->ch[0] == '\033')
   1305  1.14  tshiozak 			*rstate = _STDENC_SDGEN_INCOMPLETE_SHIFT;
   1306  1.14  tshiozak 		else
   1307  1.14  tshiozak 			*rstate = _STDENC_SDGEN_INCOMPLETE_CHAR;
   1308  1.14  tshiozak 	}
   1309  1.14  tshiozak 
   1310  1.14  tshiozak 	return 0;
   1311  1.14  tshiozak }
   1312  1.14  tshiozak 
   1313   1.1  tshiozak /* ----------------------------------------------------------------------
   1314   1.1  tshiozak  * public interface for ctype
   1315   1.1  tshiozak  */
   1316   1.1  tshiozak 
   1317   1.1  tshiozak _CITRUS_CTYPE_DECLS(ISO2022);
   1318   1.1  tshiozak _CITRUS_CTYPE_DEF_OPS(ISO2022);
   1319   1.1  tshiozak 
   1320   1.1  tshiozak #include "citrus_ctype_template.h"
   1321   1.7  tshiozak 
   1322   1.7  tshiozak /* ----------------------------------------------------------------------
   1323   1.7  tshiozak  * public interface for stdenc
   1324   1.7  tshiozak  */
   1325   1.7  tshiozak 
   1326   1.7  tshiozak _CITRUS_STDENC_DECLS(ISO2022);
   1327   1.7  tshiozak _CITRUS_STDENC_DEF_OPS(ISO2022);
   1328   1.7  tshiozak 
   1329   1.7  tshiozak #include "citrus_stdenc_template.h"
   1330