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
|
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2014 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed under the terms of the
* GNU General Public License, as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any
* later version. Please see the file LICENSE-GPL for details.
*
* Web Page: http://mielke.cc/brltty/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#include "prologue.h"
#ifdef HAVE_ICU
#include <unicode/uchar.h>
#include <unicode/unorm.h>
#endif /* HAVE_ICU */
#ifdef HAVE_ICONV_H
#include <iconv.h>
#endif /* HAVE_ICONV_H */
#include "unicode.h"
#include "ascii.h"
int
getCharacterByName (wchar_t *character, const char *name) {
#ifdef HAVE_ICU
UErrorCode error = U_ZERO_ERROR;
UChar uc = u_charFromName(U_EXTENDED_CHAR_NAME, name, &error);
if (U_SUCCESS(error)) {
*character = uc;
return 1;
}
#endif /* HAVE_ICU */
return 0;
}
int
getCharacterWidth (wchar_t character) {
#if defined(HAVE_WCWIDTH)
return wcwidth(character);
#elif defined(HAVE_ICU)
UCharCategory category = u_getIntPropertyValue(character, UCHAR_GENERAL_CATEGORY);
UEastAsianWidth width = u_getIntPropertyValue(character, UCHAR_EAST_ASIAN_WIDTH);
if (character == 0) return 0;
if (category == U_CONTROL_CHAR) return -1;
if (category == U_NON_SPACING_MARK) return 0;
if (category == U_ENCLOSING_MARK) return 0;
/* Hangul Jamo medial vowels and final consonants */
if ((character >= 0X1160) && (character <= 0X11FF) && (category == U_OTHER_LETTER)) return 0;
/* */
if (character == 0XAD) return 1; /* soft hyphen */
if (category == U_FORMAT_CHAR) return 0;
if (width == U_EA_FULLWIDTH) return 2;
if (width == U_EA_HALFWIDTH) return 1;
if (width == U_EA_WIDE) return 2;
if (width == U_EA_NARROW) return 1;
if (width == U_EA_AMBIGUOUS) {
/* CJK Unified Ideographs block */
if ((character >= 0X4E00) && (character <= 0X9FFF)) return 2;
/* CJK Unified Ideographs Externsion A block */
if ((character >= 0X3400) && (character <= 0X4DBF)) return 2;
/* CJK Compatibility Ideographs block */
if ((character >= 0XF900) && (character <= 0XFAFF)) return 2;
/* Supplementary Ideographic Plane */
//if ((character >= 0X20000) && (character <= 0X2FFFF)) return 2;
/* Tertiary Ideographic Plane */
//if ((character >= 0X30000) && (character <= 0X3FFFF)) return 2;
}
if (category == U_UNASSIGNED) return -1;
return 1;
#else /* character width */
if (character == NUL) return 0;
if (character == DEL) return -1;
if (!(character & 0X60)) return -1;
return 1;
#endif /* character width */
}
wchar_t
getBaseCharacter (wchar_t character) {
#ifdef HAVE_ICU
UChar source[] = {character};
const unsigned int resultLength = 0X10;
UChar resultBuffer[resultLength];
UErrorCode error = U_ZERO_ERROR;
unorm_normalize(source, ARRAY_COUNT(source),
UNORM_NFD, 0,
resultBuffer, resultLength,
&error);
if (U_SUCCESS(error)) return resultBuffer[0];
#endif /* HAVE_ICU */
return 0;
}
wchar_t
getTransliteratedCharacter (wchar_t character) {
#ifdef HAVE_ICONV_H
static iconv_t handle = NULL;
if (!handle) handle = iconv_open("ASCII//TRANSLIT", "WCHAR_T");
if (handle != (iconv_t)-1) {
char *inputAddress = (char *)&character;
size_t inputSize = sizeof(character);
size_t outputSize = 0X10;
char outputBuffer[outputSize];
char *outputAddress = outputBuffer;
if (iconv(handle, &inputAddress, &inputSize, &outputAddress, &outputSize) != (size_t)-1)
if ((outputAddress - outputBuffer) == 1)
return outputBuffer[0] & 0XFF;
}
#endif /* HAVE_ICONV_H */
return 0;
}
int
handleBestCharacter (wchar_t character, CharacterHandler handleCharacter, void *data) {
typedef wchar_t CharacterTranslator (wchar_t character);
static CharacterTranslator *const characterTranslators[] = {
getBaseCharacter,
getTransliteratedCharacter,
NULL
};
CharacterTranslator *const *translateCharacter = characterTranslators;
while (!handleCharacter(character, data)) {
if (!*translateCharacter) return 0;
{
wchar_t alternate = (*translateCharacter++)(character);
if (alternate) character = alternate;
}
}
return 1;
}
|