lcRM.c 5.54 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
/* $Xorg: lcRM.c,v 1.3 2000/08/17 19:45:19 cpqbld Exp $ */
/*
 * Copyright 1992, 1993 by TOSHIBA Corp.
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation for any purpose and without fee is hereby granted, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of TOSHIBA not be used in advertising
 * or publicity pertaining to distribution of the software without specific,
 * written prior permission. TOSHIBA make no representations about the
 * suitability of this software for any purpose.  It is provided "as is"
 * without express or implied warranty.
 *
 * TOSHIBA DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 * TOSHIBA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 * SOFTWARE.
 *
 * Author: Katsuhisa Yano	TOSHIBA Corp.
 *			   	mopi@osa.ilab.toshiba.co.jp
 * Bug fixes: Bruno Haible	XFree86 Inc.
 */
/* $XFree86: xc/lib/X11/lcRM.c,v 1.4 2000/11/28 18:49:48 dawes Exp $ */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "Xlibint.h"
#include "XlcPubI.h"
#include <stdio.h>

/*
 * Default implementation of methods for Xrm parsing.
 */

/* ======================= Unibyte implementation ======================= */

/* Only for efficiency, to speed up things. */

/* This implementation must keep the locale, for lcname. */
typedef struct _UbStateRec {
    XLCd	lcd;
} UbStateRec, *UbState;

/* Sets the state to the initial state.
   Initiates a sequence of calls to mbchar. */
static void
ub_mbinit(
    XPointer state)
{
}

/* Transforms one multibyte character, and return a 'char' in the same
   parsing class. Returns the number of consumed bytes in *lenp. */
static char
ub_mbchar(
    XPointer state,
    const char *str,
    int	*lenp)
{
    *lenp = 1;
    return *str;
}

/* Terminates a sequence of calls to mbchar. */
static void
ub_mbfinish(
    XPointer state)
{
}

/* Returns the name of the state's locale, as a static string. */
static const char *
ub_lcname(
    XPointer state)
{
    return ((UbState) state)->lcd->core->name;
}

/* Frees the state, which was allocated by _XrmDefaultInitParseInfo. */
static void
ub_destroy(
    XPointer state)
{
    _XCloseLC(((UbState) state)->lcd);
    Xfree((char *) state);
}

static const XrmMethodsRec ub_methods = {
    ub_mbinit,
    ub_mbchar,
    ub_mbfinish,
    ub_lcname,
    ub_destroy
};

/* ======================= Multibyte implementation ======================= */

/* This implementation uses an XlcConv from XlcNMultiByte to XlcNWideChar. */
typedef struct _MbStateRec {
    XLCd	lcd;
    XlcConv	conv;
} MbStateRec, *MbState;

/* Sets the state to the initial state.
   Initiates a sequence of calls to mbchar. */
static void
mb_mbinit(
    XPointer state)
{
    _XlcResetConverter(((MbState) state)->conv);
}

/* Transforms one multibyte character, and return a 'char' in the same
   parsing class. Returns the number of consumed bytes in *lenp. */
static char
mb_mbchar(
    XPointer state,
    const char *str,
    int	*lenp)
{
    XlcConv conv = ((MbState) state)->conv;
    const char *from;
    wchar_t *to, wc;
    int cur_max, i, from_left, to_left, ret;

    cur_max = XLC_PUBLIC(((MbState) state)->lcd, mb_cur_max);

    from = str;
    /* Determine from_left. Avoid overrun error which could occur if
       from_left > strlen(str). */
    from_left = cur_max;
    for (i = 0; i < cur_max; i++)
	if (str[i] == '\0') {
	    from_left = i;
	    break;
	}
    *lenp = from_left;

    to = &wc;
    to_left = 1;

    ret = _XlcConvert(conv, (XPointer *) &from, &from_left,
		      (XPointer *) &to, &to_left, NULL, 0);
    *lenp -= from_left;

    if (ret < 0 || to_left > 0) {
	/* Invalid or incomplete multibyte character seen. */
	*lenp = 1;
	return 0x7f;
    }
    /* Return a 'char' equivalent to wc. */
    return (wc >= 0 && wc <= 0x7f ? wc : 0x7f);
}

/* Terminates a sequence of calls to mbchar. */
static void
mb_mbfinish(
    XPointer state)
{
}

/* Returns the name of the state's locale, as a static string. */
static const char *
mb_lcname(
    XPointer state)
{
    return ((MbState) state)->lcd->core->name;
}

/* Frees the state, which was allocated by _XrmDefaultInitParseInfo. */
static void
mb_destroy(
    XPointer state)
{
    _XlcCloseConverter(((MbState) state)->conv);
    _XCloseLC(((MbState) state)->lcd);
    Xfree((char *) state);
}

static const XrmMethodsRec mb_methods = {
    mb_mbinit,
    mb_mbchar,
    mb_mbfinish,
    mb_lcname,
    mb_destroy
};

/* ======================= Exported function ======================= */

XrmMethods
_XrmDefaultInitParseInfo(
    XLCd lcd,
    XPointer *rm_state)
{
    if (XLC_PUBLIC(lcd, mb_cur_max) == 1) {
	/* Unibyte case. */
	UbState state = (UbState) Xmalloc(sizeof(UbStateRec));
	if (state == NULL)
	    return (XrmMethods) NULL;

	state->lcd = lcd;

	*rm_state = (XPointer) state;
	return &ub_methods;
    } else {
	/* Multibyte case. */
	MbState state = (MbState) Xmalloc(sizeof(MbStateRec));
	if (state == NULL)
	    return (XrmMethods) NULL;

	state->lcd = lcd;
	state->conv = _XlcOpenConverter(lcd, XlcNMultiByte, lcd, XlcNWideChar);
	if (state->conv == NULL) {
	    Xfree((char *) state);
	    return (XrmMethods) NULL;
	}

	*rm_state = (XPointer) state;
	return &mb_methods;
    }
}