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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
|
/* winduni.c -- unicode support for the windres program.
Copyright (C) 1997-2020 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support.
Rewritten by Kai Tietz, Onevision.
This file is part of GNU Binutils.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
/* This file contains unicode support routines for the windres
program. Ideally, we would have generic unicode support which
would work on all systems. However, we don't. Instead, on a
Windows host, we are prepared to call some Windows routines. This
means that we will generate different output on Windows and Unix
hosts, but that seems better than not really supporting unicode at
all. */
#include "sysdep.h"
#include "bfd.h"
#include "libiberty.h" /* for xstrdup */
#include "bucomm.h"
/* Must be include before windows.h and winnls.h. */
#if defined (_WIN32) || defined (__CYGWIN__)
#include <windows.h>
#include <winnls.h>
#endif
#include "winduni.h"
#include "safe-ctype.h"
#if HAVE_ICONV
#include <iconv.h>
#endif
static rc_uint_type wind_WideCharToMultiByte (rc_uint_type, const unichar *, char *, rc_uint_type);
static rc_uint_type wind_MultiByteToWideChar (rc_uint_type, const char *, unichar *, rc_uint_type);
static int unichar_isascii (const unichar *, rc_uint_type);
/* Convert an ASCII string to a unicode string. We just copy it,
expanding chars to shorts, rather than doing something intelligent. */
#if !defined (_WIN32) && !defined (__CYGWIN__)
/* Codepages mapped. */
static local_iconv_map codepages[] =
{
{ 0, "cp1252" },
{ 1, "WINDOWS-1252" },
{ 437, "MS-ANSI" },
{ 737, "MS-GREEK" },
{ 775, "WINBALTRIM" },
{ 850, "MS-ANSI" },
{ 852, "MS-EE" },
{ 857, "MS-TURK" },
{ 862, "CP862" },
{ 864, "CP864" },
{ 866, "MS-CYRL" },
{ 874, "WINDOWS-874" },
{ 932, "CP932" },
{ 936, "CP936" },
{ 949, "CP949" },
{ 950, "CP950" },
{ 1250, "WINDOWS-1250" },
{ 1251, "WINDOWS-1251" },
{ 1252, "WINDOWS-1252" },
{ 1253, "WINDOWS-1253" },
{ 1254, "WINDOWS-1254" },
{ 1255, "WINDOWS-1255" },
{ 1256, "WINDOWS-1256" },
{ 1257, "WINDOWS-1257" },
{ 1258, "WINDOWS-1258" },
{ CP_UTF7, "UTF-7" },
{ CP_UTF8, "UTF-8" },
{ CP_UTF16, "UTF-16LE" },
{ (rc_uint_type) -1, NULL }
};
/* Languages supported. */
static const wind_language_t languages[] =
{
{ 0x0000, 437, 1252, "Neutral", "Neutral" },
{ 0x0401, 864, 1256, "Arabic", "Saudi Arabia" }, { 0x0402, 866, 1251, "Bulgarian", "Bulgaria" },
{ 0x0403, 850, 1252, "Catalan", "Spain" }, { 0x0404, 950, 950, "Chinese", "Taiwan" },
{ 0x0405, 852, 1250, "Czech", "Czech Republic" }, { 0x0406, 850, 1252, "Danish", "Denmark" },
{ 0x0407, 850, 1252, "German", "Germany" }, { 0x0408, 737, 1253, "Greek", "Greece" },
{ 0x0409, 437, 1252, "English", "United States" }, { 0x040A, 850, 1252, "Spanish - Traditional Sort", "Spain" },
{ 0x040B, 850, 1252, "Finnish", "Finland" }, { 0x040C, 850, 1252, "French", "France" },
{ 0x040D, 862, 1255, "Hebrew", "Israel" }, { 0x040E, 852, 1250, "Hungarian", "Hungary" },
{ 0x040F, 850, 1252, "Icelandic", "Iceland" }, { 0x0410, 850, 1252, "Italian", "Italy" },
{ 0x0411, 932, 932, "Japanese", "Japan" }, { 0x0412, 949, 949, "Korean", "Korea (south)" },
{ 0x0413, 850, 1252, "Dutch", "Netherlands" }, { 0x0414, 850, 1252, "Norwegian (Bokm\345l)", "Norway" },
{ 0x0415, 852, 1250, "Polish", "Poland" }, { 0x0416, 850, 1252, "Portuguese", "Brazil" },
{ 0x0418, 852, 1250, "Romanian", "Romania" }, { 0x0419, 866, 1251, "Russian", "Russia" },
{ 0x041A, 852, 1250, "Croatian", "Croatia" }, { 0x041B, 852, 1250, "Slovak", "Slovakia" },
{ 0x041C, 852, 1250, "Albanian", "Albania" }, { 0x041D, 850, 1252, "Swedish", "Sweden" },
{ 0x041E, 874, 874, "Thai", "Thailand" }, { 0x041F, 857, 1254, "Turkish", "Turkey" },
{ 0x0421, 850, 1252, "Indonesian", "Indonesia" }, { 0x0422, 866, 1251, "Ukrainian", "Ukraine" },
{ 0x0423, 866, 1251, "Belarusian", "Belarus" }, { 0x0424, 852, 1250, "Slovene", "Slovenia" },
{ 0x0425, 775, 1257, "Estonian", "Estonia" }, { 0x0426, 775, 1257, "Latvian", "Latvia" },
{ 0x0427, 775, 1257, "Lithuanian", "Lithuania" },
{ 0x0429, 864, 1256, "Arabic", "Farsi" }, { 0x042A,1258, 1258, "Vietnamese", "Vietnam" },
{ 0x042D, 850, 1252, "Basque", "Spain" },
{ 0x042F, 866, 1251, "Macedonian", "Former Yugoslav Republic of Macedonia" },
{ 0x0436, 850, 1252, "Afrikaans", "South Africa" },
{ 0x0438, 850, 1252, "Faroese", "Faroe Islands" },
{ 0x043C, 437, 1252, "Irish", "Ireland" },
{ 0x043E, 850, 1252, "Malay", "Malaysia" },
{ 0x0801, 864, 1256, "Arabic", "Iraq" },
{ 0x0804, 936, 936, "Chinese (People's republic of China)", "People's republic of China" },
{ 0x0807, 850, 1252, "German", "Switzerland" },
{ 0x0809, 850, 1252, "English", "United Kingdom" }, { 0x080A, 850, 1252, "Spanish", "Mexico" },
{ 0x080C, 850, 1252, "French", "Belgium" },
{ 0x0810, 850, 1252, "Italian", "Switzerland" },
{ 0x0813, 850, 1252, "Dutch", "Belgium" }, { 0x0814, 850, 1252, "Norwegian (Nynorsk)", "Norway" },
{ 0x0816, 850, 1252, "Portuguese", "Portugal" },
{ 0x081A, 852, 1252, "Serbian (latin)", "Yugoslavia" },
{ 0x081D, 850, 1252, "Swedish (Finland)", "Finland" },
{ 0x0C01, 864, 1256, "Arabic", "Egypt" },
{ 0x0C04, 950, 950, "Chinese", "Hong Kong" },
{ 0x0C07, 850, 1252, "German", "Austria" },
{ 0x0C09, 850, 1252, "English", "Australia" }, { 0x0C0A, 850, 1252, "Spanish - International Sort", "Spain" },
{ 0x0C0C, 850, 1252, "French", "Canada"},
{ 0x0C1A, 855, 1251, "Serbian (Cyrillic)", "Serbia" },
{ 0x1001, 864, 1256, "Arabic", "Libya" },
{ 0x1004, 936, 936, "Chinese", "Singapore" },
{ 0x1007, 850, 1252, "German", "Luxembourg" },
{ 0x1009, 850, 1252, "English", "Canada" },
{ 0x100A, 850, 1252, "Spanish", "Guatemala" },
{ 0x100C, 850, 1252, "French", "Switzerland" },
{ 0x1401, 864, 1256, "Arabic", "Algeria" },
{ 0x1407, 850, 1252, "German", "Liechtenstein" },
{ 0x1409, 850, 1252, "English", "New Zealand" }, { 0x140A, 850, 1252, "Spanish", "Costa Rica" },
{ 0x140C, 850, 1252, "French", "Luxembourg" },
{ 0x1801, 864, 1256, "Arabic", "Morocco" },
{ 0x1809, 850, 1252, "English", "Ireland" }, { 0x180A, 850, 1252, "Spanish", "Panama" },
{ 0x180C, 850, 1252, "French", "Monaco" },
{ 0x1C01, 864, 1256, "Arabic", "Tunisia" },
{ 0x1C09, 437, 1252, "English", "South Africa" }, { 0x1C0A, 850, 1252, "Spanish", "Dominican Republic" },
{ 0x2001, 864, 1256, "Arabic", "Oman" },
{ 0x2009, 850, 1252, "English", "Jamaica" }, { 0x200A, 850, 1252, "Spanish", "Venezuela" },
{ 0x2401, 864, 1256, "Arabic", "Yemen" },
{ 0x2409, 850, 1252, "English", "Caribbean" }, { 0x240A, 850, 1252, "Spanish", "Colombia" },
{ 0x2801, 864, 1256, "Arabic", "Syria" },
{ 0x2809, 850, 1252, "English", "Belize" }, { 0x280A, 850, 1252, "Spanish", "Peru" },
{ 0x2C01, 864, 1256, "Arabic", "Jordan" },
{ 0x2C09, 437, 1252, "English", "Trinidad & Tobago" },{ 0x2C0A, 850, 1252, "Spanish", "Argentina" },
{ 0x3001, 864, 1256, "Arabic", "Lebanon" },
{ 0x3009, 437, 1252, "English", "Zimbabwe" }, { 0x300A, 850, 1252, "Spanish", "Ecuador" },
{ 0x3401, 864, 1256, "Arabic", "Kuwait" },
{ 0x3409, 437, 1252, "English", "Philippines" }, { 0x340A, 850, 1252, "Spanish", "Chile" },
{ 0x3801, 864, 1256, "Arabic", "United Arab Emirates" },
{ 0x380A, 850, 1252, "Spanish", "Uruguay" },
{ 0x3C01, 864, 1256, "Arabic", "Bahrain" },
{ 0x3C0A, 850, 1252, "Spanish", "Paraguay" },
{ 0x4001, 864, 1256, "Arabic", "Qatar" },
{ 0x400A, 850, 1252, "Spanish", "Bolivia" },
{ 0x440A, 850, 1252, "Spanish", "El Salvador" },
{ 0x480A, 850, 1252, "Spanish", "Honduras" },
{ 0x4C0A, 850, 1252, "Spanish", "Nicaragua" },
{ 0x500A, 850, 1252, "Spanish", "Puerto Rico" },
{ (unsigned) -1, 0, 0, NULL, NULL }
};
#endif
/* Specifies the default codepage to be used for unicode
transformations. By default this is CP_ACP. */
rc_uint_type wind_default_codepage = CP_ACP;
/* Specifies the currently used codepage for unicode
transformations. By default this is CP_ACP. */
rc_uint_type wind_current_codepage = CP_ACP;
/* Convert an ASCII string to a unicode string. We just copy it,
expanding chars to shorts, rather than doing something intelligent. */
void
unicode_from_ascii (rc_uint_type *length, unichar **unicode, const char *ascii)
{
unicode_from_codepage (length, unicode, ascii, wind_current_codepage);
}
/* Convert an ASCII string with length A_LENGTH to a unicode string. We just
copy it, expanding chars to shorts, rather than doing something intelligent.
This routine converts also \0 within a string. */
void
unicode_from_ascii_len (rc_uint_type *length, unichar **unicode, const char *ascii, rc_uint_type a_length)
{
char *tmp, *p;
rc_uint_type tlen, elen, idx = 0;
*unicode = NULL;
if (!a_length)
{
if (length)
*length = 0;
return;
}
/* Make sure we have zero terminated string. */
p = tmp = (char *) xmalloc (a_length + 1);
memcpy (tmp, ascii, a_length);
tmp[a_length] = 0;
while (a_length > 0)
{
unichar *utmp, *up;
tlen = strlen (p);
if (tlen > a_length)
tlen = a_length;
if (*p == 0)
{
/* Make room for one more character. */
utmp = (unichar *) res_alloc (sizeof (unichar) * (idx + 1));
if (idx > 0)
{
memcpy (utmp, *unicode, idx * sizeof (unichar));
}
*unicode = utmp;
utmp[idx++] = 0;
--a_length;
p++;
continue;
}
utmp = NULL;
elen = 0;
elen = wind_MultiByteToWideChar (wind_current_codepage, p, NULL, 0);
if (elen)
{
utmp = ((unichar *) res_alloc (elen + sizeof (unichar) * 2));
wind_MultiByteToWideChar (wind_current_codepage, p, utmp, elen);
elen /= sizeof (unichar);
elen --;
}
else
{
/* Make room for one more character. */
utmp = (unichar *) res_alloc (sizeof (unichar) * (idx + 1));
if (idx > 0)
{
memcpy (utmp, *unicode, idx * sizeof (unichar));
}
*unicode = utmp;
utmp[idx++] = ((unichar) *p) & 0xff;
--a_length;
p++;
continue;
}
p += tlen;
a_length -= tlen;
up = (unichar *) res_alloc (sizeof (unichar) * (idx + elen));
if (idx > 0)
memcpy (up, *unicode, idx * sizeof (unichar));
*unicode = up;
if (elen)
memcpy (&up[idx], utmp, sizeof (unichar) * elen);
idx += elen;
}
if (length)
*length = idx;
free (tmp);
}
/* Convert an unicode string to an ASCII string. We just copy it,
shrink shorts to chars, rather than doing something intelligent.
Shorts with not within the char range are replaced by '_'. */
void
ascii_from_unicode (rc_uint_type *length, const unichar *unicode, char **ascii)
{
codepage_from_unicode (length, unicode, ascii, wind_current_codepage);
}
/* Print the unicode string UNICODE to the file E. LENGTH is the
number of characters to print, or -1 if we should print until the
end of the string. FIXME: On a Windows host, we should be calling
some Windows function, probably WideCharToMultiByte. */
void
unicode_print (FILE *e, const unichar *unicode, rc_uint_type length)
{
while (1)
{
unichar ch;
if (length == 0)
return;
if ((bfd_signed_vma) length > 0)
--length;
ch = *unicode;
if (ch == 0 && (bfd_signed_vma) length < 0)
return;
++unicode;
if ((ch & 0x7f) == ch)
{
if (ch == '\\')
fputs ("\\\\", e);
else if (ch == '"')
fputs ("\"\"", e);
else if (ISPRINT (ch))
putc (ch, e);
else
{
switch (ch)
{
case ESCAPE_A:
fputs ("\\a", e);
break;
case ESCAPE_B:
fputs ("\\b", e);
break;
case ESCAPE_F:
fputs ("\\f", e);
break;
case ESCAPE_N:
fputs ("\\n", e);
break;
case ESCAPE_R:
fputs ("\\r", e);
break;
case ESCAPE_T:
fputs ("\\t", e);
break;
case ESCAPE_V:
fputs ("\\v", e);
break;
default:
fprintf (e, "\\%03o", (unsigned int) ch);
break;
}
}
}
else if ((ch & 0xff) == ch)
fprintf (e, "\\%03o", (unsigned int) ch);
else
fprintf (e, "\\x%04x", (unsigned int) ch);
}
}
/* Print a unicode string to a file. */
void
ascii_print (FILE *e, const char *s, rc_uint_type length)
{
while (1)
{
char ch;
if (length == 0)
return;
if ((bfd_signed_vma) length > 0)
--length;
ch = *s;
if (ch == 0 && (bfd_signed_vma) length < 0)
return;
++s;
if ((ch & 0x7f) == ch)
{
if (ch == '\\')
fputs ("\\\\", e);
else if (ch == '"')
fputs ("\"\"", e);
else if (ISPRINT (ch))
putc (ch, e);
else
{
switch (ch)
{
case ESCAPE_A:
fputs ("\\a", e);
break;
case ESCAPE_B:
fputs ("\\b", e);
break;
case ESCAPE_F:
fputs ("\\f", e);
break;
case ESCAPE_N:
fputs ("\\n", e);
break;
case ESCAPE_R:
fputs ("\\r", e);
break;
case ESCAPE_T:
fputs ("\\t", e);
break;
case ESCAPE_V:
fputs ("\\v", e);
break;
default:
fprintf (e, "\\%03o", (unsigned int) ch);
break;
}
}
}
else
fprintf (e, "\\%03o", (unsigned int) ch & 0xff);
}
}
rc_uint_type
unichar_len (const unichar *unicode)
{
rc_uint_type r = 0;
if (unicode)
while (unicode[r] != 0)
r++;
else
--r;
return r;
}
unichar *
unichar_dup (const unichar *unicode)
{
unichar *r;
int len;
if (! unicode)
return NULL;
for (len = 0; unicode[len] != 0; ++len)
;
++len;
r = ((unichar *) res_alloc (len * sizeof (unichar)));
memcpy (r, unicode, len * sizeof (unichar));
return r;
}
unichar *
unichar_dup_uppercase (const unichar *u)
{
unichar *r = unichar_dup (u);
int i;
if (! r)
return NULL;
for (i = 0; r[i] != 0; ++i)
{
if (r[i] >= 'a' && r[i] <= 'z')
r[i] &= 0xdf;
}
return r;
}
static int
unichar_isascii (const unichar *u, rc_uint_type len)
{
rc_uint_type i;
if ((bfd_signed_vma) len < 0)
{
if (u)
len = (rc_uint_type) unichar_len (u);
else
len = 0;
}
for (i = 0; i < len; i++)
if ((u[i] & 0xff80) != 0)
return 0;
return 1;
}
void
unicode_print_quoted (FILE *e, const unichar *u, rc_uint_type len)
{
if (! unichar_isascii (u, len))
fputc ('L', e);
fputc ('"', e);
unicode_print (e, u, len);
fputc ('"', e);
}
int
unicode_is_valid_codepage (rc_uint_type cp)
{
if ((cp & 0xffff) != cp)
return 0;
if (cp == CP_UTF16 || cp == CP_ACP)
return 1;
#if !defined (_WIN32) && !defined (__CYGWIN__)
if (! wind_find_codepage_info (cp))
return 0;
return 1;
#else
return !! IsValidCodePage ((UINT) cp);
#endif
}
#if defined (_WIN32) || defined (__CYGWIN__)
#define max_cp_string_len 6
static unsigned int
codepage_from_langid (unsigned short langid)
{
char cp_string [max_cp_string_len];
int c;
memset (cp_string, 0, max_cp_string_len);
/* LOCALE_RETURN_NUMBER flag would avoid strtoul conversion,
but is unavailable on Win95. */
c = GetLocaleInfoA (MAKELCID (langid, SORT_DEFAULT),
LOCALE_IDEFAULTANSICODEPAGE,
cp_string, max_cp_string_len);
/* If codepage data for an LCID is not installed on users's system,
GetLocaleInfo returns an empty string. Fall back to system ANSI
default. */
if (c == 0)
return CP_ACP;
return strtoul (cp_string, 0, 10);
}
static unsigned int
wincodepage_from_langid (unsigned short langid)
{
char cp_string [max_cp_string_len];
int c;
memset (cp_string, 0, max_cp_string_len);
/* LOCALE_RETURN_NUMBER flag would avoid strtoul conversion,
but is unavailable on Win95. */
c = GetLocaleInfoA (MAKELCID (langid, SORT_DEFAULT),
LOCALE_IDEFAULTCODEPAGE,
cp_string, max_cp_string_len);
/* If codepage data for an LCID is not installed on users's system,
GetLocaleInfo returns an empty string. Fall back to system ANSI
default. */
if (c == 0)
return CP_OEM;
return strtoul (cp_string, 0, 10);
}
static char *
lang_from_langid (unsigned short langid)
{
char cp_string[261];
int c;
memset (cp_string, 0, 261);
c = GetLocaleInfoA (MAKELCID (langid, SORT_DEFAULT),
LOCALE_SENGLANGUAGE,
cp_string, 260);
/* If codepage data for an LCID is not installed on users's system,
GetLocaleInfo returns an empty string. Fall back to system ANSI
default. */
if (c == 0)
strcpy (cp_string, "Neutral");
return xstrdup (cp_string);
}
static char *
country_from_langid (unsigned short langid)
{
char cp_string[261];
int c;
memset (cp_string, 0, 261);
c = GetLocaleInfoA (MAKELCID (langid, SORT_DEFAULT),
LOCALE_SENGCOUNTRY,
cp_string, 260);
/* If codepage data for an LCID is not installed on users's system,
GetLocaleInfo returns an empty string. Fall back to system ANSI
default. */
if (c == 0)
strcpy (cp_string, "Neutral");
return xstrdup (cp_string);
}
#endif
const wind_language_t *
wind_find_language_by_id (unsigned id)
{
#if !defined (_WIN32) && !defined (__CYGWIN__)
int i;
if (! id)
return NULL;
for (i = 0; languages[i].id != (unsigned) -1 && languages[i].id != id; i++)
;
if (languages[i].id == id)
return &languages[i];
return NULL;
#else
static wind_language_t wl;
wl.id = id;
wl.doscp = codepage_from_langid ((unsigned short) id);
wl.wincp = wincodepage_from_langid ((unsigned short) id);
wl.name = lang_from_langid ((unsigned short) id);
wl.country = country_from_langid ((unsigned short) id);
return & wl;
#endif
}
const local_iconv_map *
wind_find_codepage_info (unsigned cp)
{
#if !defined (_WIN32) && !defined (__CYGWIN__)
int i;
for (i = 0; codepages[i].codepage != (rc_uint_type) -1 && codepages[i].codepage != cp; i++)
;
if (codepages[i].codepage == (rc_uint_type) -1)
return NULL;
return &codepages[i];
#else
static local_iconv_map lim;
if (!unicode_is_valid_codepage (cp))
return NULL;
lim.codepage = cp;
lim.iconv_name = "";
return & lim;
#endif
}
/* Convert an Codepage string to a unicode string. */
void
unicode_from_codepage (rc_uint_type *length, unichar **u, const char *src, rc_uint_type cp)
{
rc_uint_type len;
len = wind_MultiByteToWideChar (cp, src, NULL, 0);
if (len)
{
*u = ((unichar *) res_alloc (len));
wind_MultiByteToWideChar (cp, src, *u, len);
}
/* Discount the trailing '/0'. If MultiByteToWideChar failed,
this will set *length to -1. */
len -= sizeof (unichar);
if (length != NULL)
*length = len / sizeof (unichar);
}
/* Convert an unicode string to an codepage string. */
void
codepage_from_unicode (rc_uint_type *length, const unichar *unicode, char **ascii, rc_uint_type cp)
{
rc_uint_type len;
len = wind_WideCharToMultiByte (cp, unicode, NULL, 0);
if (len)
{
*ascii = (char *) res_alloc (len * sizeof (char));
wind_WideCharToMultiByte (cp, unicode, *ascii, len);
}
/* Discount the trailing '/0'. If MultiByteToWideChar failed,
this will set *length to -1. */
len--;
if (length != NULL)
*length = len;
}
#if defined (HAVE_ICONV) && !defined (_WIN32) && !defined (__CYGWIN__)
static int
iconv_onechar (iconv_t cd, ICONV_CONST char *s, char *d, int d_len, const char **n_s, char **n_d)
{
int i;
for (i = 1; i <= 32; i++)
{
char *tmp_d = d;
ICONV_CONST char *tmp_s = s;
size_t ret;
size_t s_left = (size_t) i;
size_t d_left = (size_t) d_len;
ret = iconv (cd, & tmp_s, & s_left, & tmp_d, & d_left);
if (ret != (size_t) -1)
{
*n_s = tmp_s;
*n_d = tmp_d;
return 0;
}
}
return 1;
}
static const char *
wind_iconv_cp (rc_uint_type cp)
{
const local_iconv_map *lim = wind_find_codepage_info (cp);
if (!lim)
return NULL;
return lim->iconv_name;
}
#endif /* HAVE_ICONV */
static rc_uint_type
wind_MultiByteToWideChar (rc_uint_type cp, const char *mb,
unichar *u, rc_uint_type u_len)
{
rc_uint_type ret = 0;
#if defined (_WIN32) || defined (__CYGWIN__)
rc_uint_type conv_flags = MB_PRECOMPOSED;
/* MB_PRECOMPOSED is not allowed for UTF-7 or UTF-8.
MultiByteToWideChar will set the last error to
ERROR_INVALID_FLAGS if we do. */
if (cp == CP_UTF8 || cp == CP_UTF7)
conv_flags = 0;
ret = (rc_uint_type) MultiByteToWideChar (cp, conv_flags,
mb, -1, u, u_len);
/* Convert to bytes. */
ret *= sizeof (unichar);
#elif defined (HAVE_ICONV)
int first = 1;
char tmp[32];
char *p_tmp;
const char *iconv_name = wind_iconv_cp (cp);
if (!mb || !iconv_name)
return 0;
iconv_t cd = iconv_open ("UTF-16LE", iconv_name);
while (1)
{
int iret;
const char *n_mb = "";
char *n_tmp = "";
p_tmp = tmp;
iret = iconv_onechar (cd, (ICONV_CONST char *) mb, p_tmp, 32, & n_mb, & n_tmp);
if (first)
{
first = 0;
continue;
}
if (!iret)
{
size_t l_tmp = (size_t) (n_tmp - p_tmp);
if (u)
{
if ((size_t) u_len < l_tmp)
break;
memcpy (u, tmp, l_tmp);
u += l_tmp/2;
u_len -= l_tmp;
}
ret += l_tmp;
}
else
break;
if (tmp[0] == 0 && tmp[1] == 0)
break;
mb = n_mb;
}
iconv_close (cd);
#else
if (cp)
ret = 0;
ret = strlen (mb) + 1;
ret *= sizeof (unichar);
if (u != NULL && u_len != 0)
{
do
{
*u++ = ((unichar) *mb) & 0xff;
--u_len; mb++;
}
while (u_len != 0 && mb[-1] != 0);
}
if (u != NULL && u_len != 0)
*u = 0;
#endif
return ret;
}
static rc_uint_type
wind_WideCharToMultiByte (rc_uint_type cp, const unichar *u, char *mb, rc_uint_type mb_len)
{
rc_uint_type ret = 0;
#if defined (_WIN32) || defined (__CYGWIN__)
WINBOOL used_def = FALSE;
ret = (rc_uint_type) WideCharToMultiByte (cp, 0, u, -1, mb, mb_len,
NULL, & used_def);
#elif defined (HAVE_ICONV)
int first = 1;
char tmp[32];
char *p_tmp;
const char *iconv_name = wind_iconv_cp (cp);
if (!u || !iconv_name)
return 0;
iconv_t cd = iconv_open (iconv_name, "UTF-16LE");
while (1)
{
int iret;
const char *n_u = "";
char *n_tmp = "";
p_tmp = tmp;
iret = iconv_onechar (cd, (ICONV_CONST char *) u, p_tmp, 32, &n_u, & n_tmp);
if (first)
{
first = 0;
continue;
}
if (!iret)
{
size_t l_tmp = (size_t) (n_tmp - p_tmp);
if (mb)
{
if ((size_t) mb_len < l_tmp)
break;
memcpy (mb, tmp, l_tmp);
mb += l_tmp;
mb_len -= l_tmp;
}
ret += l_tmp;
}
else
break;
if (u[0] == 0)
break;
u = (const unichar *) n_u;
}
iconv_close (cd);
#else
if (cp)
ret = 0;
while (u[ret] != 0)
++ret;
++ret;
if (mb)
{
while (*u != 0 && mb_len != 0)
{
if (u[0] == (u[0] & 0x7f))
*mb++ = (char) u[0];
else
*mb++ = '_';
++u; --mb_len;
}
if (mb_len != 0)
*mb = 0;
}
#endif
return ret;
}
|