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 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
|
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
/* libcroco - Library for parsing and applying CSS
* Copyright (C) 2006-2019 Free Software Foundation, Inc.
*
* This file is not part of the GNU gettext program, but is used with
* GNU gettext.
*
* The original copyright notice is as follows:
*/
/*
* This file is part of The Croco Library
*
* Copyright (C) 2003-2004 Dodji Seketeli. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2.1 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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 Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* Author: Dodji Seketeli
*/
#include <config.h>
#include "cr-utils.h"
#include "cr-string.h"
/**
*@file:
*Some misc utility functions used
*in the libcroco.
*Note that troughout this file I will
*refer to the CSS SPECIFICATIONS DOCUMENTATION
*written by the w3c guys. You can find that document
*at http://www.w3.org/TR/REC-CSS2/ .
*/
/****************************
*Encoding transformations and
*encoding helpers
****************************/
/*
*Here is the correspondance between the ucs-4 charactere codes
*and there matching utf-8 encoding pattern as dscribed by RFC 2279:
*
*UCS-4 range (hex.) UTF-8 octet sequence (binary)
*------------------ -----------------------------
*0000 0000-0000 007F 0xxxxxxx
*0000 0080-0000 07FF 110xxxxx 10xxxxxx
*0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx
*0001 0000-001F FFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
*0020 0000-03FF FFFF 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx
*0400 0000-7FFF FFFF 1111110x 10xxxxxx ... 10xxxxxx
*/
/**
*Given an utf8 string buffer, calculates
*the length of this string if it was encoded
*in ucs4.
*@param a_in_start a pointer to the begining of
*the input utf8 string.
*@param a_in_end a pointre to the end of the input
*utf8 string (points to the last byte of the buffer)
*@param a_len out parameter the calculated length.
*@return CR_OK upon succesfull completion, an error code
*otherwise.
*/
enum CRStatus
cr_utils_utf8_str_len_as_ucs4 (const guchar * a_in_start,
const guchar * a_in_end, gulong * a_len)
{
guchar *byte_ptr = NULL;
gint len = 0;
/*
*to store the final decoded
*unicode char
*/
guint c = 0;
g_return_val_if_fail (a_in_start && a_in_end && a_len,
CR_BAD_PARAM_ERROR);
*a_len = 0;
for (byte_ptr = (guchar *) a_in_start;
byte_ptr <= a_in_end; byte_ptr++) {
gint nb_bytes_2_decode = 0;
if (*byte_ptr <= 0x7F) {
/*
*7 bits long char
*encoded over 1 byte:
* 0xxx xxxx
*/
c = *byte_ptr;
nb_bytes_2_decode = 1;
} else if ((*byte_ptr & 0xE0) == 0xC0) {
/*
*up to 11 bits long char.
*encoded over 2 bytes:
*110x xxxx 10xx xxxx
*/
c = *byte_ptr & 0x1F;
nb_bytes_2_decode = 2;
} else if ((*byte_ptr & 0xF0) == 0xE0) {
/*
*up to 16 bit long char
*encoded over 3 bytes:
*1110 xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 0x0F;
nb_bytes_2_decode = 3;
} else if ((*byte_ptr & 0xF8) == 0xF0) {
/*
*up to 21 bits long char
*encoded over 4 bytes:
*1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 0x7;
nb_bytes_2_decode = 4;
} else if ((*byte_ptr & 0xFC) == 0xF8) {
/*
*up to 26 bits long char
*encoded over 5 bytes.
*1111 10xx 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 3;
nb_bytes_2_decode = 5;
} else if ((*byte_ptr & 0xFE) == 0xFC) {
/*
*up to 31 bits long char
*encoded over 6 bytes:
*1111 110x 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 1;
nb_bytes_2_decode = 6;
} else {
/*
*BAD ENCODING
*/
return CR_ENCODING_ERROR;
}
/*
*Go and decode the remaining byte(s)
*(if any) to get the current character.
*/
for (; nb_bytes_2_decode > 1; nb_bytes_2_decode--) {
/*decode the next byte */
byte_ptr++;
/*byte pattern must be: 10xx xxxx */
if ((*byte_ptr & 0xC0) != 0x80) {
return CR_ENCODING_ERROR;
}
c = (c << 6) | (*byte_ptr & 0x3F);
}
len++;
}
*a_len = len;
return CR_OK;
}
/**
*Given an ucs4 string, this function
*returns the size (in bytes) this string
*would have occupied if it was encoded in utf-8.
*@param a_in_start a pointer to the beginning of the input
*buffer.
*@param a_in_end a pointer to the end of the input buffer.
*@param a_len out parameter. The computed length.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_ucs4_str_len_as_utf8 (const guint32 * a_in_start,
const guint32 * a_in_end, gulong * a_len)
{
gint len = 0;
guint32 *char_ptr = NULL;
g_return_val_if_fail (a_in_start && a_in_end && a_len,
CR_BAD_PARAM_ERROR);
for (char_ptr = (guint32 *) a_in_start;
char_ptr <= a_in_end; char_ptr++) {
if (*char_ptr <= 0x7F) {
/*the utf-8 char would take 1 byte */
len += 1;
} else if (*char_ptr <= 0x7FF) {
/*the utf-8 char would take 2 bytes */
len += 2;
} else if (*char_ptr <= 0xFFFF) {
len += 3;
} else if (*char_ptr <= 0x1FFFFF) {
len += 4;
} else if (*char_ptr <= 0x3FFFFFF) {
len += 5;
} else if (*char_ptr <= 0x7FFFFFFF) {
len += 6;
}
}
*a_len = len;
return CR_OK;
}
/**
*Given an ucsA string, this function
*returns the size (in bytes) this string
*would have occupied if it was encoded in utf-8.
*@param a_in_start a pointer to the beginning of the input
*buffer.
*@param a_in_end a pointer to the end of the input buffer.
*@param a_len out parameter. The computed length.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_ucs1_str_len_as_utf8 (const guchar * a_in_start,
const guchar * a_in_end, gulong * a_len)
{
gint len = 0;
guchar *char_ptr = NULL;
g_return_val_if_fail (a_in_start && a_in_end && a_len,
CR_BAD_PARAM_ERROR);
for (char_ptr = (guchar *) a_in_start;
char_ptr <= a_in_end; char_ptr++) {
if (*char_ptr <= 0x7F) {
/*the utf-8 char would take 1 byte */
len += 1;
} else {
/*the utf-8 char would take 2 bytes */
len += 2;
}
}
*a_len = len;
return CR_OK;
}
/**
*Converts an utf8 buffer into an ucs4 buffer.
*
*@param a_in the input utf8 buffer to convert.
*@param a_in_len in/out parameter. The size of the
*input buffer to convert. After return, this parameter contains
*the actual number of bytes consumed.
*@param a_out the output converted ucs4 buffer. Must be allocated by
*the caller.
*@param a_out_len in/out parameter. The size of the output buffer.
*If this size is actually smaller than the real needed size, the function
*just converts what it can and returns a success status. After return,
*this param points to the actual number of characters decoded.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_utf8_to_ucs4 (const guchar * a_in,
gulong * a_in_len, guint32 * a_out, gulong * a_out_len)
{
gulong in_len = 0,
out_len = 0,
in_index = 0,
out_index = 0;
enum CRStatus status = CR_OK;
/*
*to store the final decoded
*unicode char
*/
guint c = 0;
g_return_val_if_fail (a_in && a_in_len
&& a_out && a_out_len, CR_BAD_PARAM_ERROR);
if (*a_in_len < 1) {
status = CR_OK;
goto end;
}
in_len = *a_in_len;
out_len = *a_out_len;
for (in_index = 0, out_index = 0;
(in_index < in_len) && (out_index < out_len);
in_index++, out_index++) {
gint nb_bytes_2_decode = 0;
if (a_in[in_index] <= 0x7F) {
/*
*7 bits long char
*encoded over 1 byte:
* 0xxx xxxx
*/
c = a_in[in_index];
nb_bytes_2_decode = 1;
} else if ((a_in[in_index] & 0xE0) == 0xC0) {
/*
*up to 11 bits long char.
*encoded over 2 bytes:
*110x xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x1F;
nb_bytes_2_decode = 2;
} else if ((a_in[in_index] & 0xF0) == 0xE0) {
/*
*up to 16 bit long char
*encoded over 3 bytes:
*1110 xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x0F;
nb_bytes_2_decode = 3;
} else if ((a_in[in_index] & 0xF8) == 0xF0) {
/*
*up to 21 bits long char
*encoded over 4 bytes:
*1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x7;
nb_bytes_2_decode = 4;
} else if ((a_in[in_index] & 0xFC) == 0xF8) {
/*
*up to 26 bits long char
*encoded over 5 bytes.
*1111 10xx 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 3;
nb_bytes_2_decode = 5;
} else if ((a_in[in_index] & 0xFE) == 0xFC) {
/*
*up to 31 bits long char
*encoded over 6 bytes:
*1111 110x 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 1;
nb_bytes_2_decode = 6;
} else {
/*BAD ENCODING */
goto end;
}
/*
*Go and decode the remaining byte(s)
*(if any) to get the current character.
*/
for (; nb_bytes_2_decode > 1; nb_bytes_2_decode--) {
/*decode the next byte */
in_index++;
/*byte pattern must be: 10xx xxxx */
if ((a_in[in_index] & 0xC0) != 0x80) {
goto end;
}
c = (c << 6) | (a_in[in_index] & 0x3F);
}
/*
*The decoded ucs4 char is now
*in c.
*/
/************************
*Some security tests
***********************/
/*be sure c is a char */
if (c == 0xFFFF || c == 0xFFFE)
goto end;
/*be sure c is inferior to the max ucs4 char value */
if (c > 0x10FFFF)
goto end;
/*
*c must be less than UTF16 "lower surrogate begin"
*or higher than UTF16 "High surrogate end"
*/
if (c >= 0xD800 && c <= 0xDFFF)
goto end;
/*Avoid characters that equals zero */
if (c == 0)
goto end;
a_out[out_index] = c;
}
end:
*a_out_len = out_index + 1;
*a_in_len = in_index + 1;
return status;
}
/**
*Reads a character from an utf8 buffer.
*Actually decode the next character code (unicode character code)
*and returns it.
*@param a_in the starting address of the utf8 buffer.
*@param a_in_len the length of the utf8 buffer.
*@param a_out output parameter. The resulting read char.
*@param a_consumed the number of the bytes consumed to
*decode the returned character code.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_read_char_from_utf8_buf (const guchar * a_in,
gulong a_in_len,
guint32 * a_out, gulong * a_consumed)
{
gulong in_index = 0,
nb_bytes_2_decode = 0;
enum CRStatus status = CR_OK;
/*
*to store the final decoded
*unicode char
*/
guint32 c = 0;
g_return_val_if_fail (a_in && a_out && a_out
&& a_consumed, CR_BAD_PARAM_ERROR);
if (a_in_len < 1) {
status = CR_OK;
goto end;
}
if (*a_in <= 0x7F) {
/*
*7 bits long char
*encoded over 1 byte:
* 0xxx xxxx
*/
c = *a_in;
nb_bytes_2_decode = 1;
} else if ((*a_in & 0xE0) == 0xC0) {
/*
*up to 11 bits long char.
*encoded over 2 bytes:
*110x xxxx 10xx xxxx
*/
c = *a_in & 0x1F;
nb_bytes_2_decode = 2;
} else if ((*a_in & 0xF0) == 0xE0) {
/*
*up to 16 bit long char
*encoded over 3 bytes:
*1110 xxxx 10xx xxxx 10xx xxxx
*/
c = *a_in & 0x0F;
nb_bytes_2_decode = 3;
} else if ((*a_in & 0xF8) == 0xF0) {
/*
*up to 21 bits long char
*encoded over 4 bytes:
*1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *a_in & 0x7;
nb_bytes_2_decode = 4;
} else if ((*a_in & 0xFC) == 0xF8) {
/*
*up to 26 bits long char
*encoded over 5 bytes.
*1111 10xx 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx
*/
c = *a_in & 3;
nb_bytes_2_decode = 5;
} else if ((*a_in & 0xFE) == 0xFC) {
/*
*up to 31 bits long char
*encoded over 6 bytes:
*1111 110x 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *a_in & 1;
nb_bytes_2_decode = 6;
} else {
/*BAD ENCODING */
goto end;
}
if (nb_bytes_2_decode > a_in_len) {
status = CR_END_OF_INPUT_ERROR;
goto end;
}
/*
*Go and decode the remaining byte(s)
*(if any) to get the current character.
*/
for (in_index = 1; in_index < nb_bytes_2_decode; in_index++) {
/*byte pattern must be: 10xx xxxx */
if ((a_in[in_index] & 0xC0) != 0x80) {
goto end;
}
c = (c << 6) | (a_in[in_index] & 0x3F);
}
/*
*The decoded ucs4 char is now
*in c.
*/
/************************
*Some security tests
***********************/
/*be sure c is a char */
if (c == 0xFFFF || c == 0xFFFE)
goto end;
/*be sure c is inferior to the max ucs4 char value */
if (c > 0x10FFFF)
goto end;
/*
*c must be less than UTF16 "lower surrogate begin"
*or higher than UTF16 "High surrogate end"
*/
if (c >= 0xD800 && c <= 0xDFFF)
goto end;
/*Avoid characters that equals zero */
if (c == 0)
goto end;
*a_out = c;
end:
*a_consumed = nb_bytes_2_decode;
return status;
}
/**
*
*/
enum CRStatus
cr_utils_utf8_str_len_as_ucs1 (const guchar * a_in_start,
const guchar * a_in_end, gulong * a_len)
{
/*
*Note: this function can be made shorter
*but it considers all the cases of the utf8 encoding
*to ease further extensions ...
*/
guchar *byte_ptr = NULL;
gint len = 0;
/*
*to store the final decoded
*unicode char
*/
guint c = 0;
g_return_val_if_fail (a_in_start && a_in_end && a_len,
CR_BAD_PARAM_ERROR);
*a_len = 0;
for (byte_ptr = (guchar *) a_in_start;
byte_ptr <= a_in_end; byte_ptr++) {
gint nb_bytes_2_decode = 0;
if (*byte_ptr <= 0x7F) {
/*
*7 bits long char
*encoded over 1 byte:
* 0xxx xxxx
*/
c = *byte_ptr;
nb_bytes_2_decode = 1;
} else if ((*byte_ptr & 0xE0) == 0xC0) {
/*
*up to 11 bits long char.
*encoded over 2 bytes:
*110x xxxx 10xx xxxx
*/
c = *byte_ptr & 0x1F;
nb_bytes_2_decode = 2;
} else if ((*byte_ptr & 0xF0) == 0xE0) {
/*
*up to 16 bit long char
*encoded over 3 bytes:
*1110 xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 0x0F;
nb_bytes_2_decode = 3;
} else if ((*byte_ptr & 0xF8) == 0xF0) {
/*
*up to 21 bits long char
*encoded over 4 bytes:
*1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 0x7;
nb_bytes_2_decode = 4;
} else if ((*byte_ptr & 0xFC) == 0xF8) {
/*
*up to 26 bits long char
*encoded over 5 bytes.
*1111 10xx 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 3;
nb_bytes_2_decode = 5;
} else if ((*byte_ptr & 0xFE) == 0xFC) {
/*
*up to 31 bits long char
*encoded over 6 bytes:
*1111 110x 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx 10xx xxxx
*/
c = *byte_ptr & 1;
nb_bytes_2_decode = 6;
} else {
/*
*BAD ENCODING
*/
return CR_ENCODING_ERROR;
}
/*
*Go and decode the remaining byte(s)
*(if any) to get the current character.
*/
for (; nb_bytes_2_decode > 1; nb_bytes_2_decode--) {
/*decode the next byte */
byte_ptr++;
/*byte pattern must be: 10xx xxxx */
if ((*byte_ptr & 0xC0) != 0x80) {
return CR_ENCODING_ERROR;
}
c = (c << 6) | (*byte_ptr & 0x3F);
}
/*
*The decoded ucs4 char is now
*in c.
*/
if (c <= 0xFF) { /*Add other conditions to support
*other char sets (ucs2, ucs3, ucs4).
*/
len++;
} else {
/*the char is too long to fit
*into the supposed charset len.
*/
return CR_ENCODING_ERROR;
}
}
*a_len = len;
return CR_OK;
}
/**
*Converts an utf8 string into an ucs4 string.
*@param a_in the input string to convert.
*@param a_in_len in/out parameter. The length of the input
*string. After return, points to the actual number of bytes
*consumed. This can be usefull to debug the input stream in case
*of encoding error.
*@param a_out out parameter. Points to the output string. It is allocated
*by this function and must be freed by the caller.
*@param a_out_len out parameter. The length of the output string.
*@return CR_OK upon successfull completion, an error code otherwise.
*
*/
enum CRStatus
cr_utils_utf8_str_to_ucs4 (const guchar * a_in,
gulong * a_in_len,
guint32 ** a_out, gulong * a_out_len)
{
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len
&& a_out && a_out_len, CR_BAD_PARAM_ERROR);
status = cr_utils_utf8_str_len_as_ucs4 (a_in,
&a_in[*a_in_len - 1],
a_out_len);
g_return_val_if_fail (status == CR_OK, status);
*a_out = g_malloc0 (*a_out_len * sizeof (guint32));
status = cr_utils_utf8_to_ucs4 (a_in, a_in_len, *a_out, a_out_len);
return status;
}
/**
*Converts an ucs4 buffer into an utf8 buffer.
*
*@param a_in the input ucs4 buffer to convert.
*@param a_in_len in/out parameter. The size of the
*input buffer to convert. After return, this parameter contains
*the actual number of characters consumed.
*@param a_out the output converted utf8 buffer. Must be allocated by
*the caller.
*@param a_out_len in/out parameter. The size of the output buffer.
*If this size is actually smaller than the real needed size, the function
*just converts what it can and returns a success status. After return,
*this param points to the actual number of bytes in the buffer.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_ucs4_to_utf8 (const guint32 * a_in,
gulong * a_in_len, guchar * a_out, gulong * a_out_len)
{
gulong in_len = 0,
in_index = 0,
out_index = 0;
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len && a_out && a_out_len,
CR_BAD_PARAM_ERROR);
if (*a_in_len < 1) {
status = CR_OK;
goto end;
}
in_len = *a_in_len;
for (in_index = 0; in_index < in_len; in_index++) {
/*
*FIXME: return whenever we encounter forbidden char values.
*/
if (a_in[in_index] <= 0x7F) {
a_out[out_index] = a_in[in_index];
out_index++;
} else if (a_in[in_index] <= 0x7FF) {
a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
a_out[out_index + 1] =
(0x80 | (a_in[in_index] & 0x3F));
out_index += 2;
} else if (a_in[in_index] <= 0xFFFF) {
a_out[out_index] = (0xE0 | (a_in[in_index] >> 12));
a_out[out_index + 1] =
(0x80 | ((a_in[in_index] >> 6) & 0x3F));
a_out[out_index + 2] =
(0x80 | (a_in[in_index] & 0x3F));
out_index += 3;
} else if (a_in[in_index] <= 0x1FFFFF) {
a_out[out_index] = (0xF0 | (a_in[in_index] >> 18));
a_out[out_index + 1]
= (0x80 | ((a_in[in_index] >> 12) & 0x3F));
a_out[out_index + 2]
= (0x80 | ((a_in[in_index] >> 6) & 0x3F));
a_out[out_index + 3]
= (0x80 | (a_in[in_index] & 0x3F));
out_index += 4;
} else if (a_in[in_index] <= 0x3FFFFFF) {
a_out[out_index] = (0xF8 | (a_in[in_index] >> 24));
a_out[out_index + 1] =
(0x80 | (a_in[in_index] >> 18));
a_out[out_index + 2]
= (0x80 | ((a_in[in_index] >> 12) & 0x3F));
a_out[out_index + 3]
= (0x80 | ((a_in[in_index] >> 6) & 0x3F));
a_out[out_index + 4]
= (0x80 | (a_in[in_index] & 0x3F));
out_index += 5;
} else if (a_in[in_index] <= 0x7FFFFFFF) {
a_out[out_index] = (0xFC | (a_in[in_index] >> 30));
a_out[out_index + 1] =
(0x80 | (a_in[in_index] >> 24));
a_out[out_index + 2]
= (0x80 | ((a_in[in_index] >> 18) & 0x3F));
a_out[out_index + 3]
= (0x80 | ((a_in[in_index] >> 12) & 0x3F));
a_out[out_index + 4]
= (0x80 | ((a_in[in_index] >> 6) & 0x3F));
a_out[out_index + 4]
= (0x80 | (a_in[in_index] & 0x3F));
out_index += 6;
} else {
status = CR_ENCODING_ERROR;
goto end;
}
} /*end for */
end:
*a_in_len = in_index + 1;
*a_out_len = out_index + 1;
return status;
}
/**
*Converts an ucs4 string into an utf8 string.
*@param a_in the input string to convert.
*@param a_in_len in/out parameter. The length of the input
*string. After return, points to the actual number of characters
*consumed. This can be usefull to debug the input string in case
*of encoding error.
*@param a_out out parameter. Points to the output string. It is allocated
*by this function and must be freed by the caller.
*@param a_out_len out parameter. The length (in bytes) of the output string.
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_ucs4_str_to_utf8 (const guint32 * a_in,
gulong * a_in_len,
guchar ** a_out, gulong * a_out_len)
{
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len && a_out
&& a_out_len, CR_BAD_PARAM_ERROR);
status = cr_utils_ucs4_str_len_as_utf8 (a_in,
&a_in[*a_out_len - 1],
a_out_len);
g_return_val_if_fail (status == CR_OK, status);
status = cr_utils_ucs4_to_utf8 (a_in, a_in_len, *a_out, a_out_len);
return status;
}
/**
*Converts an ucs1 buffer into an utf8 buffer.
*The caller must know the size of the resulting buffer and
*allocate it prior to calling this function.
*
*@param a_in the input ucs1 buffer.
*
*@param a_in_len in/out parameter. The length of the input buffer.
*After return, points to the number of bytes actually consumed even
*in case of encoding error.
*
*@param a_out out parameter. The output utf8 converted buffer.
*
*@param a_out_len in/out parameter. The size of the output buffer.
*If the output buffer size is shorter than the actual needed size,
*this function just convert what it can.
*
*@return CR_OK upon successfull completion, an error code otherwise.
*
*/
enum CRStatus
cr_utils_ucs1_to_utf8 (const guchar * a_in,
gulong * a_in_len, guchar * a_out, gulong * a_out_len)
{
gulong out_index = 0,
in_index = 0,
in_len = 0,
out_len = 0;
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len
&& a_out_len,
CR_BAD_PARAM_ERROR);
if (*a_in_len == 0) {
*a_out_len = 0 ;
return status;
}
g_return_val_if_fail (a_out, CR_BAD_PARAM_ERROR) ;
in_len = *a_in_len;
out_len = *a_out_len;
for (in_index = 0, out_index = 0;
(in_index < in_len) && (out_index < out_len); in_index++) {
/*
*FIXME: return whenever we encounter forbidden char values.
*/
if (a_in[in_index] <= 0x7F) {
a_out[out_index] = a_in[in_index];
out_index++;
} else {
a_out[out_index] = (0xC0 | (a_in[in_index] >> 6));
a_out[out_index + 1] =
(0x80 | (a_in[in_index] & 0x3F));
out_index += 2;
}
} /*end for */
*a_in_len = in_index;
*a_out_len = out_index;
return status;
}
/**
*Converts an ucs1 string into an utf8 string.
*@param a_in_start the beginning of the input string to convert.
*@param a_in_end the end of the input string to convert.
*@param a_out out parameter. The converted string.
*@param a_out out parameter. The length of the converted string.
*@return CR_OK upon successfull completion, an error code otherwise.
*
*/
enum CRStatus
cr_utils_ucs1_str_to_utf8 (const guchar * a_in,
gulong * a_in_len,
guchar ** a_out, gulong * a_out_len)
{
gulong out_len = 0;
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len && a_out
&& a_out_len, CR_BAD_PARAM_ERROR);
if (*a_in_len < 1) {
*a_out_len = 0;
*a_out = NULL;
return CR_OK;
}
status = cr_utils_ucs1_str_len_as_utf8 (a_in, &a_in[*a_in_len - 1],
&out_len);
g_return_val_if_fail (status == CR_OK, status);
*a_out = g_malloc0 (out_len);
status = cr_utils_ucs1_to_utf8 (a_in, a_in_len, *a_out, &out_len);
*a_out_len = out_len;
return status;
}
/**
*Converts an utf8 buffer into an ucs1 buffer.
*The caller must know the size of the resulting
*converted buffer, and allocated it prior to calling this
*function.
*
*@param a_in the input utf8 buffer to convert.
*
*@param a_in_len in/out parameter. The size of the input utf8 buffer.
*After return, points to the number of bytes consumed
*by the function even in case of encoding error.
*
*@param a_out out parameter. Points to the resulting buffer.
*Must be allocated by the caller. If the size of a_out is shorter
*than its required size, this function converts what it can and return
*a successfull status.
*
*@param a_out_len in/out parameter. The size of the output buffer.
*After return, points to the number of bytes consumed even in case of
*encoding error.
*
*@return CR_OK upon successfull completion, an error code otherwise.
*/
enum CRStatus
cr_utils_utf8_to_ucs1 (const guchar * a_in,
gulong * a_in_len, guchar * a_out, gulong * a_out_len)
{
gulong in_index = 0,
out_index = 0,
in_len = 0,
out_len = 0;
enum CRStatus status = CR_OK;
/*
*to store the final decoded
*unicode char
*/
guint32 c = 0;
g_return_val_if_fail (a_in && a_in_len
&& a_out && a_out_len, CR_BAD_PARAM_ERROR);
if (*a_in_len < 1) {
goto end;
}
in_len = *a_in_len;
out_len = *a_out_len;
for (in_index = 0, out_index = 0;
(in_index < in_len) && (out_index < out_len);
in_index++, out_index++) {
gint nb_bytes_2_decode = 0;
if (a_in[in_index] <= 0x7F) {
/*
*7 bits long char
*encoded over 1 byte:
* 0xxx xxxx
*/
c = a_in[in_index];
nb_bytes_2_decode = 1;
} else if ((a_in[in_index] & 0xE0) == 0xC0) {
/*
*up to 11 bits long char.
*encoded over 2 bytes:
*110x xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x1F;
nb_bytes_2_decode = 2;
} else if ((a_in[in_index] & 0xF0) == 0xE0) {
/*
*up to 16 bit long char
*encoded over 3 bytes:
*1110 xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x0F;
nb_bytes_2_decode = 3;
} else if ((a_in[in_index] & 0xF8) == 0xF0) {
/*
*up to 21 bits long char
*encoded over 4 bytes:
*1111 0xxx 10xx xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 0x7;
nb_bytes_2_decode = 4;
} else if ((a_in[in_index] & 0xFC) == 0xF8) {
/*
*up to 26 bits long char
*encoded over 5 bytes.
*1111 10xx 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 3;
nb_bytes_2_decode = 5;
} else if ((a_in[in_index] & 0xFE) == 0xFC) {
/*
*up to 31 bits long char
*encoded over 6 bytes:
*1111 110x 10xx xxxx 10xx xxxx
*10xx xxxx 10xx xxxx 10xx xxxx
*/
c = a_in[in_index] & 1;
nb_bytes_2_decode = 6;
} else {
/*BAD ENCODING */
status = CR_ENCODING_ERROR;
goto end;
}
/*
*Go and decode the remaining byte(s)
*(if any) to get the current character.
*/
if (in_index + nb_bytes_2_decode - 1 >= in_len) {
goto end;
}
for (; nb_bytes_2_decode > 1; nb_bytes_2_decode--) {
/*decode the next byte */
in_index++;
/*byte pattern must be: 10xx xxxx */
if ((a_in[in_index] & 0xC0) != 0x80) {
status = CR_ENCODING_ERROR;
goto end;
}
c = (c << 6) | (a_in[in_index] & 0x3F);
}
/*
*The decoded ucs4 char is now
*in c.
*/
if (c > 0xFF) {
status = CR_ENCODING_ERROR;
goto end;
}
a_out[out_index] = c;
}
end:
*a_out_len = out_index;
*a_in_len = in_index;
return status;
}
/**
*Converts an utf8 buffer into an
*ucs1 buffer.
*@param a_in_start the start of the input buffer.
*@param a_in_end the end of the input buffer.
*@param a_out out parameter. The resulting converted ucs4 buffer.
*Must be freed by the caller.
*@param a_out_len out parameter. The length of the converted buffer.
*@return CR_OK upon successfull completion, an error code otherwise.
*Note that out parameters are valid if and only if this function
*returns CR_OK.
*/
enum CRStatus
cr_utils_utf8_str_to_ucs1 (const guchar * a_in,
gulong * a_in_len,
guchar ** a_out, gulong * a_out_len)
{
enum CRStatus status = CR_OK;
g_return_val_if_fail (a_in && a_in_len
&& a_out && a_out_len, CR_BAD_PARAM_ERROR);
if (*a_in_len < 1) {
*a_out_len = 0;
*a_out = NULL;
return CR_OK;
}
status = cr_utils_utf8_str_len_as_ucs4 (a_in, &a_in[*a_in_len - 1],
a_out_len);
g_return_val_if_fail (status == CR_OK, status);
*a_out = g_malloc0 (*a_out_len * sizeof (guint32));
status = cr_utils_utf8_to_ucs1 (a_in, a_in_len, *a_out, a_out_len);
return status;
}
/*****************************************
*CSS basic types identification utilities
*****************************************/
/**
*Returns TRUE if a_char is a white space as
*defined in the css spec in chap 4.1.1.
*
*white-space ::= ' '| \t|\r|\n|\f
*
*@param a_char the character to test.
*return TRUE if is a white space, false otherwise.
*/
gboolean
cr_utils_is_white_space (guint32 a_char)
{
switch (a_char) {
case ' ':
case '\t':
case '\r':
case '\n':
case '\f':
return TRUE;
break;
default:
return FALSE;
}
}
/**
*Returns true if the character is a newline
*as defined in the css spec in the chap 4.1.1.
*
*nl ::= \n|\r\n|\r|\f
*
*@param a_char the character to test.
*@return TRUE if the character is a newline, FALSE otherwise.
*/
gboolean
cr_utils_is_newline (guint32 a_char)
{
switch (a_char) {
case '\n':
case '\r':
case '\f':
return TRUE;
break;
default:
return FALSE;
}
}
/**
*returns TRUE if the char is part of an hexa num char:
*i.e hexa_char ::= [0-9A-F]
*/
gboolean
cr_utils_is_hexa_char (guint32 a_char)
{
if ((a_char >= '0' && a_char <= '9')
|| (a_char >= 'A' && a_char <= 'F')) {
return TRUE;
}
return FALSE;
}
/**
*Returns true if the character is a nonascii
*character (as defined in the css spec chap 4.1.1):
*
*nonascii ::= [^\0-\177]
*
*@param a_char the character to test.
*@return TRUE if the character is a nonascii char,
*FALSE otherwise.
*/
gboolean
cr_utils_is_nonascii (guint32 a_char)
{
if (a_char <= 177) {
return FALSE;
}
return TRUE;
}
/**
*Dumps a character a_nb times on a file.
*@param a_char the char to dump
*@param a_fp the destination file pointer
*@param a_nb the number of times a_char is to be dumped.
*/
void
cr_utils_dump_n_chars (guchar a_char, FILE * a_fp, glong a_nb)
{
glong i = 0;
for (i = 0; i < a_nb; i++) {
fprintf (a_fp, "%c", a_char);
}
}
void
cr_utils_dump_n_chars2 (guchar a_char, GString * a_string, glong a_nb)
{
glong i = 0;
g_return_if_fail (a_string);
for (i = 0; i < a_nb; i++) {
g_string_append_printf (a_string, "%c", a_char);
}
}
/**
*Duplicates a list of GString instances.
*@return the duplicated list of GString instances or NULL if
*something bad happened.
*@param a_list_of_strings the list of strings to be duplicated.
*/
GList *
cr_utils_dup_glist_of_string (GList const * a_list_of_strings)
{
GList const *cur = NULL;
GList *result = NULL;
g_return_val_if_fail (a_list_of_strings, NULL);
for (cur = a_list_of_strings; cur; cur = cur->next) {
GString *str = NULL;
str = g_string_new_len (((GString *) cur->data)->str,
((GString *) cur->data)->len);
if (str)
result = g_list_append (result, str);
}
return result;
}
/**
*Duplicate a GList where the GList::data is a CRString.
*@param a_list_of_strings the list to duplicate
*@return the duplicated list, or NULL if something bad
*happened.
*/
GList *
cr_utils_dup_glist_of_cr_string (GList const * a_list_of_strings)
{
GList const *cur = NULL;
GList *result = NULL;
g_return_val_if_fail (a_list_of_strings, NULL);
for (cur = a_list_of_strings; cur; cur = cur->next) {
CRString *str = NULL;
str = cr_string_dup ((CRString const *) cur->data) ;
if (str)
result = g_list_append (result, str);
}
return result;
}
|