make_unicode: Mark most data tables as hidden.
[wine.git] / dlls / dwrite / bidi.c
blob3deabfcc73dd33c42a76a4ea92f0c4a49999c9d6
1 /*
2 * Unicode Bidirectional Algorithm implementation
4 * Copyright 2003 Shachar Shemesh
5 * Copyright 2007 Maarten Lankhorst
6 * Copyright 2010 CodeWeavers, Aric Stewart
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Code derived from the modified reference implementation
23 * that was found in revision 17 of http://unicode.org/reports/tr9/
24 * "Unicode Standard Annex #9: THE BIDIRECTIONAL ALGORITHM"
26 * -- Copyright (C) 1999-2005, ASMUS, Inc.
28 * Permission is hereby granted, free of charge, to any person obtaining a
29 * copy of the Unicode data files and any associated documentation (the
30 * "Data Files") or Unicode software and any associated documentation (the
31 * "Software") to deal in the Data Files or Software without restriction,
32 * including without limitation the rights to use, copy, modify, merge,
33 * publish, distribute, and/or sell copies of the Data Files or Software,
34 * and to permit persons to whom the Data Files or Software are furnished
35 * to do so, provided that (a) the above copyright notice(s) and this
36 * permission notice appear with all copies of the Data Files or Software,
37 * (b) both the above copyright notice(s) and this permission notice appear
38 * in associated documentation, and (c) there is clear notice in each
39 * modified Data File or in the Software as well as in the documentation
40 * associated with the Data File(s) or Software that the data or software
41 * has been modified.
44 #include <stdarg.h>
46 #include "windef.h"
47 #include "winbase.h"
48 #include "wine/debug.h"
49 #include "wine/list.h"
51 #include "dwrite_private.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(bidi);
55 extern const unsigned short bidi_bracket_table[] DECLSPEC_HIDDEN;
57 #define ASSERT(x) do { if (!(x)) FIXME("assert failed: %s\n", #x); } while(0)
58 #define MAX_DEPTH 125
60 #define odd(x) ((x) & 1)
62 /*------------------------------------------------------------------------
63 Bidirectional Character Types
65 as defined by the Unicode Bidirectional Algorithm Table 3-7.
67 Note:
69 The list of bidirectional character types here is not grouped the
70 same way as the table 3-7, since the numberic values for the types
71 are chosen to keep the state and action tables compact.
72 ------------------------------------------------------------------------*/
73 enum directions
75 /* input types */
76 /* ON MUST be zero, code relies on ON = NI = 0 */
77 ON = 0, /* Other Neutral */
78 L, /* Left Letter */
79 R, /* Right Letter */
80 AN, /* Arabic Number */
81 EN, /* European Number */
82 AL, /* Arabic Letter (Right-to-left) */
83 NSM, /* Non-spacing Mark */
84 CS, /* Common Separator */
85 ES, /* European Separator */
86 ET, /* European Terminator (post/prefix e.g. $ and %) */
88 /* resolved types */
89 BN, /* Boundary neutral (type of RLE etc after explicit levels) */
91 /* input types, */
92 S, /* Segment Separator (TAB) // used only in L1 */
93 WS, /* White space // used only in L1 */
94 B, /* Paragraph Separator (aka as PS) */
96 /* types for explicit controls */
97 RLO, /* these are used only in X1-X9 */
98 RLE,
99 LRO,
100 LRE,
101 PDF,
103 LRI, /* Isolate formatting characters new with 6.3 */
104 RLI,
105 FSI,
106 PDI,
108 /* resolved types, also resolved directions */
109 NI = ON, /* alias, where ON, WS, S and Isolates are treated the same */
112 static const char debug_type[][4] =
114 "ON", /* Other Neutral */
115 "L", /* Left Letter */
116 "R", /* Right Letter */
117 "AN", /* Arabic Number */
118 "EN", /* European Number */
119 "AL", /* Arabic Letter (Right-to-left) */
120 "NSM", /* Non-spacing Mark */
121 "CS", /* Common Separator */
122 "ES", /* European Separator */
123 "ET", /* European Terminator (post/prefix e.g. $ and %) */
124 "BN", /* Boundary neutral (type of RLE etc after explicit levels) */
125 "S", /* Segment Separator (TAB) used only in L1 */
126 "WS", /* White space used only in L1 */
127 "B", /* Paragraph Separator (aka as PS) */
128 "RLO", /* these are used only in X1-X9 */
129 "RLE",
130 "LRO",
131 "LRE",
132 "PDF",
133 "LRI", /* Isolate formatting characters new with 6.3 */
134 "RLI",
135 "FSI",
136 "PDI",
139 static inline void bidi_dump_types(const char* header, const UINT8 *types, UINT32 start, UINT32 end)
141 int i, len = 0;
142 TRACE("%s:", header);
143 for (i = start; i < end && len < 200; i++) {
144 TRACE(" %s", debug_type[types[i]]);
145 len += strlen(debug_type[types[i]])+1;
147 if (i != end)
148 TRACE("...");
149 TRACE("\n");
152 /* Convert the libwine information to the direction enum */
153 static void bidi_classify(const WCHAR *string, UINT8 *chartype, UINT32 count)
155 static const enum directions dir_map[16] =
157 L, /* unassigned defaults to L */
170 NSM,
172 PDF /* also LRE, LRO, RLE, RLO */
175 UINT32 i;
177 for (i = 0; i < count; ++i) {
178 chartype[i] = dir_map[get_char_typeW(string[i]) >> 12];
180 switch (chartype[i]) {
181 case ES:
182 break;
183 case PDF:
184 switch (string[i]) {
185 case 0x202a: chartype[i] = LRE; break;
186 case 0x202b: chartype[i] = RLE; break;
187 case 0x202c: chartype[i] = PDF; break;
188 case 0x202d: chartype[i] = LRO; break;
189 case 0x202e: chartype[i] = RLO; break;
190 case 0x2066: chartype[i] = LRI; break;
191 case 0x2067: chartype[i] = RLI; break;
192 case 0x2068: chartype[i] = FSI; break;
193 case 0x2069: chartype[i] = PDI; break;
195 break;
200 WCHAR bidi_get_mirrored_char(WCHAR ch)
202 extern const WCHAR wine_mirror_map[] DECLSPEC_HIDDEN;
203 return ch + wine_mirror_map[wine_mirror_map[ch >> 8] + (ch & 0xff)];
206 /* RESOLVE EXPLICIT */
208 static inline UINT8 get_greater_even_level(UINT8 level)
210 return odd(level) ? level + 1 : level + 2;
213 static inline UINT8 get_greater_odd_level(UINT8 level)
215 return odd(level) ? level + 2 : level + 1;
218 static inline UINT8 get_embedding_direction(UINT8 level)
220 return odd(level) ? R : L;
223 /*------------------------------------------------------------------------
224 Function: bidi_resolve_explicit
226 Recursively resolves explicit embedding levels and overrides.
227 Implements rules X1-X9, of the Unicode Bidirectional Algorithm.
229 Input: Base embedding level and direction
230 Character count
232 Output: Array of embedding levels
234 In/Out: Array of direction classes
237 Note: The function uses two simple counters to keep track of
238 matching explicit codes and PDF. Use the default argument for
239 the outermost call. The nesting counter counts the recursion
240 depth and not the embedding level.
241 ------------------------------------------------------------------------*/
242 typedef struct tagStackItem
244 UINT8 level;
245 UINT8 override;
246 BOOL isolate;
247 } StackItem;
249 #define push_stack(l,o,i) \
250 do { stack_top--; \
251 stack[stack_top].level = l; \
252 stack[stack_top].override = o; \
253 stack[stack_top].isolate = i;} while(0)
255 #define pop_stack() do { stack_top++; } while(0)
257 #define valid_level(x) (x <= MAX_DEPTH && overflow_isolate_count == 0 && overflow_embedding_count == 0)
259 static void bidi_resolve_explicit(UINT8 baselevel, UINT8 *classes, UINT8 *levels, UINT32 count)
261 /* X1 */
262 int overflow_isolate_count = 0;
263 int overflow_embedding_count = 0;
264 int valid_isolate_count = 0;
265 UINT32 i;
267 StackItem stack[MAX_DEPTH+2];
268 int stack_top = MAX_DEPTH+1;
270 stack[stack_top].level = baselevel;
271 stack[stack_top].override = NI;
272 stack[stack_top].isolate = FALSE;
274 for (i = 0; i < count; i++) {
275 UINT8 least_odd, least_even;
277 switch (classes[i]) {
279 /* X2 */
280 case RLE:
281 least_odd = get_greater_odd_level(stack[stack_top].level);
282 levels[i] = stack[stack_top].level;
283 if (valid_level(least_odd))
284 push_stack(least_odd, NI, FALSE);
285 else if (overflow_isolate_count == 0)
286 overflow_embedding_count++;
287 break;
289 /* X3 */
290 case LRE:
291 least_even = get_greater_even_level(stack[stack_top].level);
292 levels[i] = stack[stack_top].level;
293 if (valid_level(least_even))
294 push_stack(least_even, NI, FALSE);
295 else if (overflow_isolate_count == 0)
296 overflow_embedding_count++;
297 break;
299 /* X4 */
300 case RLO:
301 least_odd = get_greater_odd_level(stack[stack_top].level);
302 levels[i] = stack[stack_top].level;
303 if (valid_level(least_odd))
304 push_stack(least_odd, R, FALSE);
305 else if (overflow_isolate_count == 0)
306 overflow_embedding_count++;
307 break;
309 /* X5 */
310 case LRO:
311 least_even = get_greater_even_level(stack[stack_top].level);
312 levels[i] = stack[stack_top].level;
313 if (valid_level(least_even))
314 push_stack(least_even, L, FALSE);
315 else if (overflow_isolate_count == 0)
316 overflow_embedding_count++;
317 break;
319 /* X5a */
320 case RLI:
321 least_odd = get_greater_odd_level(stack[stack_top].level);
322 levels[i] = stack[stack_top].level;
323 if (valid_level(least_odd))
325 valid_isolate_count++;
326 push_stack(least_odd, NI, TRUE);
328 else
329 overflow_isolate_count++;
330 break;
332 /* X5b */
333 case LRI:
334 least_even = get_greater_even_level(stack[stack_top].level);
335 levels[i] = stack[stack_top].level;
336 if (valid_level(least_even))
338 valid_isolate_count++;
339 push_stack(least_even, NI, TRUE);
341 else
342 overflow_isolate_count++;
343 break;
345 /* X5c */
346 case FSI:
348 UINT8 new_level = 0;
349 int skipping = 0;
350 int j;
352 levels[i] = stack[stack_top].level;
353 for (j = i+1; j < count; j++)
355 if (classes[j] == LRI || classes[j] == RLI || classes[j] == FSI)
357 skipping++;
358 continue;
360 else if (classes[j] == PDI)
362 if (skipping)
363 skipping --;
364 else
365 break;
366 continue;
369 if (skipping) continue;
371 if (classes[j] == L)
373 new_level = 0;
374 break;
376 else if (classes[j] == R || classes[j] == AL)
378 new_level = 1;
379 break;
382 if (odd(new_level))
384 least_odd = get_greater_odd_level(stack[stack_top].level);
385 if (valid_level(least_odd))
387 valid_isolate_count++;
388 push_stack(least_odd, NI, TRUE);
390 else
391 overflow_isolate_count++;
393 else
395 least_even = get_greater_even_level(stack[stack_top].level);
396 if (valid_level(least_even))
398 valid_isolate_count++;
399 push_stack(least_even, NI, TRUE);
401 else
402 overflow_isolate_count++;
404 break;
407 /* X6 */
408 case ON:
409 case L:
410 case R:
411 case AN:
412 case EN:
413 case AL:
414 case NSM:
415 case CS:
416 case ES:
417 case ET:
418 case S:
419 case WS:
420 levels[i] = stack[stack_top].level;
421 if (stack[stack_top].override != NI)
422 classes[i] = stack[stack_top].override;
423 break;
425 /* X6a */
426 case PDI:
427 if (overflow_isolate_count) overflow_isolate_count--;
428 else if (!valid_isolate_count) {/* do nothing */}
429 else
431 overflow_embedding_count = 0;
432 while (!stack[stack_top].isolate) pop_stack();
433 pop_stack();
434 valid_isolate_count--;
436 levels[i] = stack[stack_top].level;
437 break;
439 /* X7 */
440 case PDF:
441 levels[i] = stack[stack_top].level;
442 if (overflow_isolate_count) {/* do nothing */}
443 else if (overflow_embedding_count) overflow_embedding_count--;
444 else if (!stack[stack_top].isolate && stack_top < (MAX_DEPTH+1))
445 pop_stack();
446 break;
448 /* X8 */
449 default:
450 levels[i] = baselevel;
451 break;
454 /* X9: Based on 5.2 Retaining Explicit Formatting Characters */
455 for (i = 0; i < count ; i++)
456 if (classes[i] == RLE || classes[i] == LRE || classes[i] == RLO || classes[i] == LRO || classes[i] == PDF)
457 classes[i] = BN;
460 static inline int get_prev_valid_char_index(const UINT8 *classes, int index, int back_fence)
462 if (index == -1 || index == back_fence) return index;
463 index--;
464 while (index > back_fence && classes[index] == BN) index--;
465 return index;
468 static inline int get_next_valid_char_index(const UINT8 *classes, int index, int front_fence)
470 if (index == front_fence) return index;
471 index++;
472 while (index < front_fence && classes[index] == BN) index++;
473 return index;
476 typedef struct tagRun
478 int start;
479 int end;
480 UINT8 e;
481 } Run;
483 typedef struct tagRunChar
485 WCHAR ch;
486 UINT8 *class;
487 } RunChar;
489 typedef struct tagIsolatedRun
491 struct list entry;
492 int length;
493 UINT8 sos;
494 UINT8 eos;
495 UINT8 e;
497 RunChar item[1];
498 } IsolatedRun;
500 static inline int get_next_valid_char_from_run(IsolatedRun *run, int index)
502 if (index >= (run->length-1)) return -1;
503 index++;
504 while (index < run->length && *run->item[index].class == BN) index++;
505 if (index == run->length) return -1;
506 return index;
509 static inline int get_prev_valid_char_from_run(IsolatedRun *run, int index)
511 if (index <= 0) return -1;
512 index--;
513 while (index > -1 && *run->item[index].class == BN) index--;
514 return index;
517 static inline void iso_dump_types(const char* header, IsolatedRun *run)
519 int i, len = 0;
520 TRACE("%s:",header);
521 TRACE("[ ");
522 for (i = 0; i < run->length && len < 200; i++) {
523 TRACE(" %s", debug_type[*run->item[i].class]);
524 len += strlen(debug_type[*run->item[i].class])+1;
526 if (i != run->length)
527 TRACE("...");
528 TRACE(" ]\n");
531 /*------------------------------------------------------------------------
532 Function: bidi_resolve_weak
534 Resolves the directionality of numeric and other weak character types
536 Implements rules X10 and W1-W6 of the Unicode Bidirectional Algorithm.
538 Input: Array of embedding levels
539 Character count
541 In/Out: Array of directional classes
543 Note: On input only these directional classes are expected
544 AL, HL, R, L, ON, BN, NSM, AN, EN, ES, ET, CS,
545 ------------------------------------------------------------------------*/
546 static BOOL bidi_is_isolate(UINT8 class)
548 return class == LRI || class == RLI || class == FSI || class == PDI;
551 static void bidi_resolve_weak(IsolatedRun *iso_run)
553 int i;
555 /* W1 */
556 for (i=0; i < iso_run->length; i++) {
557 if (*iso_run->item[i].class == NSM) {
558 int j = get_prev_valid_char_from_run(iso_run, i);
559 if (j == -1)
560 *iso_run->item[i].class = iso_run->sos;
561 else if (bidi_is_isolate(*iso_run->item[j].class))
562 *iso_run->item[i].class = ON;
563 else
564 *iso_run->item[i].class = *iso_run->item[j].class;
568 /* W2 */
569 for (i = 0; i < iso_run->length; i++) {
570 if (*iso_run->item[i].class == EN) {
571 int j = get_prev_valid_char_from_run(iso_run, i);
572 while (j > -1) {
573 if (*iso_run->item[j].class == R || *iso_run->item[j].class == L || *iso_run->item[j].class == AL) {
574 if (*iso_run->item[j].class == AL)
575 *iso_run->item[i].class = AN;
576 break;
578 j = get_prev_valid_char_from_run(iso_run, j);
583 /* W3 */
584 for (i = 0; i < iso_run->length; i++) {
585 if (*iso_run->item[i].class == AL)
586 *iso_run->item[i].class = R;
589 /* W4 */
590 for (i = 0; i < iso_run->length; i++) {
591 if (*iso_run->item[i].class == ES) {
592 int b = get_prev_valid_char_from_run(iso_run, i);
593 int f = get_next_valid_char_from_run(iso_run, i);
595 if (b > -1 && f > -1 && *iso_run->item[b].class == EN && *iso_run->item[f].class == EN)
596 *iso_run->item[i].class = EN;
598 else if (*iso_run->item[i].class == CS) {
599 int b = get_prev_valid_char_from_run(iso_run, i);
600 int f = get_next_valid_char_from_run(iso_run, i);
602 if (b > -1 && f > -1 && *iso_run->item[b].class == EN && *iso_run->item[f].class == EN)
603 *iso_run->item[i].class = EN;
604 else if (b > -1 && f > -1 && *iso_run->item[b].class == AN && *iso_run->item[f].class == AN)
605 *iso_run->item[i].class = AN;
609 /* W5 */
610 for (i = 0; i < iso_run->length; i++) {
611 if (*iso_run->item[i].class == ET) {
612 int j;
613 for (j = i-1 ; j > -1; j--) {
614 if (*iso_run->item[j].class == BN) continue;
615 if (*iso_run->item[j].class == ET) continue;
616 else if (*iso_run->item[j].class == EN) *iso_run->item[i].class = EN;
617 else break;
619 if (*iso_run->item[i].class == ET) {
620 for (j = i+1; j < iso_run->length; j++) {
621 if (*iso_run->item[j].class == BN) continue;
622 if (*iso_run->item[j].class == ET) continue;
623 else if (*iso_run->item[j].class == EN) *iso_run->item[i].class = EN;
624 else break;
630 /* W6 */
631 for (i = 0; i < iso_run->length; i++) {
632 if (*iso_run->item[i].class == ET || *iso_run->item[i].class == ES || *iso_run->item[i].class == CS || *iso_run->item[i].class == ON)
634 int b = i-1;
635 int f = i+1;
636 if (b > -1 && *iso_run->item[b].class == BN)
637 *iso_run->item[b].class = ON;
638 if (f < iso_run->length && *iso_run->item[f].class == BN)
639 *iso_run->item[f].class = ON;
641 *iso_run->item[i].class = ON;
645 /* W7 */
646 for (i = 0; i < iso_run->length; i++) {
647 if (*iso_run->item[i].class == EN) {
648 int j;
649 for (j = get_prev_valid_char_from_run(iso_run, i); j > -1; j = get_prev_valid_char_from_run(iso_run, j))
650 if (*iso_run->item[j].class == R || *iso_run->item[j].class == L) {
651 if (*iso_run->item[j].class == L)
652 *iso_run->item[i].class = L;
653 break;
655 if (iso_run->sos == L && j == -1)
656 *iso_run->item[i].class = L;
661 typedef struct tagBracketPair
663 int start;
664 int end;
665 } BracketPair;
667 static int bracketpair_compr(const void *a, const void* b)
669 return ((BracketPair*)a)->start - ((BracketPair*)b)->start;
672 static BracketPair *bidi_compute_bracket_pairs(IsolatedRun *iso_run)
674 WCHAR *open_stack;
675 int *stack_index;
676 int stack_top = iso_run->length;
677 BracketPair *out = NULL;
678 int pair_count = 0;
679 int i;
681 open_stack = heap_alloc(sizeof(WCHAR) * iso_run->length);
682 stack_index = heap_alloc(sizeof(int) * iso_run->length);
684 for (i = 0; i < iso_run->length; i++) {
685 unsigned short ubv = get_table_entry(bidi_bracket_table, iso_run->item[i].ch);
686 if (ubv) {
687 if (!out) {
688 out = heap_alloc(sizeof(BracketPair));
689 out[0].start = -1;
692 if ((ubv >> 8) == 0) {
693 stack_top--;
694 open_stack[stack_top] = iso_run->item[i].ch + (signed char)(ubv & 0xff);
695 /* deal with canonical equivalent U+2329/232A and U+3008/3009 */
696 if (open_stack[stack_top] == 0x232A)
697 open_stack[stack_top] = 0x3009;
698 stack_index[stack_top] = i;
700 else if ((ubv >> 8) == 1) {
701 int j;
703 if (stack_top == iso_run->length) continue;
704 for (j = stack_top; j < iso_run->length; j++) {
705 WCHAR c = iso_run->item[i].ch;
706 if (c == 0x232A) c = 0x3009;
707 if (c == open_stack[j]) {
708 out[pair_count].start = stack_index[j];
709 out[pair_count].end = i;
710 pair_count++;
711 out = heap_realloc(out, sizeof(BracketPair) * (pair_count+1));
712 out[pair_count].start = -1;
713 stack_top = j+1;
714 break;
720 if (pair_count == 0) {
721 heap_free(out);
722 out = NULL;
724 else if (pair_count > 1)
725 qsort(out, pair_count, sizeof(BracketPair), bracketpair_compr);
727 heap_free(open_stack);
728 heap_free(stack_index);
729 return out;
732 static inline UINT8 get_rule_N0_class(UINT8 class)
734 return (class == AN || class == EN) ? R : class;
737 /*------------------------------------------------------------------------
738 Function: bidi_resolve_neutrals
740 Resolves the directionality of neutral character types.
742 Implements rules N1 and N2 of the Unicode Bidi Algorithm.
744 Input: Array of embedding levels
745 Character count
746 Baselevel
748 In/Out: Array of directional classes
750 Note: On input only these directional classes are expected
751 R, L, NI, AN, EN and BN
753 W8 resolves a number of ENs to L
754 ------------------------------------------------------------------------*/
755 static void bidi_resolve_neutrals(IsolatedRun *run)
757 BracketPair *pairs;
758 int i;
760 /* Translate isolates into NI */
761 for (i = 0; i < run->length; i++) {
762 switch (*run->item[i].class) {
763 case B:
764 case S:
765 case WS:
766 case FSI:
767 case LRI:
768 case RLI:
769 case PDI: *run->item[i].class = NI;
772 /* "Only NI, L, R, AN, EN and BN are allowed" */
773 ASSERT(*run->item[i].class <= EN || *run->item[i].class == BN);
776 /* N0: Skipping bracketed pairs for now */
777 pairs = bidi_compute_bracket_pairs(run);
778 if (pairs) {
779 BracketPair *p = pairs;
780 int i = 0;
781 while (p->start >= 0) {
782 UINT8 e = get_embedding_direction(run->e);
783 UINT8 o = get_embedding_direction(run->e + 1);
784 BOOL flag_o = FALSE;
785 int j;
787 TRACE("Bracket Pair [%i - %i]\n", p->start, p->end);
789 /* N0.b */
790 for (j = p->start+1; j < p->end; j++) {
791 if (get_rule_N0_class(*run->item[j].class) == e) {
792 *run->item[p->start].class = e;
793 *run->item[p->end].class = e;
794 break;
796 else if (get_rule_N0_class(*run->item[j].class) == o)
797 flag_o = TRUE;
799 /* N0.c */
800 if (j == p->end && flag_o) {
801 for (j = p->start; j >= 0; j--) {
802 if (get_rule_N0_class(*run->item[j].class) == o) {
803 *run->item[p->start].class = o;
804 *run->item[p->end].class = o;
805 break;
807 else if (get_rule_N0_class(*run->item[j].class) == e) {
808 *run->item[p->start].class = e;
809 *run->item[p->end].class = e;
810 break;
813 if (j < 0) {
814 *run->item[p->start].class = run->sos;
815 *run->item[p->end].class = run->sos;
819 i++;
820 p = &pairs[i];
822 heap_free(pairs);
825 /* N1 */
826 for (i = 0; i < run->length; i++) {
827 UINT8 l, r;
829 if (*run->item[i].class == NI) {
830 int b = get_prev_valid_char_from_run(run, i);
831 int j;
833 if (b == -1) {
834 l = run->sos;
835 b = 0;
837 else {
838 if (*run->item[b].class == R || *run->item[b].class == AN || *run->item[b].class == EN)
839 l = R;
840 else if (*run->item[b].class == L)
841 l = L;
842 else /* No string type */
843 continue;
845 j = get_next_valid_char_from_run(run, i);
846 while (j > -1 && *run->item[j].class == NI) j = get_next_valid_char_from_run(run, j);
847 if (j == -1) {
848 r = run->eos;
849 j = run->length;
851 else if (*run->item[j].class == R || *run->item[j].class == AN || *run->item[j].class == EN)
852 r = R;
853 else if (*run->item[j].class == L)
854 r = L;
855 else /* No string type */
856 continue;
858 if (r == l) {
859 for (b = i; b < j && b < run->length; b++)
860 *run->item[b].class = r;
865 /* N2 */
866 for (i = 0; i < run->length; i++) {
867 if (*run->item[i].class == NI) {
868 int b = i-1;
869 int f = i+1;
871 *run->item[i].class = get_embedding_direction(run->e);
872 if (b > -1 && *run->item[b].class == BN)
873 *run->item[b].class = get_embedding_direction(run->e);
874 if (f < run->length && *run->item[f].class == BN)
875 *run->item[f].class = get_embedding_direction(run->e);
880 /*------------------------------------------------------------------------
881 Function: bidi_resolve_implicit
883 Recursively resolves implicit embedding levels.
884 Implements rules I1 and I2 of the Unicode Bidirectional Algorithm.
886 Input: Array of direction classes
887 Character count
888 Base level
890 In/Out: Array of embedding levels
892 Note: levels may exceed 15 on output.
893 Accepted subset of direction classes
894 R, L, AN, EN
895 ------------------------------------------------------------------------*/
896 static void bidi_resolve_implicit(const UINT8 *classes, UINT8 *levels, int sos, int eos)
898 int i;
900 /* I1/2 */
901 for (i = sos; i <= eos; i++) {
902 if (classes[i] == BN)
903 continue;
905 ASSERT(classes[i] != ON); /* "No Neutrals allowed to survive here." */
906 ASSERT(classes[i] <= EN); /* "Out of range." */
908 if (odd(levels[i]) && (classes[i] == L || classes[i] == EN || classes[i] == AN))
909 levels[i]++;
910 else if (!odd(levels[i]) && classes[i] == R)
911 levels[i]++;
912 else if (!odd(levels[i]) && (classes[i] == EN || classes[i] == AN))
913 levels[i] += 2;
917 static inline BOOL is_rule_L1_reset_class(UINT8 class)
919 switch (class) {
920 case WS:
921 case FSI:
922 case LRI:
923 case RLI:
924 case PDI:
925 case LRE:
926 case RLE:
927 case LRO:
928 case RLO:
929 case PDF:
930 case BN:
931 return TRUE;
932 default:
933 return FALSE;
937 static void bidi_resolve_resolved(UINT8 baselevel, const UINT8 *classes, UINT8 *levels, int sos, int eos)
939 int i;
941 /* L1 */
942 for (i = sos; i <= eos; i++) {
943 if (classes[i] == B || classes[i] == S) {
944 int j = i - 1;
945 while (i > sos && j >= sos && is_rule_L1_reset_class(classes[j]))
946 levels[j--] = baselevel;
947 levels[i] = baselevel;
949 if (i == eos && is_rule_L1_reset_class(classes[i])) {
950 int j = i;
951 while (j >= sos && is_rule_L1_reset_class(classes[j]))
952 levels[j--] = baselevel;
957 static HRESULT bidi_compute_isolating_runs_set(UINT8 baselevel, UINT8 *classes, UINT8 *levels, const WCHAR *string, UINT32 count, struct list *set)
959 int run_start, run_end, i;
960 int run_count = 0;
961 HRESULT hr = S_OK;
962 Run *runs;
964 runs = heap_alloc(count * sizeof(Run));
965 if (!runs)
966 return E_OUTOFMEMORY;
968 list_init(set);
970 /* Build Runs */
971 run_start = 0;
972 while (run_start < count) {
973 run_end = get_next_valid_char_index(classes, run_start, count);
974 while (run_end < count && levels[run_end] == levels[run_start])
975 run_end = get_next_valid_char_index(classes, run_end, count);
976 run_end--;
977 runs[run_count].start = run_start;
978 runs[run_count].end = run_end;
979 runs[run_count].e = levels[run_start];
980 run_start = get_next_valid_char_index(classes, run_end, count);
981 run_count++;
984 /* Build Isolating Runs */
985 i = 0;
986 while (i < run_count) {
987 int k = i;
988 if (runs[k].start >= 0) {
989 IsolatedRun *current_isolated;
990 int type_fence, real_end;
991 int j;
993 current_isolated = heap_alloc(sizeof(IsolatedRun) + sizeof(RunChar)*count);
994 if (!current_isolated) {
995 hr = E_OUTOFMEMORY;
996 break;
999 run_start = runs[k].start;
1000 current_isolated->e = runs[k].e;
1001 current_isolated->length = (runs[k].end - runs[k].start)+1;
1003 for (j = 0; j < current_isolated->length; j++) {
1004 current_isolated->item[j].class = &classes[runs[k].start+j];
1005 current_isolated->item[j].ch = string[runs[k].start+j];
1008 run_end = runs[k].end;
1010 TRACE("{ [%i -- %i]",run_start, run_end);
1012 if (classes[run_end] == BN)
1013 run_end = get_prev_valid_char_index(classes, run_end, runs[k].start);
1015 while (run_end < count && (classes[run_end] == RLI || classes[run_end] == LRI || classes[run_end] == FSI)) {
1016 j = k+1;
1017 search:
1018 while (j < run_count && classes[runs[j].start] != PDI) j++;
1019 if (j < run_count && runs[i].e != runs[j].e) {
1020 j++;
1021 goto search;
1024 if (j != run_count) {
1025 int l = current_isolated->length;
1026 int m;
1028 current_isolated->length += (runs[j].end - runs[j].start)+1;
1029 for (m = 0; l < current_isolated->length; l++, m++) {
1030 current_isolated->item[l].class = &classes[runs[j].start+m];
1031 current_isolated->item[l].ch = string[runs[j].start+m];
1034 TRACE("[%i -- %i]", runs[j].start, runs[j].end);
1036 run_end = runs[j].end;
1037 if (classes[run_end] == BN)
1038 run_end = get_prev_valid_char_index(classes, run_end, runs[i].start);
1039 runs[j].start = -1;
1040 k = j;
1042 else {
1043 run_end = count;
1044 break;
1048 type_fence = get_prev_valid_char_index(classes, run_start, -1);
1050 if (type_fence == -1)
1051 current_isolated->sos = (baselevel > levels[run_start]) ? baselevel : levels[run_start];
1052 else
1053 current_isolated->sos = (levels[type_fence] > levels[run_start]) ? levels[type_fence] : levels[run_start];
1055 current_isolated->sos = get_embedding_direction(current_isolated->sos);
1057 if (run_end == count)
1058 current_isolated->eos = current_isolated->sos;
1059 else {
1060 /* eos could be an BN */
1061 if (classes[run_end] == BN) {
1062 real_end = get_prev_valid_char_index(classes, run_end, run_start-1);
1063 if (real_end < run_start)
1064 real_end = run_start;
1066 else
1067 real_end = run_end;
1069 type_fence = get_next_valid_char_index(classes, run_end, count);
1070 if (type_fence == count)
1071 current_isolated->eos = (baselevel > levels[real_end]) ? baselevel : levels[real_end];
1072 else
1073 current_isolated->eos = (levels[type_fence] > levels[real_end]) ? levels[type_fence] : levels[real_end];
1075 current_isolated->eos = get_embedding_direction(current_isolated->eos);
1078 list_add_tail(set, &current_isolated->entry);
1079 TRACE(" } level %i {%s <--> %s}\n", current_isolated->e, debug_type[current_isolated->sos], debug_type[current_isolated->eos]);
1081 i++;
1084 heap_free(runs);
1085 return hr;
1088 HRESULT bidi_computelevels(const WCHAR *string, UINT32 count, UINT8 baselevel, UINT8 *explicit, UINT8 *levels)
1090 IsolatedRun *iso_run, *next;
1091 struct list IsolatingRuns;
1092 UINT8 *chartype;
1093 HRESULT hr;
1095 TRACE("%s, %u\n", debugstr_wn(string, count), count);
1097 chartype = heap_alloc(count*sizeof(*chartype));
1098 if (!chartype)
1099 return E_OUTOFMEMORY;
1101 bidi_classify(string, chartype, count);
1102 if (TRACE_ON(bidi)) bidi_dump_types("start ", chartype, 0, count);
1104 bidi_resolve_explicit(baselevel, chartype, levels, count);
1105 memcpy(explicit, levels, count*sizeof(*explicit));
1107 if (TRACE_ON(bidi)) bidi_dump_types("after explicit", chartype, 0, count);
1109 /* X10/BD13: Compute Isolating runs */
1110 hr = bidi_compute_isolating_runs_set(baselevel, chartype, levels, string, count, &IsolatingRuns);
1111 if (FAILED(hr))
1112 goto done;
1114 LIST_FOR_EACH_ENTRY_SAFE(iso_run, next, &IsolatingRuns, IsolatedRun, entry)
1116 if (TRACE_ON(bidi)) iso_dump_types("run", iso_run);
1118 bidi_resolve_weak(iso_run);
1119 if (TRACE_ON(bidi)) iso_dump_types("after weak", iso_run);
1121 bidi_resolve_neutrals(iso_run);
1122 if (TRACE_ON(bidi)) iso_dump_types("after neutrals", iso_run);
1124 list_remove(&iso_run->entry);
1125 heap_free(iso_run);
1128 if (TRACE_ON(bidi)) bidi_dump_types("before implicit", chartype, 0, count);
1129 bidi_resolve_implicit(chartype, levels, 0, count-1);
1131 bidi_classify(string, chartype, count);
1132 bidi_resolve_resolved(baselevel, chartype, levels, 0, count-1);
1134 done:
1135 heap_free(chartype);
1136 return hr;