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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
|
#ifndef lint
static char *rcsid = "$Id: unicode.c,v 1.16.2.1 2001/12/06 02:56:56 m-kasahr Exp $";
#endif
/*
* Copyright (c) 2000,2001 Japan Network Information Center.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set forth bellow.
*
* LICENSE TERMS AND CONDITIONS
*
* The following License Terms and Conditions apply, unless a different
* license is obtained from Japan Network Information Center ("JPNIC"),
* a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,
* Chiyoda-ku, Tokyo 101-0047, Japan.
*
* 1. Use, Modification and Redistribution (including distribution of any
* modified or derived work) in source and/or binary forms is permitted
* under this License Terms and Conditions.
*
* 2. Redistribution of source code must retain the copyright notices as they
* appear in each source code file, this License Terms and Conditions.
*
* 3. Redistribution in binary form must reproduce the Copyright Notice,
* this License Terms and Conditions, in the documentation and/or other
* materials provided with the distribution. For the purposes of binary
* distribution the "Copyright Notice" refers to the following language:
* "Copyright (c) Japan Network Information Center. All rights reserved."
*
* 4. Neither the name of JPNIC may be used to endorse or promote products
* derived from this Software without specific prior written approval of
* JPNIC.
*
* 5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* 6. Indemnification by Licensee
* Any person or entities using and/or redistributing this Software under
* this License Terms and Conditions shall defend indemnify and hold
* harmless JPNIC from and against any and all judgements damages,
* expenses, settlement liabilities, cost and other liabilities of any
* kind as a result of use and redistribution of this Software or any
* claim, suite, action, litigation or proceeding by any third party
* arising out of or relates to this License Terms and Conditions.
*
* 7. Governing Law, Jurisdiction and Venue
* This License Terms and Conditions shall be governed by and and
* construed in accordance with the law of Japan. Any person or entities
* using and/or redistributing this Software under this License Terms and
* Conditions hereby agrees and consent to the personal and exclusive
* jurisdiction and venue of Tokyo District Court of Japan.
*/
#include <config.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <mdn/result.h>
#include <mdn/logmacro.h>
#include <mdn/assert.h>
#include <mdn/unicode.h>
#define UNICODE_CURRENT "3.1.0"
#define UCS_MAX 0x10ffff
#define END_BIT 0x80000000
/*
* Some constants for Hangul decomposition/composition.
*/
#define SBase 0xac00
#define LBase 0x1100
#define VBase 0x1161
#define TBase 0x11a7
#define LCount 19
#define VCount 21
#define TCount 28
#define SLast (SBase + LCount * VCount * TCount)
/*
* Symbol composition macro.
*/
#define compose_sym(a, b) compose_symX(a, b)
#define compose_symX(a, b) a ## b
struct composition {
unsigned long c2; /* 2nd character */
unsigned long comp; /* composed character */
};
#include "unicodedata_301.c"
#define VERSION v301
#include "unicode_template.c"
#undef VERSION
#include "unicodedata_310.c"
#define VERSION v310
#include "unicode_template.c"
#undef VERSION
typedef int (*unicode_canonclassproc)(unsigned long v);
typedef int (*unicode_decomposeproc)(unsigned long c,
const unsigned long **seqp);
typedef int (*unicode_composeproc)(unsigned long c,
const struct composition **compp);
typedef int (*unicode_toupperproc)(unsigned long c,
const unsigned long **seqp);
typedef int (*unicode_tolowerproc)(unsigned long c,
const unsigned long **seqp);
typedef int (*unicode_casectxproc)(unsigned long c);
typedef int (*unicode_casefoldingproc)(unsigned long c,
const unsigned long **seqp);
static struct mdn__unicode_ops {
char *version;
unicode_canonclassproc canonclass_proc;
unicode_decomposeproc decompose_proc;
unicode_composeproc compose_proc;
unicode_toupperproc toupper_proc;
unicode_tolowerproc tolower_proc;
unicode_casectxproc casectx_proc;
unicode_casefoldingproc casefolding_proc;
} unicode_versions[] = {
#define MAKE_UNICODE_HANDLE(version, suffix) \
{ version, \
compose_sym(canonclass_, suffix), \
compose_sym(decompose_, suffix), \
compose_sym(compose_, suffix), \
compose_sym(toupper_, suffix), \
compose_sym(tolower_, suffix), \
compose_sym(casemapctx_, suffix), \
compose_sym(casefolding_, suffix) }
MAKE_UNICODE_HANDLE("3.0.1", v301),
MAKE_UNICODE_HANDLE("3.1.0", v310),
{ NULL },
#undef MAKE_UNICODE_HANDLE
};
static mdn_result_t casemap(mdn__unicode_version_t version,
unsigned long c, mdn__unicode_context_t ctx,
unsigned long *v, size_t vlen, int *convlenp,
int do_uppercase);
mdn_result_t
mdn__unicode_create(const char *version,
mdn__unicode_version_t *versionp)
{
mdn__unicode_version_t v;
assert(versionp != NULL);
TRACE(("mdn__unicode_create(version=%-.50s)\n",
version == NULL ? "<NULL>" : version));
if (version == NULL)
version = UNICODE_CURRENT;
for (v = unicode_versions; v->version != NULL; v++) {
if (strcmp(v->version, version) == 0) {
*versionp = v;
return (mdn_success);
}
}
return (mdn_notfound);
}
void
mdn__unicode_destroy(mdn__unicode_version_t version) {
assert(version != NULL);
TRACE(("mdn__unicode_destroy()\n"));
/* Nothing to do */
}
int
mdn__unicode_canonicalclass(mdn__unicode_version_t version, unsigned long c) {
if (c > UCS_MAX)
return (0);
return (*version->canonclass_proc)(c);
}
mdn_result_t
mdn__unicode_decompose(mdn__unicode_version_t version,
int compat, unsigned long *v, size_t vlen,
unsigned long c, int *decomp_lenp)
{
unsigned long *vorg = v;
int seqidx;
const unsigned long *seq;
assert(v != NULL && vlen >= 0 && decomp_lenp != NULL);
if (c > UCS_MAX)
return (mdn_notfound);
/*
* First, check for Hangul.
*/
if (SBase <= c && c < SLast) {
int idx, t_offset, v_offset, l_offset;
idx = c - SBase;
t_offset = idx % TCount;
idx /= TCount;
v_offset = idx % VCount;
l_offset = idx / VCount;
if ((t_offset == 0 && vlen < 2) || (t_offset > 0 && vlen < 3))
return (mdn_buffer_overflow);
*v++ = LBase + l_offset;
*v++ = VBase + v_offset;
if (t_offset > 0)
*v++ = TBase + t_offset;
*decomp_lenp = v - vorg;
return (mdn_success);
}
/*
* Look up decomposition table. If no decomposition is defined
* or if it is a compatibility decomosition when canonical
* decomposition requested, return 'mdn_notfound'.
*/
seqidx = (*version->decompose_proc)(c, &seq);
if (seqidx == 0 || (compat == 0 && (seqidx & DECOMP_COMPAT) != 0))
return (mdn_notfound);
/*
* Copy the decomposed sequence. The end of the sequence are
* marked with END_BIT.
*/
do {
unsigned long c;
int dlen;
mdn_result_t r;
c = *seq & ~END_BIT;
/* Decompose recursively. */
r = mdn__unicode_decompose(version, compat, v, vlen, c, &dlen);
if (r == mdn_success) {
v += dlen;
vlen -= dlen;
} else if (r == mdn_notfound) {
if (vlen < 1)
return (mdn_buffer_overflow);
*v++ = c;
vlen--;
} else {
return (r);
}
} while ((*seq++ & END_BIT) == 0);
*decomp_lenp = v - vorg;
return (mdn_success);
}
int
mdn__unicode_iscompositecandidate(mdn__unicode_version_t version,
unsigned long c)
{
const struct composition *dummy;
if (c > UCS_MAX)
return (0);
/* Check for Hangul */
if ((LBase <= c && c < LBase + LCount) || (SBase <= c && c < SLast))
return (1);
/*
* Look up composition table. If there are no composition
* that begins with the given character, it is not a
* composition candidate.
*/
if ((*version->compose_proc)(c, &dummy) == 0)
return (0);
else
return (1);
}
mdn_result_t
mdn__unicode_compose(mdn__unicode_version_t version,
unsigned long c1, unsigned long c2, unsigned long *compp)
{
int n;
int lo, hi;
const struct composition *cseq;
assert(compp != NULL);
if (c1 > UCS_MAX || c2 > UCS_MAX)
return (mdn_notfound);
/*
* Check for Hangul.
*/
if (LBase <= c1 && c1 < LBase + LCount &&
VBase <= c2 && c2 < VBase + VCount) {
/*
* Hangul L and V.
*/
*compp = SBase +
((c1 - LBase) * VCount + (c2 - VBase)) * TCount;
return (mdn_success);
} else if (SBase <= c1 && c1 < SLast &&
TBase <= c2 && c2 < TBase + TCount &&
(c1 - SBase) % TCount == 0) {
/*
* Hangul LV and T.
*/
*compp = c1 + (c2 - TBase);
return (mdn_success);
}
/*
* Look up composition table. If the result is 0, no composition
* is defined. Otherwise, upper 16bits of the result contains
* the number of composition that begins with 'c1', and the lower
* 16bits is the offset in 'compose_seq'.
*/
if ((n = (*version->compose_proc)(c1, &cseq)) == 0)
return (mdn_notfound);
/*
* The composite sequences are sorted by the 2nd character 'c2'.
* So we can use binary search.
*/
lo = 0;
hi = n - 1;
while (lo <= hi) {
int mid = (lo + hi) / 2;
if (cseq[mid].c2 < c2) {
lo = mid + 1;
} else if (cseq[mid].c2 > c2) {
hi = mid - 1;
} else {
*compp = cseq[mid].comp;
return (mdn_success);
}
}
return (mdn_notfound);
}
mdn_result_t
mdn__unicode_toupper(mdn__unicode_version_t version,
unsigned long c, mdn__unicode_context_t ctx,
unsigned long *v, size_t vlen, int *convlenp)
{
return (casemap(version, c, ctx, v, vlen, convlenp, 1));
}
mdn_result_t
mdn__unicode_tolower(mdn__unicode_version_t version,
unsigned long c, mdn__unicode_context_t ctx,
unsigned long *v, size_t vlen, int *convlenp)
{
return (casemap(version, c, ctx, v, vlen, convlenp, 0));
}
static mdn_result_t
casemap(mdn__unicode_version_t version,
unsigned long c, mdn__unicode_context_t ctx,
unsigned long *v, size_t vlen, int *convlenp, int do_uppercase)
{
const unsigned long *seq;
int seqidx;
if (vlen < 1)
return (mdn_buffer_overflow);
if (c > UCS_MAX)
goto nomap;
/*
* Look up toupper/tolower mapping table.
*/
if (do_uppercase)
seqidx = (*version->toupper_proc)(c, &seq);
else
seqidx = (*version->tolower_proc)(c, &seq);
/* Zero means there are no mapping. */
if (seqidx == 0)
goto nomap;
/*
* There are two kinds of mapping, context-dependent and
* context-independent. It is possible that both mappings
* are defined for a single character, so we have to loop
* through all the mappings.
*/
for (;;) {
int found = 0;
unsigned long flags = *seq++;
if (flags & CMF_CTXDEP) {
/*
* This is a context-dependent mapping.
* Check the specified context.
*/
switch (ctx) {
case mdn__unicode_context_final:
if (flags & CMF_FINAL)
found = 1;
break;
case mdn__unicode_context_nonfinal:
if (flags & CMF_NONFINAL)
found = 1;
break;
default: /* mdn__unicode_context_unknown */
/*
* Request context information.
*/
return (mdn_context_required);
}
} else {
/*
* This is an ordinary, context-independent
* mapping.
*/
found = 1;
}
if (found) {
/*
* Mapping found. Copy it.
*/
int i = 0;
do {
if (vlen-- < 1)
return (mdn_buffer_overflow);
*v++ = seq[i] & ~END_BIT;
} while ((seq[i++] & END_BIT) == 0);
*convlenp = i;
return (mdn_success);
} else {
/*
* This entry doesn't match. Try next etnry.
*/
if (flags & CMF_LAST) {
/* This is the last entry. */
break;
} else {
/* Skip this entry. */
while ((*seq++ & END_BIT) == 0)
/* do nothing */;
}
}
}
nomap:
*convlenp = 1;
*v = c;
return (mdn_success);
}
mdn__unicode_context_t
mdn__unicode_getcontext(mdn__unicode_version_t version,
unsigned long c)
{
#if 0
TRACE(("mdn__unicode_getcontext(c=%lx)\n", c));
#endif
if (c > UCS_MAX)
return (mdn__unicode_context_final);
switch ((*version->casectx_proc)(c)) {
case CTX_CASED:
return (mdn__unicode_context_nonfinal);
case CTX_NSM:
return (mdn__unicode_context_unknown);
default:
return (mdn__unicode_context_final);
}
}
mdn_result_t
mdn__unicode_casefold(mdn__unicode_version_t version,
unsigned long c, unsigned long *v, size_t vlen,
int *foldlenp)
{
unsigned long *vorg = v;
int seqidx;
const unsigned long *seq;
assert(v != NULL && vlen >= 0 && foldlenp != NULL);
#if 0
TRACE(("mdn__unicode_casefold(compat=%d,vlen=%d,c=%lx)\n",
compat, vlen, c));
#endif
if (c > UCS_MAX)
goto nomap;
/* Look up case folding table. */
if ((seqidx = (*version->casefolding_proc)(c, &seq)) == 0)
goto nomap;
do {
if (vlen-- < 1)
return (mdn_buffer_overflow);
*v++ = *seq & ~END_BIT;
} while ((*seq++ & END_BIT) == 0);
*foldlenp = v - vorg;
return (mdn_success);
nomap:
if (vlen < 1)
return (mdn_buffer_overflow);
*foldlenp = 1;
*v = c;
return (mdn_success);
}
|