--- old/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn/ucdn.c 2017-11-30 10:47:14.909458026 -0800 +++ new/src/java.desktop/share/native/libfontmanager/harfbuzz/hb-ucdn/ucdn.c 2017-11-30 10:47:14.749458031 -0800 @@ -23,7 +23,6 @@ unsigned char category; unsigned char combining; unsigned char bidi_class; - unsigned char mirrored; unsigned char east_asian_width; unsigned char script; unsigned char linebreak_class; @@ -43,7 +42,7 @@ short count, index; } Reindex; -#include "unicodedata_db.h" +#include "ucdn_db.h" /* constants required for Hangul (de)composition */ #define SBASE 0xAC00 @@ -91,20 +90,30 @@ return &decomp_data[index]; } -static int get_comp_index(uint32_t code, const Reindex *idx) +static int compare_reindex(const void *a, const void *b) { - int i; + Reindex *ra = (Reindex *)a; + Reindex *rb = (Reindex *)b; - for (i = 0; idx[i].start; i++) { - const Reindex *cur = &idx[i]; - if (code < cur->start) - return -1; - if (code <= cur->start + cur->count) { - return cur->index + (code - cur->start); - } - } + if (ra->start < rb->start) + return -1; + else if (ra->start > (rb->start + rb->count)) + return 1; + else + return 0; +} - return -1; +static int get_comp_index(uint32_t code, const Reindex *idx, size_t len) +{ + Reindex *res; + Reindex r = {0, 0, 0}; + r.start = code; + res = (Reindex *) bsearch(&r, idx, len, sizeof(Reindex), compare_reindex); + + if (res != NULL) + return res->index + (code - res->start); + else + return -1; } static int compare_mp(const void *a, const void *b) @@ -127,8 +136,8 @@ BracketPair *res; bp.from = code; - res = bsearch(&bp, bracket_pairs, BIDI_BRACKET_LEN, sizeof(BracketPair), - compare_bp); + res = (BracketPair *) bsearch(&bp, bracket_pairs, BIDI_BRACKET_LEN, + sizeof(BracketPair), compare_bp); return res; } @@ -154,23 +163,18 @@ static int hangul_pair_compose(uint32_t *code, uint32_t a, uint32_t b) { - if (b < VBASE || b >= (TBASE + TCOUNT)) - return 0; - - if ((a < LBASE || a >= (LBASE + LCOUNT)) - && (a < SBASE || a >= (SBASE + SCOUNT))) - return 0; - - if (a >= SBASE) { + if (a >= SBASE && a < (SBASE + SCOUNT) && b >= TBASE && b < (TBASE + TCOUNT)) { /* LV,T */ *code = a + (b - TBASE); return 3; - } else { + } else if (a >= LBASE && a < (LBASE + LCOUNT) && b >= VBASE && b < (VBASE + VCOUNT)) { /* L,V */ int li = a - LBASE; int vi = b - VBASE; *code = SBASE + li * NCOUNT + vi * TCOUNT; return 2; + } else { + return 0; } } @@ -178,7 +182,7 @@ { const unsigned short *code = *code_ptr; - if ((code[0] & 0xd800) != 0xd800) { + if (code[0] < 0xd800 || code[0] > 0xdc00) { *code_ptr += 1; return (uint32_t)code[0]; } else { @@ -215,7 +219,7 @@ int ucdn_get_mirrored(uint32_t code) { - return get_ucd_record(code)->mirrored; + return ucdn_mirror(code) != code; } int ucdn_get_script(uint32_t code) @@ -264,12 +268,9 @@ MirrorPair mp = {0}; MirrorPair *res; - if (get_ucd_record(code)->mirrored == 0) - return code; - mp.from = code; - res = bsearch(&mp, mirror_pairs, BIDI_MIRROR_LEN, sizeof(MirrorPair), - compare_mp); + res = (MirrorPair *) bsearch(&mp, mirror_pairs, BIDI_MIRROR_LEN, + sizeof(MirrorPair), compare_mp); if (res == NULL) return code; @@ -326,8 +327,8 @@ if (hangul_pair_compose(code, a, b)) return 1; - l = get_comp_index(a, nfc_first); - r = get_comp_index(b, nfc_last); + l = get_comp_index(a, nfc_first, sizeof(nfc_first) / sizeof(Reindex)); + r = get_comp_index(b, nfc_last, sizeof(nfc_last) / sizeof(Reindex)); if (l < 0 || r < 0) return 0;