Auto-commit of generated files.
[emacs.git] / src / bidi.c
blob7d082a949979240c8e24cb663a66eee53e896b52
1 /* Low-level bidirectional buffer/string-scanning functions for GNU Emacs.
2 Copyright (C) 2000-2001, 2004-2005, 2009-2013 Free Software
3 Foundation, Inc.
5 This file is part of GNU Emacs.
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.
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.
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/>. */
20 /* Written by Eli Zaretskii <eliz@gnu.org>.
22 A sequential implementation of the Unicode Bidirectional algorithm,
23 (UBA) as per UAX#9, a part of the Unicode Standard.
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.
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.
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.
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.
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.
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". */
57 #include <config.h>
58 #include <stdio.h>
60 #include "lisp.h"
61 #include "character.h"
62 #include "buffer.h"
63 #include "dispextern.h"
64 #include "region-cache.h"
66 static bool bidi_initialized = 0;
68 static Lisp_Object bidi_type_table, bidi_mirror_table;
70 #define LRM_CHAR 0x200E
71 #define RLM_CHAR 0x200F
72 #define BIDI_EOB -1
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;
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 clearing it will take them into
86 account. */
87 extern bool bidi_ignore_explicit_marks_for_paragraph_level EXTERNALLY_VISIBLE;
88 bool bidi_ignore_explicit_marks_for_paragraph_level = 1;
90 static Lisp_Object paragraph_start_re, paragraph_separate_re;
91 static Lisp_Object Qparagraph_start, Qparagraph_separate;
94 /***********************************************************************
95 Utilities
96 ***********************************************************************/
98 /* Return the bidi type of a character CH, subject to the current
99 directional OVERRIDE. */
100 static bidi_type_t
101 bidi_get_type (int ch, bidi_dir_t override)
103 bidi_type_t default_type;
105 if (ch == BIDI_EOB)
106 return NEUTRAL_B;
107 if (ch < 0 || ch > MAX_CHAR)
108 emacs_abort ();
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 emacs_abort ();
118 if (override == NEUTRAL_DIR)
119 return default_type;
121 switch (default_type)
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)
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 emacs_abort (); /* can't happen: handled above */
149 static void
150 bidi_check_type (bidi_type_t type)
152 eassert (UNKNOWN_BT <= type && type <= NEUTRAL_ON);
155 /* Given a bidi TYPE of a character, return its category. */
156 static bidi_category_t
157 bidi_get_category (bidi_type_t type)
159 switch (type)
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 emacs_abort ();
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. */
195 bidi_mirror_char (int c)
197 Lisp_Object val;
199 if (c == BIDI_EOB)
200 return c;
201 if (c < 0 || c > MAX_CHAR)
202 emacs_abort ();
204 val = CHAR_TABLE_REF (bidi_mirror_table, c);
205 if (INTEGERP (val))
207 int v;
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)));
213 v = XINT (val);
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 emacs_abort ();
220 return v;
223 return c;
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 void
231 bidi_set_sor_type (struct bidi_it *bidi_it, int level_before, int level_after)
233 int higher_level = (level_before > level_after ? level_before : level_after);
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;
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 */
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 void
262 bidi_push_embedding_level (struct bidi_it *bidi_it,
263 int level, bidi_dir_t override)
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;
271 /* Pop the embedding level and directional override status from the
272 stack, and return the new level. */
273 static int
274 bidi_pop_embedding_level (struct bidi_it *bidi_it)
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;
282 /* Record in SAVED_INFO the information about the current character. */
283 static void
284 bidi_remember_char (struct bidi_saved_info *saved_info,
285 struct bidi_it *bidi_it)
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);
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 void
300 bidi_copy_it (struct bidi_it *to, struct bidi_it *from)
302 /* Copy everything from the start through the active part of
303 the level stack. */
304 memcpy (to, from,
305 (offsetof (struct bidi_it, level_stack[1])
306 + from->stack_idx * sizeof from->level_stack[0]));
310 /***********************************************************************
311 Caching the bidi iterator states
312 ***********************************************************************/
314 #define BIDI_CACHE_CHUNK 200
315 static struct bidi_it *bidi_cache;
316 static ptrdiff_t bidi_cache_size = 0;
317 enum { elsz = sizeof (struct bidi_it) };
318 static ptrdiff_t bidi_cache_idx; /* next unused cache slot */
319 static ptrdiff_t bidi_cache_last_idx; /* slot of last cache hit */
320 static ptrdiff_t bidi_cache_start = 0; /* start of cache for this
321 "stack" level */
323 /* 5-slot stack for saving the start of the previous level of the
324 cache. xdisp.c maintains a 5-slot stack for its iterator state,
325 and we need the same size of our stack. */
326 static ptrdiff_t bidi_cache_start_stack[IT_STACK_SIZE];
327 static int bidi_cache_sp;
329 /* Size of header used by bidi_shelve_cache. */
330 enum
332 bidi_shelve_header_size
333 = (sizeof (bidi_cache_idx) + sizeof (bidi_cache_start_stack)
334 + sizeof (bidi_cache_sp) + sizeof (bidi_cache_start)
335 + sizeof (bidi_cache_last_idx))
338 /* Reset the cache state to the empty state. We only reset the part
339 of the cache relevant to iteration of the current object. Previous
340 objects, which are pushed on the display iterator's stack, are left
341 intact. This is called when the cached information is no more
342 useful for the current iteration, e.g. when we were reseated to a
343 new position on the same object. */
344 static void
345 bidi_cache_reset (void)
347 bidi_cache_idx = bidi_cache_start;
348 bidi_cache_last_idx = -1;
351 /* Shrink the cache to its minimal size. Called when we init the bidi
352 iterator for reordering a buffer or a string that does not come
353 from display properties, because that means all the previously
354 cached info is of no further use. */
355 static void
356 bidi_cache_shrink (void)
358 if (bidi_cache_size > BIDI_CACHE_CHUNK)
360 bidi_cache = xrealloc (bidi_cache, BIDI_CACHE_CHUNK * elsz);
361 bidi_cache_size = BIDI_CACHE_CHUNK;
363 bidi_cache_reset ();
366 static void
367 bidi_cache_fetch_state (ptrdiff_t idx, struct bidi_it *bidi_it)
369 int current_scan_dir = bidi_it->scan_dir;
371 if (idx < bidi_cache_start || idx >= bidi_cache_idx)
372 emacs_abort ();
374 bidi_copy_it (bidi_it, &bidi_cache[idx]);
375 bidi_it->scan_dir = current_scan_dir;
376 bidi_cache_last_idx = idx;
379 /* Find a cached state with a given CHARPOS and resolved embedding
380 level less or equal to LEVEL. if LEVEL is -1, disregard the
381 resolved levels in cached states. DIR, if non-zero, means search
382 in that direction from the last cache hit. */
383 static ptrdiff_t
384 bidi_cache_search (ptrdiff_t charpos, int level, int dir)
386 ptrdiff_t i, i_start;
388 if (bidi_cache_idx > bidi_cache_start)
390 if (bidi_cache_last_idx == -1)
391 bidi_cache_last_idx = bidi_cache_idx - 1;
392 if (charpos < bidi_cache[bidi_cache_last_idx].charpos)
394 dir = -1;
395 i_start = bidi_cache_last_idx - 1;
397 else if (charpos > (bidi_cache[bidi_cache_last_idx].charpos
398 + bidi_cache[bidi_cache_last_idx].nchars - 1))
400 dir = 1;
401 i_start = bidi_cache_last_idx + 1;
403 else if (dir)
404 i_start = bidi_cache_last_idx;
405 else
407 dir = -1;
408 i_start = bidi_cache_idx - 1;
411 if (dir < 0)
413 /* Linear search for now; FIXME! */
414 for (i = i_start; i >= bidi_cache_start; i--)
415 if (bidi_cache[i].charpos <= charpos
416 && charpos < bidi_cache[i].charpos + bidi_cache[i].nchars
417 && (level == -1 || bidi_cache[i].resolved_level <= level))
418 return i;
420 else
422 for (i = i_start; i < bidi_cache_idx; i++)
423 if (bidi_cache[i].charpos <= charpos
424 && charpos < bidi_cache[i].charpos + bidi_cache[i].nchars
425 && (level == -1 || bidi_cache[i].resolved_level <= level))
426 return i;
430 return -1;
433 /* Find a cached state where the resolved level changes to a value
434 that is lower than LEVEL, and return its cache slot index. DIR is
435 the direction to search, starting with the last used cache slot.
436 If DIR is zero, we search backwards from the last occupied cache
437 slot. BEFORE means return the index of the slot that
438 is ``before'' the level change in the search direction. That is,
439 given the cached levels like this:
441 1122333442211
442 AB C
444 and assuming we are at the position cached at the slot marked with
445 C, searching backwards (DIR = -1) for LEVEL = 2 will return the
446 index of slot B or A, depending whether BEFORE is, respectively,
447 true or false. */
448 static ptrdiff_t
449 bidi_cache_find_level_change (int level, int dir, bool before)
451 if (bidi_cache_idx)
453 ptrdiff_t i = dir ? bidi_cache_last_idx : bidi_cache_idx - 1;
454 int incr = before ? 1 : 0;
456 eassert (!dir || bidi_cache_last_idx >= 0);
458 if (!dir)
459 dir = -1;
460 else if (!incr)
461 i += dir;
463 if (dir < 0)
465 while (i >= bidi_cache_start + incr)
467 if (bidi_cache[i - incr].resolved_level >= 0
468 && bidi_cache[i - incr].resolved_level < level)
469 return i;
470 i--;
473 else
475 while (i < bidi_cache_idx - incr)
477 if (bidi_cache[i + incr].resolved_level >= 0
478 && bidi_cache[i + incr].resolved_level < level)
479 return i;
480 i++;
485 return -1;
488 static void
489 bidi_cache_ensure_space (ptrdiff_t idx)
491 /* Enlarge the cache as needed. */
492 if (idx >= bidi_cache_size)
494 /* The bidi cache cannot be larger than the largest Lisp string
495 or buffer. */
496 ptrdiff_t string_or_buffer_bound
497 = max (BUF_BYTES_MAX, STRING_BYTES_BOUND);
499 /* Also, it cannot be larger than what C can represent. */
500 ptrdiff_t c_bound
501 = (min (PTRDIFF_MAX, SIZE_MAX) - bidi_shelve_header_size) / elsz;
503 bidi_cache
504 = xpalloc (bidi_cache, &bidi_cache_size,
505 max (BIDI_CACHE_CHUNK, idx - bidi_cache_size + 1),
506 min (string_or_buffer_bound, c_bound), elsz);
510 static void
511 bidi_cache_iterator_state (struct bidi_it *bidi_it, bool resolved)
513 ptrdiff_t idx;
515 /* We should never cache on backward scans. */
516 if (bidi_it->scan_dir == -1)
517 emacs_abort ();
518 idx = bidi_cache_search (bidi_it->charpos, -1, 1);
520 if (idx < 0)
522 idx = bidi_cache_idx;
523 bidi_cache_ensure_space (idx);
524 /* Character positions should correspond to cache positions 1:1.
525 If we are outside the range of cached positions, the cache is
526 useless and must be reset. */
527 if (idx > bidi_cache_start &&
528 (bidi_it->charpos > (bidi_cache[idx - 1].charpos
529 + bidi_cache[idx - 1].nchars)
530 || bidi_it->charpos < bidi_cache[bidi_cache_start].charpos))
532 bidi_cache_reset ();
533 idx = bidi_cache_start;
535 if (bidi_it->nchars <= 0)
536 emacs_abort ();
537 bidi_copy_it (&bidi_cache[idx], bidi_it);
538 if (!resolved)
539 bidi_cache[idx].resolved_level = -1;
541 else
543 /* Copy only the members which could have changed, to avoid
544 costly copying of the entire struct. */
545 bidi_cache[idx].type = bidi_it->type;
546 bidi_check_type (bidi_it->type);
547 bidi_cache[idx].type_after_w1 = bidi_it->type_after_w1;
548 bidi_check_type (bidi_it->type_after_w1);
549 if (resolved)
550 bidi_cache[idx].resolved_level = bidi_it->resolved_level;
551 else
552 bidi_cache[idx].resolved_level = -1;
553 bidi_cache[idx].invalid_levels = bidi_it->invalid_levels;
554 bidi_cache[idx].invalid_rl_levels = bidi_it->invalid_rl_levels;
555 bidi_cache[idx].next_for_neutral = bidi_it->next_for_neutral;
556 bidi_cache[idx].next_for_ws = bidi_it->next_for_ws;
557 bidi_cache[idx].ignore_bn_limit = bidi_it->ignore_bn_limit;
558 bidi_cache[idx].disp_pos = bidi_it->disp_pos;
559 bidi_cache[idx].disp_prop = bidi_it->disp_prop;
562 bidi_cache_last_idx = idx;
563 if (idx >= bidi_cache_idx)
564 bidi_cache_idx = idx + 1;
567 static bidi_type_t
568 bidi_cache_find (ptrdiff_t charpos, int level, struct bidi_it *bidi_it)
570 ptrdiff_t i = bidi_cache_search (charpos, level, bidi_it->scan_dir);
572 if (i >= bidi_cache_start)
574 bidi_dir_t current_scan_dir = bidi_it->scan_dir;
576 bidi_copy_it (bidi_it, &bidi_cache[i]);
577 bidi_cache_last_idx = i;
578 /* Don't let scan direction from the cached state override
579 the current scan direction. */
580 bidi_it->scan_dir = current_scan_dir;
581 return bidi_it->type;
584 return UNKNOWN_BT;
587 static int
588 bidi_peek_at_next_level (struct bidi_it *bidi_it)
590 if (bidi_cache_idx == bidi_cache_start || bidi_cache_last_idx == -1)
591 emacs_abort ();
592 return bidi_cache[bidi_cache_last_idx + bidi_it->scan_dir].resolved_level;
596 /***********************************************************************
597 Pushing and popping the bidi iterator state
598 ***********************************************************************/
600 /* Push the bidi iterator state in preparation for reordering a
601 different object, e.g. display string found at certain buffer
602 position. Pushing the bidi iterator boils down to saving its
603 entire state on the cache and starting a new cache "stacked" on top
604 of the current cache. */
605 void
606 bidi_push_it (struct bidi_it *bidi_it)
608 /* Save the current iterator state in its entirety after the last
609 used cache slot. */
610 bidi_cache_ensure_space (bidi_cache_idx);
611 bidi_cache[bidi_cache_idx++] = *bidi_it;
613 /* Push the current cache start onto the stack. */
614 eassert (bidi_cache_sp < IT_STACK_SIZE);
615 bidi_cache_start_stack[bidi_cache_sp++] = bidi_cache_start;
617 /* Start a new level of cache, and make it empty. */
618 bidi_cache_start = bidi_cache_idx;
619 bidi_cache_last_idx = -1;
622 /* Restore the iterator state saved by bidi_push_it and return the
623 cache to the corresponding state. */
624 void
625 bidi_pop_it (struct bidi_it *bidi_it)
627 if (bidi_cache_start <= 0)
628 emacs_abort ();
630 /* Reset the next free cache slot index to what it was before the
631 call to bidi_push_it. */
632 bidi_cache_idx = bidi_cache_start - 1;
634 /* Restore the bidi iterator state saved in the cache. */
635 *bidi_it = bidi_cache[bidi_cache_idx];
637 /* Pop the previous cache start from the stack. */
638 if (bidi_cache_sp <= 0)
639 emacs_abort ();
640 bidi_cache_start = bidi_cache_start_stack[--bidi_cache_sp];
642 /* Invalidate the last-used cache slot data. */
643 bidi_cache_last_idx = -1;
646 static ptrdiff_t bidi_cache_total_alloc;
648 /* Stash away a copy of the cache and its control variables. */
649 void *
650 bidi_shelve_cache (void)
652 unsigned char *databuf;
653 ptrdiff_t alloc;
655 /* Empty cache. */
656 if (bidi_cache_idx == 0)
657 return NULL;
659 alloc = (bidi_shelve_header_size
660 + bidi_cache_idx * sizeof (struct bidi_it));
661 databuf = xmalloc (alloc);
662 bidi_cache_total_alloc += alloc;
664 memcpy (databuf, &bidi_cache_idx, sizeof (bidi_cache_idx));
665 memcpy (databuf + sizeof (bidi_cache_idx),
666 bidi_cache, bidi_cache_idx * sizeof (struct bidi_it));
667 memcpy (databuf + sizeof (bidi_cache_idx)
668 + bidi_cache_idx * sizeof (struct bidi_it),
669 bidi_cache_start_stack, sizeof (bidi_cache_start_stack));
670 memcpy (databuf + sizeof (bidi_cache_idx)
671 + bidi_cache_idx * sizeof (struct bidi_it)
672 + sizeof (bidi_cache_start_stack),
673 &bidi_cache_sp, sizeof (bidi_cache_sp));
674 memcpy (databuf + sizeof (bidi_cache_idx)
675 + bidi_cache_idx * sizeof (struct bidi_it)
676 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp),
677 &bidi_cache_start, sizeof (bidi_cache_start));
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 + sizeof (bidi_cache_start),
682 &bidi_cache_last_idx, sizeof (bidi_cache_last_idx));
684 return databuf;
687 /* Restore the cache state from a copy stashed away by
688 bidi_shelve_cache, and free the buffer used to stash that copy.
689 JUST_FREE means free the buffer, but don't restore the
690 cache; used when the corresponding iterator is discarded instead of
691 being restored. */
692 void
693 bidi_unshelve_cache (void *databuf, bool just_free)
695 unsigned char *p = databuf;
697 if (!p)
699 if (!just_free)
701 /* A NULL pointer means an empty cache. */
702 bidi_cache_start = 0;
703 bidi_cache_sp = 0;
704 bidi_cache_reset ();
707 else
709 if (just_free)
711 ptrdiff_t idx;
713 memcpy (&idx, p, sizeof (bidi_cache_idx));
714 bidi_cache_total_alloc
715 -= bidi_shelve_header_size + idx * sizeof (struct bidi_it);
717 else
719 memcpy (&bidi_cache_idx, p, sizeof (bidi_cache_idx));
720 bidi_cache_ensure_space (bidi_cache_idx);
721 memcpy (bidi_cache, p + sizeof (bidi_cache_idx),
722 bidi_cache_idx * sizeof (struct bidi_it));
723 memcpy (bidi_cache_start_stack,
724 p + sizeof (bidi_cache_idx)
725 + bidi_cache_idx * sizeof (struct bidi_it),
726 sizeof (bidi_cache_start_stack));
727 memcpy (&bidi_cache_sp,
728 p + sizeof (bidi_cache_idx)
729 + bidi_cache_idx * sizeof (struct bidi_it)
730 + sizeof (bidi_cache_start_stack),
731 sizeof (bidi_cache_sp));
732 memcpy (&bidi_cache_start,
733 p + sizeof (bidi_cache_idx)
734 + bidi_cache_idx * sizeof (struct bidi_it)
735 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp),
736 sizeof (bidi_cache_start));
737 memcpy (&bidi_cache_last_idx,
738 p + sizeof (bidi_cache_idx)
739 + bidi_cache_idx * sizeof (struct bidi_it)
740 + sizeof (bidi_cache_start_stack) + sizeof (bidi_cache_sp)
741 + sizeof (bidi_cache_start),
742 sizeof (bidi_cache_last_idx));
743 bidi_cache_total_alloc
744 -= (bidi_shelve_header_size
745 + bidi_cache_idx * sizeof (struct bidi_it));
748 xfree (p);
753 /***********************************************************************
754 Initialization
755 ***********************************************************************/
756 static void
757 bidi_initialize (void)
759 bidi_type_table = uniprop_table (intern ("bidi-class"));
760 if (NILP (bidi_type_table))
761 emacs_abort ();
762 staticpro (&bidi_type_table);
764 bidi_mirror_table = uniprop_table (intern ("mirroring"));
765 if (NILP (bidi_mirror_table))
766 emacs_abort ();
767 staticpro (&bidi_mirror_table);
769 Qparagraph_start = intern ("paragraph-start");
770 staticpro (&Qparagraph_start);
771 paragraph_start_re = Fsymbol_value (Qparagraph_start);
772 if (!STRINGP (paragraph_start_re))
773 paragraph_start_re = build_string ("\f\\|[ \t]*$");
774 staticpro (&paragraph_start_re);
775 Qparagraph_separate = intern ("paragraph-separate");
776 staticpro (&Qparagraph_separate);
777 paragraph_separate_re = Fsymbol_value (Qparagraph_separate);
778 if (!STRINGP (paragraph_separate_re))
779 paragraph_separate_re = build_string ("[ \t\f]*$");
780 staticpro (&paragraph_separate_re);
782 bidi_cache_sp = 0;
783 bidi_cache_total_alloc = 0;
785 bidi_initialized = 1;
788 /* Do whatever UAX#9 clause X8 says should be done at paragraph's
789 end. */
790 static void
791 bidi_set_paragraph_end (struct bidi_it *bidi_it)
793 bidi_it->invalid_levels = 0;
794 bidi_it->invalid_rl_levels = -1;
795 bidi_it->stack_idx = 0;
796 bidi_it->resolved_level = bidi_it->level_stack[0].level;
799 /* Initialize the bidi iterator from buffer/string position CHARPOS. */
800 void
801 bidi_init_it (ptrdiff_t charpos, ptrdiff_t bytepos, bool frame_window_p,
802 struct bidi_it *bidi_it)
804 if (! bidi_initialized)
805 bidi_initialize ();
806 if (charpos >= 0)
807 bidi_it->charpos = charpos;
808 if (bytepos >= 0)
809 bidi_it->bytepos = bytepos;
810 bidi_it->frame_window_p = frame_window_p;
811 bidi_it->nchars = -1; /* to be computed in bidi_resolve_explicit_1 */
812 bidi_it->first_elt = 1;
813 bidi_set_paragraph_end (bidi_it);
814 bidi_it->new_paragraph = 1;
815 bidi_it->separator_limit = -1;
816 bidi_it->type = NEUTRAL_B;
817 bidi_it->type_after_w1 = NEUTRAL_B;
818 bidi_it->orig_type = NEUTRAL_B;
819 bidi_it->prev_was_pdf = 0;
820 bidi_it->prev.type = bidi_it->prev.type_after_w1
821 = bidi_it->prev.orig_type = UNKNOWN_BT;
822 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1
823 = bidi_it->last_strong.orig_type = UNKNOWN_BT;
824 bidi_it->next_for_neutral.charpos = -1;
825 bidi_it->next_for_neutral.type
826 = bidi_it->next_for_neutral.type_after_w1
827 = bidi_it->next_for_neutral.orig_type = UNKNOWN_BT;
828 bidi_it->prev_for_neutral.charpos = -1;
829 bidi_it->prev_for_neutral.type
830 = bidi_it->prev_for_neutral.type_after_w1
831 = bidi_it->prev_for_neutral.orig_type = UNKNOWN_BT;
832 bidi_it->sor = L2R; /* FIXME: should it be user-selectable? */
833 bidi_it->disp_pos = -1; /* invalid/unknown */
834 bidi_it->disp_prop = 0;
835 /* We can only shrink the cache if we are at the bottom level of its
836 "stack". */
837 if (bidi_cache_start == 0)
838 bidi_cache_shrink ();
839 else
840 bidi_cache_reset ();
843 /* Perform initializations for reordering a new line of bidi text. */
844 static void
845 bidi_line_init (struct bidi_it *bidi_it)
847 bidi_it->scan_dir = 1; /* FIXME: do we need to have control on this? */
848 bidi_it->resolved_level = bidi_it->level_stack[0].level;
849 bidi_it->level_stack[0].override = NEUTRAL_DIR; /* X1 */
850 bidi_it->invalid_levels = 0;
851 bidi_it->invalid_rl_levels = -1;
852 /* Setting this to zero will force its recomputation the first time
853 we need it for W5. */
854 bidi_it->next_en_pos = 0;
855 bidi_it->next_en_type = UNKNOWN_BT;
856 bidi_it->next_for_ws.type = UNKNOWN_BT;
857 bidi_set_sor_type (bidi_it,
858 (bidi_it->paragraph_dir == R2L ? 1 : 0),
859 bidi_it->level_stack[0].level); /* X10 */
861 bidi_cache_reset ();
865 /***********************************************************************
866 Fetching characters
867 ***********************************************************************/
869 /* Count bytes in string S between BEG/BEGBYTE and END. BEG and END
870 are zero-based character positions in S, BEGBYTE is byte position
871 corresponding to BEG. UNIBYTE means S is a unibyte string. */
872 static ptrdiff_t
873 bidi_count_bytes (const unsigned char *s, const ptrdiff_t beg,
874 const ptrdiff_t begbyte, const ptrdiff_t end, bool unibyte)
876 ptrdiff_t pos = beg;
877 const unsigned char *p = s + begbyte, *start = p;
879 if (unibyte)
880 p = s + end;
881 else
883 if (!CHAR_HEAD_P (*p))
884 emacs_abort ();
886 while (pos < end)
888 p += BYTES_BY_CHAR_HEAD (*p);
889 pos++;
893 return p - start;
896 /* Fetch and return the character at byte position BYTEPOS. If S is
897 non-NULL, fetch the character from string S; otherwise fetch the
898 character from the current buffer. UNIBYTE means S is a
899 unibyte string. */
900 static int
901 bidi_char_at_pos (ptrdiff_t bytepos, const unsigned char *s, bool unibyte)
903 if (s)
905 s += bytepos;
906 if (unibyte)
907 return *s;
909 else
910 s = BYTE_POS_ADDR (bytepos);
911 return STRING_CHAR (s);
914 /* Fetch and return the character at CHARPOS/BYTEPOS. If that
915 character is covered by a display string, treat the entire run of
916 covered characters as a single character, either u+2029 or u+FFFC,
917 and return their combined length in CH_LEN and NCHARS. DISP_POS
918 specifies the character position of the next display string, or -1
919 if not yet computed. When the next character is at or beyond that
920 position, the function updates DISP_POS with the position of the
921 next display string. *DISP_PROP non-zero means that there's really
922 a display string at DISP_POS, as opposed to when we searched till
923 DISP_POS without finding one. If *DISP_PROP is 2, it means the
924 display spec is of the form `(space ...)', which is replaced with
925 u+2029 to handle it as a paragraph separator. STRING->s is the C
926 string to iterate, or NULL if iterating over a buffer or a Lisp
927 string; in the latter case, STRING->lstring is the Lisp string. */
928 static int
929 bidi_fetch_char (ptrdiff_t charpos, ptrdiff_t bytepos, ptrdiff_t *disp_pos,
930 int *disp_prop, struct bidi_string_data *string,
931 struct window *w,
932 bool frame_window_p, ptrdiff_t *ch_len, ptrdiff_t *nchars)
934 int ch;
935 ptrdiff_t endpos
936 = (string->s || STRINGP (string->lstring)) ? string->schars : ZV;
937 struct text_pos pos;
938 int len;
940 /* If we got past the last known position of display string, compute
941 the position of the next one. That position could be at CHARPOS. */
942 if (charpos < endpos && charpos > *disp_pos)
944 SET_TEXT_POS (pos, charpos, bytepos);
945 *disp_pos = compute_display_string_pos (&pos, string, w, frame_window_p,
946 disp_prop);
949 /* Fetch the character at BYTEPOS. */
950 if (charpos >= endpos)
952 ch = BIDI_EOB;
953 *ch_len = 1;
954 *nchars = 1;
955 *disp_pos = endpos;
956 *disp_prop = 0;
958 else if (charpos >= *disp_pos && *disp_prop)
960 ptrdiff_t disp_end_pos;
962 /* We don't expect to find ourselves in the middle of a display
963 property. Hopefully, it will never be needed. */
964 if (charpos > *disp_pos)
965 emacs_abort ();
966 /* Text covered by `display' properties and overlays with
967 display properties or display strings is handled as a single
968 character that represents the entire run of characters
969 covered by the display property. */
970 if (*disp_prop == 2)
972 /* `(space ...)' display specs are handled as paragraph
973 separators for the purposes of the reordering; see UAX#9
974 section 3 and clause HL1 in section 4.3 there. */
975 ch = 0x2029;
977 else
979 /* All other display specs are handled as the Unicode Object
980 Replacement Character. */
981 ch = 0xFFFC;
983 disp_end_pos = compute_display_string_end (*disp_pos, string);
984 if (disp_end_pos < 0)
986 /* Somebody removed the display string from the buffer
987 behind our back. Recover by processing this buffer
988 position as if no display property were present there to
989 begin with. */
990 *disp_prop = 0;
991 goto normal_char;
993 *nchars = disp_end_pos - *disp_pos;
994 if (*nchars <= 0)
995 emacs_abort ();
996 if (string->s)
997 *ch_len = bidi_count_bytes (string->s, *disp_pos, bytepos,
998 disp_end_pos, string->unibyte);
999 else if (STRINGP (string->lstring))
1000 *ch_len = bidi_count_bytes (SDATA (string->lstring), *disp_pos,
1001 bytepos, disp_end_pos, string->unibyte);
1002 else
1003 *ch_len = CHAR_TO_BYTE (disp_end_pos) - bytepos;
1005 else
1007 normal_char:
1008 if (string->s)
1011 if (!string->unibyte)
1013 ch = STRING_CHAR_AND_LENGTH (string->s + bytepos, len);
1014 *ch_len = len;
1016 else
1018 ch = UNIBYTE_TO_CHAR (string->s[bytepos]);
1019 *ch_len = 1;
1022 else if (STRINGP (string->lstring))
1024 if (!string->unibyte)
1026 ch = STRING_CHAR_AND_LENGTH (SDATA (string->lstring) + bytepos,
1027 len);
1028 *ch_len = len;
1030 else
1032 ch = UNIBYTE_TO_CHAR (SREF (string->lstring, bytepos));
1033 *ch_len = 1;
1036 else
1038 ch = STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (bytepos), len);
1039 *ch_len = len;
1041 *nchars = 1;
1044 /* If we just entered a run of characters covered by a display
1045 string, compute the position of the next display string. */
1046 if (charpos + *nchars <= endpos && charpos + *nchars > *disp_pos
1047 && *disp_prop)
1049 SET_TEXT_POS (pos, charpos + *nchars, bytepos + *ch_len);
1050 *disp_pos = compute_display_string_pos (&pos, string, w, frame_window_p,
1051 disp_prop);
1054 return ch;
1058 /***********************************************************************
1059 Determining paragraph direction
1060 ***********************************************************************/
1062 /* Check if buffer position CHARPOS/BYTEPOS is the end of a paragraph.
1063 Value is the non-negative length of the paragraph separator
1064 following the buffer position, -1 if position is at the beginning
1065 of a new paragraph, or -2 if position is neither at beginning nor
1066 at end of a paragraph. */
1067 static ptrdiff_t
1068 bidi_at_paragraph_end (ptrdiff_t charpos, ptrdiff_t bytepos)
1070 Lisp_Object sep_re;
1071 Lisp_Object start_re;
1072 ptrdiff_t val;
1074 sep_re = paragraph_separate_re;
1075 start_re = paragraph_start_re;
1077 val = fast_looking_at (sep_re, charpos, bytepos, ZV, ZV_BYTE, Qnil);
1078 if (val < 0)
1080 if (fast_looking_at (start_re, charpos, bytepos, ZV, ZV_BYTE, Qnil) >= 0)
1081 val = -1;
1082 else
1083 val = -2;
1086 return val;
1089 /* If the user has requested the long scans caching, make sure that
1090 BIDI cache is enabled. Otherwise, make sure it's disabled. */
1092 static struct region_cache *
1093 bidi_paragraph_cache_on_off (void)
1095 if (NILP (BVAR (current_buffer, cache_long_scans)))
1097 if (current_buffer->bidi_paragraph_cache)
1099 free_region_cache (current_buffer->bidi_paragraph_cache);
1100 current_buffer->bidi_paragraph_cache = 0;
1102 return NULL;
1104 else
1106 if (!current_buffer->bidi_paragraph_cache)
1107 current_buffer->bidi_paragraph_cache = new_region_cache ();
1108 return current_buffer->bidi_paragraph_cache;
1112 /* On my 2005-vintage machine, searching back for paragraph start
1113 takes ~1 ms per line. And bidi_paragraph_init is called 4 times
1114 when user types C-p. The number below limits each call to
1115 bidi_paragraph_init to about 10 ms. */
1116 #define MAX_PARAGRAPH_SEARCH 7500
1118 /* Find the beginning of this paragraph by looking back in the buffer.
1119 Value is the byte position of the paragraph's beginning, or
1120 BEGV_BYTE if paragraph_start_re is still not found after looking
1121 back MAX_PARAGRAPH_SEARCH lines in the buffer. */
1122 static ptrdiff_t
1123 bidi_find_paragraph_start (ptrdiff_t pos, ptrdiff_t pos_byte)
1125 Lisp_Object re = paragraph_start_re;
1126 ptrdiff_t limit = ZV, limit_byte = ZV_BYTE;
1127 struct region_cache *bpc = bidi_paragraph_cache_on_off ();
1128 ptrdiff_t n = 0, oldpos = pos, next;
1130 while (pos_byte > BEGV_BYTE
1131 && n++ < MAX_PARAGRAPH_SEARCH
1132 && fast_looking_at (re, pos, pos_byte, limit, limit_byte, Qnil) < 0)
1134 /* FIXME: What if the paragraph beginning is covered by a
1135 display string? And what if a display string covering some
1136 of the text over which we scan back includes
1137 paragraph_start_re? */
1138 DEC_BOTH (pos, pos_byte);
1139 if (bpc && region_cache_backward (current_buffer, bpc, pos, &next))
1141 pos = next, pos_byte = CHAR_TO_BYTE (pos);
1142 break;
1144 else
1145 pos = find_newline_no_quit (pos, pos_byte, -1, &pos_byte);
1147 if (n >= MAX_PARAGRAPH_SEARCH)
1148 pos = BEGV, pos_byte = BEGV_BYTE;
1149 if (bpc)
1150 know_region_cache (current_buffer, bpc, pos, oldpos);
1151 return pos_byte;
1154 /* On a 3.4 GHz machine, searching forward for a strong directional
1155 character in a long paragraph full of weaks or neutrals takes about
1156 1 ms for each 20K characters. The number below limits each call to
1157 bidi_paragraph_init to less than 10 ms even on slow machines. */
1158 #define MAX_STRONG_CHAR_SEARCH 100000
1160 /* Determine the base direction, a.k.a. base embedding level, of the
1161 paragraph we are about to iterate through. If DIR is either L2R or
1162 R2L, just use that. Otherwise, determine the paragraph direction
1163 from the first strong directional character of the paragraph.
1165 NO_DEFAULT_P means don't default to L2R if the paragraph
1166 has no strong directional characters and both DIR and
1167 bidi_it->paragraph_dir are NEUTRAL_DIR. In that case, search back
1168 in the buffer until a paragraph is found with a strong character,
1169 or until hitting BEGV. In the latter case, fall back to L2R. This
1170 flag is used in current-bidi-paragraph-direction.
1172 Note that this function gives the paragraph separator the same
1173 direction as the preceding paragraph, even though Emacs generally
1174 views the separator as not belonging to any paragraph. */
1175 void
1176 bidi_paragraph_init (bidi_dir_t dir, struct bidi_it *bidi_it, bool no_default_p)
1178 ptrdiff_t bytepos = bidi_it->bytepos;
1179 bool string_p = bidi_it->string.s || STRINGP (bidi_it->string.lstring);
1180 ptrdiff_t pstartbyte;
1181 /* Note that begbyte is a byte position, while end is a character
1182 position. Yes, this is ugly, but we are trying to avoid costly
1183 calls to BYTE_TO_CHAR and its ilk. */
1184 ptrdiff_t begbyte = string_p ? 0 : BEGV_BYTE;
1185 ptrdiff_t end = string_p ? bidi_it->string.schars : ZV;
1187 /* Special case for an empty buffer. */
1188 if (bytepos == begbyte && bidi_it->charpos == end)
1189 dir = L2R;
1190 /* We should never be called at EOB or before BEGV. */
1191 else if (bidi_it->charpos >= end || bytepos < begbyte)
1192 emacs_abort ();
1194 if (dir == L2R)
1196 bidi_it->paragraph_dir = L2R;
1197 bidi_it->new_paragraph = 0;
1199 else if (dir == R2L)
1201 bidi_it->paragraph_dir = R2L;
1202 bidi_it->new_paragraph = 0;
1204 else if (dir == NEUTRAL_DIR) /* P2 */
1206 int ch;
1207 ptrdiff_t ch_len, nchars;
1208 ptrdiff_t pos, disp_pos = -1;
1209 int disp_prop = 0;
1210 bidi_type_t type;
1211 const unsigned char *s;
1213 if (!bidi_initialized)
1214 bidi_initialize ();
1216 /* If we are inside a paragraph separator, we are just waiting
1217 for the separator to be exhausted; use the previous paragraph
1218 direction. But don't do that if we have been just reseated,
1219 because we need to reinitialize below in that case. */
1220 if (!bidi_it->first_elt
1221 && bidi_it->charpos < bidi_it->separator_limit)
1222 return;
1224 /* If we are on a newline, get past it to where the next
1225 paragraph might start. But don't do that at BEGV since then
1226 we are potentially in a new paragraph that doesn't yet
1227 exist. */
1228 pos = bidi_it->charpos;
1229 s = (STRINGP (bidi_it->string.lstring)
1230 ? SDATA (bidi_it->string.lstring)
1231 : bidi_it->string.s);
1232 if (bytepos > begbyte
1233 && bidi_char_at_pos (bytepos, s, bidi_it->string.unibyte) == '\n')
1235 bytepos++;
1236 pos++;
1239 /* We are either at the beginning of a paragraph or in the
1240 middle of it. Find where this paragraph starts. */
1241 if (string_p)
1243 /* We don't support changes of paragraph direction inside a
1244 string. It is treated as a single paragraph. */
1245 pstartbyte = 0;
1247 else
1248 pstartbyte = bidi_find_paragraph_start (pos, bytepos);
1249 bidi_it->separator_limit = -1;
1250 bidi_it->new_paragraph = 0;
1252 /* The following loop is run more than once only if NO_DEFAULT_P,
1253 and only if we are iterating on a buffer. */
1254 do {
1255 ptrdiff_t pos1;
1257 bytepos = pstartbyte;
1258 if (!string_p)
1259 pos = BYTE_TO_CHAR (bytepos);
1260 ch = bidi_fetch_char (pos, bytepos, &disp_pos, &disp_prop,
1261 &bidi_it->string, bidi_it->w,
1262 bidi_it->frame_window_p, &ch_len, &nchars);
1263 type = bidi_get_type (ch, NEUTRAL_DIR);
1265 pos1 = pos;
1266 for (pos += nchars, bytepos += ch_len;
1267 ((bidi_get_category (type) != STRONG)
1268 || (bidi_ignore_explicit_marks_for_paragraph_level
1269 && (type == RLE || type == RLO
1270 || type == LRE || type == LRO)))
1271 /* Stop when searched too far into an abnormally large
1272 paragraph full of weak or neutral characters. */
1273 && pos - pos1 < MAX_STRONG_CHAR_SEARCH;
1274 type = bidi_get_type (ch, NEUTRAL_DIR))
1276 if (pos >= end)
1278 /* Pretend there's a paragraph separator at end of
1279 buffer/string. */
1280 type = NEUTRAL_B;
1281 break;
1283 if (!string_p
1284 && type == NEUTRAL_B
1285 && bidi_at_paragraph_end (pos, bytepos) >= -1)
1286 break;
1287 /* Fetch next character and advance to get past it. */
1288 ch = bidi_fetch_char (pos, bytepos, &disp_pos,
1289 &disp_prop, &bidi_it->string, bidi_it->w,
1290 bidi_it->frame_window_p, &ch_len, &nchars);
1291 pos += nchars;
1292 bytepos += ch_len;
1294 if ((type == STRONG_R || type == STRONG_AL) /* P3 */
1295 || (!bidi_ignore_explicit_marks_for_paragraph_level
1296 && (type == RLO || type == RLE)))
1297 bidi_it->paragraph_dir = R2L;
1298 else if (type == STRONG_L
1299 || (!bidi_ignore_explicit_marks_for_paragraph_level
1300 && (type == LRO || type == LRE)))
1301 bidi_it->paragraph_dir = L2R;
1302 if (!string_p
1303 && no_default_p && bidi_it->paragraph_dir == NEUTRAL_DIR)
1305 /* If this paragraph is at BEGV, default to L2R. */
1306 if (pstartbyte == BEGV_BYTE)
1307 bidi_it->paragraph_dir = L2R; /* P3 and HL1 */
1308 else
1310 ptrdiff_t prevpbyte = pstartbyte;
1311 ptrdiff_t p = BYTE_TO_CHAR (pstartbyte), pbyte = pstartbyte;
1313 /* Find the beginning of the previous paragraph, if any. */
1314 while (pbyte > BEGV_BYTE && prevpbyte >= pstartbyte)
1316 /* FXIME: What if p is covered by a display
1317 string? See also a FIXME inside
1318 bidi_find_paragraph_start. */
1319 DEC_BOTH (p, pbyte);
1320 prevpbyte = bidi_find_paragraph_start (p, pbyte);
1322 pstartbyte = prevpbyte;
1325 } while (!string_p
1326 && no_default_p && bidi_it->paragraph_dir == NEUTRAL_DIR);
1328 else
1329 emacs_abort ();
1331 /* Contrary to UAX#9 clause P3, we only default the paragraph
1332 direction to L2R if we have no previous usable paragraph
1333 direction. This is allowed by the HL1 clause. */
1334 if (bidi_it->paragraph_dir != L2R && bidi_it->paragraph_dir != R2L)
1335 bidi_it->paragraph_dir = L2R; /* P3 and HL1 ``higher-level protocols'' */
1336 if (bidi_it->paragraph_dir == R2L)
1337 bidi_it->level_stack[0].level = 1;
1338 else
1339 bidi_it->level_stack[0].level = 0;
1341 bidi_line_init (bidi_it);
1345 /***********************************************************************
1346 Resolving explicit and implicit levels.
1347 The rest of this file constitutes the core of the UBA implementation.
1348 ***********************************************************************/
1350 static bool
1351 bidi_explicit_dir_char (int ch)
1353 bidi_type_t ch_type;
1355 if (!bidi_initialized)
1356 emacs_abort ();
1357 ch_type = (bidi_type_t) XINT (CHAR_TABLE_REF (bidi_type_table, ch));
1358 return (ch_type == LRE || ch_type == LRO
1359 || ch_type == RLE || ch_type == RLO
1360 || ch_type == PDF);
1363 /* A helper function for bidi_resolve_explicit. It advances to the
1364 next character in logical order and determines the new embedding
1365 level and directional override, but does not take into account
1366 empty embeddings. */
1367 static int
1368 bidi_resolve_explicit_1 (struct bidi_it *bidi_it)
1370 int curchar;
1371 bidi_type_t type;
1372 int current_level;
1373 int new_level;
1374 bidi_dir_t override;
1375 bool string_p = bidi_it->string.s || STRINGP (bidi_it->string.lstring);
1377 /* If reseat()'ed, don't advance, so as to start iteration from the
1378 position where we were reseated. bidi_it->bytepos can be less
1379 than BEGV_BYTE after reseat to BEGV. */
1380 if (bidi_it->bytepos < (string_p ? 0 : BEGV_BYTE)
1381 || bidi_it->first_elt)
1383 bidi_it->first_elt = 0;
1384 if (string_p)
1386 const unsigned char *p
1387 = (STRINGP (bidi_it->string.lstring)
1388 ? SDATA (bidi_it->string.lstring)
1389 : bidi_it->string.s);
1391 if (bidi_it->charpos < 0)
1392 bidi_it->charpos = bidi_it->bytepos = 0;
1393 eassert (bidi_it->bytepos == bidi_count_bytes (p, 0, 0,
1394 bidi_it->charpos,
1395 bidi_it->string.unibyte));
1397 else
1399 if (bidi_it->charpos < BEGV)
1401 bidi_it->charpos = BEGV;
1402 bidi_it->bytepos = BEGV_BYTE;
1404 eassert (bidi_it->bytepos == CHAR_TO_BYTE (bidi_it->charpos));
1407 /* Don't move at end of buffer/string. */
1408 else if (bidi_it->charpos < (string_p ? bidi_it->string.schars : ZV))
1410 /* Advance to the next character, skipping characters covered by
1411 display strings (nchars > 1). */
1412 if (bidi_it->nchars <= 0)
1413 emacs_abort ();
1414 bidi_it->charpos += bidi_it->nchars;
1415 if (bidi_it->ch_len == 0)
1416 emacs_abort ();
1417 bidi_it->bytepos += bidi_it->ch_len;
1420 current_level = bidi_it->level_stack[bidi_it->stack_idx].level; /* X1 */
1421 override = bidi_it->level_stack[bidi_it->stack_idx].override;
1422 new_level = current_level;
1424 if (bidi_it->charpos >= (string_p ? bidi_it->string.schars : ZV))
1426 curchar = BIDI_EOB;
1427 bidi_it->ch_len = 1;
1428 bidi_it->nchars = 1;
1429 bidi_it->disp_pos = (string_p ? bidi_it->string.schars : ZV);
1430 bidi_it->disp_prop = 0;
1432 else
1434 /* Fetch the character at BYTEPOS. If it is covered by a
1435 display string, treat the entire run of covered characters as
1436 a single character u+FFFC. */
1437 curchar = bidi_fetch_char (bidi_it->charpos, bidi_it->bytepos,
1438 &bidi_it->disp_pos, &bidi_it->disp_prop,
1439 &bidi_it->string, bidi_it->w,
1440 bidi_it->frame_window_p,
1441 &bidi_it->ch_len, &bidi_it->nchars);
1443 bidi_it->ch = curchar;
1445 /* Don't apply directional override here, as all the types we handle
1446 below will not be affected by the override anyway, and we need
1447 the original type unaltered. The override will be applied in
1448 bidi_resolve_weak. */
1449 type = bidi_get_type (curchar, NEUTRAL_DIR);
1450 bidi_it->orig_type = type;
1451 bidi_check_type (bidi_it->orig_type);
1453 if (type != PDF)
1454 bidi_it->prev_was_pdf = 0;
1456 bidi_it->type_after_w1 = UNKNOWN_BT;
1458 switch (type)
1460 case RLE: /* X2 */
1461 case RLO: /* X4 */
1462 bidi_it->type_after_w1 = type;
1463 bidi_check_type (bidi_it->type_after_w1);
1464 type = WEAK_BN; /* X9/Retaining */
1465 if (bidi_it->ignore_bn_limit <= -1)
1467 if (current_level <= BIDI_MAXLEVEL - 4)
1469 /* Compute the least odd embedding level greater than
1470 the current level. */
1471 new_level = ((current_level + 1) & ~1) + 1;
1472 if (bidi_it->type_after_w1 == RLE)
1473 override = NEUTRAL_DIR;
1474 else
1475 override = R2L;
1476 if (current_level == BIDI_MAXLEVEL - 4)
1477 bidi_it->invalid_rl_levels = 0;
1478 bidi_push_embedding_level (bidi_it, new_level, override);
1480 else
1482 bidi_it->invalid_levels++;
1483 /* See the commentary about invalid_rl_levels below. */
1484 if (bidi_it->invalid_rl_levels < 0)
1485 bidi_it->invalid_rl_levels = 0;
1486 bidi_it->invalid_rl_levels++;
1489 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1490 || (bidi_it->next_en_pos > bidi_it->charpos
1491 && bidi_it->next_en_type == WEAK_EN))
1492 type = WEAK_EN;
1493 break;
1494 case LRE: /* X3 */
1495 case LRO: /* X5 */
1496 bidi_it->type_after_w1 = type;
1497 bidi_check_type (bidi_it->type_after_w1);
1498 type = WEAK_BN; /* X9/Retaining */
1499 if (bidi_it->ignore_bn_limit <= -1)
1501 if (current_level <= BIDI_MAXLEVEL - 5)
1503 /* Compute the least even embedding level greater than
1504 the current level. */
1505 new_level = ((current_level + 2) & ~1);
1506 if (bidi_it->type_after_w1 == LRE)
1507 override = NEUTRAL_DIR;
1508 else
1509 override = L2R;
1510 bidi_push_embedding_level (bidi_it, new_level, override);
1512 else
1514 bidi_it->invalid_levels++;
1515 /* invalid_rl_levels counts invalid levels encountered
1516 while the embedding level was already too high for
1517 LRE/LRO, but not for RLE/RLO. That is because
1518 there may be exactly one PDF which we should not
1519 ignore even though invalid_levels is non-zero.
1520 invalid_rl_levels helps to know what PDF is
1521 that. */
1522 if (bidi_it->invalid_rl_levels >= 0)
1523 bidi_it->invalid_rl_levels++;
1526 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1527 || (bidi_it->next_en_pos > bidi_it->charpos
1528 && bidi_it->next_en_type == WEAK_EN))
1529 type = WEAK_EN;
1530 break;
1531 case PDF: /* X7 */
1532 bidi_it->type_after_w1 = type;
1533 bidi_check_type (bidi_it->type_after_w1);
1534 type = WEAK_BN; /* X9/Retaining */
1535 if (bidi_it->ignore_bn_limit <= -1)
1537 if (!bidi_it->invalid_rl_levels)
1539 new_level = bidi_pop_embedding_level (bidi_it);
1540 bidi_it->invalid_rl_levels = -1;
1541 if (bidi_it->invalid_levels)
1542 bidi_it->invalid_levels--;
1543 /* else nothing: UAX#9 says to ignore invalid PDFs */
1545 if (!bidi_it->invalid_levels)
1546 new_level = bidi_pop_embedding_level (bidi_it);
1547 else
1549 bidi_it->invalid_levels--;
1550 bidi_it->invalid_rl_levels--;
1553 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
1554 || (bidi_it->next_en_pos > bidi_it->charpos
1555 && bidi_it->next_en_type == WEAK_EN))
1556 type = WEAK_EN;
1557 break;
1558 default:
1559 /* Nothing. */
1560 break;
1563 bidi_it->type = type;
1564 bidi_check_type (bidi_it->type);
1566 return new_level;
1569 /* Given an iterator state in BIDI_IT, advance one character position
1570 in the buffer/string to the next character (in the logical order),
1571 resolve any explicit embeddings and directional overrides, and
1572 return the embedding level of the character after resolving
1573 explicit directives and ignoring empty embeddings. */
1574 static int
1575 bidi_resolve_explicit (struct bidi_it *bidi_it)
1577 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1578 int new_level = bidi_resolve_explicit_1 (bidi_it);
1579 ptrdiff_t eob = bidi_it->string.s ? bidi_it->string.schars : ZV;
1580 const unsigned char *s
1581 = (STRINGP (bidi_it->string.lstring)
1582 ? SDATA (bidi_it->string.lstring)
1583 : bidi_it->string.s);
1585 if (prev_level < new_level
1586 && bidi_it->type == WEAK_BN
1587 && bidi_it->ignore_bn_limit == -1 /* only if not already known */
1588 && bidi_it->charpos < eob /* not already at EOB */
1589 && bidi_explicit_dir_char (bidi_char_at_pos (bidi_it->bytepos
1590 + bidi_it->ch_len, s,
1591 bidi_it->string.unibyte)))
1593 /* Avoid pushing and popping embedding levels if the level run
1594 is empty, as this breaks level runs where it shouldn't.
1595 UAX#9 removes all the explicit embedding and override codes,
1596 so empty embeddings disappear without a trace. We need to
1597 behave as if we did the same. */
1598 struct bidi_it saved_it;
1599 int level = prev_level;
1601 bidi_copy_it (&saved_it, bidi_it);
1603 while (bidi_explicit_dir_char (bidi_char_at_pos (bidi_it->bytepos
1604 + bidi_it->ch_len, s,
1605 bidi_it->string.unibyte)))
1607 /* This advances to the next character, skipping any
1608 characters covered by display strings. */
1609 level = bidi_resolve_explicit_1 (bidi_it);
1610 /* If string.lstring was relocated inside bidi_resolve_explicit_1,
1611 a pointer to its data is no longer valid. */
1612 if (STRINGP (bidi_it->string.lstring))
1613 s = SDATA (bidi_it->string.lstring);
1616 if (bidi_it->nchars <= 0)
1617 emacs_abort ();
1618 if (level == prev_level) /* empty embedding */
1619 saved_it.ignore_bn_limit = bidi_it->charpos + bidi_it->nchars;
1620 else /* this embedding is non-empty */
1621 saved_it.ignore_bn_limit = -2;
1623 bidi_copy_it (bidi_it, &saved_it);
1624 if (bidi_it->ignore_bn_limit > -1)
1626 /* We pushed a level, but we shouldn't have. Undo that. */
1627 if (!bidi_it->invalid_rl_levels)
1629 new_level = bidi_pop_embedding_level (bidi_it);
1630 bidi_it->invalid_rl_levels = -1;
1631 if (bidi_it->invalid_levels)
1632 bidi_it->invalid_levels--;
1634 if (!bidi_it->invalid_levels)
1635 new_level = bidi_pop_embedding_level (bidi_it);
1636 else
1638 bidi_it->invalid_levels--;
1639 bidi_it->invalid_rl_levels--;
1644 if (bidi_it->type == NEUTRAL_B) /* X8 */
1646 bidi_set_paragraph_end (bidi_it);
1647 /* This is needed by bidi_resolve_weak below, and in L1. */
1648 bidi_it->type_after_w1 = bidi_it->type;
1649 bidi_check_type (bidi_it->type_after_w1);
1652 return new_level;
1655 /* Advance in the buffer/string, resolve weak types and return the
1656 type of the next character after weak type resolution. */
1657 static bidi_type_t
1658 bidi_resolve_weak (struct bidi_it *bidi_it)
1660 bidi_type_t type;
1661 bidi_dir_t override;
1662 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1663 int new_level = bidi_resolve_explicit (bidi_it);
1664 int next_char;
1665 bidi_type_t type_of_next;
1666 struct bidi_it saved_it;
1667 ptrdiff_t eob
1668 = ((STRINGP (bidi_it->string.lstring) || bidi_it->string.s)
1669 ? bidi_it->string.schars : ZV);
1671 type = bidi_it->type;
1672 override = bidi_it->level_stack[bidi_it->stack_idx].override;
1674 if (type == UNKNOWN_BT
1675 || type == LRE
1676 || type == LRO
1677 || type == RLE
1678 || type == RLO
1679 || type == PDF)
1680 emacs_abort ();
1682 if (new_level != prev_level
1683 || bidi_it->type == NEUTRAL_B)
1685 /* We've got a new embedding level run, compute the directional
1686 type of sor and initialize per-run variables (UAX#9, clause
1687 X10). */
1688 bidi_set_sor_type (bidi_it, prev_level, new_level);
1690 else if (type == NEUTRAL_S || type == NEUTRAL_WS
1691 || type == WEAK_BN || type == STRONG_AL)
1692 bidi_it->type_after_w1 = type; /* needed in L1 */
1693 bidi_check_type (bidi_it->type_after_w1);
1695 /* Level and directional override status are already recorded in
1696 bidi_it, and do not need any change; see X6. */
1697 if (override == R2L) /* X6 */
1698 type = STRONG_R;
1699 else if (override == L2R)
1700 type = STRONG_L;
1701 else
1703 if (type == WEAK_NSM) /* W1 */
1705 /* Note that we don't need to consider the case where the
1706 prev character has its type overridden by an RLO or LRO,
1707 because then either the type of this NSM would have been
1708 also overridden, or the previous character is outside the
1709 current level run, and thus not relevant to this NSM.
1710 This is why NSM gets the type_after_w1 of the previous
1711 character. */
1712 if (bidi_it->prev.type_after_w1 != UNKNOWN_BT
1713 /* if type_after_w1 is NEUTRAL_B, this NSM is at sor */
1714 && bidi_it->prev.type_after_w1 != NEUTRAL_B)
1715 type = bidi_it->prev.type_after_w1;
1716 else if (bidi_it->sor == R2L)
1717 type = STRONG_R;
1718 else if (bidi_it->sor == L2R)
1719 type = STRONG_L;
1720 else /* shouldn't happen! */
1721 emacs_abort ();
1723 if (type == WEAK_EN /* W2 */
1724 && bidi_it->last_strong.type_after_w1 == STRONG_AL)
1725 type = WEAK_AN;
1726 else if (type == STRONG_AL) /* W3 */
1727 type = STRONG_R;
1728 else if ((type == WEAK_ES /* W4 */
1729 && bidi_it->prev.type_after_w1 == WEAK_EN
1730 && bidi_it->prev.orig_type == WEAK_EN)
1731 || (type == WEAK_CS
1732 && ((bidi_it->prev.type_after_w1 == WEAK_EN
1733 && bidi_it->prev.orig_type == WEAK_EN)
1734 || bidi_it->prev.type_after_w1 == WEAK_AN)))
1736 const unsigned char *s
1737 = (STRINGP (bidi_it->string.lstring)
1738 ? SDATA (bidi_it->string.lstring)
1739 : bidi_it->string.s);
1741 next_char = (bidi_it->charpos + bidi_it->nchars >= eob
1742 ? BIDI_EOB
1743 : bidi_char_at_pos (bidi_it->bytepos + bidi_it->ch_len,
1744 s, bidi_it->string.unibyte));
1745 type_of_next = bidi_get_type (next_char, override);
1747 if (type_of_next == WEAK_BN
1748 || bidi_explicit_dir_char (next_char))
1750 bidi_copy_it (&saved_it, bidi_it);
1751 while (bidi_resolve_explicit (bidi_it) == new_level
1752 && bidi_it->type == WEAK_BN)
1754 type_of_next = bidi_it->type;
1755 bidi_copy_it (bidi_it, &saved_it);
1758 /* If the next character is EN, but the last strong-type
1759 character is AL, that next EN will be changed to AN when
1760 we process it in W2 above. So in that case, this ES
1761 should not be changed into EN. */
1762 if (type == WEAK_ES
1763 && type_of_next == WEAK_EN
1764 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1765 type = WEAK_EN;
1766 else if (type == WEAK_CS)
1768 if (bidi_it->prev.type_after_w1 == WEAK_AN
1769 && (type_of_next == WEAK_AN
1770 /* If the next character is EN, but the last
1771 strong-type character is AL, EN will be later
1772 changed to AN when we process it in W2 above.
1773 So in that case, this ES should not be
1774 changed into EN. */
1775 || (type_of_next == WEAK_EN
1776 && bidi_it->last_strong.type_after_w1 == STRONG_AL)))
1777 type = WEAK_AN;
1778 else if (bidi_it->prev.type_after_w1 == WEAK_EN
1779 && type_of_next == WEAK_EN
1780 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1781 type = WEAK_EN;
1784 else if (type == WEAK_ET /* W5: ET with EN before or after it */
1785 || type == WEAK_BN) /* W5/Retaining */
1787 if (bidi_it->prev.type_after_w1 == WEAK_EN) /* ET/BN w/EN before it */
1788 type = WEAK_EN;
1789 else if (bidi_it->next_en_pos > bidi_it->charpos
1790 && bidi_it->next_en_type != WEAK_BN)
1792 if (bidi_it->next_en_type == WEAK_EN) /* ET/BN with EN after it */
1793 type = WEAK_EN;
1795 else if (bidi_it->next_en_pos >=0)
1797 ptrdiff_t en_pos = bidi_it->charpos + bidi_it->nchars;
1798 const unsigned char *s = (STRINGP (bidi_it->string.lstring)
1799 ? SDATA (bidi_it->string.lstring)
1800 : bidi_it->string.s);
1802 if (bidi_it->nchars <= 0)
1803 emacs_abort ();
1804 next_char
1805 = (bidi_it->charpos + bidi_it->nchars >= eob
1806 ? BIDI_EOB
1807 : bidi_char_at_pos (bidi_it->bytepos + bidi_it->ch_len, s,
1808 bidi_it->string.unibyte));
1809 type_of_next = bidi_get_type (next_char, override);
1811 if (type_of_next == WEAK_ET
1812 || type_of_next == WEAK_BN
1813 || bidi_explicit_dir_char (next_char))
1815 bidi_copy_it (&saved_it, bidi_it);
1816 while (bidi_resolve_explicit (bidi_it) == new_level
1817 && (bidi_it->type == WEAK_BN
1818 || bidi_it->type == WEAK_ET))
1820 type_of_next = bidi_it->type;
1821 en_pos = bidi_it->charpos;
1822 bidi_copy_it (bidi_it, &saved_it);
1824 /* Remember this position, to speed up processing of the
1825 next ETs. */
1826 bidi_it->next_en_pos = en_pos;
1827 if (type_of_next == WEAK_EN)
1829 /* If the last strong character is AL, the EN we've
1830 found will become AN when we get to it (W2). */
1831 if (bidi_it->last_strong.type_after_w1 == STRONG_AL)
1832 type_of_next = WEAK_AN;
1833 else if (type == WEAK_BN)
1834 type = NEUTRAL_ON; /* W6/Retaining */
1835 else
1836 type = WEAK_EN;
1838 else if (type_of_next == NEUTRAL_B)
1839 /* Record the fact that there are no more ENs from
1840 here to the end of paragraph, to avoid entering the
1841 loop above ever again in this paragraph. */
1842 bidi_it->next_en_pos = -1;
1843 /* Record the type of the character where we ended our search. */
1844 bidi_it->next_en_type = type_of_next;
1849 if (type == WEAK_ES || type == WEAK_ET || type == WEAK_CS /* W6 */
1850 || (type == WEAK_BN
1851 && (bidi_it->prev.type_after_w1 == WEAK_CS /* W6/Retaining */
1852 || bidi_it->prev.type_after_w1 == WEAK_ES
1853 || bidi_it->prev.type_after_w1 == WEAK_ET)))
1854 type = NEUTRAL_ON;
1856 /* Store the type we've got so far, before we clobber it with strong
1857 types in W7 and while resolving neutral types. But leave alone
1858 the original types that were recorded above, because we will need
1859 them for the L1 clause. */
1860 if (bidi_it->type_after_w1 == UNKNOWN_BT)
1861 bidi_it->type_after_w1 = type;
1862 bidi_check_type (bidi_it->type_after_w1);
1864 if (type == WEAK_EN) /* W7 */
1866 if ((bidi_it->last_strong.type_after_w1 == STRONG_L)
1867 || (bidi_it->last_strong.type == UNKNOWN_BT && bidi_it->sor == L2R))
1868 type = STRONG_L;
1871 bidi_it->type = type;
1872 bidi_check_type (bidi_it->type);
1873 return type;
1876 /* Resolve the type of a neutral character according to the type of
1877 surrounding strong text and the current embedding level. */
1878 static bidi_type_t
1879 bidi_resolve_neutral_1 (bidi_type_t prev_type, bidi_type_t next_type, int lev)
1881 /* N1: European and Arabic numbers are treated as though they were R. */
1882 if (next_type == WEAK_EN || next_type == WEAK_AN)
1883 next_type = STRONG_R;
1884 if (prev_type == WEAK_EN || prev_type == WEAK_AN)
1885 prev_type = STRONG_R;
1887 if (next_type == prev_type) /* N1 */
1888 return next_type;
1889 else if ((lev & 1) == 0) /* N2 */
1890 return STRONG_L;
1891 else
1892 return STRONG_R;
1895 static bidi_type_t
1896 bidi_resolve_neutral (struct bidi_it *bidi_it)
1898 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1899 bidi_type_t type = bidi_resolve_weak (bidi_it);
1900 int current_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1902 if (!(type == STRONG_R
1903 || type == STRONG_L
1904 || type == WEAK_BN
1905 || type == WEAK_EN
1906 || type == WEAK_AN
1907 || type == NEUTRAL_B
1908 || type == NEUTRAL_S
1909 || type == NEUTRAL_WS
1910 || type == NEUTRAL_ON))
1911 emacs_abort ();
1913 if ((type != NEUTRAL_B /* Don't risk entering the long loop below if
1914 we are already at paragraph end. */
1915 && bidi_get_category (type) == NEUTRAL)
1916 || (type == WEAK_BN && prev_level == current_level))
1918 if (bidi_it->next_for_neutral.type != UNKNOWN_BT)
1919 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1920 bidi_it->next_for_neutral.type,
1921 current_level);
1922 /* The next two "else if" clauses are shortcuts for the
1923 important special case when we have a long sequence of
1924 neutral or WEAK_BN characters, such as whitespace or nulls or
1925 other control characters, on the base embedding level of the
1926 paragraph, and that sequence goes all the way to the end of
1927 the paragraph and follows a character whose resolved
1928 directionality is identical to the base embedding level.
1929 (This is what happens in a buffer with plain L2R text that
1930 happens to include long sequences of control characters.) By
1931 virtue of N1, the result of examining this long sequence will
1932 always be either STRONG_L or STRONG_R, depending on the base
1933 embedding level. So we use this fact directly instead of
1934 entering the expensive loop in the "else" clause. */
1935 else if (current_level == 0
1936 && bidi_it->prev_for_neutral.type == STRONG_L
1937 && !bidi_explicit_dir_char (bidi_it->ch))
1938 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1939 STRONG_L, current_level);
1940 else if (/* current level is 1 */
1941 current_level == 1
1942 /* base embedding level is also 1 */
1943 && bidi_it->level_stack[0].level == 1
1944 /* previous character is one of those considered R for
1945 the purposes of W5 */
1946 && (bidi_it->prev_for_neutral.type == STRONG_R
1947 || bidi_it->prev_for_neutral.type == WEAK_EN
1948 || bidi_it->prev_for_neutral.type == WEAK_AN)
1949 && !bidi_explicit_dir_char (bidi_it->ch))
1950 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1951 STRONG_R, current_level);
1952 else
1954 /* Arrrgh!! The UAX#9 algorithm is too deeply entrenched in
1955 the assumption of batch-style processing; see clauses W4,
1956 W5, and especially N1, which require to look far forward
1957 (as well as back) in the buffer/string. May the fleas of
1958 a thousand camels infest the armpits of those who design
1959 supposedly general-purpose algorithms by looking at their
1960 own implementations, and fail to consider other possible
1961 implementations! */
1962 struct bidi_it saved_it;
1963 bidi_type_t next_type;
1965 if (bidi_it->scan_dir == -1)
1966 emacs_abort ();
1968 bidi_copy_it (&saved_it, bidi_it);
1969 /* Scan the text forward until we find the first non-neutral
1970 character, and then use that to resolve the neutral we
1971 are dealing with now. We also cache the scanned iterator
1972 states, to salvage some of the effort later. */
1973 bidi_cache_iterator_state (bidi_it, 0);
1974 do {
1975 /* Record the info about the previous character, so that
1976 it will be cached below with this state. */
1977 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
1978 && bidi_it->type != WEAK_BN)
1979 bidi_remember_char (&bidi_it->prev, bidi_it);
1980 type = bidi_resolve_weak (bidi_it);
1981 /* Paragraph separators have their levels fully resolved
1982 at this point, so cache them as resolved. */
1983 bidi_cache_iterator_state (bidi_it, type == NEUTRAL_B);
1984 /* FIXME: implement L1 here, by testing for a newline and
1985 resetting the level for any sequence of whitespace
1986 characters adjacent to it. */
1987 } while (!(type == NEUTRAL_B
1988 || (type != WEAK_BN
1989 && bidi_get_category (type) != NEUTRAL)
1990 /* This is all per level run, so stop when we
1991 reach the end of this level run. */
1992 || (bidi_it->level_stack[bidi_it->stack_idx].level
1993 != current_level)));
1995 bidi_remember_char (&saved_it.next_for_neutral, bidi_it);
1997 switch (type)
1999 case STRONG_L:
2000 case STRONG_R:
2001 case STRONG_AL:
2002 /* Actually, STRONG_AL cannot happen here, because
2003 bidi_resolve_weak converts it to STRONG_R, per W3. */
2004 eassert (type != STRONG_AL);
2005 next_type = type;
2006 break;
2007 case WEAK_EN:
2008 case WEAK_AN:
2009 /* N1: ``European and Arabic numbers are treated as
2010 though they were R.'' */
2011 next_type = STRONG_R;
2012 break;
2013 case WEAK_BN:
2014 case NEUTRAL_ON: /* W6/Retaining */
2015 if (!bidi_explicit_dir_char (bidi_it->ch))
2016 emacs_abort (); /* can't happen: BNs are skipped */
2017 /* FALLTHROUGH */
2018 case NEUTRAL_B:
2019 /* Marched all the way to the end of this level run.
2020 We need to use the eor type, whose information is
2021 stored by bidi_set_sor_type in the prev_for_neutral
2022 member. */
2023 if (saved_it.type != WEAK_BN
2024 || bidi_get_category (bidi_it->prev.type_after_w1) == NEUTRAL)
2025 next_type = bidi_it->prev_for_neutral.type;
2026 else
2028 /* This is a BN which does not adjoin neutrals.
2029 Leave its type alone. */
2030 bidi_copy_it (bidi_it, &saved_it);
2031 return bidi_it->type;
2033 break;
2034 default:
2035 emacs_abort ();
2037 type = bidi_resolve_neutral_1 (saved_it.prev_for_neutral.type,
2038 next_type, current_level);
2039 saved_it.next_for_neutral.type = next_type;
2040 saved_it.type = type;
2041 bidi_check_type (next_type);
2042 bidi_check_type (type);
2043 bidi_copy_it (bidi_it, &saved_it);
2046 return type;
2049 /* Given an iterator state in BIDI_IT, advance one character position
2050 in the buffer/string to the next character (in the logical order),
2051 resolve the bidi type of that next character, and return that
2052 type. */
2053 static bidi_type_t
2054 bidi_type_of_next_char (struct bidi_it *bidi_it)
2056 bidi_type_t type;
2058 /* This should always be called during a forward scan. */
2059 if (bidi_it->scan_dir != 1)
2060 emacs_abort ();
2062 /* Reset the limit until which to ignore BNs if we step out of the
2063 area where we found only empty levels. */
2064 if ((bidi_it->ignore_bn_limit > -1
2065 && bidi_it->ignore_bn_limit <= bidi_it->charpos)
2066 || (bidi_it->ignore_bn_limit == -2
2067 && !bidi_explicit_dir_char (bidi_it->ch)))
2068 bidi_it->ignore_bn_limit = -1;
2070 type = bidi_resolve_neutral (bidi_it);
2072 return type;
2075 /* Given an iterator state BIDI_IT, advance one character position in
2076 the buffer/string to the next character (in the current scan
2077 direction), resolve the embedding and implicit levels of that next
2078 character, and return the resulting level. */
2079 static int
2080 bidi_level_of_next_char (struct bidi_it *bidi_it)
2082 bidi_type_t type;
2083 int level, prev_level = -1;
2084 struct bidi_saved_info next_for_neutral;
2085 ptrdiff_t next_char_pos = -2;
2087 if (bidi_it->scan_dir == 1)
2089 ptrdiff_t eob
2090 = ((bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2091 ? bidi_it->string.schars : ZV);
2093 /* There's no sense in trying to advance if we hit end of text. */
2094 if (bidi_it->charpos >= eob)
2095 return bidi_it->resolved_level;
2097 /* Record the info about the previous character. */
2098 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
2099 && bidi_it->type != WEAK_BN)
2100 bidi_remember_char (&bidi_it->prev, bidi_it);
2101 if (bidi_it->type_after_w1 == STRONG_R
2102 || bidi_it->type_after_w1 == STRONG_L
2103 || bidi_it->type_after_w1 == STRONG_AL)
2104 bidi_remember_char (&bidi_it->last_strong, bidi_it);
2105 /* FIXME: it sounds like we don't need both prev and
2106 prev_for_neutral members, but I'm leaving them both for now. */
2107 if (bidi_it->type == STRONG_R || bidi_it->type == STRONG_L
2108 || bidi_it->type == WEAK_EN || bidi_it->type == WEAK_AN)
2109 bidi_remember_char (&bidi_it->prev_for_neutral, bidi_it);
2111 /* If we overstepped the characters used for resolving neutrals
2112 and whitespace, invalidate their info in the iterator. */
2113 if (bidi_it->charpos >= bidi_it->next_for_neutral.charpos)
2114 bidi_it->next_for_neutral.type = UNKNOWN_BT;
2115 if (bidi_it->next_en_pos >= 0
2116 && bidi_it->charpos >= bidi_it->next_en_pos)
2118 bidi_it->next_en_pos = 0;
2119 bidi_it->next_en_type = UNKNOWN_BT;
2121 if (bidi_it->next_for_ws.type != UNKNOWN_BT
2122 && bidi_it->charpos >= bidi_it->next_for_ws.charpos)
2123 bidi_it->next_for_ws.type = UNKNOWN_BT;
2125 /* This must be taken before we fill the iterator with the info
2126 about the next char. If we scan backwards, the iterator
2127 state must be already cached, so there's no need to know the
2128 embedding level of the previous character, since we will be
2129 returning to our caller shortly. */
2130 prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
2132 next_for_neutral = bidi_it->next_for_neutral;
2134 /* Perhaps the character we want is already cached. If it is, the
2135 call to bidi_cache_find below will return a type other than
2136 UNKNOWN_BT. */
2137 if (bidi_cache_idx > bidi_cache_start && !bidi_it->first_elt)
2139 int bob = ((bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2140 ? 0 : 1);
2141 if (bidi_it->scan_dir > 0)
2143 if (bidi_it->nchars <= 0)
2144 emacs_abort ();
2145 next_char_pos = bidi_it->charpos + bidi_it->nchars;
2147 else if (bidi_it->charpos >= bob)
2148 /* Implementation note: we allow next_char_pos to be as low as
2149 0 for buffers or -1 for strings, and that is okay because
2150 that's the "position" of the sentinel iterator state we
2151 cached at the beginning of the iteration. */
2152 next_char_pos = bidi_it->charpos - 1;
2153 if (next_char_pos >= bob - 1)
2154 type = bidi_cache_find (next_char_pos, -1, bidi_it);
2155 else
2156 type = UNKNOWN_BT;
2158 else
2159 type = UNKNOWN_BT;
2160 if (type != UNKNOWN_BT)
2162 /* Don't lose the information for resolving neutrals! The
2163 cached states could have been cached before their
2164 next_for_neutral member was computed. If we are on our way
2165 forward, we can simply take the info from the previous
2166 state. */
2167 if (bidi_it->scan_dir == 1
2168 && bidi_it->next_for_neutral.type == UNKNOWN_BT)
2169 bidi_it->next_for_neutral = next_for_neutral;
2171 /* If resolved_level is -1, it means this state was cached
2172 before it was completely resolved, so we cannot return
2173 it. */
2174 if (bidi_it->resolved_level != -1)
2175 return bidi_it->resolved_level;
2177 if (bidi_it->scan_dir == -1)
2178 /* If we are going backwards, the iterator state is already cached
2179 from previous scans, and should be fully resolved. */
2180 emacs_abort ();
2182 if (type == UNKNOWN_BT)
2183 type = bidi_type_of_next_char (bidi_it);
2185 if (type == NEUTRAL_B)
2186 return bidi_it->resolved_level;
2188 level = bidi_it->level_stack[bidi_it->stack_idx].level;
2189 if ((bidi_get_category (type) == NEUTRAL /* && type != NEUTRAL_B */)
2190 || (type == WEAK_BN && prev_level == level))
2192 if (bidi_it->next_for_neutral.type == UNKNOWN_BT)
2193 emacs_abort ();
2195 /* If the cached state shows a neutral character, it was not
2196 resolved by bidi_resolve_neutral, so do it now. */
2197 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
2198 bidi_it->next_for_neutral.type,
2199 level);
2202 if (!(type == STRONG_R
2203 || type == STRONG_L
2204 || type == WEAK_BN
2205 || type == WEAK_EN
2206 || type == WEAK_AN))
2207 emacs_abort ();
2208 bidi_it->type = type;
2209 bidi_check_type (bidi_it->type);
2211 /* For L1 below, we need to know, for each WS character, whether
2212 it belongs to a sequence of WS characters preceding a newline
2213 or a TAB or a paragraph separator. */
2214 if (bidi_it->orig_type == NEUTRAL_WS
2215 && bidi_it->next_for_ws.type == UNKNOWN_BT)
2217 int ch;
2218 ptrdiff_t clen = bidi_it->ch_len;
2219 ptrdiff_t bpos = bidi_it->bytepos;
2220 ptrdiff_t cpos = bidi_it->charpos;
2221 ptrdiff_t disp_pos = bidi_it->disp_pos;
2222 ptrdiff_t nc = bidi_it->nchars;
2223 struct bidi_string_data bs = bidi_it->string;
2224 bidi_type_t chtype;
2225 bool fwp = bidi_it->frame_window_p;
2226 int dpp = bidi_it->disp_prop;
2228 if (bidi_it->nchars <= 0)
2229 emacs_abort ();
2230 do {
2231 ch = bidi_fetch_char (cpos += nc, bpos += clen, &disp_pos, &dpp, &bs,
2232 bidi_it->w, fwp, &clen, &nc);
2233 if (ch == '\n' || ch == BIDI_EOB)
2234 chtype = NEUTRAL_B;
2235 else
2236 chtype = bidi_get_type (ch, NEUTRAL_DIR);
2237 } while (chtype == NEUTRAL_WS || chtype == WEAK_BN
2238 || bidi_explicit_dir_char (ch)); /* L1/Retaining */
2239 bidi_it->next_for_ws.type = chtype;
2240 bidi_check_type (bidi_it->next_for_ws.type);
2241 bidi_it->next_for_ws.charpos = cpos;
2242 bidi_it->next_for_ws.bytepos = bpos;
2245 /* Resolve implicit levels, with a twist: PDFs get the embedding
2246 level of the embedding they terminate. See below for the
2247 reason. */
2248 if (bidi_it->orig_type == PDF
2249 /* Don't do this if this formatting code didn't change the
2250 embedding level due to invalid or empty embeddings. */
2251 && prev_level != level)
2253 /* Don't look in UAX#9 for the reason for this: it's our own
2254 private quirk. The reason is that we want the formatting
2255 codes to be delivered so that they bracket the text of their
2256 embedding. For example, given the text
2258 {RLO}teST{PDF}
2260 we want it to be displayed as
2262 {PDF}STet{RLO}
2264 not as
2266 STet{RLO}{PDF}
2268 which will result because we bump up the embedding level as
2269 soon as we see the RLO and pop it as soon as we see the PDF,
2270 so RLO itself has the same embedding level as "teST", and
2271 thus would be normally delivered last, just before the PDF.
2272 The switch below fiddles with the level of PDF so that this
2273 ugly side effect does not happen.
2275 (This is, of course, only important if the formatting codes
2276 are actually displayed, but Emacs does need to display them
2277 if the user wants to.) */
2278 level = prev_level;
2280 else if (bidi_it->orig_type == NEUTRAL_B /* L1 */
2281 || bidi_it->orig_type == NEUTRAL_S
2282 || bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB
2283 || (bidi_it->orig_type == NEUTRAL_WS
2284 && (bidi_it->next_for_ws.type == NEUTRAL_B
2285 || bidi_it->next_for_ws.type == NEUTRAL_S)))
2286 level = bidi_it->level_stack[0].level;
2287 else if ((level & 1) == 0) /* I1 */
2289 if (type == STRONG_R)
2290 level++;
2291 else if (type == WEAK_EN || type == WEAK_AN)
2292 level += 2;
2294 else /* I2 */
2296 if (type == STRONG_L || type == WEAK_EN || type == WEAK_AN)
2297 level++;
2300 bidi_it->resolved_level = level;
2301 return level;
2304 /* Move to the other edge of a level given by LEVEL. If END_FLAG,
2305 we are at the end of a level, and we need to prepare to
2306 resume the scan of the lower level.
2308 If this level's other edge is cached, we simply jump to it, filling
2309 the iterator structure with the iterator state on the other edge.
2310 Otherwise, we walk the buffer or string until we come back to the
2311 same level as LEVEL.
2313 Note: we are not talking here about a ``level run'' in the UAX#9
2314 sense of the term, but rather about a ``level'' which includes
2315 all the levels higher than it. In other words, given the levels
2316 like this:
2318 11111112222222333333334443343222222111111112223322111
2319 A B C
2321 and assuming we are at point A scanning left to right, this
2322 function moves to point C, whereas the UAX#9 ``level 2 run'' ends
2323 at point B. */
2324 static void
2325 bidi_find_other_level_edge (struct bidi_it *bidi_it, int level, bool end_flag)
2327 int dir = end_flag ? -bidi_it->scan_dir : bidi_it->scan_dir;
2328 ptrdiff_t idx;
2330 /* Try the cache first. */
2331 if ((idx = bidi_cache_find_level_change (level, dir, end_flag))
2332 >= bidi_cache_start)
2333 bidi_cache_fetch_state (idx, bidi_it);
2334 else
2336 int new_level;
2338 /* If we are at end of level, its edges must be cached. */
2339 if (end_flag)
2340 emacs_abort ();
2342 bidi_cache_iterator_state (bidi_it, 1);
2343 do {
2344 new_level = bidi_level_of_next_char (bidi_it);
2345 bidi_cache_iterator_state (bidi_it, 1);
2346 } while (new_level >= level);
2350 void
2351 bidi_move_to_visually_next (struct bidi_it *bidi_it)
2353 int old_level, new_level, next_level;
2354 struct bidi_it sentinel;
2355 struct gcpro gcpro1;
2357 if (bidi_it->charpos < 0 || bidi_it->bytepos < 0)
2358 emacs_abort ();
2360 if (bidi_it->scan_dir == 0)
2362 bidi_it->scan_dir = 1; /* default to logical order */
2365 /* The code below can call eval, and thus cause GC. If we are
2366 iterating a Lisp string, make sure it won't be GCed. */
2367 if (STRINGP (bidi_it->string.lstring))
2368 GCPRO1 (bidi_it->string.lstring);
2370 /* If we just passed a newline, initialize for the next line. */
2371 if (!bidi_it->first_elt
2372 && (bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB))
2373 bidi_line_init (bidi_it);
2375 /* Prepare the sentinel iterator state, and cache it. When we bump
2376 into it, scanning backwards, we'll know that the last non-base
2377 level is exhausted. */
2378 if (bidi_cache_idx == bidi_cache_start)
2380 bidi_copy_it (&sentinel, bidi_it);
2381 if (bidi_it->first_elt)
2383 sentinel.charpos--; /* cached charpos needs to be monotonic */
2384 sentinel.bytepos--;
2385 sentinel.ch = '\n'; /* doesn't matter, but why not? */
2386 sentinel.ch_len = 1;
2387 sentinel.nchars = 1;
2389 bidi_cache_iterator_state (&sentinel, 1);
2392 old_level = bidi_it->resolved_level;
2393 new_level = bidi_level_of_next_char (bidi_it);
2395 /* Reordering of resolved levels (clause L2) is implemented by
2396 jumping to the other edge of the level and flipping direction of
2397 scanning the text whenever we find a level change. */
2398 if (new_level != old_level)
2400 bool ascending = new_level > old_level;
2401 int level_to_search = ascending ? old_level + 1 : old_level;
2402 int incr = ascending ? 1 : -1;
2403 int expected_next_level = old_level + incr;
2405 /* Jump (or walk) to the other edge of this level. */
2406 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
2407 /* Switch scan direction and peek at the next character in the
2408 new direction. */
2409 bidi_it->scan_dir = -bidi_it->scan_dir;
2411 /* The following loop handles the case where the resolved level
2412 jumps by more than one. This is typical for numbers inside a
2413 run of text with left-to-right embedding direction, but can
2414 also happen in other situations. In those cases the decision
2415 where to continue after a level change, and in what direction,
2416 is tricky. For example, given a text like below:
2418 abcdefgh
2419 11336622
2421 (where the numbers below the text show the resolved levels),
2422 the result of reordering according to UAX#9 should be this:
2424 efdcghba
2426 This is implemented by the loop below which flips direction
2427 and jumps to the other edge of the level each time it finds
2428 the new level not to be the expected one. The expected level
2429 is always one more or one less than the previous one. */
2430 next_level = bidi_peek_at_next_level (bidi_it);
2431 while (next_level != expected_next_level)
2433 /* If next_level is -1, it means we have an unresolved level
2434 in the cache, which at this point should not happen. If
2435 it does, we will infloop. */
2436 eassert (next_level >= 0);
2437 expected_next_level += incr;
2438 level_to_search += incr;
2439 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
2440 bidi_it->scan_dir = -bidi_it->scan_dir;
2441 next_level = bidi_peek_at_next_level (bidi_it);
2444 /* Finally, deliver the next character in the new direction. */
2445 next_level = bidi_level_of_next_char (bidi_it);
2448 /* Take note when we have just processed the newline that precedes
2449 the end of the paragraph. The next time we are about to be
2450 called, set_iterator_to_next will automatically reinit the
2451 paragraph direction, if needed. We do this at the newline before
2452 the paragraph separator, because the next character might not be
2453 the first character of the next paragraph, due to the bidi
2454 reordering, whereas we _must_ know the paragraph base direction
2455 _before_ we process the paragraph's text, since the base
2456 direction affects the reordering. */
2457 if (bidi_it->scan_dir == 1
2458 && (bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB))
2460 /* The paragraph direction of the entire string, once
2461 determined, is in effect for the entire string. Setting the
2462 separator limit to the end of the string prevents
2463 bidi_paragraph_init from being called automatically on this
2464 string. */
2465 if (bidi_it->string.s || STRINGP (bidi_it->string.lstring))
2466 bidi_it->separator_limit = bidi_it->string.schars;
2467 else if (bidi_it->bytepos < ZV_BYTE)
2469 ptrdiff_t sep_len
2470 = bidi_at_paragraph_end (bidi_it->charpos + bidi_it->nchars,
2471 bidi_it->bytepos + bidi_it->ch_len);
2472 if (bidi_it->nchars <= 0)
2473 emacs_abort ();
2474 if (sep_len >= 0)
2476 bidi_it->new_paragraph = 1;
2477 /* Record the buffer position of the last character of the
2478 paragraph separator. */
2479 bidi_it->separator_limit
2480 = bidi_it->charpos + bidi_it->nchars + sep_len;
2485 if (bidi_it->scan_dir == 1 && bidi_cache_idx > bidi_cache_start)
2487 /* If we are at paragraph's base embedding level and beyond the
2488 last cached position, the cache's job is done and we can
2489 discard it. */
2490 if (bidi_it->resolved_level == bidi_it->level_stack[0].level
2491 && bidi_it->charpos > (bidi_cache[bidi_cache_idx - 1].charpos
2492 + bidi_cache[bidi_cache_idx - 1].nchars - 1))
2493 bidi_cache_reset ();
2494 /* But as long as we are caching during forward scan, we must
2495 cache each state, or else the cache integrity will be
2496 compromised: it assumes cached states correspond to buffer
2497 positions 1:1. */
2498 else
2499 bidi_cache_iterator_state (bidi_it, 1);
2502 if (STRINGP (bidi_it->string.lstring))
2503 UNGCPRO;
2506 /* This is meant to be called from within the debugger, whenever you
2507 wish to examine the cache contents. */
2508 void bidi_dump_cached_states (void) EXTERNALLY_VISIBLE;
2509 void
2510 bidi_dump_cached_states (void)
2512 ptrdiff_t i;
2513 int ndigits = 1;
2515 if (bidi_cache_idx == 0)
2517 fprintf (stderr, "The cache is empty.\n");
2518 return;
2520 fprintf (stderr, "Total of %"pD"d state%s in cache:\n",
2521 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s");
2523 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10)
2524 ndigits++;
2525 fputs ("ch ", stderr);
2526 for (i = 0; i < bidi_cache_idx; i++)
2527 fprintf (stderr, "%*c", ndigits, bidi_cache[i].ch);
2528 fputs ("\n", stderr);
2529 fputs ("lvl ", stderr);
2530 for (i = 0; i < bidi_cache_idx; i++)
2531 fprintf (stderr, "%*d", ndigits, bidi_cache[i].resolved_level);
2532 fputs ("\n", stderr);
2533 fputs ("pos ", stderr);
2534 for (i = 0; i < bidi_cache_idx; i++)
2535 fprintf (stderr, "%*"pD"d", ndigits, bidi_cache[i].charpos);
2536 fputs ("\n", stderr);