1 /* Low-level bidirectional buffer/string-scanning functions for GNU Emacs.
2 Copyright (C) 2000-2001, 2004-2005, 2009-2013 Free Software
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
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
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
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". */
61 #include "character.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
74 /* Data type for describing the bidirectional character categories. */
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
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 /***********************************************************************
96 ***********************************************************************/
98 /* Return the bidi type of a character CH, subject to the current
99 directional OVERRIDE. */
101 bidi_get_type (int ch
, bidi_dir_t override
)
103 bidi_type_t default_type
;
107 if (ch
< 0 || ch
> MAX_CHAR
)
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
)
118 if (override
== NEUTRAL_DIR
)
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. */
139 if (override
== L2R
) /* X6 */
141 else if (override
== R2L
)
144 emacs_abort (); /* can't happen: handled above */
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
)
171 case PDF
: /* ??? really?? */
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
)
201 if (c
< 0 || c
> MAX_CHAR
)
204 val
= CHAR_TABLE_REF (bidi_mirror_table
, c
);
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
)));
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
)
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. */
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. */
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. */
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. */
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. */
300 bidi_copy_it (struct bidi_it
*to
, struct bidi_it
*from
)
302 /* Copy everything from the start through the active part of
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
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. */
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. */
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. */
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
;
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
)
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. */
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
)
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))
401 i_start
= bidi_cache_last_idx
+ 1;
404 i_start
= bidi_cache_last_idx
;
408 i_start
= bidi_cache_idx
- 1;
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
))
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
))
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:
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,
449 bidi_cache_find_level_change (int level
, int dir
, bool before
)
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);
465 while (i
>= bidi_cache_start
+ incr
)
467 if (bidi_cache
[i
- incr
].resolved_level
>= 0
468 && bidi_cache
[i
- incr
].resolved_level
< level
)
475 while (i
< bidi_cache_idx
- incr
)
477 if (bidi_cache
[i
+ incr
].resolved_level
>= 0
478 && bidi_cache
[i
+ incr
].resolved_level
< level
)
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
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. */
501 = (min (PTRDIFF_MAX
, SIZE_MAX
) - bidi_shelve_header_size
) / elsz
;
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
);
511 bidi_cache_iterator_state (struct bidi_it
*bidi_it
, bool resolved
)
515 /* We should never cache on backward scans. */
516 if (bidi_it
->scan_dir
== -1)
518 idx
= bidi_cache_search (bidi_it
->charpos
, -1, 1);
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
))
533 idx
= bidi_cache_start
;
535 if (bidi_it
->nchars
<= 0)
537 bidi_copy_it (&bidi_cache
[idx
], bidi_it
);
539 bidi_cache
[idx
].resolved_level
= -1;
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
);
550 bidi_cache
[idx
].resolved_level
= bidi_it
->resolved_level
;
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;
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
;
588 bidi_peek_at_next_level (struct bidi_it
*bidi_it
)
590 if (bidi_cache_idx
== bidi_cache_start
|| bidi_cache_last_idx
== -1)
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. */
606 bidi_push_it (struct bidi_it
*bidi_it
)
608 /* Save the current iterator state in its entirety after the last
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. */
625 bidi_pop_it (struct bidi_it
*bidi_it
)
627 if (bidi_cache_start
<= 0)
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)
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. */
650 bidi_shelve_cache (void)
652 unsigned char *databuf
;
656 if (bidi_cache_idx
== 0)
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
));
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
693 bidi_unshelve_cache (void *databuf
, bool just_free
)
695 unsigned char *p
= databuf
;
701 /* A NULL pointer means an empty cache. */
702 bidi_cache_start
= 0;
713 memcpy (&idx
, p
, sizeof (bidi_cache_idx
));
714 bidi_cache_total_alloc
715 -= bidi_shelve_header_size
+ idx
* sizeof (struct bidi_it
);
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
));
753 /***********************************************************************
755 ***********************************************************************/
757 bidi_initialize (void)
759 bidi_type_table
= uniprop_table (intern ("bidi-class"));
760 if (NILP (bidi_type_table
))
762 staticpro (&bidi_type_table
);
764 bidi_mirror_table
= uniprop_table (intern ("mirroring"));
765 if (NILP (bidi_mirror_table
))
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 (¶graph_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 (¶graph_separate_re
);
783 bidi_cache_total_alloc
= 0;
785 bidi_initialized
= 1;
788 /* Do whatever UAX#9 clause X8 says should be done at paragraph's
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. */
801 bidi_init_it (ptrdiff_t charpos
, ptrdiff_t bytepos
, bool frame_window_p
,
802 struct bidi_it
*bidi_it
)
804 if (! bidi_initialized
)
807 bidi_it
->charpos
= charpos
;
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
837 if (bidi_cache_start
== 0)
838 bidi_cache_shrink ();
843 /* Perform initializations for reordering a new line of bidi text. */
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 */
865 /***********************************************************************
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. */
873 bidi_count_bytes (const unsigned char *s
, ptrdiff_t beg
,
874 ptrdiff_t begbyte
, ptrdiff_t end
, bool unibyte
)
877 const unsigned char *p
= s
+ begbyte
, *start
= p
;
883 if (!CHAR_HEAD_P (*p
))
888 p
+= BYTES_BY_CHAR_HEAD (*p
);
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
901 bidi_char_at_pos (ptrdiff_t bytepos
, const unsigned char *s
, bool unibyte
)
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. */
929 bidi_fetch_char (ptrdiff_t charpos
, ptrdiff_t bytepos
, ptrdiff_t *disp_pos
,
930 int *disp_prop
, struct bidi_string_data
*string
,
932 bool frame_window_p
, ptrdiff_t *ch_len
, ptrdiff_t *nchars
)
936 = (string
->s
|| STRINGP (string
->lstring
)) ? string
->schars
: ZV
;
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
,
949 /* Fetch the character at BYTEPOS. */
950 if (charpos
>= endpos
)
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
)
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. */
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. */
979 /* All other display specs are handled as the Unicode Object
980 Replacement Character. */
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
993 *nchars
= disp_end_pos
- *disp_pos
;
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
);
1003 *ch_len
= CHAR_TO_BYTE (disp_end_pos
) - bytepos
;
1011 if (!string
->unibyte
)
1013 ch
= STRING_CHAR_AND_LENGTH (string
->s
+ bytepos
, len
);
1018 ch
= UNIBYTE_TO_CHAR (string
->s
[bytepos
]);
1022 else if (STRINGP (string
->lstring
))
1024 if (!string
->unibyte
)
1026 ch
= STRING_CHAR_AND_LENGTH (SDATA (string
->lstring
) + bytepos
,
1032 ch
= UNIBYTE_TO_CHAR (SREF (string
->lstring
, bytepos
));
1038 ch
= STRING_CHAR_AND_LENGTH (BYTE_POS_ADDR (bytepos
), len
);
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
1049 SET_TEXT_POS (pos
, charpos
+ *nchars
, bytepos
+ *ch_len
);
1050 *disp_pos
= compute_display_string_pos (&pos
, string
, w
, frame_window_p
,
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. */
1068 bidi_at_paragraph_end (ptrdiff_t charpos
, ptrdiff_t bytepos
)
1071 Lisp_Object start_re
;
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
);
1080 if (fast_looking_at (start_re
, charpos
, bytepos
, ZV
, ZV_BYTE
, Qnil
) >= 0)
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;
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. */
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
);
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
;
1150 know_region_cache (current_buffer
, bpc
, pos
, oldpos
);
1151 /* Positions returned by the region cache are not limited to
1152 BEGV..ZV range, so we limit them here. */
1153 pos_byte
= clip_to_bounds (BEGV_BYTE
, pos_byte
, ZV_BYTE
);
1157 /* On a 3.4 GHz machine, searching forward for a strong directional
1158 character in a long paragraph full of weaks or neutrals takes about
1159 1 ms for each 20K characters. The number below limits each call to
1160 bidi_paragraph_init to less than 10 ms even on slow machines. */
1161 #define MAX_STRONG_CHAR_SEARCH 100000
1163 /* Determine the base direction, a.k.a. base embedding level, of the
1164 paragraph we are about to iterate through. If DIR is either L2R or
1165 R2L, just use that. Otherwise, determine the paragraph direction
1166 from the first strong directional character of the paragraph.
1168 NO_DEFAULT_P means don't default to L2R if the paragraph
1169 has no strong directional characters and both DIR and
1170 bidi_it->paragraph_dir are NEUTRAL_DIR. In that case, search back
1171 in the buffer until a paragraph is found with a strong character,
1172 or until hitting BEGV. In the latter case, fall back to L2R. This
1173 flag is used in current-bidi-paragraph-direction.
1175 Note that this function gives the paragraph separator the same
1176 direction as the preceding paragraph, even though Emacs generally
1177 views the separator as not belonging to any paragraph. */
1179 bidi_paragraph_init (bidi_dir_t dir
, struct bidi_it
*bidi_it
, bool no_default_p
)
1181 ptrdiff_t bytepos
= bidi_it
->bytepos
;
1182 bool string_p
= bidi_it
->string
.s
|| STRINGP (bidi_it
->string
.lstring
);
1183 ptrdiff_t pstartbyte
;
1184 /* Note that begbyte is a byte position, while end is a character
1185 position. Yes, this is ugly, but we are trying to avoid costly
1186 calls to BYTE_TO_CHAR and its ilk. */
1187 ptrdiff_t begbyte
= string_p
? 0 : BEGV_BYTE
;
1188 ptrdiff_t end
= string_p
? bidi_it
->string
.schars
: ZV
;
1190 /* Special case for an empty buffer. */
1191 if (bytepos
== begbyte
&& bidi_it
->charpos
== end
)
1193 /* We should never be called at EOB or before BEGV. */
1194 else if (bidi_it
->charpos
>= end
|| bytepos
< begbyte
)
1199 bidi_it
->paragraph_dir
= L2R
;
1200 bidi_it
->new_paragraph
= 0;
1202 else if (dir
== R2L
)
1204 bidi_it
->paragraph_dir
= R2L
;
1205 bidi_it
->new_paragraph
= 0;
1207 else if (dir
== NEUTRAL_DIR
) /* P2 */
1210 ptrdiff_t ch_len
, nchars
;
1211 ptrdiff_t pos
, disp_pos
= -1;
1214 const unsigned char *s
;
1216 if (!bidi_initialized
)
1219 /* If we are inside a paragraph separator, we are just waiting
1220 for the separator to be exhausted; use the previous paragraph
1221 direction. But don't do that if we have been just reseated,
1222 because we need to reinitialize below in that case. */
1223 if (!bidi_it
->first_elt
1224 && bidi_it
->charpos
< bidi_it
->separator_limit
)
1227 /* If we are on a newline, get past it to where the next
1228 paragraph might start. But don't do that at BEGV since then
1229 we are potentially in a new paragraph that doesn't yet
1231 pos
= bidi_it
->charpos
;
1232 s
= (STRINGP (bidi_it
->string
.lstring
)
1233 ? SDATA (bidi_it
->string
.lstring
)
1234 : bidi_it
->string
.s
);
1235 if (bytepos
> begbyte
1236 && bidi_char_at_pos (bytepos
, s
, bidi_it
->string
.unibyte
) == '\n')
1242 /* We are either at the beginning of a paragraph or in the
1243 middle of it. Find where this paragraph starts. */
1246 /* We don't support changes of paragraph direction inside a
1247 string. It is treated as a single paragraph. */
1251 pstartbyte
= bidi_find_paragraph_start (pos
, bytepos
);
1252 bidi_it
->separator_limit
= -1;
1253 bidi_it
->new_paragraph
= 0;
1255 /* The following loop is run more than once only if NO_DEFAULT_P,
1256 and only if we are iterating on a buffer. */
1260 bytepos
= pstartbyte
;
1262 pos
= BYTE_TO_CHAR (bytepos
);
1263 ch
= bidi_fetch_char (pos
, bytepos
, &disp_pos
, &disp_prop
,
1264 &bidi_it
->string
, bidi_it
->w
,
1265 bidi_it
->frame_window_p
, &ch_len
, &nchars
);
1266 type
= bidi_get_type (ch
, NEUTRAL_DIR
);
1269 for (pos
+= nchars
, bytepos
+= ch_len
;
1270 ((bidi_get_category (type
) != STRONG
)
1271 || (bidi_ignore_explicit_marks_for_paragraph_level
1272 && (type
== RLE
|| type
== RLO
1273 || type
== LRE
|| type
== LRO
)))
1274 /* Stop when searched too far into an abnormally large
1275 paragraph full of weak or neutral characters. */
1276 && pos
- pos1
< MAX_STRONG_CHAR_SEARCH
;
1277 type
= bidi_get_type (ch
, NEUTRAL_DIR
))
1281 /* Pretend there's a paragraph separator at end of
1287 && type
== NEUTRAL_B
1288 && bidi_at_paragraph_end (pos
, bytepos
) >= -1)
1290 /* Fetch next character and advance to get past it. */
1291 ch
= bidi_fetch_char (pos
, bytepos
, &disp_pos
,
1292 &disp_prop
, &bidi_it
->string
, bidi_it
->w
,
1293 bidi_it
->frame_window_p
, &ch_len
, &nchars
);
1297 if ((type
== STRONG_R
|| type
== STRONG_AL
) /* P3 */
1298 || (!bidi_ignore_explicit_marks_for_paragraph_level
1299 && (type
== RLO
|| type
== RLE
)))
1300 bidi_it
->paragraph_dir
= R2L
;
1301 else if (type
== STRONG_L
1302 || (!bidi_ignore_explicit_marks_for_paragraph_level
1303 && (type
== LRO
|| type
== LRE
)))
1304 bidi_it
->paragraph_dir
= L2R
;
1306 && no_default_p
&& bidi_it
->paragraph_dir
== NEUTRAL_DIR
)
1308 /* If this paragraph is at BEGV, default to L2R. */
1309 if (pstartbyte
== BEGV_BYTE
)
1310 bidi_it
->paragraph_dir
= L2R
; /* P3 and HL1 */
1313 ptrdiff_t prevpbyte
= pstartbyte
;
1314 ptrdiff_t p
= BYTE_TO_CHAR (pstartbyte
), pbyte
= pstartbyte
;
1316 /* Find the beginning of the previous paragraph, if any. */
1317 while (pbyte
> BEGV_BYTE
&& prevpbyte
>= pstartbyte
)
1319 /* FXIME: What if p is covered by a display
1320 string? See also a FIXME inside
1321 bidi_find_paragraph_start. */
1322 DEC_BOTH (p
, pbyte
);
1323 prevpbyte
= bidi_find_paragraph_start (p
, pbyte
);
1325 pstartbyte
= prevpbyte
;
1329 && no_default_p
&& bidi_it
->paragraph_dir
== NEUTRAL_DIR
);
1334 /* Contrary to UAX#9 clause P3, we only default the paragraph
1335 direction to L2R if we have no previous usable paragraph
1336 direction. This is allowed by the HL1 clause. */
1337 if (bidi_it
->paragraph_dir
!= L2R
&& bidi_it
->paragraph_dir
!= R2L
)
1338 bidi_it
->paragraph_dir
= L2R
; /* P3 and HL1 ``higher-level protocols'' */
1339 if (bidi_it
->paragraph_dir
== R2L
)
1340 bidi_it
->level_stack
[0].level
= 1;
1342 bidi_it
->level_stack
[0].level
= 0;
1344 bidi_line_init (bidi_it
);
1348 /***********************************************************************
1349 Resolving explicit and implicit levels.
1350 The rest of this file constitutes the core of the UBA implementation.
1351 ***********************************************************************/
1354 bidi_explicit_dir_char (int ch
)
1356 bidi_type_t ch_type
;
1358 if (!bidi_initialized
)
1360 ch_type
= (bidi_type_t
) XINT (CHAR_TABLE_REF (bidi_type_table
, ch
));
1361 return (ch_type
== LRE
|| ch_type
== LRO
1362 || ch_type
== RLE
|| ch_type
== RLO
1366 /* A helper function for bidi_resolve_explicit. It advances to the
1367 next character in logical order and determines the new embedding
1368 level and directional override, but does not take into account
1369 empty embeddings. */
1371 bidi_resolve_explicit_1 (struct bidi_it
*bidi_it
)
1377 bidi_dir_t override
;
1378 bool string_p
= bidi_it
->string
.s
|| STRINGP (bidi_it
->string
.lstring
);
1380 /* If reseat()'ed, don't advance, so as to start iteration from the
1381 position where we were reseated. bidi_it->bytepos can be less
1382 than BEGV_BYTE after reseat to BEGV. */
1383 if (bidi_it
->bytepos
< (string_p
? 0 : BEGV_BYTE
)
1384 || bidi_it
->first_elt
)
1386 bidi_it
->first_elt
= 0;
1389 const unsigned char *p
1390 = (STRINGP (bidi_it
->string
.lstring
)
1391 ? SDATA (bidi_it
->string
.lstring
)
1392 : bidi_it
->string
.s
);
1394 if (bidi_it
->charpos
< 0)
1395 bidi_it
->charpos
= bidi_it
->bytepos
= 0;
1396 eassert (bidi_it
->bytepos
== bidi_count_bytes (p
, 0, 0,
1398 bidi_it
->string
.unibyte
));
1402 if (bidi_it
->charpos
< BEGV
)
1404 bidi_it
->charpos
= BEGV
;
1405 bidi_it
->bytepos
= BEGV_BYTE
;
1407 eassert (bidi_it
->bytepos
== CHAR_TO_BYTE (bidi_it
->charpos
));
1410 /* Don't move at end of buffer/string. */
1411 else if (bidi_it
->charpos
< (string_p
? bidi_it
->string
.schars
: ZV
))
1413 /* Advance to the next character, skipping characters covered by
1414 display strings (nchars > 1). */
1415 if (bidi_it
->nchars
<= 0)
1417 bidi_it
->charpos
+= bidi_it
->nchars
;
1418 if (bidi_it
->ch_len
== 0)
1420 bidi_it
->bytepos
+= bidi_it
->ch_len
;
1423 current_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
; /* X1 */
1424 override
= bidi_it
->level_stack
[bidi_it
->stack_idx
].override
;
1425 new_level
= current_level
;
1427 if (bidi_it
->charpos
>= (string_p
? bidi_it
->string
.schars
: ZV
))
1430 bidi_it
->ch_len
= 1;
1431 bidi_it
->nchars
= 1;
1432 bidi_it
->disp_pos
= (string_p
? bidi_it
->string
.schars
: ZV
);
1433 bidi_it
->disp_prop
= 0;
1437 /* Fetch the character at BYTEPOS. If it is covered by a
1438 display string, treat the entire run of covered characters as
1439 a single character u+FFFC. */
1440 curchar
= bidi_fetch_char (bidi_it
->charpos
, bidi_it
->bytepos
,
1441 &bidi_it
->disp_pos
, &bidi_it
->disp_prop
,
1442 &bidi_it
->string
, bidi_it
->w
,
1443 bidi_it
->frame_window_p
,
1444 &bidi_it
->ch_len
, &bidi_it
->nchars
);
1446 bidi_it
->ch
= curchar
;
1448 /* Don't apply directional override here, as all the types we handle
1449 below will not be affected by the override anyway, and we need
1450 the original type unaltered. The override will be applied in
1451 bidi_resolve_weak. */
1452 type
= bidi_get_type (curchar
, NEUTRAL_DIR
);
1453 bidi_it
->orig_type
= type
;
1454 bidi_check_type (bidi_it
->orig_type
);
1457 bidi_it
->prev_was_pdf
= 0;
1459 bidi_it
->type_after_w1
= UNKNOWN_BT
;
1465 bidi_it
->type_after_w1
= type
;
1466 bidi_check_type (bidi_it
->type_after_w1
);
1467 type
= WEAK_BN
; /* X9/Retaining */
1468 if (bidi_it
->ignore_bn_limit
<= -1)
1470 if (current_level
<= BIDI_MAXLEVEL
- 4)
1472 /* Compute the least odd embedding level greater than
1473 the current level. */
1474 new_level
= ((current_level
+ 1) & ~1) + 1;
1475 if (bidi_it
->type_after_w1
== RLE
)
1476 override
= NEUTRAL_DIR
;
1479 if (current_level
== BIDI_MAXLEVEL
- 4)
1480 bidi_it
->invalid_rl_levels
= 0;
1481 bidi_push_embedding_level (bidi_it
, new_level
, override
);
1485 bidi_it
->invalid_levels
++;
1486 /* See the commentary about invalid_rl_levels below. */
1487 if (bidi_it
->invalid_rl_levels
< 0)
1488 bidi_it
->invalid_rl_levels
= 0;
1489 bidi_it
->invalid_rl_levels
++;
1492 else if (bidi_it
->prev
.type_after_w1
== WEAK_EN
/* W5/Retaining */
1493 || (bidi_it
->next_en_pos
> bidi_it
->charpos
1494 && bidi_it
->next_en_type
== WEAK_EN
))
1499 bidi_it
->type_after_w1
= type
;
1500 bidi_check_type (bidi_it
->type_after_w1
);
1501 type
= WEAK_BN
; /* X9/Retaining */
1502 if (bidi_it
->ignore_bn_limit
<= -1)
1504 if (current_level
<= BIDI_MAXLEVEL
- 5)
1506 /* Compute the least even embedding level greater than
1507 the current level. */
1508 new_level
= ((current_level
+ 2) & ~1);
1509 if (bidi_it
->type_after_w1
== LRE
)
1510 override
= NEUTRAL_DIR
;
1513 bidi_push_embedding_level (bidi_it
, new_level
, override
);
1517 bidi_it
->invalid_levels
++;
1518 /* invalid_rl_levels counts invalid levels encountered
1519 while the embedding level was already too high for
1520 LRE/LRO, but not for RLE/RLO. That is because
1521 there may be exactly one PDF which we should not
1522 ignore even though invalid_levels is non-zero.
1523 invalid_rl_levels helps to know what PDF is
1525 if (bidi_it
->invalid_rl_levels
>= 0)
1526 bidi_it
->invalid_rl_levels
++;
1529 else if (bidi_it
->prev
.type_after_w1
== WEAK_EN
/* W5/Retaining */
1530 || (bidi_it
->next_en_pos
> bidi_it
->charpos
1531 && bidi_it
->next_en_type
== WEAK_EN
))
1535 bidi_it
->type_after_w1
= type
;
1536 bidi_check_type (bidi_it
->type_after_w1
);
1537 type
= WEAK_BN
; /* X9/Retaining */
1538 if (bidi_it
->ignore_bn_limit
<= -1)
1540 if (!bidi_it
->invalid_rl_levels
)
1542 new_level
= bidi_pop_embedding_level (bidi_it
);
1543 bidi_it
->invalid_rl_levels
= -1;
1544 if (bidi_it
->invalid_levels
)
1545 bidi_it
->invalid_levels
--;
1546 /* else nothing: UAX#9 says to ignore invalid PDFs */
1548 if (!bidi_it
->invalid_levels
)
1549 new_level
= bidi_pop_embedding_level (bidi_it
);
1552 bidi_it
->invalid_levels
--;
1553 bidi_it
->invalid_rl_levels
--;
1556 else if (bidi_it
->prev
.type_after_w1
== WEAK_EN
/* W5/Retaining */
1557 || (bidi_it
->next_en_pos
> bidi_it
->charpos
1558 && bidi_it
->next_en_type
== WEAK_EN
))
1566 bidi_it
->type
= type
;
1567 bidi_check_type (bidi_it
->type
);
1572 /* Given an iterator state in BIDI_IT, advance one character position
1573 in the buffer/string to the next character (in the logical order),
1574 resolve any explicit embeddings and directional overrides, and
1575 return the embedding level of the character after resolving
1576 explicit directives and ignoring empty embeddings. */
1578 bidi_resolve_explicit (struct bidi_it
*bidi_it
)
1580 int prev_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
1581 int new_level
= bidi_resolve_explicit_1 (bidi_it
);
1582 ptrdiff_t eob
= bidi_it
->string
.s
? bidi_it
->string
.schars
: ZV
;
1583 const unsigned char *s
1584 = (STRINGP (bidi_it
->string
.lstring
)
1585 ? SDATA (bidi_it
->string
.lstring
)
1586 : bidi_it
->string
.s
);
1588 if (prev_level
< new_level
1589 && bidi_it
->type
== WEAK_BN
1590 && bidi_it
->ignore_bn_limit
== -1 /* only if not already known */
1591 && bidi_it
->charpos
< eob
/* not already at EOB */
1592 && bidi_explicit_dir_char (bidi_char_at_pos (bidi_it
->bytepos
1593 + bidi_it
->ch_len
, s
,
1594 bidi_it
->string
.unibyte
)))
1596 /* Avoid pushing and popping embedding levels if the level run
1597 is empty, as this breaks level runs where it shouldn't.
1598 UAX#9 removes all the explicit embedding and override codes,
1599 so empty embeddings disappear without a trace. We need to
1600 behave as if we did the same. */
1601 struct bidi_it saved_it
;
1602 int level
= prev_level
;
1604 bidi_copy_it (&saved_it
, bidi_it
);
1606 while (bidi_explicit_dir_char (bidi_char_at_pos (bidi_it
->bytepos
1607 + bidi_it
->ch_len
, s
,
1608 bidi_it
->string
.unibyte
)))
1610 /* This advances to the next character, skipping any
1611 characters covered by display strings. */
1612 level
= bidi_resolve_explicit_1 (bidi_it
);
1613 /* If string.lstring was relocated inside bidi_resolve_explicit_1,
1614 a pointer to its data is no longer valid. */
1615 if (STRINGP (bidi_it
->string
.lstring
))
1616 s
= SDATA (bidi_it
->string
.lstring
);
1619 if (bidi_it
->nchars
<= 0)
1621 if (level
== prev_level
) /* empty embedding */
1622 saved_it
.ignore_bn_limit
= bidi_it
->charpos
+ bidi_it
->nchars
;
1623 else /* this embedding is non-empty */
1624 saved_it
.ignore_bn_limit
= -2;
1626 bidi_copy_it (bidi_it
, &saved_it
);
1627 if (bidi_it
->ignore_bn_limit
> -1)
1629 /* We pushed a level, but we shouldn't have. Undo that. */
1630 if (!bidi_it
->invalid_rl_levels
)
1632 new_level
= bidi_pop_embedding_level (bidi_it
);
1633 bidi_it
->invalid_rl_levels
= -1;
1634 if (bidi_it
->invalid_levels
)
1635 bidi_it
->invalid_levels
--;
1637 if (!bidi_it
->invalid_levels
)
1638 new_level
= bidi_pop_embedding_level (bidi_it
);
1641 bidi_it
->invalid_levels
--;
1642 bidi_it
->invalid_rl_levels
--;
1647 if (bidi_it
->type
== NEUTRAL_B
) /* X8 */
1649 bidi_set_paragraph_end (bidi_it
);
1650 /* This is needed by bidi_resolve_weak below, and in L1. */
1651 bidi_it
->type_after_w1
= bidi_it
->type
;
1652 bidi_check_type (bidi_it
->type_after_w1
);
1658 /* Advance in the buffer/string, resolve weak types and return the
1659 type of the next character after weak type resolution. */
1661 bidi_resolve_weak (struct bidi_it
*bidi_it
)
1664 bidi_dir_t override
;
1665 int prev_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
1666 int new_level
= bidi_resolve_explicit (bidi_it
);
1668 bidi_type_t type_of_next
;
1669 struct bidi_it saved_it
;
1671 = ((STRINGP (bidi_it
->string
.lstring
) || bidi_it
->string
.s
)
1672 ? bidi_it
->string
.schars
: ZV
);
1674 type
= bidi_it
->type
;
1675 override
= bidi_it
->level_stack
[bidi_it
->stack_idx
].override
;
1677 if (type
== UNKNOWN_BT
1685 if (new_level
!= prev_level
1686 || bidi_it
->type
== NEUTRAL_B
)
1688 /* We've got a new embedding level run, compute the directional
1689 type of sor and initialize per-run variables (UAX#9, clause
1691 bidi_set_sor_type (bidi_it
, prev_level
, new_level
);
1693 else if (type
== NEUTRAL_S
|| type
== NEUTRAL_WS
1694 || type
== WEAK_BN
|| type
== STRONG_AL
)
1695 bidi_it
->type_after_w1
= type
; /* needed in L1 */
1696 bidi_check_type (bidi_it
->type_after_w1
);
1698 /* Level and directional override status are already recorded in
1699 bidi_it, and do not need any change; see X6. */
1700 if (override
== R2L
) /* X6 */
1702 else if (override
== L2R
)
1706 if (type
== WEAK_NSM
) /* W1 */
1708 /* Note that we don't need to consider the case where the
1709 prev character has its type overridden by an RLO or LRO,
1710 because then either the type of this NSM would have been
1711 also overridden, or the previous character is outside the
1712 current level run, and thus not relevant to this NSM.
1713 This is why NSM gets the type_after_w1 of the previous
1715 if (bidi_it
->prev
.type_after_w1
!= UNKNOWN_BT
1716 /* if type_after_w1 is NEUTRAL_B, this NSM is at sor */
1717 && bidi_it
->prev
.type_after_w1
!= NEUTRAL_B
)
1718 type
= bidi_it
->prev
.type_after_w1
;
1719 else if (bidi_it
->sor
== R2L
)
1721 else if (bidi_it
->sor
== L2R
)
1723 else /* shouldn't happen! */
1726 if (type
== WEAK_EN
/* W2 */
1727 && bidi_it
->last_strong
.type_after_w1
== STRONG_AL
)
1729 else if (type
== STRONG_AL
) /* W3 */
1731 else if ((type
== WEAK_ES
/* W4 */
1732 && bidi_it
->prev
.type_after_w1
== WEAK_EN
1733 && bidi_it
->prev
.orig_type
== WEAK_EN
)
1735 && ((bidi_it
->prev
.type_after_w1
== WEAK_EN
1736 && bidi_it
->prev
.orig_type
== WEAK_EN
)
1737 || bidi_it
->prev
.type_after_w1
== WEAK_AN
)))
1739 const unsigned char *s
1740 = (STRINGP (bidi_it
->string
.lstring
)
1741 ? SDATA (bidi_it
->string
.lstring
)
1742 : bidi_it
->string
.s
);
1744 next_char
= (bidi_it
->charpos
+ bidi_it
->nchars
>= eob
1746 : bidi_char_at_pos (bidi_it
->bytepos
+ bidi_it
->ch_len
,
1747 s
, bidi_it
->string
.unibyte
));
1748 type_of_next
= bidi_get_type (next_char
, override
);
1750 if (type_of_next
== WEAK_BN
1751 || bidi_explicit_dir_char (next_char
))
1753 bidi_copy_it (&saved_it
, bidi_it
);
1754 while (bidi_resolve_explicit (bidi_it
) == new_level
1755 && bidi_it
->type
== WEAK_BN
)
1757 type_of_next
= bidi_it
->type
;
1758 bidi_copy_it (bidi_it
, &saved_it
);
1761 /* If the next character is EN, but the last strong-type
1762 character is AL, that next EN will be changed to AN when
1763 we process it in W2 above. So in that case, this ES
1764 should not be changed into EN. */
1766 && type_of_next
== WEAK_EN
1767 && bidi_it
->last_strong
.type_after_w1
!= STRONG_AL
)
1769 else if (type
== WEAK_CS
)
1771 if (bidi_it
->prev
.type_after_w1
== WEAK_AN
1772 && (type_of_next
== WEAK_AN
1773 /* If the next character is EN, but the last
1774 strong-type character is AL, EN will be later
1775 changed to AN when we process it in W2 above.
1776 So in that case, this ES should not be
1778 || (type_of_next
== WEAK_EN
1779 && bidi_it
->last_strong
.type_after_w1
== STRONG_AL
)))
1781 else if (bidi_it
->prev
.type_after_w1
== WEAK_EN
1782 && type_of_next
== WEAK_EN
1783 && bidi_it
->last_strong
.type_after_w1
!= STRONG_AL
)
1787 else if (type
== WEAK_ET
/* W5: ET with EN before or after it */
1788 || type
== WEAK_BN
) /* W5/Retaining */
1790 if (bidi_it
->prev
.type_after_w1
== WEAK_EN
) /* ET/BN w/EN before it */
1792 else if (bidi_it
->next_en_pos
> bidi_it
->charpos
1793 && bidi_it
->next_en_type
!= WEAK_BN
)
1795 if (bidi_it
->next_en_type
== WEAK_EN
) /* ET/BN with EN after it */
1798 else if (bidi_it
->next_en_pos
>=0)
1800 ptrdiff_t en_pos
= bidi_it
->charpos
+ bidi_it
->nchars
;
1801 const unsigned char *s
= (STRINGP (bidi_it
->string
.lstring
)
1802 ? SDATA (bidi_it
->string
.lstring
)
1803 : bidi_it
->string
.s
);
1805 if (bidi_it
->nchars
<= 0)
1808 = (bidi_it
->charpos
+ bidi_it
->nchars
>= eob
1810 : bidi_char_at_pos (bidi_it
->bytepos
+ bidi_it
->ch_len
, s
,
1811 bidi_it
->string
.unibyte
));
1812 type_of_next
= bidi_get_type (next_char
, override
);
1814 if (type_of_next
== WEAK_ET
1815 || type_of_next
== WEAK_BN
1816 || bidi_explicit_dir_char (next_char
))
1818 bidi_copy_it (&saved_it
, bidi_it
);
1819 while (bidi_resolve_explicit (bidi_it
) == new_level
1820 && (bidi_it
->type
== WEAK_BN
1821 || bidi_it
->type
== WEAK_ET
))
1823 type_of_next
= bidi_it
->type
;
1824 en_pos
= bidi_it
->charpos
;
1825 bidi_copy_it (bidi_it
, &saved_it
);
1827 /* Remember this position, to speed up processing of the
1829 bidi_it
->next_en_pos
= en_pos
;
1830 if (type_of_next
== WEAK_EN
)
1832 /* If the last strong character is AL, the EN we've
1833 found will become AN when we get to it (W2). */
1834 if (bidi_it
->last_strong
.type_after_w1
== STRONG_AL
)
1835 type_of_next
= WEAK_AN
;
1836 else if (type
== WEAK_BN
)
1837 type
= NEUTRAL_ON
; /* W6/Retaining */
1841 else if (type_of_next
== NEUTRAL_B
)
1842 /* Record the fact that there are no more ENs from
1843 here to the end of paragraph, to avoid entering the
1844 loop above ever again in this paragraph. */
1845 bidi_it
->next_en_pos
= -1;
1846 /* Record the type of the character where we ended our search. */
1847 bidi_it
->next_en_type
= type_of_next
;
1852 if (type
== WEAK_ES
|| type
== WEAK_ET
|| type
== WEAK_CS
/* W6 */
1854 && (bidi_it
->prev
.type_after_w1
== WEAK_CS
/* W6/Retaining */
1855 || bidi_it
->prev
.type_after_w1
== WEAK_ES
1856 || bidi_it
->prev
.type_after_w1
== WEAK_ET
)))
1859 /* Store the type we've got so far, before we clobber it with strong
1860 types in W7 and while resolving neutral types. But leave alone
1861 the original types that were recorded above, because we will need
1862 them for the L1 clause. */
1863 if (bidi_it
->type_after_w1
== UNKNOWN_BT
)
1864 bidi_it
->type_after_w1
= type
;
1865 bidi_check_type (bidi_it
->type_after_w1
);
1867 if (type
== WEAK_EN
) /* W7 */
1869 if ((bidi_it
->last_strong
.type_after_w1
== STRONG_L
)
1870 || (bidi_it
->last_strong
.type
== UNKNOWN_BT
&& bidi_it
->sor
== L2R
))
1874 bidi_it
->type
= type
;
1875 bidi_check_type (bidi_it
->type
);
1879 /* Resolve the type of a neutral character according to the type of
1880 surrounding strong text and the current embedding level. */
1882 bidi_resolve_neutral_1 (bidi_type_t prev_type
, bidi_type_t next_type
, int lev
)
1884 /* N1: European and Arabic numbers are treated as though they were R. */
1885 if (next_type
== WEAK_EN
|| next_type
== WEAK_AN
)
1886 next_type
= STRONG_R
;
1887 if (prev_type
== WEAK_EN
|| prev_type
== WEAK_AN
)
1888 prev_type
= STRONG_R
;
1890 if (next_type
== prev_type
) /* N1 */
1892 else if ((lev
& 1) == 0) /* N2 */
1899 bidi_resolve_neutral (struct bidi_it
*bidi_it
)
1901 int prev_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
1902 bidi_type_t type
= bidi_resolve_weak (bidi_it
);
1903 int current_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
1905 if (!(type
== STRONG_R
1910 || type
== NEUTRAL_B
1911 || type
== NEUTRAL_S
1912 || type
== NEUTRAL_WS
1913 || type
== NEUTRAL_ON
))
1916 if ((type
!= NEUTRAL_B
/* Don't risk entering the long loop below if
1917 we are already at paragraph end. */
1918 && bidi_get_category (type
) == NEUTRAL
)
1919 || (type
== WEAK_BN
&& prev_level
== current_level
))
1921 if (bidi_it
->next_for_neutral
.type
!= UNKNOWN_BT
)
1922 type
= bidi_resolve_neutral_1 (bidi_it
->prev_for_neutral
.type
,
1923 bidi_it
->next_for_neutral
.type
,
1925 /* The next two "else if" clauses are shortcuts for the
1926 important special case when we have a long sequence of
1927 neutral or WEAK_BN characters, such as whitespace or nulls or
1928 other control characters, on the base embedding level of the
1929 paragraph, and that sequence goes all the way to the end of
1930 the paragraph and follows a character whose resolved
1931 directionality is identical to the base embedding level.
1932 (This is what happens in a buffer with plain L2R text that
1933 happens to include long sequences of control characters.) By
1934 virtue of N1, the result of examining this long sequence will
1935 always be either STRONG_L or STRONG_R, depending on the base
1936 embedding level. So we use this fact directly instead of
1937 entering the expensive loop in the "else" clause. */
1938 else if (current_level
== 0
1939 && bidi_it
->prev_for_neutral
.type
== STRONG_L
1940 && !bidi_explicit_dir_char (bidi_it
->ch
))
1941 type
= bidi_resolve_neutral_1 (bidi_it
->prev_for_neutral
.type
,
1942 STRONG_L
, current_level
);
1943 else if (/* current level is 1 */
1945 /* base embedding level is also 1 */
1946 && bidi_it
->level_stack
[0].level
== 1
1947 /* previous character is one of those considered R for
1948 the purposes of W5 */
1949 && (bidi_it
->prev_for_neutral
.type
== STRONG_R
1950 || bidi_it
->prev_for_neutral
.type
== WEAK_EN
1951 || bidi_it
->prev_for_neutral
.type
== WEAK_AN
)
1952 && !bidi_explicit_dir_char (bidi_it
->ch
))
1953 type
= bidi_resolve_neutral_1 (bidi_it
->prev_for_neutral
.type
,
1954 STRONG_R
, current_level
);
1957 /* Arrrgh!! The UAX#9 algorithm is too deeply entrenched in
1958 the assumption of batch-style processing; see clauses W4,
1959 W5, and especially N1, which require to look far forward
1960 (as well as back) in the buffer/string. May the fleas of
1961 a thousand camels infest the armpits of those who design
1962 supposedly general-purpose algorithms by looking at their
1963 own implementations, and fail to consider other possible
1965 struct bidi_it saved_it
;
1966 bidi_type_t next_type
;
1968 if (bidi_it
->scan_dir
== -1)
1971 bidi_copy_it (&saved_it
, bidi_it
);
1972 /* Scan the text forward until we find the first non-neutral
1973 character, and then use that to resolve the neutral we
1974 are dealing with now. We also cache the scanned iterator
1975 states, to salvage some of the effort later. */
1976 bidi_cache_iterator_state (bidi_it
, 0);
1978 /* Record the info about the previous character, so that
1979 it will be cached below with this state. */
1980 if (bidi_it
->type_after_w1
!= WEAK_BN
/* W1/Retaining */
1981 && bidi_it
->type
!= WEAK_BN
)
1982 bidi_remember_char (&bidi_it
->prev
, bidi_it
);
1983 type
= bidi_resolve_weak (bidi_it
);
1984 /* Paragraph separators have their levels fully resolved
1985 at this point, so cache them as resolved. */
1986 bidi_cache_iterator_state (bidi_it
, type
== NEUTRAL_B
);
1987 /* FIXME: implement L1 here, by testing for a newline and
1988 resetting the level for any sequence of whitespace
1989 characters adjacent to it. */
1990 } while (!(type
== NEUTRAL_B
1992 && bidi_get_category (type
) != NEUTRAL
)
1993 /* This is all per level run, so stop when we
1994 reach the end of this level run. */
1995 || (bidi_it
->level_stack
[bidi_it
->stack_idx
].level
1996 != current_level
)));
1998 bidi_remember_char (&saved_it
.next_for_neutral
, bidi_it
);
2005 /* Actually, STRONG_AL cannot happen here, because
2006 bidi_resolve_weak converts it to STRONG_R, per W3. */
2007 eassert (type
!= STRONG_AL
);
2012 /* N1: ``European and Arabic numbers are treated as
2013 though they were R.'' */
2014 next_type
= STRONG_R
;
2017 case NEUTRAL_ON
: /* W6/Retaining */
2018 if (!bidi_explicit_dir_char (bidi_it
->ch
))
2019 emacs_abort (); /* can't happen: BNs are skipped */
2022 /* Marched all the way to the end of this level run.
2023 We need to use the eor type, whose information is
2024 stored by bidi_set_sor_type in the prev_for_neutral
2026 if (saved_it
.type
!= WEAK_BN
2027 || bidi_get_category (bidi_it
->prev
.type_after_w1
) == NEUTRAL
)
2028 next_type
= bidi_it
->prev_for_neutral
.type
;
2031 /* This is a BN which does not adjoin neutrals.
2032 Leave its type alone. */
2033 bidi_copy_it (bidi_it
, &saved_it
);
2034 return bidi_it
->type
;
2040 type
= bidi_resolve_neutral_1 (saved_it
.prev_for_neutral
.type
,
2041 next_type
, current_level
);
2042 saved_it
.next_for_neutral
.type
= next_type
;
2043 saved_it
.type
= type
;
2044 bidi_check_type (next_type
);
2045 bidi_check_type (type
);
2046 bidi_copy_it (bidi_it
, &saved_it
);
2052 /* Given an iterator state in BIDI_IT, advance one character position
2053 in the buffer/string to the next character (in the logical order),
2054 resolve the bidi type of that next character, and return that
2057 bidi_type_of_next_char (struct bidi_it
*bidi_it
)
2061 /* This should always be called during a forward scan. */
2062 if (bidi_it
->scan_dir
!= 1)
2065 /* Reset the limit until which to ignore BNs if we step out of the
2066 area where we found only empty levels. */
2067 if ((bidi_it
->ignore_bn_limit
> -1
2068 && bidi_it
->ignore_bn_limit
<= bidi_it
->charpos
)
2069 || (bidi_it
->ignore_bn_limit
== -2
2070 && !bidi_explicit_dir_char (bidi_it
->ch
)))
2071 bidi_it
->ignore_bn_limit
= -1;
2073 type
= bidi_resolve_neutral (bidi_it
);
2078 /* Given an iterator state BIDI_IT, advance one character position in
2079 the buffer/string to the next character (in the current scan
2080 direction), resolve the embedding and implicit levels of that next
2081 character, and return the resulting level. */
2083 bidi_level_of_next_char (struct bidi_it
*bidi_it
)
2086 int level
, prev_level
= -1;
2087 struct bidi_saved_info next_for_neutral
;
2088 ptrdiff_t next_char_pos
= -2;
2090 if (bidi_it
->scan_dir
== 1)
2093 = ((bidi_it
->string
.s
|| STRINGP (bidi_it
->string
.lstring
))
2094 ? bidi_it
->string
.schars
: ZV
);
2096 /* There's no sense in trying to advance if we hit end of text. */
2097 if (bidi_it
->charpos
>= eob
)
2098 return bidi_it
->resolved_level
;
2100 /* Record the info about the previous character. */
2101 if (bidi_it
->type_after_w1
!= WEAK_BN
/* W1/Retaining */
2102 && bidi_it
->type
!= WEAK_BN
)
2103 bidi_remember_char (&bidi_it
->prev
, bidi_it
);
2104 if (bidi_it
->type_after_w1
== STRONG_R
2105 || bidi_it
->type_after_w1
== STRONG_L
2106 || bidi_it
->type_after_w1
== STRONG_AL
)
2107 bidi_remember_char (&bidi_it
->last_strong
, bidi_it
);
2108 /* FIXME: it sounds like we don't need both prev and
2109 prev_for_neutral members, but I'm leaving them both for now. */
2110 if (bidi_it
->type
== STRONG_R
|| bidi_it
->type
== STRONG_L
2111 || bidi_it
->type
== WEAK_EN
|| bidi_it
->type
== WEAK_AN
)
2112 bidi_remember_char (&bidi_it
->prev_for_neutral
, bidi_it
);
2114 /* If we overstepped the characters used for resolving neutrals
2115 and whitespace, invalidate their info in the iterator. */
2116 if (bidi_it
->charpos
>= bidi_it
->next_for_neutral
.charpos
)
2117 bidi_it
->next_for_neutral
.type
= UNKNOWN_BT
;
2118 if (bidi_it
->next_en_pos
>= 0
2119 && bidi_it
->charpos
>= bidi_it
->next_en_pos
)
2121 bidi_it
->next_en_pos
= 0;
2122 bidi_it
->next_en_type
= UNKNOWN_BT
;
2124 if (bidi_it
->next_for_ws
.type
!= UNKNOWN_BT
2125 && bidi_it
->charpos
>= bidi_it
->next_for_ws
.charpos
)
2126 bidi_it
->next_for_ws
.type
= UNKNOWN_BT
;
2128 /* This must be taken before we fill the iterator with the info
2129 about the next char. If we scan backwards, the iterator
2130 state must be already cached, so there's no need to know the
2131 embedding level of the previous character, since we will be
2132 returning to our caller shortly. */
2133 prev_level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
2135 next_for_neutral
= bidi_it
->next_for_neutral
;
2137 /* Perhaps the character we want is already cached. If it is, the
2138 call to bidi_cache_find below will return a type other than
2140 if (bidi_cache_idx
> bidi_cache_start
&& !bidi_it
->first_elt
)
2142 int bob
= ((bidi_it
->string
.s
|| STRINGP (bidi_it
->string
.lstring
))
2144 if (bidi_it
->scan_dir
> 0)
2146 if (bidi_it
->nchars
<= 0)
2148 next_char_pos
= bidi_it
->charpos
+ bidi_it
->nchars
;
2150 else if (bidi_it
->charpos
>= bob
)
2151 /* Implementation note: we allow next_char_pos to be as low as
2152 0 for buffers or -1 for strings, and that is okay because
2153 that's the "position" of the sentinel iterator state we
2154 cached at the beginning of the iteration. */
2155 next_char_pos
= bidi_it
->charpos
- 1;
2156 if (next_char_pos
>= bob
- 1)
2157 type
= bidi_cache_find (next_char_pos
, -1, bidi_it
);
2163 if (type
!= UNKNOWN_BT
)
2165 /* Don't lose the information for resolving neutrals! The
2166 cached states could have been cached before their
2167 next_for_neutral member was computed. If we are on our way
2168 forward, we can simply take the info from the previous
2170 if (bidi_it
->scan_dir
== 1
2171 && bidi_it
->next_for_neutral
.type
== UNKNOWN_BT
)
2172 bidi_it
->next_for_neutral
= next_for_neutral
;
2174 /* If resolved_level is -1, it means this state was cached
2175 before it was completely resolved, so we cannot return
2177 if (bidi_it
->resolved_level
!= -1)
2178 return bidi_it
->resolved_level
;
2180 if (bidi_it
->scan_dir
== -1)
2181 /* If we are going backwards, the iterator state is already cached
2182 from previous scans, and should be fully resolved. */
2185 if (type
== UNKNOWN_BT
)
2186 type
= bidi_type_of_next_char (bidi_it
);
2188 if (type
== NEUTRAL_B
)
2189 return bidi_it
->resolved_level
;
2191 level
= bidi_it
->level_stack
[bidi_it
->stack_idx
].level
;
2192 if ((bidi_get_category (type
) == NEUTRAL
/* && type != NEUTRAL_B */)
2193 || (type
== WEAK_BN
&& prev_level
== level
))
2195 if (bidi_it
->next_for_neutral
.type
== UNKNOWN_BT
)
2198 /* If the cached state shows a neutral character, it was not
2199 resolved by bidi_resolve_neutral, so do it now. */
2200 type
= bidi_resolve_neutral_1 (bidi_it
->prev_for_neutral
.type
,
2201 bidi_it
->next_for_neutral
.type
,
2205 if (!(type
== STRONG_R
2209 || type
== WEAK_AN
))
2211 bidi_it
->type
= type
;
2212 bidi_check_type (bidi_it
->type
);
2214 /* For L1 below, we need to know, for each WS character, whether
2215 it belongs to a sequence of WS characters preceding a newline
2216 or a TAB or a paragraph separator. */
2217 if (bidi_it
->orig_type
== NEUTRAL_WS
2218 && bidi_it
->next_for_ws
.type
== UNKNOWN_BT
)
2221 ptrdiff_t clen
= bidi_it
->ch_len
;
2222 ptrdiff_t bpos
= bidi_it
->bytepos
;
2223 ptrdiff_t cpos
= bidi_it
->charpos
;
2224 ptrdiff_t disp_pos
= bidi_it
->disp_pos
;
2225 ptrdiff_t nc
= bidi_it
->nchars
;
2226 struct bidi_string_data bs
= bidi_it
->string
;
2228 bool fwp
= bidi_it
->frame_window_p
;
2229 int dpp
= bidi_it
->disp_prop
;
2231 if (bidi_it
->nchars
<= 0)
2234 ch
= bidi_fetch_char (cpos
+= nc
, bpos
+= clen
, &disp_pos
, &dpp
, &bs
,
2235 bidi_it
->w
, fwp
, &clen
, &nc
);
2236 if (ch
== '\n' || ch
== BIDI_EOB
)
2239 chtype
= bidi_get_type (ch
, NEUTRAL_DIR
);
2240 } while (chtype
== NEUTRAL_WS
|| chtype
== WEAK_BN
2241 || bidi_explicit_dir_char (ch
)); /* L1/Retaining */
2242 bidi_it
->next_for_ws
.type
= chtype
;
2243 bidi_check_type (bidi_it
->next_for_ws
.type
);
2244 bidi_it
->next_for_ws
.charpos
= cpos
;
2245 bidi_it
->next_for_ws
.bytepos
= bpos
;
2248 /* Resolve implicit levels, with a twist: PDFs get the embedding
2249 level of the embedding they terminate. See below for the
2251 if (bidi_it
->orig_type
== PDF
2252 /* Don't do this if this formatting code didn't change the
2253 embedding level due to invalid or empty embeddings. */
2254 && prev_level
!= level
)
2256 /* Don't look in UAX#9 for the reason for this: it's our own
2257 private quirk. The reason is that we want the formatting
2258 codes to be delivered so that they bracket the text of their
2259 embedding. For example, given the text
2263 we want it to be displayed as
2271 which will result because we bump up the embedding level as
2272 soon as we see the RLO and pop it as soon as we see the PDF,
2273 so RLO itself has the same embedding level as "teST", and
2274 thus would be normally delivered last, just before the PDF.
2275 The switch below fiddles with the level of PDF so that this
2276 ugly side effect does not happen.
2278 (This is, of course, only important if the formatting codes
2279 are actually displayed, but Emacs does need to display them
2280 if the user wants to.) */
2283 else if (bidi_it
->orig_type
== NEUTRAL_B
/* L1 */
2284 || bidi_it
->orig_type
== NEUTRAL_S
2285 || bidi_it
->ch
== '\n' || bidi_it
->ch
== BIDI_EOB
2286 || (bidi_it
->orig_type
== NEUTRAL_WS
2287 && (bidi_it
->next_for_ws
.type
== NEUTRAL_B
2288 || bidi_it
->next_for_ws
.type
== NEUTRAL_S
)))
2289 level
= bidi_it
->level_stack
[0].level
;
2290 else if ((level
& 1) == 0) /* I1 */
2292 if (type
== STRONG_R
)
2294 else if (type
== WEAK_EN
|| type
== WEAK_AN
)
2299 if (type
== STRONG_L
|| type
== WEAK_EN
|| type
== WEAK_AN
)
2303 bidi_it
->resolved_level
= level
;
2307 /* Move to the other edge of a level given by LEVEL. If END_FLAG,
2308 we are at the end of a level, and we need to prepare to
2309 resume the scan of the lower level.
2311 If this level's other edge is cached, we simply jump to it, filling
2312 the iterator structure with the iterator state on the other edge.
2313 Otherwise, we walk the buffer or string until we come back to the
2314 same level as LEVEL.
2316 Note: we are not talking here about a ``level run'' in the UAX#9
2317 sense of the term, but rather about a ``level'' which includes
2318 all the levels higher than it. In other words, given the levels
2321 11111112222222333333334443343222222111111112223322111
2324 and assuming we are at point A scanning left to right, this
2325 function moves to point C, whereas the UAX#9 ``level 2 run'' ends
2328 bidi_find_other_level_edge (struct bidi_it
*bidi_it
, int level
, bool end_flag
)
2330 int dir
= end_flag
? -bidi_it
->scan_dir
: bidi_it
->scan_dir
;
2333 /* Try the cache first. */
2334 if ((idx
= bidi_cache_find_level_change (level
, dir
, end_flag
))
2335 >= bidi_cache_start
)
2336 bidi_cache_fetch_state (idx
, bidi_it
);
2341 /* If we are at end of level, its edges must be cached. */
2345 bidi_cache_iterator_state (bidi_it
, 1);
2347 new_level
= bidi_level_of_next_char (bidi_it
);
2348 bidi_cache_iterator_state (bidi_it
, 1);
2349 } while (new_level
>= level
);
2354 bidi_move_to_visually_next (struct bidi_it
*bidi_it
)
2356 int old_level
, new_level
, next_level
;
2357 struct bidi_it sentinel
;
2358 struct gcpro gcpro1
;
2360 if (bidi_it
->charpos
< 0 || bidi_it
->bytepos
< 0)
2363 if (bidi_it
->scan_dir
== 0)
2365 bidi_it
->scan_dir
= 1; /* default to logical order */
2368 /* The code below can call eval, and thus cause GC. If we are
2369 iterating a Lisp string, make sure it won't be GCed. */
2370 if (STRINGP (bidi_it
->string
.lstring
))
2371 GCPRO1 (bidi_it
->string
.lstring
);
2373 /* If we just passed a newline, initialize for the next line. */
2374 if (!bidi_it
->first_elt
2375 && (bidi_it
->ch
== '\n' || bidi_it
->ch
== BIDI_EOB
))
2376 bidi_line_init (bidi_it
);
2378 /* Prepare the sentinel iterator state, and cache it. When we bump
2379 into it, scanning backwards, we'll know that the last non-base
2380 level is exhausted. */
2381 if (bidi_cache_idx
== bidi_cache_start
)
2383 bidi_copy_it (&sentinel
, bidi_it
);
2384 if (bidi_it
->first_elt
)
2386 sentinel
.charpos
--; /* cached charpos needs to be monotonic */
2388 sentinel
.ch
= '\n'; /* doesn't matter, but why not? */
2389 sentinel
.ch_len
= 1;
2390 sentinel
.nchars
= 1;
2392 bidi_cache_iterator_state (&sentinel
, 1);
2395 old_level
= bidi_it
->resolved_level
;
2396 new_level
= bidi_level_of_next_char (bidi_it
);
2398 /* Reordering of resolved levels (clause L2) is implemented by
2399 jumping to the other edge of the level and flipping direction of
2400 scanning the text whenever we find a level change. */
2401 if (new_level
!= old_level
)
2403 bool ascending
= new_level
> old_level
;
2404 int level_to_search
= ascending
? old_level
+ 1 : old_level
;
2405 int incr
= ascending
? 1 : -1;
2406 int expected_next_level
= old_level
+ incr
;
2408 /* Jump (or walk) to the other edge of this level. */
2409 bidi_find_other_level_edge (bidi_it
, level_to_search
, !ascending
);
2410 /* Switch scan direction and peek at the next character in the
2412 bidi_it
->scan_dir
= -bidi_it
->scan_dir
;
2414 /* The following loop handles the case where the resolved level
2415 jumps by more than one. This is typical for numbers inside a
2416 run of text with left-to-right embedding direction, but can
2417 also happen in other situations. In those cases the decision
2418 where to continue after a level change, and in what direction,
2419 is tricky. For example, given a text like below:
2424 (where the numbers below the text show the resolved levels),
2425 the result of reordering according to UAX#9 should be this:
2429 This is implemented by the loop below which flips direction
2430 and jumps to the other edge of the level each time it finds
2431 the new level not to be the expected one. The expected level
2432 is always one more or one less than the previous one. */
2433 next_level
= bidi_peek_at_next_level (bidi_it
);
2434 while (next_level
!= expected_next_level
)
2436 /* If next_level is -1, it means we have an unresolved level
2437 in the cache, which at this point should not happen. If
2438 it does, we will infloop. */
2439 eassert (next_level
>= 0);
2440 expected_next_level
+= incr
;
2441 level_to_search
+= incr
;
2442 bidi_find_other_level_edge (bidi_it
, level_to_search
, !ascending
);
2443 bidi_it
->scan_dir
= -bidi_it
->scan_dir
;
2444 next_level
= bidi_peek_at_next_level (bidi_it
);
2447 /* Finally, deliver the next character in the new direction. */
2448 next_level
= bidi_level_of_next_char (bidi_it
);
2451 /* Take note when we have just processed the newline that precedes
2452 the end of the paragraph. The next time we are about to be
2453 called, set_iterator_to_next will automatically reinit the
2454 paragraph direction, if needed. We do this at the newline before
2455 the paragraph separator, because the next character might not be
2456 the first character of the next paragraph, due to the bidi
2457 reordering, whereas we _must_ know the paragraph base direction
2458 _before_ we process the paragraph's text, since the base
2459 direction affects the reordering. */
2460 if (bidi_it
->scan_dir
== 1
2461 && (bidi_it
->ch
== '\n' || bidi_it
->ch
== BIDI_EOB
))
2463 /* The paragraph direction of the entire string, once
2464 determined, is in effect for the entire string. Setting the
2465 separator limit to the end of the string prevents
2466 bidi_paragraph_init from being called automatically on this
2468 if (bidi_it
->string
.s
|| STRINGP (bidi_it
->string
.lstring
))
2469 bidi_it
->separator_limit
= bidi_it
->string
.schars
;
2470 else if (bidi_it
->bytepos
< ZV_BYTE
)
2473 = bidi_at_paragraph_end (bidi_it
->charpos
+ bidi_it
->nchars
,
2474 bidi_it
->bytepos
+ bidi_it
->ch_len
);
2475 if (bidi_it
->nchars
<= 0)
2479 bidi_it
->new_paragraph
= 1;
2480 /* Record the buffer position of the last character of the
2481 paragraph separator. */
2482 bidi_it
->separator_limit
2483 = bidi_it
->charpos
+ bidi_it
->nchars
+ sep_len
;
2488 if (bidi_it
->scan_dir
== 1 && bidi_cache_idx
> bidi_cache_start
)
2490 /* If we are at paragraph's base embedding level and beyond the
2491 last cached position, the cache's job is done and we can
2493 if (bidi_it
->resolved_level
== bidi_it
->level_stack
[0].level
2494 && bidi_it
->charpos
> (bidi_cache
[bidi_cache_idx
- 1].charpos
2495 + bidi_cache
[bidi_cache_idx
- 1].nchars
- 1))
2496 bidi_cache_reset ();
2497 /* But as long as we are caching during forward scan, we must
2498 cache each state, or else the cache integrity will be
2499 compromised: it assumes cached states correspond to buffer
2502 bidi_cache_iterator_state (bidi_it
, 1);
2505 if (STRINGP (bidi_it
->string
.lstring
))
2509 /* This is meant to be called from within the debugger, whenever you
2510 wish to examine the cache contents. */
2511 void bidi_dump_cached_states (void) EXTERNALLY_VISIBLE
;
2513 bidi_dump_cached_states (void)
2518 if (bidi_cache_idx
== 0)
2520 fprintf (stderr
, "The cache is empty.\n");
2523 fprintf (stderr
, "Total of %"pD
"d state%s in cache:\n",
2524 bidi_cache_idx
, bidi_cache_idx
== 1 ? "" : "s");
2526 for (i
= bidi_cache
[bidi_cache_idx
- 1].charpos
; i
> 0; i
/= 10)
2528 fputs ("ch ", stderr
);
2529 for (i
= 0; i
< bidi_cache_idx
; i
++)
2530 fprintf (stderr
, "%*c", ndigits
, bidi_cache
[i
].ch
);
2531 fputs ("\n", stderr
);
2532 fputs ("lvl ", stderr
);
2533 for (i
= 0; i
< bidi_cache_idx
; i
++)
2534 fprintf (stderr
, "%*d", ndigits
, bidi_cache
[i
].resolved_level
);
2535 fputs ("\n", stderr
);
2536 fputs ("pos ", stderr
);
2537 for (i
= 0; i
< bidi_cache_idx
; i
++)
2538 fprintf (stderr
, "%*"pD
"d", ndigits
, bidi_cache
[i
].charpos
);
2539 fputs ("\n", stderr
);