Merge from emacs-24; up to 2012-05-01T00:16:02Z!rgm@gnu.org
[bpt/emacs.git] / src / bidi.c
1 /* Low-level bidirectional buffer/string-scanning functions for GNU Emacs.
2 Copyright (C) 2000-2001, 2004-2005, 2009-2012
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* Written by Eli Zaretskii <eliz@gnu.org>.
21
22 A sequential implementation of the Unicode Bidirectional algorithm,
23 (UBA) as per UAX#9, a part of the Unicode Standard.
24
25 Unlike the reference and most other implementations, this one is
26 designed to be called once for every character in the buffer or
27 string.
28
29 The main entry point is bidi_move_to_visually_next. Each time it
30 is called, it finds the next character in the visual order, and
31 returns its information in a special structure. The caller is then
32 expected to process this character for display or any other
33 purposes, and call bidi_move_to_visually_next for the next
34 character. See the comments in bidi_move_to_visually_next for more
35 details about its algorithm that finds the next visual-order
36 character by resolving their levels on the fly.
37
38 Two other entry points are bidi_paragraph_init and
39 bidi_mirror_char. The first determines the base direction of a
40 paragraph, while the second returns the mirrored version of its
41 argument character.
42
43 A few auxiliary entry points are used to initialize the bidi
44 iterator for iterating an object (buffer or string), push and pop
45 the bidi iterator state, and save and restore the state of the bidi
46 cache.
47
48 If you want to understand the code, you will have to read it
49 together with the relevant portions of UAX#9. The comments include
50 references to UAX#9 rules, for that very reason.
51
52 A note about references to UAX#9 rules: if the reference says
53 something like "X9/Retaining", it means that you need to refer to
54 rule X9 and to its modifications described in the "Implementation
55 Notes" section of UAX#9, under "Retaining Format Codes". */
56
57 #include <config.h>
58 #include <stdio.h>
59 #include <setjmp.h>
60
61 #include "lisp.h"
62 #include "character.h"
63 #include "buffer.h"
64 #include "dispextern.h"
65
66 static int bidi_initialized = 0;
67
68 static Lisp_Object bidi_type_table, bidi_mirror_table;
69
70 #define LRM_CHAR 0x200E
71 #define RLM_CHAR 0x200F
72 #define BIDI_EOB -1
73
74 /* Data type for describing the bidirectional character categories. */
75 typedef enum {
76 UNKNOWN_BC,
77 NEUTRAL,
78 WEAK,
79 STRONG
80 } bidi_category_t;
81
82 /* UAX#9 says to search only for L, AL, or R types of characters, and
83 ignore RLE, RLO, LRE, and LRO, when determining the base paragraph
84 level. Yudit indeed ignores them. This variable is therefore set
85 by default to ignore them, but setting it to zero will take them
86 into account. */
87 extern int bidi_ignore_explicit_marks_for_paragraph_level EXTERNALLY_VISIBLE;
88 int bidi_ignore_explicit_marks_for_paragraph_level = 1;
89
90 static Lisp_Object paragraph_start_re, paragraph_separate_re;
91 static Lisp_Object Qparagraph_start, Qparagraph_separate;
92
93 \f
94 /***********************************************************************
95 Utilities
96 ***********************************************************************/
97
98 /* Return the bidi type of a character CH, subject to the current
99 directional OVERRIDE. */
100 static inline bidi_type_t
101 bidi_get_type (int ch, bidi_dir_t override)
102 {
103 bidi_type_t default_type;
104
105 if (ch == BIDI_EOB)
106 return NEUTRAL_B;
107 if (ch < 0 || ch > MAX_CHAR)
108 abort ();
109
110 default_type = (bidi_type_t) XINT (CHAR_TABLE_REF (bidi_type_table, ch));
111 /* Every valid character code, even those that are unassigned by the
112 UCD, have some bidi-class property, according to
113 DerivedBidiClass.txt file. Therefore, if we ever get UNKNOWN_BT
114 (= zero) code from CHAR_TABLE_REF, that's a bug. */
115 if (default_type == UNKNOWN_BT)
116 abort ();
117
118 if (override == NEUTRAL_DIR)
119 return default_type;
120
121 switch (default_type)
122 {
123 /* Although UAX#9 does not tell, it doesn't make sense to
124 override NEUTRAL_B and LRM/RLM characters. */
125 case NEUTRAL_B:
126 case LRE:
127 case LRO:
128 case RLE:
129 case RLO:
130 case PDF:
131 return default_type;
132 default:
133 switch (ch)
134 {
135 case LRM_CHAR:
136 case RLM_CHAR:
137 return default_type;
138 default:
139 if (override == L2R) /* X6 */
140 return STRONG_L;
141 else if (override == R2L)
142 return STRONG_R;
143 else
144 abort (); /* can't happen: handled above */
145 }
146 }
147 }
148
149 static inline void
150 bidi_check_type (bidi_type_t type)
151 {
152 eassert (UNKNOWN_BT <= type && type <= NEUTRAL_ON);
153 }
154
155 /* Given a bidi TYPE of a character, return its category. */
156 static inline bidi_category_t
157 bidi_get_category (bidi_type_t type)
158 {
159 switch (type)
160 {
161 case UNKNOWN_BT:
162 return UNKNOWN_BC;
163 case STRONG_L:
164 case STRONG_R:
165 case STRONG_AL:
166 case LRE:
167 case LRO:
168 case RLE:
169 case RLO:
170 return STRONG;
171 case PDF: /* ??? really?? */
172 case WEAK_EN:
173 case WEAK_ES:
174 case WEAK_ET:
175 case WEAK_AN:
176 case WEAK_CS:
177 case WEAK_NSM:
178 case WEAK_BN:
179 return WEAK;
180 case NEUTRAL_B:
181 case NEUTRAL_S:
182 case NEUTRAL_WS:
183 case NEUTRAL_ON:
184 return NEUTRAL;
185 default:
186 abort ();
187 }
188 }
189
190 /* Return the mirrored character of C, if it has one. If C has no
191 mirrored counterpart, return C.
192 Note: The conditions in UAX#9 clause L4 regarding the surrounding
193 context must be tested by the caller. */
194 int
195 bidi_mirror_char (int c)
196 {
197 Lisp_Object val;
198
199 if (c == BIDI_EOB)
200 return c;
201 if (c < 0 || c > MAX_CHAR)
202 abort ();
203
204 val = CHAR_TABLE_REF (bidi_mirror_table, c);
205 if (INTEGERP (val))
206 {
207 int v;
208
209 /* When debugging, check before assigning to V, so that the check
210 isn't broken by undefined behavior due to int overflow. */
211 eassert (CHAR_VALID_P (XINT (val)));
212
213 v = XINT (val);
214
215 /* Minimal test we must do in optimized builds, to prevent weird
216 crashes further down the road. */
217 if (v < 0 || v > MAX_CHAR)
218 abort ();
219
220 return v;
221 }
222
223 return c;
224 }
225
226 /* Determine the start-of-run (sor) directional type given the two
227 embedding levels on either side of the run boundary. Also, update
228 the saved info about previously seen characters, since that info is
229 generally valid for a single level run. */
230 static inline void
231 bidi_set_sor_type (struct bidi_it *bidi_it, int level_before, int level_after)
232 {
233 int higher_level = (level_before > level_after ? level_before : level_after);
234
235 /* The prev_was_pdf gork is required for when we have several PDFs
236 in a row. In that case, we want to compute the sor type for the
237 next level run only once: when we see the first PDF. That's
238 because the sor type depends only on the higher of the two levels
239 that we find on the two sides of the level boundary (see UAX#9,
240 clause X10), and so we don't need to know the final embedding
241 level to which we descend after processing all the PDFs. */
242 if (!bidi_it->prev_was_pdf || level_before < level_after)
243 /* FIXME: should the default sor direction be user selectable? */
244 bidi_it->sor = ((higher_level & 1) != 0 ? R2L : L2R);
245 if (level_before > level_after)
246 bidi_it->prev_was_pdf = 1;
247
248 bidi_it->prev.type = UNKNOWN_BT;
249 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1
250 = bidi_it->last_strong.orig_type = UNKNOWN_BT;
251 bidi_it->prev_for_neutral.type = (bidi_it->sor == R2L ? STRONG_R : STRONG_L);
252 bidi_it->prev_for_neutral.charpos = bidi_it->charpos;
253 bidi_it->prev_for_neutral.bytepos = bidi_it->bytepos;
254 bidi_it->next_for_neutral.type = bidi_it->next_for_neutral.type_after_w1
255 = bidi_it->next_for_neutral.orig_type = UNKNOWN_BT;
256 bidi_it->ignore_bn_limit = -1; /* meaning it's unknown */
257 }
258
259 /* Push the current embedding level and override status; reset the
260 current level to LEVEL and the current override status to OVERRIDE. */
261 static inline void
262 bidi_push_embedding_level (struct bidi_it *bidi_it,
263 int level, bidi_dir_t override)
264 {
265 bidi_it->stack_idx++;
266 eassert (bidi_it->stack_idx < BIDI_MAXLEVEL);
267 bidi_it->level_stack[bidi_it->stack_idx].level = level;
268 bidi_it->level_stack[bidi_it->stack_idx].override = override;
269 }
270
271 /* Pop the embedding level and directional override status from the
272 stack, and return the new level. */
273 static inline int
274 bidi_pop_embedding_level (struct bidi_it *bidi_it)
275 {
276 /* UAX#9 says to ignore invalid PDFs. */
277 if (bidi_it->stack_idx > 0)
278 bidi_it->stack_idx--;
279 return bidi_it->level_stack[bidi_it->stack_idx].level;
280 }
281
282 /* Record in SAVED_INFO the information about the current character. */
283 static inline void
284 bidi_remember_char (struct bidi_saved_info *saved_info,
285 struct bidi_it *bidi_it)
286 {
287 saved_info->charpos = bidi_it->charpos;
288 saved_info->bytepos = bidi_it->bytepos;
289 saved_info->type = bidi_it->type;
290 bidi_check_type (bidi_it->type);
291 saved_info->type_after_w1 = bidi_it->type_after_w1;
292 bidi_check_type (bidi_it->type_after_w1);
293 saved_info->orig_type = bidi_it->orig_type;
294 bidi_check_type (bidi_it->orig_type);
295 }
296
297 /* Copy the bidi iterator from FROM to TO. To save cycles, this only
298 copies the part of the level stack that is actually in use. */
299 static inline void
300 bidi_copy_it (struct bidi_it *to, struct bidi_it *from)
301 {
302 int i;
303
304 /* Copy everything except the level stack and beyond. */
305 memcpy (to, from, offsetof (struct bidi_it, level_stack[0]));
306
307 /* Copy the active part of the level stack. */
308 to->level_stack[0] = from->level_stack[0]; /* level zero is always in use */
309 for (i = 1; i <= from->stack_idx; i++)
310 to->level_stack[i] = from->level_stack[i];
311 }
312
313 \f
314 /***********************************************************************
315 Caching the bidi iterator states
316 ***********************************************************************/
317
318 #define BIDI_CACHE_CHUNK 200
319 static struct bidi_it *bidi_cache;
320 static ptrdiff_t bidi_cache_size = 0;
321 enum { elsz = sizeof (struct bidi_it) };
322 static ptrdiff_t bidi_cache_idx; /* next unused cache slot */
323 static ptrdiff_t bidi_cache_last_idx; /* slot of last cache hit */
324 static ptrdiff_t bidi_cache_start = 0; /* start of cache for this
325 "stack" level */
326
327 /* 5-slot stack for saving the start of the previous level of the
328 cache. xdisp.c maintains a 5-slot stack for its iterator state,
329 and we need the same size of our stack. */
330 static ptrdiff_t bidi_cache_start_stack[IT_STACK_SIZE];
331 static int bidi_cache_sp;
332
333 /* Size of header used by bidi_shelve_cache. */
334 enum
335 {
336 bidi_shelve_header_size
337 = (sizeof (bidi_cache_idx) + sizeof (bidi_cache_start_stack)
338 + sizeof (bidi_cache_sp) + sizeof (bidi_cache_start)
339 + sizeof (bidi_cache_last_idx))
340 };
341
342 /* Reset the cache state to the empty state. We only reset the part
343 of the cache relevant to iteration of the current object. Previous
344 objects, which are pushed on the display iterator's stack, are left
345 intact. This is called when the cached information is no more
346 useful for the current iteration, e.g. when we were reseated to a
347 new position on the same object. */
348 static inline void
349 bidi_cache_reset (void)
350 {
351 bidi_cache_idx = bidi_cache_start;
352 bidi_cache_last_idx = -1;
353 }
354
355 /* Shrink the cache to its minimal size. Called when we init the bidi
356 iterator for reordering a buffer or a string that does not come
357 from display properties, because that means all the previously
358 cached info is of no further use. */
359 static inline void
360 bidi_cache_shrink (void)
361 {
362 if (bidi_cache_size > BIDI_CACHE_CHUNK)
363 {
364 bidi_cache = xrealloc (bidi_cache, BIDI_CACHE_CHUNK * elsz);
365 bidi_cache_size = BIDI_CACHE_CHUNK;
366 }
367 bidi_cache_reset ();
368 }
369
370 static inline void
371 bidi_cache_fetch_state (ptrdiff_t idx, struct bidi_it *bidi_it)
372 {
373 int current_scan_dir = bidi_it->scan_dir;
374
375 if (idx < bidi_cache_start || idx >= bidi_cache_idx)
376 abort ();
377
378 bidi_copy_it (bidi_it, &bidi_cache[idx]);
379 bidi_it->scan_dir = current_scan_dir;
380 bidi_cache_last_idx = idx;
381 }
382
383 /* Find a cached state with a given CHARPOS and resolved embedding
384 level less or equal to LEVEL. if LEVEL is -1, disregard the
385 resolved levels in cached states. DIR, if non-zero, means search
386 in that direction from the last cache hit. */
387 static inline ptrdiff_t
388 bidi_cache_search (ptrdiff_t charpos, int level, int dir)
389 {
390 ptrdiff_t i, i_start;
391
392 if (bidi_cache_idx > bidi_cache_start)
393 {
394 if (bidi_cache_last_idx == -1)
395 bidi_cache_last_idx = bidi_cache_idx - 1;
396 if (charpos < bidi_cache[bidi_cache_last_idx].charpos)
397 {
398 dir = -1;
399 i_start = bidi_cache_last_idx - 1;
400 }
401 else if (charpos > (bidi_cache[bidi_cache_last_idx].charpos
402 + bidi_cache[bidi_cache_last_idx].nchars - 1))
403 {
404 dir = 1;
405 i_start = bidi_cache_last_idx + 1;
406 }
407 else if (dir)
408 i_start = bidi_cache_last_idx;
409 else
410 {
411 dir = -1;
412 i_start = bidi_cache_idx - 1;
413 }
414
415 if (dir < 0)
416 {
417 /* Linear search for now; FIXME! */
418 for (i = i_start; i >= bidi_cache_start; i--)
419 if (bidi_cache[i].charpos <= charpos
420 && charpos < bidi_cache[i].charpos + bidi_cache[i].nchars
421 && (level == -1 || bidi_cache[i].resolved_level <= level))
422 return i;
423 }
424 else
425 {
426 for (i = i_start; i < bidi_cache_idx; i++)
427 if (bidi_cache[i].charpos <= charpos
428 && charpos < bidi_cache[i].charpos + bidi_cache[i].nchars
429 && (level == -1 || bidi_cache[i].resolved_level <= level))
430 return i;
431 }
432 }
433
434 return -1;
435 }
436
437 /* Find a cached state where the resolved level changes to a value
438 that is lower than LEVEL, and return its cache slot index. DIR is
439 the direction to search, starting with the last used cache slot.
440 If DIR is zero, we search backwards from the last occupied cache
441 slot. BEFORE, if non-zero, means return the index of the slot that
442 is ``before'' the level change in the search direction. That is,
443 given the cached levels like this:
444
445 1122333442211
446 AB C
447
448 and assuming we are at the position cached at the slot marked with
449 C, searching backwards (DIR = -1) for LEVEL = 2 will return the
450 index of slot B or A, depending whether BEFORE is, respectively,
451 non-zero or zero. */
452 static ptrdiff_t
453 bidi_cache_find_level_change (int level, int dir, int before)
454 {
455 if (bidi_cache_idx)
456 {
457 ptrdiff_t i = dir ? bidi_cache_last_idx : bidi_cache_idx - 1;
458 int incr = before ? 1 : 0;
459
460 eassert (!dir || bidi_cache_last_idx >= 0);
461
462 if (!dir)
463 dir = -1;
464 else if (!incr)
465 i += dir;
466
467 if (dir < 0)
468 {
469 while (i >= bidi_cache_start + incr)
470 {
471 if (bidi_cache[i - incr].resolved_level >= 0
472 && bidi_cache[i - incr].resolved_level < level)
473 return i;
474 i--;
475 }
476 }
477 else
478 {
479 while (i < bidi_cache_idx - incr)
480 {
481 if (bidi_cache[i + incr].resolved_level >= 0
482 && bidi_cache[i + incr].resolved_level < level)
483 return i;
484 i++;
485 }
486 }
487 }
488
489 return -1;
490 }
491
492 static inline void
493 bidi_cache_ensure_space (ptrdiff_t idx)
494 {
495 /* Enlarge the cache as needed. */
496 if (idx >= bidi_cache_size)
497 {
498 /* The bidi cache cannot be larger than the largest Lisp string
499 or buffer. */
500 ptrdiff_t string_or_buffer_bound
501 = max (BUF_BYTES_MAX, STRING_BYTES_BOUND);
502
503 /* Also, it cannot be larger than what C can represent. */
504 ptrdiff_t c_bound
505 = (min (PTRDIFF_MAX, SIZE_MAX) - bidi_shelve_header_size) / elsz;
506
507 bidi_cache
508 = xpalloc (bidi_cache, &bidi_cache_size,
509 max (BIDI_CACHE_CHUNK, idx - bidi_cache_size + 1),
510 min (string_or_buffer_bound, c_bound), elsz);
511 }
512 }
513
514 static inline void
515 bidi_cache_iterator_state (struct bidi_it *bidi_it, int resolved)
516 {
517 ptrdiff_t idx;
518
519 /* We should never cache on backward scans. */
520 if (bidi_it->scan_dir == -1)
521 abort ();
522 idx = bidi_cache_search (bidi_it->charpos, -1, 1);
523
524 if (idx < 0)
525 {
526 idx = bidi_cache_idx;
527 bidi_cache_ensure_space (idx);
528 /* Character positions should correspond to cache positions 1:1.
529 If we are outside the range of cached positions, the cache is
530 useless and must be reset. */
531 if (idx > bidi_cache_start &&
532 (bidi_it->charpos > (bidi_cache[idx - 1].charpos
533 + bidi_cache[idx - 1].nchars)
534 || bidi_it->charpos < bidi_cache[bidi_cache_start].charpos))
535 {
536 bidi_cache_reset ();
537 idx = bidi_cache_start;
538 }
539 if (bidi_it->nchars <= 0)
540 abort ();
541 bidi_copy_it (&bidi_cache[idx], bidi_it);
542 if (!resolved)
543 bidi_cache[idx].resolved_level = -1;
544 }
545 else
546 {
547 /* Copy only the members which could have changed, to avoid
548 costly copying of the entire struct. */
549 bidi_cache[idx].type = bidi_it->type;
550 bidi_check_type (bidi_it->type);
551 bidi_cache[idx].type_after_w1 = bidi_it->type_after_w1;
552 bidi_check_type (bidi_it->type_after_w1);
553 if (resolved)
554 bidi_cache[idx].resolved_level = bidi_it->resolved_level;
555 else
556 bidi_cache[idx].resolved_level = -1;
557 bidi_cache[idx].invalid_levels = bidi_it->invalid_levels;
558 bidi_cache[idx].invalid_rl_levels = bidi_it->invalid_rl_levels;
559 bidi_cache[idx].next_for_neutral = bidi_it->next_for_neutral;
560 bidi_cache[idx].next_for_ws = bidi_it->next_for_ws;
561 bidi_cache[idx].ignore_bn_limit = bidi_it->ignore_bn_limit;
562 bidi_cache[idx].disp_pos = bidi_it->disp_pos;
563 bidi_cache[idx].disp_prop = bidi_it->disp_prop;
564 }
565
566 bidi_cache_last_idx = idx;
567 if (idx >= bidi_cache_idx)
568 bidi_cache_idx = idx + 1;
569 }
570
571 static inline bidi_type_t
572 bidi_cache_find (ptrdiff_t charpos, int level, struct bidi_it *bidi_it)
573 {
574 ptrdiff_t i = bidi_cache_search (charpos, level, bidi_it->scan_dir);
575
576 if (i >= bidi_cache_start)
577 {
578 bidi_dir_t current_scan_dir = bidi_it->scan_dir;
579
580 bidi_copy_it (bidi_it, &bidi_cache[i]);
581 bidi_cache_last_idx = i;
582 /* Don't let scan direction from the cached state override
583 the current scan direction. */
584 bidi_it->scan_dir = current_scan_dir;
585 return bidi_it->type;
586 }
587
588 return UNKNOWN_BT;
589 }
590
591 static inline int
592 bidi_peek_at_next_level (struct bidi_it *bidi_it)
593 {
594 if (bidi_cache_idx == bidi_cache_start || bidi_cache_last_idx == -1)
595 abort ();
596 return bidi_cache[bidi_cache_last_idx + bidi_it->scan_dir].resolved_level;
597 }
598
599 \f
600 /***********************************************************************
601 Pushing and popping the bidi iterator state
602 ***********************************************************************/
603
604 /* Push the bidi iterator state in preparation for reordering a
605 different object, e.g. display string found at certain buffer
606 position. Pushing the bidi iterator boils down to saving its
607 entire state on the cache and starting a new cache "stacked" on top
608 of the current cache. */
609 void
610 bidi_push_it (struct bidi_it *bidi_it)
611 {
612 /* Save the current iterator state in its entirety after the last
613 used cache slot. */
614 bidi_cache_ensure_space (bidi_cache_idx);
615 memcpy (&bidi_cache[bidi_cache_idx++], bidi_it, sizeof (struct bidi_it));
616
617 /* Push the current cache start onto the stack. */
618 eassert (bidi_cache_sp < IT_STACK_SIZE);
619 bidi_cache_start_stack[bidi_cache_sp++] = bidi_cache_start;
620
621 /* Start a new level of cache, and make it empty. */
622 bidi_cache_start = bidi_cache_idx;
623 bidi_cache_last_idx = -1;
624 }
625
626 /* Restore the iterator state saved by bidi_push_it and return the
627 cache to the corresponding state. */
628 void
629 bidi_pop_it (struct bidi_it *bidi_it)
630 {
631 if (bidi_cache_start <= 0)
632 abort ();
633
634 /* Reset the next free cache slot index to what it was before the
635 call to bidi_push_it. */
636 bidi_cache_idx = bidi_cache_start - 1;
637
638 /* Restore the bidi iterator state saved in the cache. */
639 memcpy (bidi_it, &bidi_cache[bidi_cache_idx], sizeof (struct bidi_it));
640
641 /* Pop the previous cache start from the stack. */
642 if (bidi_cache_sp <= 0)
643 abort ();
644 bidi_cache_start = bidi_cache_start_stack[--bidi_cache_sp];
645
646 /* Invalidate the last-used cache slot data. */
647 bidi_cache_last_idx = -1;
648 }
649
650 static ptrdiff_t bidi_cache_total_alloc;
651
652 /* Stash away a copy of the cache and its control variables. */
653 void *
654 bidi_shelve_cache (void)
655 {
656 unsigned char *databuf;
657 ptrdiff_t alloc;
658
659 /* Empty cache. */
660 if (bidi_cache_idx == 0)
661 return NULL;
662
663 alloc = (bidi_shelve_header_size
664 + bidi_cache_idx * sizeof (struct bidi_it));
665 databuf = xmalloc (alloc);
666 bidi_cache_total_alloc += alloc;
667
668 memcpy (databuf, &bidi_cache_idx, sizeof (bidi_cache_idx));
669 memcpy (databuf + sizeof (bidi_cache_idx),
670 bidi_cache, bidi_cache_idx * sizeof (struct bidi_it));
671 memcpy (databuf + sizeof (bidi_cache_idx)
672 + bidi_cache_idx * sizeof (struct bidi_it),
673 bidi_cache_start_stack, sizeof (bidi_cache_start_stack));
674 memcpy (databuf + sizeof (bidi_cache_idx)
675 + bidi_cache_idx * sizeof (struct bidi_it)
676 + sizeof (bidi_cache_start_stack),
677 &bidi_cache_sp, sizeof (bidi_cache_sp));
678 memcpy (databuf + sizeof (bidi_cache_idx)
679 + bidi_cache_idx * sizeof (struct bidi_it)
680 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp),
681 &bidi_cache_start, sizeof (bidi_cache_start));
682 memcpy (databuf + sizeof (bidi_cache_idx)
683 + bidi_cache_idx * sizeof (struct bidi_it)
684 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp)
685 + sizeof (bidi_cache_start),
686 &bidi_cache_last_idx, sizeof (bidi_cache_last_idx));
687
688 return databuf;
689 }
690
691 /* Restore the cache state from a copy stashed away by
692 bidi_shelve_cache, and free the buffer used to stash that copy.
693 JUST_FREE non-zero means free the buffer, but don't restore the
694 cache; used when the corresponding iterator is discarded instead of
695 being restored. */
696 void
697 bidi_unshelve_cache (void *databuf, int just_free)
698 {
699 unsigned char *p = databuf;
700
701 if (!p)
702 {
703 if (!just_free)
704 {
705 /* A NULL pointer means an empty cache. */
706 bidi_cache_start = 0;
707 bidi_cache_sp = 0;
708 bidi_cache_reset ();
709 }
710 }
711 else
712 {
713 if (just_free)
714 {
715 ptrdiff_t idx;
716
717 memcpy (&idx, p, sizeof (bidi_cache_idx));
718 bidi_cache_total_alloc
719 -= bidi_shelve_header_size + idx * sizeof (struct bidi_it);
720 }
721 else
722 {
723 memcpy (&bidi_cache_idx, p, sizeof (bidi_cache_idx));
724 bidi_cache_ensure_space (bidi_cache_idx);
725 memcpy (bidi_cache, p + sizeof (bidi_cache_idx),
726 bidi_cache_idx * sizeof (struct bidi_it));
727 memcpy (bidi_cache_start_stack,
728 p + sizeof (bidi_cache_idx)
729 + bidi_cache_idx * sizeof (struct bidi_it),
730 sizeof (bidi_cache_start_stack));
731 memcpy (&bidi_cache_sp,
732 p + sizeof (bidi_cache_idx)
733 + bidi_cache_idx * sizeof (struct bidi_it)
734 + sizeof (bidi_cache_start_stack),
735 sizeof (bidi_cache_sp));
736 memcpy (&bidi_cache_start,
737 p + sizeof (bidi_cache_idx)
738 + bidi_cache_idx * sizeof (struct bidi_it)
739 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp),
740 sizeof (bidi_cache_start));
741 memcpy (&bidi_cache_last_idx,
742 p + sizeof (bidi_cache_idx)
743 + bidi_cache_idx * sizeof (struct bidi_it)
744 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp)
745 + sizeof (bidi_cache_start),
746 sizeof (bidi_cache_last_idx));
747 bidi_cache_total_alloc
748 -= (bidi_shelve_header_size
749 + bidi_cache_idx * sizeof (struct bidi_it));
750 }
751
752 xfree (p);
753 }
754 }
755
756 \f
757 /***********************************************************************
758 Initialization
759 ***********************************************************************/
760 static void
761 bidi_initialize (void)
762 {
763 bidi_type_table = uniprop_table (intern ("bidi-class"));
764 if (NILP (bidi_type_table))
765 abort ();
766 staticpro (&bidi_type_table);
767
768 bidi_mirror_table = uniprop_table (intern ("mirroring"));
769 if (NILP (bidi_mirror_table))
770 abort ();
771 staticpro (&bidi_mirror_table);
772
773 Qparagraph_start = intern ("paragraph-start");
774 staticpro (&Qparagraph_start);
775 paragraph_start_re = Fsymbol_value (Qparagraph_start);
776 if (!STRINGP (paragraph_start_re))
777 paragraph_start_re = build_string ("\f\\|[ \t]*$");
778 staticpro (&paragraph_start_re);
779 Qparagraph_separate = intern ("paragraph-separate");
780 staticpro (&Qparagraph_separate);
781 paragraph_separate_re = Fsymbol_value (Qparagraph_separate);
782 if (!STRINGP (paragraph_separate_re))
783 paragraph_separate_re = build_string ("[ \t\f]*$");
784 staticpro (&paragraph_separate_re);
785
786 bidi_cache_sp = 0;
787 bidi_cache_total_alloc = 0;
788
789 bidi_initialized = 1;
790 }
791
792 /* Do whatever UAX#9 clause X8 says should be done at paragraph's
793 end. */
794 static inline void
795 bidi_set_paragraph_end (struct bidi_it *bidi_it)
796 {
797 bidi_it->invalid_levels = 0;
798 bidi_it->invalid_rl_levels = -1;
799 bidi_it->stack_idx = 0;
800 bidi_it->resolved_level = bidi_it->level_stack[0].level;
801 }
802
803 /* Initialize the bidi iterator from buffer/string position CHARPOS. */
804 void
805 bidi_init_it (ptrdiff_t charpos, ptrdiff_t bytepos, int frame_window_p,
806 struct bidi_it *bidi_it)
807 {
808 if (! bidi_initialized)
809 bidi_initialize ();
810 if (charpos >= 0)
811 bidi_it->charpos = charpos;
812 if (bytepos >= 0)
813 bidi_it->bytepos = bytepos;
814 bidi_it->frame_window_p = frame_window_p;
815 bidi_it->nchars = -1; /* to be computed in bidi_resolve_explicit_1 */
816 bidi_it->first_elt = 1;
817 bidi_set_paragraph_end (bidi_it);
818 bidi_it->new_paragraph = 1;
819 bidi_it->separator_limit = -1;
820 bidi_it->type = NEUTRAL_B;
821 bidi_it->type_after_w1 = NEUTRAL_B;
822 bidi_it->orig_type = NEUTRAL_B;
823 bidi_it->prev_was_pdf = 0;
824 bidi_it->prev.type = bidi_it->prev.type_after_w1
825 = bidi_it->prev.orig_type = UNKNOWN_BT;
826 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1
827 = bidi_it->last_strong.orig_type = UNKNOWN_BT;
828 bidi_it->next_for_neutral.charpos = -1;
829 bidi_it->next_for_neutral.type
830 = bidi_it->next_for_neutral.type_after_w1
831 = bidi_it->next_for_neutral.orig_type = UNKNOWN_BT;
832 bidi_it->prev_for_neutral.charpos = -1;
833 bidi_it->prev_for_neutral.type
834 = bidi_it->prev_for_neutral.type_after_w1
835 = bidi_it->prev_for_neutral.orig_type = UNKNOWN_BT;
836 bidi_it->sor = L2R; /* FIXME: should it be user-selectable? */
837 bidi_it->disp_pos = -1; /* invalid/unknown */
838 bidi_it->disp_prop = 0;
839 /* We can only shrink the cache if we are at the bottom level of its
840 "stack". */
841 if (bidi_cache_start == 0)
842 bidi_cache_shrink ();
843 else
844 bidi_cache_reset ();
845 }
846
847 /* Perform initializations for reordering a new line of bidi text. */
848 static void
849 bidi_line_init (struct bidi_it *bidi_it)
850 {
851 bidi_it->scan_dir = 1; /* FIXME: do we need to have control on this? */
852 bidi_it->resolved_level = bidi_it->level_stack[0].level;
853 bidi_it->level_stack[0].override = NEUTRAL_DIR; /* X1 */
854 bidi_it->invalid_levels = 0;
855 bidi_it->invalid_rl_levels = -1;
856 /* Setting this to zero will force its recomputation the first time
857 we need it for W5. */
858 bidi_it->next_en_pos = 0;
859 bidi_it->next_en_type = UNKNOWN_BT;
860 bidi_it->next_for_ws.type = UNKNOWN_BT;
861 bidi_set_sor_type (bidi_it,
862 (bidi_it->paragraph_dir == R2L ? 1 : 0),
863 bidi_it->level_stack[0].level); /* X10 */
864
865 bidi_cache_reset ();
866 }
867
868 \f
869 /***********************************************************************
870 Fetching characters
871 ***********************************************************************/
872
873 /* Count bytes in string S between BEG/BEGBYTE and END. BEG and END
874 are zero-based character positions in S, BEGBYTE is byte position
875 corresponding to BEG. UNIBYTE, if non-zero, means S is a unibyte
876 string. */
877 static inline ptrdiff_t
878 bidi_count_bytes (const unsigned char *s, const ptrdiff_t beg,
879 const ptrdiff_t begbyte, const ptrdiff_t end, int unibyte)
880 {
881 ptrdiff_t pos = beg;
882 const unsigned char *p = s + begbyte, *start = p;
883
884 if (unibyte)
885 p = s + end;
886 else
887 {
888 if (!CHAR_HEAD_P (*p))
889 abort ();
890
891 while (pos < end)
892 {
893 p += BYTES_BY_CHAR_HEAD (*p);
894 pos++;
895 }
896 }
897
898 return p - start;
899 }
900
901 /* Fetch and returns the character at byte position BYTEPOS. If S is
902 non-NULL, fetch the character from string S; otherwise fetch the
903 character from the current buffer. UNIBYTE non-zero means S is a
904 unibyte string. */
905 static inline int
906 bidi_char_at_pos (ptrdiff_t bytepos, const unsigned char *s, int unibyte)
907 {
908 if (s)
909 {
910 if (unibyte)
911 return s[bytepos];
912 else
913 return STRING_CHAR (s + bytepos);
914 }
915 else
916 return FETCH_MULTIBYTE_CHAR (bytepos);
917 }
918
919 /* Fetch and return the character at BYTEPOS/CHARPOS. If that
920 character is covered by a display string, treat the entire run of
921 covered characters as a single character, either u+2029 or u+FFFC,
922 and return their combined length in CH_LEN and NCHARS. DISP_POS
923 specifies the character position of the next display string, or -1
924 if not yet computed. When the next character is at or beyond that
925 position, the function updates DISP_POS with the position of the
926 next display string. DISP_PROP non-zero means that there's really
927 a display string at DISP_POS, as opposed to when we searched till
928 DISP_POS without finding one. If DISP_PROP is 2, it means the
929 display spec is of the form `(space ...)', which is replaced with
930 u+2029 to handle it as a paragraph separator. STRING->s is the C
931 string to iterate, or NULL if iterating over a buffer or a Lisp
932 string; in the latter case, STRING->lstring is the Lisp string. */
933 static inline int
934 bidi_fetch_char (ptrdiff_t bytepos, ptrdiff_t charpos, ptrdiff_t *disp_pos,
935 int *disp_prop, struct bidi_string_data *string,
936 int frame_window_p, ptrdiff_t *ch_len, ptrdiff_t *nchars)
937 {
938 int ch;
939 ptrdiff_t endpos
940 = (string->s || STRINGP (string->lstring)) ? string->schars : ZV;
941 struct text_pos pos;
942 int len;
943
944 /* If we got past the last known position of display string, compute
945 the position of the next one. That position could be at CHARPOS. */
946 if (charpos < endpos && charpos > *disp_pos)
947 {
948 SET_TEXT_POS (pos, charpos, bytepos);
949 *disp_pos = compute_display_string_pos (&pos, string, frame_window_p,
950 disp_prop);
951 }
952
953 /* Fetch the character at BYTEPOS. */
954 if (charpos >= endpos)
955 {
956 ch = BIDI_EOB;
957 *ch_len = 1;
958 *nchars = 1;
959 *disp_pos = endpos;
960 *disp_prop = 0;
961 }
962 else if (charpos >= *disp_pos && *disp_prop)
963 {
964 ptrdiff_t disp_end_pos;
965
966 /* We don't expect to find ourselves in the middle of a display
967 property. Hopefully, it will never be needed. */
968 if (charpos > *disp_pos)
969 abort ();
970 /* Text covered by `display' properties and overlays with
971 display properties or display strings is handled as a single
972 character that represents the entire run of characters
973 covered by the display property. */
974 if (*disp_prop == 2)
975 {
976 /* `(space ...)' display specs are handled as paragraph
977 separators for the purposes of the reordering; see UAX#9
978 section 3 and clause HL1 in section 4.3 there. */
979 ch = 0x2029;
980 }
981 else
982 {
983 /* All other display specs are handled as the Unicode Object
984 Replacement Character. */
985 ch = 0xFFFC;
986 }
987 disp_end_pos = compute_display_string_end (*disp_pos, string);
988 if (disp_end_pos < 0)
989 {
990 /* Somebody removed the display string from the buffer
991 behind our back. Recover by processing this buffer
992 position as if no display property were present there to
993 begin with. */
994 *disp_prop = 0;
995 goto normal_char;
996 }
997 *nchars = disp_end_pos - *disp_pos;
998 if (*nchars <= 0)
999 abort ();
1000 if (string->s)
1001 *ch_len = bidi_count_bytes (string->s, *disp_pos, bytepos,
1002 disp_end_pos, string->unibyte);
1003 else if (STRINGP (string->lstring))
1004 *ch_len = bidi_count_bytes (SDATA (string->lstring), *disp_pos,
1005 bytepos, disp_end_pos, string->unibyte);
1006 else
1007 *ch_len = CHAR_TO_BYTE (disp_end_pos) - bytepos;
1008 }
1009 else
1010 {
1011 normal_char:
1012 if (string->s)
1013 {
1014
1015 if (!string->unibyte)
1016 {
1017 ch = STRING_CHAR_AND_LENGTH (string->s + bytepos, len);
1018 *ch_len = len;
1019 }
1020 else
1021 {
1022 ch = UNIBYTE_TO_CHAR (string->s[bytepos]);
1023 *ch_len = 1;
1024 }
1025 }
1026 else if (STRINGP (string->lstring))
1027 {
1028 if (!string->unibyte)
1029 {
1030 ch = STRING_CHAR_AND_LENGTH (SDATA (string->lstring) + bytepos,
1031 len);
1032 *ch_len = len;
1033 }
1034 else
1035 {
1036 ch = UNIBYTE_TO_CHAR (SREF (string->lstring, bytepos));
1037 *ch_len = 1;
1038 }
1039 }
1040 else
1041 {
1042 ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (bytepos), len);
1043 *ch_len = len;
1044 }
1045 *nchars = 1;
1046 }
1047
1048 /* If we just entered a run of characters covered by a display
1049 string, compute the position of the next display string. */
1050 if (charpos + *nchars <= endpos && charpos + *nchars > *disp_pos
1051 && *disp_prop)
1052 {
1053 SET_TEXT_POS (pos, charpos + *nchars, bytepos + *ch_len);
1054 *disp_pos = compute_display_string_pos (&pos, string, frame_window_p,
1055 disp_prop);
1056 }
1057
1058 return ch;
1059 }
1060
1061 \f
1062 /***********************************************************************
1063 Determining paragraph direction
1064 ***********************************************************************/
1065
1066 /* Check if buffer position CHARPOS/BYTEPOS is the end of a paragraph.
1067 Value is the non-negative length of the paragraph separator
1068 following the buffer position, -1 if position is at the beginning
1069 of a new paragraph, or -2 if position is neither at beginning nor
1070 at end of a paragraph. */
1071 static ptrdiff_t
1072 bidi_at_paragraph_end (ptrdiff_t charpos, ptrdiff_t bytepos)
1073 {
1074 Lisp_Object sep_re;
1075 Lisp_Object start_re;
1076 ptrdiff_t val;
1077
1078 sep_re = paragraph_separate_re;
1079 start_re = paragraph_start_re;
1080
1081 val = fast_looking_at (sep_re, charpos, bytepos, ZV, ZV_BYTE, Qnil);
1082 if (val < 0)
1083 {
1084 if (fast_looking_at (start_re, charpos, bytepos, ZV, ZV_BYTE, Qnil) >= 0)
1085 val = -1;
1086 else
1087 val = -2;
1088 }
1089
1090 return val;
1091 }
1092
1093 /* On my 2005-vintage machine, searching back for paragraph start
1094 takes ~1 ms per line. And bidi_paragraph_init is called 4 times
1095 when user types C-p. The number below limits each call to
1096 bidi_paragraph_init to about 10 ms. */
1097 #define MAX_PARAGRAPH_SEARCH 7500
1098
1099 /* Find the beginning of this paragraph by looking back in the buffer.
1100 Value is the byte position of the paragraph's beginning, or
1101 BEGV_BYTE if paragraph_start_re is still not found after looking
1102 back MAX_PARAGRAPH_SEARCH lines in the buffer. */
1103 static ptrdiff_t
1104 bidi_find_paragraph_start (ptrdiff_t pos, ptrdiff_t pos_byte)
1105 {
1106 Lisp_Object re = paragraph_start_re;
1107 ptrdiff_t limit = ZV, limit_byte = ZV_BYTE;
1108 ptrdiff_t n = 0;
1109
1110 while (pos_byte > BEGV_BYTE
1111 && n++ < MAX_PARAGRAPH_SEARCH
1112 && fast_looking_at (re, pos, pos_byte, limit, limit_byte, Qnil) < 0)
1113 {
1114 /* FIXME: What if the paragraph beginning is covered by a
1115 display string? And what if a display string covering some
1116 of the text over which we scan back includes
1117 paragraph_start_re? */
1118 pos = find_next_newline_no_quit (pos - 1, -1);
1119 pos_byte = CHAR_TO_BYTE (pos);
1120 }
1121 if (n >= MAX_PARAGRAPH_SEARCH)
1122 pos_byte = BEGV_BYTE;
1123 return pos_byte;
1124 }
1125
1126 /* Determine the base direction, a.k.a. base embedding level, of the
1127 paragraph we are about to iterate through. If DIR is either L2R or
1128 R2L, just use that. Otherwise, determine the paragraph direction
1129 from the first strong directional character of the paragraph.
1130
1131 NO_DEFAULT_P non-zero means don't default to L2R if the paragraph
1132 has no strong directional characters and both DIR and
1133 bidi_it->paragraph_dir are NEUTRAL_DIR. In that case, search back
1134 in the buffer until a paragraph is found with a strong character,
1135 or until hitting BEGV. In the latter case, fall back to L2R. This
1136 flag is used in current-bidi-paragraph-direction.
1137
1138 Note that this function gives the paragraph separator the same
1139 direction as the preceding paragraph, even though Emacs generally
1140 views the separator as not belonging to any paragraph. */
1141 void
1142 bidi_paragraph_init (bidi_dir_t dir, struct bidi_it *bidi_it, int no_default_p)
1143 {
1144 ptrdiff_t bytepos = bidi_it->bytepos;
1145 int string_p = bidi_it->string.s != NULL || STRINGP (bidi_it->string.lstring);
1146 ptrdiff_t pstartbyte;
1147 /* Note that begbyte is a byte position, while end is a character
1148 position. Yes, this is ugly, but we are trying to avoid costly
1149 calls to BYTE_TO_CHAR and its ilk. */
1150 ptrdiff_t begbyte = string_p ? 0 : BEGV_BYTE;
1151 ptrdiff_t end = string_p ? bidi_it->string.schars : ZV;
1152
1153 /* Special case for an empty buffer. */
1154 if (bytepos == begbyte && bidi_it->charpos == end)
1155 dir = L2R;
1156 /* We should never be called at EOB or before BEGV. */
1157 else if (bidi_it->charpos >= end || bytepos < begbyte)
1158 abort ();
1159
1160 if (dir == L2R)
1161 {
1162 bidi_it->paragraph_dir = L2R;
1163 bidi_it->new_paragraph = 0;
1164 }
1165 else if (dir == R2L)
1166 {
1167 bidi_it->paragraph_dir = R2L;
1168 bidi_it->new_paragraph = 0;
1169 }
1170 else if (dir == NEUTRAL_DIR) /* P2 */
1171 {
1172 int ch;
1173 ptrdiff_t ch_len, nchars;
1174 ptrdiff_t pos, disp_pos = -1;
1175 int disp_prop = 0;
1176 bidi_type_t type;
1177 const unsigned char *s;
1178
1179 if (!bidi_initialized)
1180 bidi_initialize ();
1181
1182 /* If we are inside a paragraph separator, we are just waiting
1183 for the separator to be exhausted; use the previous paragraph
1184 direction. But don't do that if we have been just reseated,
1185 because we need to reinitialize below in that case. */
1186 if (!bidi_it->first_elt
1187 && bidi_it->charpos < bidi_it->separator_limit)
1188 return;
1189
1190 /* If we are on a newline, get past it to where the next
1191 paragraph might start. But don't do that at BEGV since then
1192 we are potentially in a new paragraph that doesn't yet
1193 exist. */
1194 pos = bidi_it->charpos;
1195 s = (STRINGP (bidi_it->string.lstring)
1196 ? SDATA (bidi_it->string.lstring)
1197 : bidi_it->string.s);
1198 if (bytepos > begbyte
1199 && bidi_char_at_pos (bytepos, s, bidi_it->string.unibyte) == '\n')
1200 {
1201 bytepos++;
1202 pos++;
1203 }
1204
1205 /* We are either at the beginning of a paragraph or in the
1206 middle of it. Find where this paragraph starts. */
1207 if (string_p)
1208 {
1209 /* We don't support changes of paragraph direction inside a
1210 string. It is treated as a single paragraph. */
1211 pstartbyte = 0;
1212 }
1213 else
1214 pstartbyte = bidi_find_paragraph_start (pos, bytepos);
1215 bidi_it->separator_limit = -1;
1216 bidi_it->new_paragraph = 0;
1217
1218 /* The following loop is run more than once only if NO_DEFAULT_P
1219 is non-zero, and only if we are iterating on a buffer. */
1220 do {
1221 bytepos = pstartbyte;
1222 if (!string_p)
1223 pos = BYTE_TO_CHAR (bytepos);
1224 ch = bidi_fetch_char (bytepos, pos, &disp_pos, &disp_prop,
1225 &bidi_it->string,
1226 bidi_it->frame_window_p, &ch_len, &nchars);
1227 type = bidi_get_type (ch, NEUTRAL_DIR);
1228
1229 for (pos += nchars, bytepos += ch_len;
1230 (bidi_get_category (type) != STRONG)
1231 || (bidi_ignore_explicit_marks_for_paragraph_level
1232 && (type == RLE || type == RLO
1233 || type == LRE || type == LRO));
1234 type = bidi_get_type (ch, NEUTRAL_DIR))
1235 {
1236 if (pos >= end)
1237 {
1238 /* Pretend there's a paragraph separator at end of
1239 buffer/string. */
1240 type = NEUTRAL_B;
1241 break;
1242 }
1243 if (!string_p
1244 && type == NEUTRAL_B
1245 && bidi_at_paragraph_end (pos, bytepos) >= -1)
1246 break;
1247 /* Fetch next character and advance to get past it. */
1248 ch = bidi_fetch_char (bytepos, pos, &disp_pos,
1249 &disp_prop, &bidi_it->string,
1250 bidi_it->frame_window_p, &ch_len, &nchars);
1251 pos += nchars;
1252 bytepos += ch_len;
1253 }
1254 if ((type == STRONG_R || type == STRONG_AL) /* P3 */
1255 || (!bidi_ignore_explicit_marks_for_paragraph_level
1256 && (type == RLO || type == RLE)))
1257 bidi_it->paragraph_dir = R2L;
1258 else if (type == STRONG_L
1259 || (!bidi_ignore_explicit_marks_for_paragraph_level
1260 && (type == LRO || type == LRE)))
1261 bidi_it->paragraph_dir = L2R;
1262 if (!string_p
1263 && no_default_p && bidi_it->paragraph_dir == NEUTRAL_DIR)
1264 {
1265 /* If this paragraph is at BEGV, default to L2R. */
1266 if (pstartbyte == BEGV_BYTE)
1267 bidi_it->paragraph_dir = L2R; /* P3 and HL1 */
1268 else
1269 {
1270 ptrdiff_t prevpbyte = pstartbyte;
1271 ptrdiff_t p = BYTE_TO_CHAR (pstartbyte), pbyte = pstartbyte;
1272
1273 /* Find the beginning of the previous paragraph, if any. */
1274 while (pbyte > BEGV_BYTE && prevpbyte >= pstartbyte)
1275 {
1276 /* FXIME: What if p is covered by a display
1277 string? See also a FIXME inside
1278 bidi_find_paragraph_start. */
1279 p--;
1280 pbyte = CHAR_TO_BYTE (p);
1281 prevpbyte = bidi_find_paragraph_start (p, pbyte);
1282 }
1283 pstartbyte = prevpbyte;
1284 }
1285 }
1286 } while (!string_p
1287 && no_default_p && bidi_it->paragraph_dir == NEUTRAL_DIR);
1288 }
1289 else
1290 abort ();
1291
1292 /* Contrary to UAX#9 clause P3, we only default the paragraph
1293 direction to L2R if we have no previous usable paragraph
1294 direction. This is allowed by the HL1 clause. */
1295 if (bidi_it->paragraph_dir != L2R && bidi_it->paragraph_dir != R2L)
1296 bidi_it->paragraph_dir = L2R; /* P3 and HL1 ``higher-level protocols'' */
1297 if (bidi_it->paragraph_dir == R2L)
1298 bidi_it->level_stack[0].level = 1;
1299 else
1300 bidi_it->level_stack[0].level = 0;
1301
1302 bidi_line_init (bidi_it);
1303 }
1304
1305 \f
1306 /***********************************************************************
1307 Resolving explicit and implicit levels.
1308 The rest of this file constitutes the core of the UBA implementation.
1309 ***********************************************************************/
1310
1311 static inline int
1312 bidi_explicit_dir_char (int ch)
1313 {
1314 bidi_type_t ch_type;
1315
1316 if (!bidi_initialized)
1317 abort ();
1318 ch_type = (bidi_type_t) XINT (CHAR_TABLE_REF (bidi_type_table, ch));
1319 return (ch_type == LRE || ch_type == LRO
1320 || ch_type == RLE || ch_type == RLO
1321 || ch_type == PDF);
1322 }
1323
1324 /* A helper function for bidi_resolve_explicit. It advances to the
1325 next character in logical order and determines the new embedding
1326 level and directional override, but does not take into account
1327 empty embeddings. */
1328 static int
1329 bidi_resolve_explicit_1 (struct bidi_it *bidi_it)
1330 {
1331 int curchar;
1332 bidi_type_t type;
1333 int current_level;
1334 int new_level;
1335 bidi_dir_t override;
1336 int string_p = bidi_it->string.s != NULL || STRINGP (bidi_it->string.lstring);
1337
1338 /* If reseat()'ed, don't advance, so as to start iteration from the
1339 position where we were reseated. bidi_it->bytepos can be less
1340 than BEGV_BYTE after reseat to BEGV. */
1341 if (bidi_it->bytepos < (string_p ? 0 : BEGV_BYTE)
1342 || bidi_it->first_elt)
1343 {
1344 bidi_it->first_elt = 0;
1345 if (string_p)
1346 {
1347 const unsigned char *p
1348 = (STRINGP (bidi_it->string.lstring)
1349 ? SDATA (bidi_it->string.lstring)
1350 : bidi_it->string.s);
1351
1352 if (bidi_it->charpos < 0)
1353 bidi_it->charpos = 0;
1354 bidi_it->bytepos = bidi_count_bytes (p, 0, 0, bidi_it->charpos,
1355 bidi_it->string.unibyte);
1356 }
1357 else
1358 {
1359 if (bidi_it->charpos < BEGV)
1360 bidi_it->charpos = BEGV;
1361 bidi_it->bytepos = CHAR_TO_BYTE (bidi_it->charpos);
1362 }
1363 }
1364 /* Don't move at end of buffer/string. */
1365 else if (bidi_it->charpos < (string_p ? bidi_it->string.schars : ZV))
1366 {
1367 /* Advance to the next character, skipping characters covered by
1368 display strings (nchars > 1). */
1369 if (bidi_it->nchars <= 0)
1370 abort ();
1371 bidi_it->charpos += bidi_it->nchars;
1372 if (bidi_it->ch_len == 0)
1373 abort ();
1374 bidi_it->bytepos += bidi_it->ch_len;
1375 }
1376
1377 current_level = bidi_it->level_stack[bidi_it->stack_idx].level; /* X1 */
1378 override = bidi_it->level_stack[bidi_it->stack_idx].override;
1379 new_level = current_level;
1380
1381 if (bidi_it->charpos >= (string_p ? bidi_it->string.schars : ZV))
1382 {
1383 curchar = BIDI_EOB;
1384 bidi_it->ch_len = 1;
1385 bidi_it->nchars = 1;
1386 bidi_it->disp_pos = (string_p ? bidi_it->string.schars : ZV);
1387 bidi_it->disp_prop = 0;
1388 }
1389 else
1390 {
1391 /* Fetch the character at BYTEPOS. If it is covered by a
1392 display string, treat the entire run of covered characters as
1393 a single character u+FFFC. */
1394 curchar = bidi_fetch_char (bidi_it->bytepos, bidi_it->charpos,
1395 &bidi_it->disp_pos, &bidi_it->disp_prop,
1396 &bidi_it->string, bidi_it->frame_window_p,
1397 &bidi_it->ch_len, &bidi_it->nchars);
1398 }
1399 bidi_it->ch = curchar;
1400
1401 /* Don't apply directional override here, as all the types we handle
1402 below will not be affected by the override anyway, and we need
1403 the original type unaltered. The override will be applied in
1404 bidi_resolve_weak. */
1405 type = bidi_get_type (curchar, NEUTRAL_DIR);
1406 bidi_it->orig_type = type;
1407 bidi_check_type (bidi_it->orig_type);
1408
1409 if (type != PDF)
1410 bidi_it->prev_was_pdf = 0;
1411
1412 bidi_it->type_after_w1 = UNKNOWN_BT;
1413
1414 switch (type)
1415 {
1416 case RLE: /* X2 */
1417 case RLO: /* X4 */
1418 bidi_it->type_after_w1 = type;
1419 bidi_check_type (bidi_it->type_after_w1);
1420 type = WEAK_BN; /* X9/Retaining */
1421 if (bidi_it->ignore_bn_limit <= -1)
1422 {
1423 if (current_level <= BIDI_MAXLEVEL - 4)
1424 {
1425 /* Compute the least odd embedding level greater than
1426 the current level. */
1427 new_level = ((current_level + 1) & ~1) + 1;
1428 if (bidi_it->type_after_w1 == RLE)
1429 override = NEUTRAL_DIR;
1430 else
1431 override = R2L;
1432 if (current_level == BIDI_MAXLEVEL - 4)
1433 bidi_it->invalid_rl_levels = 0;
1434 bidi_push_embedding_level (bidi_it, new_level, override);
1435 }
1436 else
1437 {
1438 bidi_it->invalid_levels++;
1439 /* See the commentary about invalid_rl_levels below. */
1440 if (bidi_it->invalid_rl_levels < 0)
1441 bidi_it->invalid_rl_levels = 0;
1442 bidi_it->invalid_rl_levels++;
1443 }
1444 }
1445 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1446 || (bidi_it->next_en_pos > bidi_it->charpos
1447 && bidi_it->next_en_type == WEAK_EN))
1448 type = WEAK_EN;
1449 break;
1450 case LRE: /* X3 */
1451 case LRO: /* X5 */
1452 bidi_it->type_after_w1 = type;
1453 bidi_check_type (bidi_it->type_after_w1);
1454 type = WEAK_BN; /* X9/Retaining */
1455 if (bidi_it->ignore_bn_limit <= -1)
1456 {
1457 if (current_level <= BIDI_MAXLEVEL - 5)
1458 {
1459 /* Compute the least even embedding level greater than
1460 the current level. */
1461 new_level = ((current_level + 2) & ~1);
1462 if (bidi_it->type_after_w1 == LRE)
1463 override = NEUTRAL_DIR;
1464 else
1465 override = L2R;
1466 bidi_push_embedding_level (bidi_it, new_level, override);
1467 }
1468 else
1469 {
1470 bidi_it->invalid_levels++;
1471 /* invalid_rl_levels counts invalid levels encountered
1472 while the embedding level was already too high for
1473 LRE/LRO, but not for RLE/RLO. That is because
1474 there may be exactly one PDF which we should not
1475 ignore even though invalid_levels is non-zero.
1476 invalid_rl_levels helps to know what PDF is
1477 that. */
1478 if (bidi_it->invalid_rl_levels >= 0)
1479 bidi_it->invalid_rl_levels++;
1480 }
1481 }
1482 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1483 || (bidi_it->next_en_pos > bidi_it->charpos
1484 && bidi_it->next_en_type == WEAK_EN))
1485 type = WEAK_EN;
1486 break;
1487 case PDF: /* X7 */
1488 bidi_it->type_after_w1 = type;
1489 bidi_check_type (bidi_it->type_after_w1);
1490 type = WEAK_BN; /* X9/Retaining */
1491 if (bidi_it->ignore_bn_limit <= -1)
1492 {
1493 if (!bidi_it->invalid_rl_levels)
1494 {
1495 new_level = bidi_pop_embedding_level (bidi_it);
1496 bidi_it->invalid_rl_levels = -1;
1497 if (bidi_it->invalid_levels)
1498 bidi_it->invalid_levels--;
1499 /* else nothing: UAX#9 says to ignore invalid PDFs */
1500 }
1501 if (!bidi_it->invalid_levels)
1502 new_level = bidi_pop_embedding_level (bidi_it);
1503 else
1504 {
1505 bidi_it->invalid_levels--;
1506 bidi_it->invalid_rl_levels--;
1507 }
1508 }
1509 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1510 || (bidi_it->next_en_pos > bidi_it->charpos
1511 && bidi_it->next_en_type == WEAK_EN))
1512 type = WEAK_EN;
1513 break;
1514 default:
1515 /* Nothing. */
1516 break;
1517 }
1518
1519 bidi_it->type = type;
1520 bidi_check_type (bidi_it->type);
1521
1522 return new_level;
1523 }
1524
1525 /* Given an iterator state in BIDI_IT, advance one character position
1526 in the buffer/string to the next character (in the logical order),
1527 resolve any explicit embeddings and directional overrides, and
1528 return the embedding level of the character after resolving
1529 explicit directives and ignoring empty embeddings. */
1530 static int
1531 bidi_resolve_explicit (struct bidi_it *bidi_it)
1532 {
1533 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1534 int new_level = bidi_resolve_explicit_1 (bidi_it);
1535 ptrdiff_t eob = bidi_it->string.s ? bidi_it->string.schars : ZV;
1536 const unsigned char *s
1537 = (STRINGP (bidi_it->string.lstring)
1538 ? SDATA (bidi_it->string.lstring)
1539 : bidi_it->string.s);
1540
1541 if (prev_level < new_level
1542 && bidi_it->type == WEAK_BN
1543 && bidi_it->ignore_bn_limit == -1 /* only if not already known */
1544 && bidi_it->charpos < eob /* not already at EOB */
1545 && bidi_explicit_dir_char (bidi_char_at_pos (bidi_it->bytepos
1546 + bidi_it->ch_len, s,
1547 bidi_it->string.unibyte)))
1548 {
1549 /* Avoid pushing and popping embedding levels if the level run
1550 is empty, as this breaks level runs where it shouldn't.
1551 UAX#9 removes all the explicit embedding and override codes,
1552 so empty embeddings disappear without a trace. We need to
1553 behave as if we did the same. */
1554 struct bidi_it saved_it;
1555 int level = prev_level;
1556
1557 bidi_copy_it (&saved_it, bidi_it);
1558
1559 while (bidi_explicit_dir_char (bidi_char_at_pos (bidi_it->bytepos
1560 + bidi_it->ch_len, s,
1561 bidi_it->string.unibyte)))
1562 {
1563 /* This advances to the next character, skipping any
1564 characters covered by display strings. */
1565 level = bidi_resolve_explicit_1 (bidi_it);
1566 /* If string.lstring was relocated inside bidi_resolve_explicit_1,
1567 a pointer to its data is no longer valid. */
1568 if (STRINGP (bidi_it->string.lstring))
1569 s = SDATA (bidi_it->string.lstring);
1570 }
1571
1572 if (bidi_it->nchars <= 0)
1573 abort ();
1574 if (level == prev_level) /* empty embedding */
1575 saved_it.ignore_bn_limit = bidi_it->charpos + bidi_it->nchars;
1576 else /* this embedding is non-empty */
1577 saved_it.ignore_bn_limit = -2;
1578
1579 bidi_copy_it (bidi_it, &saved_it);
1580 if (bidi_it->ignore_bn_limit > -1)
1581 {
1582 /* We pushed a level, but we shouldn't have. Undo that. */
1583 if (!bidi_it->invalid_rl_levels)
1584 {
1585 new_level = bidi_pop_embedding_level (bidi_it);
1586 bidi_it->invalid_rl_levels = -1;
1587 if (bidi_it->invalid_levels)
1588 bidi_it->invalid_levels--;
1589 }
1590 if (!bidi_it->invalid_levels)
1591 new_level = bidi_pop_embedding_level (bidi_it);
1592 else
1593 {
1594 bidi_it->invalid_levels--;
1595 bidi_it->invalid_rl_levels--;
1596 }
1597 }
1598 }
1599
1600 if (bidi_it->type == NEUTRAL_B) /* X8 */
1601 {
1602 bidi_set_paragraph_end (bidi_it);
1603 /* This is needed by bidi_resolve_weak below, and in L1. */
1604 bidi_it->type_after_w1 = bidi_it->type;
1605 bidi_check_type (bidi_it->type_after_w1);
1606 }
1607
1608 return new_level;
1609 }
1610
1611 /* Advance in the buffer/string, resolve weak types and return the
1612 type of the next character after weak type resolution. */
1613 static bidi_type_t
1614 bidi_resolve_weak (struct bidi_it *bidi_it)
1615 {
1616 bidi_type_t type;
1617 bidi_dir_t override;
1618 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1619 int new_level = bidi_resolve_explicit (bidi_it);
1620 int next_char;
1621 bidi_type_t type_of_next;
1622 struct bidi_it saved_it;
1623 ptrdiff_t eob
1624 = ((STRINGP (bidi_it->string.lstring) || bidi_it->string.s)
1625 ? bidi_it->string.schars : ZV);
1626
1627 type = bidi_it->type;
1628 override = bidi_it->level_stack[bidi_it->stack_idx].override;
1629
1630 if (type == UNKNOWN_BT
1631 || type == LRE
1632 || type == LRO
1633 || type == RLE
1634 || type == RLO
1635 || type == PDF)
1636 abort ();
1637
1638 if (new_level != prev_level
1639 || bidi_it->type == NEUTRAL_B)
1640 {
1641 /* We've got a new embedding level run, compute the directional
1642 type of sor and initialize per-run variables (UAX#9, clause
1643 X10). */
1644 bidi_set_sor_type (bidi_it, prev_level, new_level);
1645 }
1646 else if (type == NEUTRAL_S || type == NEUTRAL_WS
1647 || type == WEAK_BN || type == STRONG_AL)
1648 bidi_it->type_after_w1 = type; /* needed in L1 */
1649 bidi_check_type (bidi_it->type_after_w1);
1650
1651 /* Level and directional override status are already recorded in
1652 bidi_it, and do not need any change; see X6. */
1653 if (override == R2L) /* X6 */
1654 type = STRONG_R;
1655 else if (override == L2R)
1656 type = STRONG_L;
1657 else
1658 {
1659 if (type == WEAK_NSM) /* W1 */
1660 {
1661 /* Note that we don't need to consider the case where the
1662 prev character has its type overridden by an RLO or LRO,
1663 because then either the type of this NSM would have been
1664 also overridden, or the previous character is outside the
1665 current level run, and thus not relevant to this NSM.
1666 This is why NSM gets the type_after_w1 of the previous
1667 character. */
1668 if (bidi_it->prev.type_after_w1 != UNKNOWN_BT
1669 /* if type_after_w1 is NEUTRAL_B, this NSM is at sor */
1670 && bidi_it->prev.type_after_w1 != NEUTRAL_B)
1671 type = bidi_it->prev.type_after_w1;
1672 else if (bidi_it->sor == R2L)
1673 type = STRONG_R;
1674 else if (bidi_it->sor == L2R)
1675 type = STRONG_L;
1676 else /* shouldn't happen! */
1677 abort ();
1678 }
1679 if (type == WEAK_EN /* W2 */
1680 && bidi_it->last_strong.type_after_w1 == STRONG_AL)
1681 type = WEAK_AN;
1682 else if (type == STRONG_AL) /* W3 */
1683 type = STRONG_R;
1684 else if ((type == WEAK_ES /* W4 */
1685 && bidi_it->prev.type_after_w1 == WEAK_EN
1686 && bidi_it->prev.orig_type == WEAK_EN)
1687 || (type == WEAK_CS
1688 && ((bidi_it->prev.type_after_w1 == WEAK_EN
1689 && bidi_it->prev.orig_type == WEAK_EN)
1690 || bidi_it->prev.type_after_w1 == WEAK_AN)))
1691 {
1692 const unsigned char *s
1693 = (STRINGP (bidi_it->string.lstring)
1694 ? SDATA (bidi_it->string.lstring)
1695 : bidi_it->string.s);
1696
1697 next_char = (bidi_it->charpos + bidi_it->nchars >= eob
1698 ? BIDI_EOB
1699 : bidi_char_at_pos (bidi_it->bytepos + bidi_it->ch_len,
1700 s, bidi_it->string.unibyte));
1701 type_of_next = bidi_get_type (next_char, override);
1702
1703 if (type_of_next == WEAK_BN
1704 || bidi_explicit_dir_char (next_char))
1705 {
1706 bidi_copy_it (&saved_it, bidi_it);
1707 while (bidi_resolve_explicit (bidi_it) == new_level
1708 && bidi_it->type == WEAK_BN)
1709 ;
1710 type_of_next = bidi_it->type;
1711 bidi_copy_it (bidi_it, &saved_it);
1712 }
1713
1714 /* If the next character is EN, but the last strong-type
1715 character is AL, that next EN will be changed to AN when
1716 we process it in W2 above. So in that case, this ES
1717 should not be changed into EN. */
1718 if (type == WEAK_ES
1719 && type_of_next == WEAK_EN
1720 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1721 type = WEAK_EN;
1722 else if (type == WEAK_CS)
1723 {
1724 if (bidi_it->prev.type_after_w1 == WEAK_AN
1725 && (type_of_next == WEAK_AN
1726 /* If the next character is EN, but the last
1727 strong-type character is AL, EN will be later
1728 changed to AN when we process it in W2 above.
1729 So in that case, this ES should not be
1730 changed into EN. */
1731 || (type_of_next == WEAK_EN
1732 && bidi_it->last_strong.type_after_w1 == STRONG_AL)))
1733 type = WEAK_AN;
1734 else if (bidi_it->prev.type_after_w1 == WEAK_EN
1735 && type_of_next == WEAK_EN
1736 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1737 type = WEAK_EN;
1738 }
1739 }
1740 else if (type == WEAK_ET /* W5: ET with EN before or after it */
1741 || type == WEAK_BN) /* W5/Retaining */
1742 {
1743 if (bidi_it->prev.type_after_w1 == WEAK_EN) /* ET/BN w/EN before it */
1744 type = WEAK_EN;
1745 else if (bidi_it->next_en_pos > bidi_it->charpos
1746 && bidi_it->next_en_type != WEAK_BN)
1747 {
1748 if (bidi_it->next_en_type == WEAK_EN) /* ET/BN with EN after it */
1749 type = WEAK_EN;
1750 }
1751 else if (bidi_it->next_en_pos >=0)
1752 {
1753 ptrdiff_t en_pos = bidi_it->charpos + bidi_it->nchars;
1754 const unsigned char *s = (STRINGP (bidi_it->string.lstring)
1755 ? SDATA (bidi_it->string.lstring)
1756 : bidi_it->string.s);
1757
1758 if (bidi_it->nchars <= 0)
1759 abort ();
1760 next_char
1761 = (bidi_it->charpos + bidi_it->nchars >= eob
1762 ? BIDI_EOB
1763 : bidi_char_at_pos (bidi_it->bytepos + bidi_it->ch_len, s,
1764 bidi_it->string.unibyte));
1765 type_of_next = bidi_get_type (next_char, override);
1766
1767 if (type_of_next == WEAK_ET
1768 || type_of_next == WEAK_BN
1769 || bidi_explicit_dir_char (next_char))
1770 {
1771 bidi_copy_it (&saved_it, bidi_it);
1772 while (bidi_resolve_explicit (bidi_it) == new_level
1773 && (bidi_it->type == WEAK_BN
1774 || bidi_it->type == WEAK_ET))
1775 ;
1776 type_of_next = bidi_it->type;
1777 en_pos = bidi_it->charpos;
1778 bidi_copy_it (bidi_it, &saved_it);
1779 }
1780 /* Remember this position, to speed up processing of the
1781 next ETs. */
1782 bidi_it->next_en_pos = en_pos;
1783 if (type_of_next == WEAK_EN)
1784 {
1785 /* If the last strong character is AL, the EN we've
1786 found will become AN when we get to it (W2). */
1787 if (bidi_it->last_strong.type_after_w1 == STRONG_AL)
1788 type_of_next = WEAK_AN;
1789 else if (type == WEAK_BN)
1790 type = NEUTRAL_ON; /* W6/Retaining */
1791 else
1792 type = WEAK_EN;
1793 }
1794 else if (type_of_next == NEUTRAL_B)
1795 /* Record the fact that there are no more ENs from
1796 here to the end of paragraph, to avoid entering the
1797 loop above ever again in this paragraph. */
1798 bidi_it->next_en_pos = -1;
1799 /* Record the type of the character where we ended our search. */
1800 bidi_it->next_en_type = type_of_next;
1801 }
1802 }
1803 }
1804
1805 if (type == WEAK_ES || type == WEAK_ET || type == WEAK_CS /* W6 */
1806 || (type == WEAK_BN
1807 && (bidi_it->prev.type_after_w1 == WEAK_CS /* W6/Retaining */
1808 || bidi_it->prev.type_after_w1 == WEAK_ES
1809 || bidi_it->prev.type_after_w1 == WEAK_ET)))
1810 type = NEUTRAL_ON;
1811
1812 /* Store the type we've got so far, before we clobber it with strong
1813 types in W7 and while resolving neutral types. But leave alone
1814 the original types that were recorded above, because we will need
1815 them for the L1 clause. */
1816 if (bidi_it->type_after_w1 == UNKNOWN_BT)
1817 bidi_it->type_after_w1 = type;
1818 bidi_check_type (bidi_it->type_after_w1);
1819
1820 if (type == WEAK_EN) /* W7 */
1821 {
1822 if ((bidi_it->last_strong.type_after_w1 == STRONG_L)
1823 || (bidi_it->last_strong.type == UNKNOWN_BT && bidi_it->sor == L2R))
1824 type = STRONG_L;
1825 }
1826
1827 bidi_it->type = type;
1828 bidi_check_type (bidi_it->type);
1829 return type;
1830 }
1831
1832 /* Resolve the type of a neutral character according to the type of
1833 surrounding strong text and the current embedding level. */
1834 static inline bidi_type_t
1835 bidi_resolve_neutral_1 (bidi_type_t prev_type, bidi_type_t next_type, int lev)
1836 {
1837 /* N1: European and Arabic numbers are treated as though they were R. */
1838 if (next_type == WEAK_EN || next_type == WEAK_AN)
1839 next_type = STRONG_R;
1840 if (prev_type == WEAK_EN || prev_type == WEAK_AN)
1841 prev_type = STRONG_R;
1842
1843 if (next_type == prev_type) /* N1 */
1844 return next_type;
1845 else if ((lev & 1) == 0) /* N2 */
1846 return STRONG_L;
1847 else
1848 return STRONG_R;
1849 }
1850
1851 static bidi_type_t
1852 bidi_resolve_neutral (struct bidi_it *bidi_it)
1853 {
1854 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1855 bidi_type_t type = bidi_resolve_weak (bidi_it);
1856 int current_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1857
1858 if (!(type == STRONG_R
1859 || type == STRONG_L
1860 || type == WEAK_BN
1861 || type == WEAK_EN
1862 || type == WEAK_AN
1863 || type == NEUTRAL_B
1864 || type == NEUTRAL_S
1865 || type == NEUTRAL_WS
1866 || type == NEUTRAL_ON))
1867 abort ();
1868
1869 if ((type != NEUTRAL_B /* Don't risk entering the long loop below if
1870 we are already at paragraph end. */
1871 && bidi_get_category (type) == NEUTRAL)
1872 || (type == WEAK_BN && prev_level == current_level))
1873 {
1874 if (bidi_it->next_for_neutral.type != UNKNOWN_BT)
1875 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1876 bidi_it->next_for_neutral.type,
1877 current_level);
1878 /* The next two "else if" clauses are shortcuts for the
1879 important special case when we have a long sequence of
1880 neutral or WEAK_BN characters, such as whitespace or nulls or
1881 other control characters, on the base embedding level of the
1882 paragraph, and that sequence goes all the way to the end of
1883 the paragraph and follows a character whose resolved
1884 directionality is identical to the base embedding level.
1885 (This is what happens in a buffer with plain L2R text that
1886 happens to include long sequences of control characters.) By
1887 virtue of N1, the result of examining this long sequence will
1888 always be either STRONG_L or STRONG_R, depending on the base
1889 embedding level. So we use this fact directly instead of
1890 entering the expensive loop in the "else" clause. */
1891 else if (current_level == 0
1892 && bidi_it->prev_for_neutral.type == STRONG_L
1893 && !bidi_explicit_dir_char (bidi_it->ch))
1894 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1895 STRONG_L, current_level);
1896 else if (/* current level is 1 */
1897 current_level == 1
1898 /* base embedding level is also 1 */
1899 && bidi_it->level_stack[0].level == 1
1900 /* previous character is one of those considered R for
1901 the purposes of W5 */
1902 && (bidi_it->prev_for_neutral.type == STRONG_R
1903 || bidi_it->prev_for_neutral.type == WEAK_EN
1904 || bidi_it->prev_for_neutral.type == WEAK_AN)
1905 && !bidi_explicit_dir_char (bidi_it->ch))
1906 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1907 STRONG_R, current_level);
1908 else
1909 {
1910 /* Arrrgh!! The UAX#9 algorithm is too deeply entrenched in
1911 the assumption of batch-style processing; see clauses W4,
1912 W5, and especially N1, which require to look far forward
1913 (as well as back) in the buffer/string. May the fleas of
1914 a thousand camels infest the armpits of those who design
1915 supposedly general-purpose algorithms by looking at their
1916 own implementations, and fail to consider other possible
1917 implementations! */
1918 struct bidi_it saved_it;
1919 bidi_type_t next_type;
1920
1921 if (bidi_it->scan_dir == -1)
1922 abort ();
1923
1924 bidi_copy_it (&saved_it, bidi_it);
1925 /* Scan the text forward until we find the first non-neutral
1926 character, and then use that to resolve the neutral we
1927 are dealing with now. We also cache the scanned iterator
1928 states, to salvage some of the effort later. */
1929 bidi_cache_iterator_state (bidi_it, 0);
1930 do {
1931 /* Record the info about the previous character, so that
1932 it will be cached below with this state. */
1933 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
1934 && bidi_it->type != WEAK_BN)
1935 bidi_remember_char (&bidi_it->prev, bidi_it);
1936 type = bidi_resolve_weak (bidi_it);
1937 /* Paragraph separators have their levels fully resolved
1938 at this point, so cache them as resolved. */
1939 bidi_cache_iterator_state (bidi_it, type == NEUTRAL_B);
1940 /* FIXME: implement L1 here, by testing for a newline and
1941 resetting the level for any sequence of whitespace
1942 characters adjacent to it. */
1943 } while (!(type == NEUTRAL_B
1944 || (type != WEAK_BN
1945 && bidi_get_category (type) != NEUTRAL)
1946 /* This is all per level run, so stop when we
1947 reach the end of this level run. */
1948 || (bidi_it->level_stack[bidi_it->stack_idx].level
1949 != current_level)));
1950
1951 bidi_remember_char (&saved_it.next_for_neutral, bidi_it);
1952
1953 switch (type)
1954 {
1955 case STRONG_L:
1956 case STRONG_R:
1957 case STRONG_AL:
1958 /* Actually, STRONG_AL cannot happen here, because
1959 bidi_resolve_weak converts it to STRONG_R, per W3. */
1960 eassert (type != STRONG_AL);
1961 next_type = type;
1962 break;
1963 case WEAK_EN:
1964 case WEAK_AN:
1965 /* N1: ``European and Arabic numbers are treated as
1966 though they were R.'' */
1967 next_type = STRONG_R;
1968 break;
1969 case WEAK_BN:
1970 if (!bidi_explicit_dir_char (bidi_it->ch))
1971 abort (); /* can't happen: BNs are skipped */
1972 /* FALLTHROUGH */
1973 case NEUTRAL_B:
1974 /* Marched all the way to the end of this level run.
1975 We need to use the eor type, whose information is
1976 stored by bidi_set_sor_type in the prev_for_neutral
1977 member. */
1978 if (saved_it.type != WEAK_BN
1979 || bidi_get_category (bidi_it->prev.type_after_w1) == NEUTRAL)
1980 next_type = bidi_it->prev_for_neutral.type;
1981 else
1982 {
1983 /* This is a BN which does not adjoin neutrals.
1984 Leave its type alone. */
1985 bidi_copy_it (bidi_it, &saved_it);
1986 return bidi_it->type;
1987 }
1988 break;
1989 default:
1990 abort ();
1991 }
1992 type = bidi_resolve_neutral_1 (saved_it.prev_for_neutral.type,
1993 next_type, current_level);
1994 saved_it.next_for_neutral.type = next_type;
1995 saved_it.type = type;
1996 bidi_check_type (next_type);
1997 bidi_check_type (type);
1998 bidi_copy_it (bidi_it, &saved_it);
1999 }
2000 }
2001 return type;
2002 }
2003
2004 /* Given an iterator state in BIDI_IT, advance one character position
2005 in the buffer/string to the next character (in the logical order),
2006 resolve the bidi type of that next character, and return that
2007 type. */
2008 static bidi_type_t
2009 bidi_type_of_next_char (struct bidi_it *bidi_it)
2010 {
2011 bidi_type_t type;
2012
2013 /* This should always be called during a forward scan. */
2014 if (bidi_it->scan_dir != 1)
2015 abort ();
2016
2017 /* Reset the limit until which to ignore BNs if we step out of the
2018 area where we found only empty levels. */
2019 if ((bidi_it->ignore_bn_limit > -1
2020 && bidi_it->ignore_bn_limit <= bidi_it->charpos)
2021 || (bidi_it->ignore_bn_limit == -2
2022 && !bidi_explicit_dir_char (bidi_it->ch)))
2023 bidi_it->ignore_bn_limit = -1;
2024
2025 type = bidi_resolve_neutral (bidi_it);
2026
2027 return type;
2028 }
2029
2030 /* Given an iterator state BIDI_IT, advance one character position in
2031 the buffer/string to the next character (in the current scan
2032 direction), resolve the embedding and implicit levels of that next
2033 character, and return the resulting level. */
2034 static int
2035 bidi_level_of_next_char (struct bidi_it *bidi_it)
2036 {
2037 bidi_type_t type;
2038 int level, prev_level = -1;
2039 struct bidi_saved_info next_for_neutral;
2040 ptrdiff_t next_char_pos = -2;
2041
2042 if (bidi_it->scan_dir == 1)
2043 {
2044 ptrdiff_t eob
2045 = ((bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2046 ? bidi_it->string.schars : ZV);
2047
2048 /* There's no sense in trying to advance if we hit end of text. */
2049 if (bidi_it->charpos >= eob)
2050 return bidi_it->resolved_level;
2051
2052 /* Record the info about the previous character. */
2053 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
2054 && bidi_it->type != WEAK_BN)
2055 bidi_remember_char (&bidi_it->prev, bidi_it);
2056 if (bidi_it->type_after_w1 == STRONG_R
2057 || bidi_it->type_after_w1 == STRONG_L
2058 || bidi_it->type_after_w1 == STRONG_AL)
2059 bidi_remember_char (&bidi_it->last_strong, bidi_it);
2060 /* FIXME: it sounds like we don't need both prev and
2061 prev_for_neutral members, but I'm leaving them both for now. */
2062 if (bidi_it->type == STRONG_R || bidi_it->type == STRONG_L
2063 || bidi_it->type == WEAK_EN || bidi_it->type == WEAK_AN)
2064 bidi_remember_char (&bidi_it->prev_for_neutral, bidi_it);
2065
2066 /* If we overstepped the characters used for resolving neutrals
2067 and whitespace, invalidate their info in the iterator. */
2068 if (bidi_it->charpos >= bidi_it->next_for_neutral.charpos)
2069 bidi_it->next_for_neutral.type = UNKNOWN_BT;
2070 if (bidi_it->next_en_pos >= 0
2071 && bidi_it->charpos >= bidi_it->next_en_pos)
2072 {
2073 bidi_it->next_en_pos = 0;
2074 bidi_it->next_en_type = UNKNOWN_BT;
2075 }
2076 if (bidi_it->next_for_ws.type != UNKNOWN_BT
2077 && bidi_it->charpos >= bidi_it->next_for_ws.charpos)
2078 bidi_it->next_for_ws.type = UNKNOWN_BT;
2079
2080 /* This must be taken before we fill the iterator with the info
2081 about the next char. If we scan backwards, the iterator
2082 state must be already cached, so there's no need to know the
2083 embedding level of the previous character, since we will be
2084 returning to our caller shortly. */
2085 prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
2086 }
2087 next_for_neutral = bidi_it->next_for_neutral;
2088
2089 /* Perhaps the character we want is already cached. If it is, the
2090 call to bidi_cache_find below will return a type other than
2091 UNKNOWN_BT. */
2092 if (bidi_cache_idx > bidi_cache_start && !bidi_it->first_elt)
2093 {
2094 int bob = ((bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2095 ? 0 : 1);
2096 if (bidi_it->scan_dir > 0)
2097 {
2098 if (bidi_it->nchars <= 0)
2099 abort ();
2100 next_char_pos = bidi_it->charpos + bidi_it->nchars;
2101 }
2102 else if (bidi_it->charpos >= bob)
2103 /* Implementation note: we allow next_char_pos to be as low as
2104 0 for buffers or -1 for strings, and that is okay because
2105 that's the "position" of the sentinel iterator state we
2106 cached at the beginning of the iteration. */
2107 next_char_pos = bidi_it->charpos - 1;
2108 if (next_char_pos >= bob - 1)
2109 type = bidi_cache_find (next_char_pos, -1, bidi_it);
2110 else
2111 type = UNKNOWN_BT;
2112 }
2113 else
2114 type = UNKNOWN_BT;
2115 if (type != UNKNOWN_BT)
2116 {
2117 /* Don't lose the information for resolving neutrals! The
2118 cached states could have been cached before their
2119 next_for_neutral member was computed. If we are on our way
2120 forward, we can simply take the info from the previous
2121 state. */
2122 if (bidi_it->scan_dir == 1
2123 && bidi_it->next_for_neutral.type == UNKNOWN_BT)
2124 bidi_it->next_for_neutral = next_for_neutral;
2125
2126 /* If resolved_level is -1, it means this state was cached
2127 before it was completely resolved, so we cannot return
2128 it. */
2129 if (bidi_it->resolved_level != -1)
2130 return bidi_it->resolved_level;
2131 }
2132 if (bidi_it->scan_dir == -1)
2133 /* If we are going backwards, the iterator state is already cached
2134 from previous scans, and should be fully resolved. */
2135 abort ();
2136
2137 if (type == UNKNOWN_BT)
2138 type = bidi_type_of_next_char (bidi_it);
2139
2140 if (type == NEUTRAL_B)
2141 return bidi_it->resolved_level;
2142
2143 level = bidi_it->level_stack[bidi_it->stack_idx].level;
2144 if ((bidi_get_category (type) == NEUTRAL /* && type != NEUTRAL_B */)
2145 || (type == WEAK_BN && prev_level == level))
2146 {
2147 if (bidi_it->next_for_neutral.type == UNKNOWN_BT)
2148 abort ();
2149
2150 /* If the cached state shows a neutral character, it was not
2151 resolved by bidi_resolve_neutral, so do it now. */
2152 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
2153 bidi_it->next_for_neutral.type,
2154 level);
2155 }
2156
2157 if (!(type == STRONG_R
2158 || type == STRONG_L
2159 || type == WEAK_BN
2160 || type == WEAK_EN
2161 || type == WEAK_AN))
2162 abort ();
2163 bidi_it->type = type;
2164 bidi_check_type (bidi_it->type);
2165
2166 /* For L1 below, we need to know, for each WS character, whether
2167 it belongs to a sequence of WS characters preceding a newline
2168 or a TAB or a paragraph separator. */
2169 if (bidi_it->orig_type == NEUTRAL_WS
2170 && bidi_it->next_for_ws.type == UNKNOWN_BT)
2171 {
2172 int ch;
2173 ptrdiff_t clen = bidi_it->ch_len;
2174 ptrdiff_t bpos = bidi_it->bytepos;
2175 ptrdiff_t cpos = bidi_it->charpos;
2176 ptrdiff_t disp_pos = bidi_it->disp_pos;
2177 ptrdiff_t nc = bidi_it->nchars;
2178 struct bidi_string_data bs = bidi_it->string;
2179 bidi_type_t chtype;
2180 int fwp = bidi_it->frame_window_p;
2181 int dpp = bidi_it->disp_prop;
2182
2183 if (bidi_it->nchars <= 0)
2184 abort ();
2185 do {
2186 ch = bidi_fetch_char (bpos += clen, cpos += nc, &disp_pos, &dpp, &bs,
2187 fwp, &clen, &nc);
2188 if (ch == '\n' || ch == BIDI_EOB)
2189 chtype = NEUTRAL_B;
2190 else
2191 chtype = bidi_get_type (ch, NEUTRAL_DIR);
2192 } while (chtype == NEUTRAL_WS || chtype == WEAK_BN
2193 || bidi_explicit_dir_char (ch)); /* L1/Retaining */
2194 bidi_it->next_for_ws.type = chtype;
2195 bidi_check_type (bidi_it->next_for_ws.type);
2196 bidi_it->next_for_ws.charpos = cpos;
2197 bidi_it->next_for_ws.bytepos = bpos;
2198 }
2199
2200 /* Resolve implicit levels, with a twist: PDFs get the embedding
2201 level of the embedding they terminate. See below for the
2202 reason. */
2203 if (bidi_it->orig_type == PDF
2204 /* Don't do this if this formatting code didn't change the
2205 embedding level due to invalid or empty embeddings. */
2206 && prev_level != level)
2207 {
2208 /* Don't look in UAX#9 for the reason for this: it's our own
2209 private quirk. The reason is that we want the formatting
2210 codes to be delivered so that they bracket the text of their
2211 embedding. For example, given the text
2212
2213 {RLO}teST{PDF}
2214
2215 we want it to be displayed as
2216
2217 {PDF}STet{RLO}
2218
2219 not as
2220
2221 STet{RLO}{PDF}
2222
2223 which will result because we bump up the embedding level as
2224 soon as we see the RLO and pop it as soon as we see the PDF,
2225 so RLO itself has the same embedding level as "teST", and
2226 thus would be normally delivered last, just before the PDF.
2227 The switch below fiddles with the level of PDF so that this
2228 ugly side effect does not happen.
2229
2230 (This is, of course, only important if the formatting codes
2231 are actually displayed, but Emacs does need to display them
2232 if the user wants to.) */
2233 level = prev_level;
2234 }
2235 else if (bidi_it->orig_type == NEUTRAL_B /* L1 */
2236 || bidi_it->orig_type == NEUTRAL_S
2237 || bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB
2238 || (bidi_it->orig_type == NEUTRAL_WS
2239 && (bidi_it->next_for_ws.type == NEUTRAL_B
2240 || bidi_it->next_for_ws.type == NEUTRAL_S)))
2241 level = bidi_it->level_stack[0].level;
2242 else if ((level & 1) == 0) /* I1 */
2243 {
2244 if (type == STRONG_R)
2245 level++;
2246 else if (type == WEAK_EN || type == WEAK_AN)
2247 level += 2;
2248 }
2249 else /* I2 */
2250 {
2251 if (type == STRONG_L || type == WEAK_EN || type == WEAK_AN)
2252 level++;
2253 }
2254
2255 bidi_it->resolved_level = level;
2256 return level;
2257 }
2258
2259 /* Move to the other edge of a level given by LEVEL. If END_FLAG is
2260 non-zero, we are at the end of a level, and we need to prepare to
2261 resume the scan of the lower level.
2262
2263 If this level's other edge is cached, we simply jump to it, filling
2264 the iterator structure with the iterator state on the other edge.
2265 Otherwise, we walk the buffer or string until we come back to the
2266 same level as LEVEL.
2267
2268 Note: we are not talking here about a ``level run'' in the UAX#9
2269 sense of the term, but rather about a ``level'' which includes
2270 all the levels higher than it. In other words, given the levels
2271 like this:
2272
2273 11111112222222333333334443343222222111111112223322111
2274 A B C
2275
2276 and assuming we are at point A scanning left to right, this
2277 function moves to point C, whereas the UAX#9 ``level 2 run'' ends
2278 at point B. */
2279 static void
2280 bidi_find_other_level_edge (struct bidi_it *bidi_it, int level, int end_flag)
2281 {
2282 int dir = end_flag ? -bidi_it->scan_dir : bidi_it->scan_dir;
2283 ptrdiff_t idx;
2284
2285 /* Try the cache first. */
2286 if ((idx = bidi_cache_find_level_change (level, dir, end_flag))
2287 >= bidi_cache_start)
2288 bidi_cache_fetch_state (idx, bidi_it);
2289 else
2290 {
2291 int new_level;
2292
2293 if (end_flag)
2294 abort (); /* if we are at end of level, its edges must be cached */
2295
2296 bidi_cache_iterator_state (bidi_it, 1);
2297 do {
2298 new_level = bidi_level_of_next_char (bidi_it);
2299 bidi_cache_iterator_state (bidi_it, 1);
2300 } while (new_level >= level);
2301 }
2302 }
2303
2304 void
2305 bidi_move_to_visually_next (struct bidi_it *bidi_it)
2306 {
2307 int old_level, new_level, next_level;
2308 struct bidi_it sentinel;
2309 struct gcpro gcpro1;
2310
2311 if (bidi_it->charpos < 0 || bidi_it->bytepos < 0)
2312 abort ();
2313
2314 if (bidi_it->scan_dir == 0)
2315 {
2316 bidi_it->scan_dir = 1; /* default to logical order */
2317 }
2318
2319 /* The code below can call eval, and thus cause GC. If we are
2320 iterating a Lisp string, make sure it won't be GCed. */
2321 if (STRINGP (bidi_it->string.lstring))
2322 GCPRO1 (bidi_it->string.lstring);
2323
2324 /* If we just passed a newline, initialize for the next line. */
2325 if (!bidi_it->first_elt
2326 && (bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB))
2327 bidi_line_init (bidi_it);
2328
2329 /* Prepare the sentinel iterator state, and cache it. When we bump
2330 into it, scanning backwards, we'll know that the last non-base
2331 level is exhausted. */
2332 if (bidi_cache_idx == bidi_cache_start)
2333 {
2334 bidi_copy_it (&sentinel, bidi_it);
2335 if (bidi_it->first_elt)
2336 {
2337 sentinel.charpos--; /* cached charpos needs to be monotonic */
2338 sentinel.bytepos--;
2339 sentinel.ch = '\n'; /* doesn't matter, but why not? */
2340 sentinel.ch_len = 1;
2341 sentinel.nchars = 1;
2342 }
2343 bidi_cache_iterator_state (&sentinel, 1);
2344 }
2345
2346 old_level = bidi_it->resolved_level;
2347 new_level = bidi_level_of_next_char (bidi_it);
2348
2349 /* Reordering of resolved levels (clause L2) is implemented by
2350 jumping to the other edge of the level and flipping direction of
2351 scanning the text whenever we find a level change. */
2352 if (new_level != old_level)
2353 {
2354 int ascending = new_level > old_level;
2355 int level_to_search = ascending ? old_level + 1 : old_level;
2356 int incr = ascending ? 1 : -1;
2357 int expected_next_level = old_level + incr;
2358
2359 /* Jump (or walk) to the other edge of this level. */
2360 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
2361 /* Switch scan direction and peek at the next character in the
2362 new direction. */
2363 bidi_it->scan_dir = -bidi_it->scan_dir;
2364
2365 /* The following loop handles the case where the resolved level
2366 jumps by more than one. This is typical for numbers inside a
2367 run of text with left-to-right embedding direction, but can
2368 also happen in other situations. In those cases the decision
2369 where to continue after a level change, and in what direction,
2370 is tricky. For example, given a text like below:
2371
2372 abcdefgh
2373 11336622
2374
2375 (where the numbers below the text show the resolved levels),
2376 the result of reordering according to UAX#9 should be this:
2377
2378 efdcghba
2379
2380 This is implemented by the loop below which flips direction
2381 and jumps to the other edge of the level each time it finds
2382 the new level not to be the expected one. The expected level
2383 is always one more or one less than the previous one. */
2384 next_level = bidi_peek_at_next_level (bidi_it);
2385 while (next_level != expected_next_level)
2386 {
2387 expected_next_level += incr;
2388 level_to_search += incr;
2389 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
2390 bidi_it->scan_dir = -bidi_it->scan_dir;
2391 next_level = bidi_peek_at_next_level (bidi_it);
2392 }
2393
2394 /* Finally, deliver the next character in the new direction. */
2395 next_level = bidi_level_of_next_char (bidi_it);
2396 }
2397
2398 /* Take note when we have just processed the newline that precedes
2399 the end of the paragraph. The next time we are about to be
2400 called, set_iterator_to_next will automatically reinit the
2401 paragraph direction, if needed. We do this at the newline before
2402 the paragraph separator, because the next character might not be
2403 the first character of the next paragraph, due to the bidi
2404 reordering, whereas we _must_ know the paragraph base direction
2405 _before_ we process the paragraph's text, since the base
2406 direction affects the reordering. */
2407 if (bidi_it->scan_dir == 1
2408 && (bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB))
2409 {
2410 /* The paragraph direction of the entire string, once
2411 determined, is in effect for the entire string. Setting the
2412 separator limit to the end of the string prevents
2413 bidi_paragraph_init from being called automatically on this
2414 string. */
2415 if (bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2416 bidi_it->separator_limit = bidi_it->string.schars;
2417 else if (bidi_it->bytepos < ZV_BYTE)
2418 {
2419 ptrdiff_t sep_len
2420 = bidi_at_paragraph_end (bidi_it->charpos + bidi_it->nchars,
2421 bidi_it->bytepos + bidi_it->ch_len);
2422 if (bidi_it->nchars <= 0)
2423 abort ();
2424 if (sep_len >= 0)
2425 {
2426 bidi_it->new_paragraph = 1;
2427 /* Record the buffer position of the last character of the
2428 paragraph separator. */
2429 bidi_it->separator_limit
2430 = bidi_it->charpos + bidi_it->nchars + sep_len;
2431 }
2432 }
2433 }
2434
2435 if (bidi_it->scan_dir == 1 && bidi_cache_idx > bidi_cache_start)
2436 {
2437 /* If we are at paragraph's base embedding level and beyond the
2438 last cached position, the cache's job is done and we can
2439 discard it. */
2440 if (bidi_it->resolved_level == bidi_it->level_stack[0].level
2441 && bidi_it->charpos > (bidi_cache[bidi_cache_idx - 1].charpos
2442 + bidi_cache[bidi_cache_idx - 1].nchars - 1))
2443 bidi_cache_reset ();
2444 /* But as long as we are caching during forward scan, we must
2445 cache each state, or else the cache integrity will be
2446 compromised: it assumes cached states correspond to buffer
2447 positions 1:1. */
2448 else
2449 bidi_cache_iterator_state (bidi_it, 1);
2450 }
2451
2452 if (STRINGP (bidi_it->string.lstring))
2453 UNGCPRO;
2454 }
2455
2456 /* This is meant to be called from within the debugger, whenever you
2457 wish to examine the cache contents. */
2458 void bidi_dump_cached_states (void) EXTERNALLY_VISIBLE;
2459 void
2460 bidi_dump_cached_states (void)
2461 {
2462 ptrdiff_t i;
2463 int ndigits = 1;
2464
2465 if (bidi_cache_idx == 0)
2466 {
2467 fprintf (stderr, "The cache is empty.\n");
2468 return;
2469 }
2470 fprintf (stderr, "Total of %"pD"d state%s in cache:\n",
2471 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s");
2472
2473 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10)
2474 ndigits++;
2475 fputs ("ch ", stderr);
2476 for (i = 0; i < bidi_cache_idx; i++)
2477 fprintf (stderr, "%*c", ndigits, bidi_cache[i].ch);
2478 fputs ("\n", stderr);
2479 fputs ("lvl ", stderr);
2480 for (i = 0; i < bidi_cache_idx; i++)
2481 fprintf (stderr, "%*d", ndigits, bidi_cache[i].resolved_level);
2482 fputs ("\n", stderr);
2483 fputs ("pos ", stderr);
2484 for (i = 0; i < bidi_cache_idx; i++)
2485 fprintf (stderr, "%*"pD"d", ndigits, bidi_cache[i].charpos);
2486 fputs ("\n", stderr);
2487 }