Fix previous merge from Gnus trunk.
[bpt/emacs.git] / src / bidi.c
CommitLineData
b7b65b15 1/* Low-level bidirectional buffer-scanning functions for GNU Emacs.
b118e65f
EZ
2 Copyright (C) 2000, 2001, 2004, 2005, 2009, 2010
3 Free Software Foundation, Inc.
b7b65b15
EZ
4
5This file is part of GNU Emacs.
6
a8d11bd3 7GNU Emacs is free software: you can redistribute it and/or modify
b7b65b15 8it under the terms of the GNU General Public License as published by
a8d11bd3
EZ
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
b7b65b15
EZ
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
b7b65b15 17You should have received a copy of the GNU General Public License
a8d11bd3 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
b7b65b15 19
2d6e4628
EZ
20/* Written by Eli Zaretskii <eliz@gnu.org>.
21
22 A sequential implementation of the Unicode Bidirectional algorithm,
b7b65b15
EZ
23 as per UAX#9, a part of the Unicode Standard.
24
25 Unlike the reference and most other implementations, this one is
940afb59
EZ
26 designed to be called once for every character in the buffer or
27 string.
b7b65b15 28
4b292a22 29 The main entry point is bidi_move_to_visually_next. Each time it
b7b65b15
EZ
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
4b292a22
EZ
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
b7b65b15
EZ
36 character by resolving their levels on the fly.
37
940afb59
EZ
38 The two other entry points are bidi_paragraph_init and
39 bidi_mirror_char. The first determines the base direction of a
40 paragraph, while the second returns the mirrored version of its
41 argument character.
42
89d3374a
EZ
43 If you want to understand the code, you will have to read it
44 together with the relevant portions of UAX#9. The comments include
45 references to UAX#9 rules, for that very reason.
46
b7b65b15
EZ
47 A note about references to UAX#9 rules: if the reference says
48 something like "X9/Retaining", it means that you need to refer to
49 rule X9 and to its modifications decribed in the "Implementation
50 Notes" section of UAX#9, under "Retaining Format Codes". */
51
b7b65b15 52#include <config.h>
b7b65b15 53#include <stdio.h>
b7b65b15 54#include <string.h>
29e3d8d1
EZ
55#include <setjmp.h>
56
b7b65b15
EZ
57#include "lisp.h"
58#include "buffer.h"
59#include "character.h"
60#include "dispextern.h"
61
62static int bidi_initialized = 0;
63
cbc4fd20 64static Lisp_Object bidi_type_table, bidi_mirror_table;
b7b65b15 65
e7402cb2 66/* FIXME: Remove these when bidi_explicit_dir_char uses a lookup table. */
b7b65b15
EZ
67#define LRM_CHAR 0x200E
68#define RLM_CHAR 0x200F
69#define LRE_CHAR 0x202A
70#define RLE_CHAR 0x202B
71#define PDF_CHAR 0x202C
72#define LRO_CHAR 0x202D
73#define RLO_CHAR 0x202E
74
b7b65b15 75#define BIDI_EOB -1
e7402cb2 76#define BIDI_BOB -2 /* FIXME: Is this needed? */
b7b65b15 77
b7b65b15
EZ
78/* Local data structures. (Look in dispextern.h for the rest.) */
79
80/* What we need to know about the current paragraph. */
81struct bidi_paragraph_info {
82 int start_bytepos; /* byte position where it begins */
83 int end_bytepos; /* byte position where it ends */
84 int embedding_level; /* its basic embedding level */
85 bidi_dir_t base_dir; /* its base direction */
86};
87
88/* Data type for describing the bidirectional character categories. */
89typedef enum {
90 UNKNOWN_BC,
91 NEUTRAL,
92 WEAK,
93 STRONG
94} bidi_category_t;
95
96int bidi_ignore_explicit_marks_for_paragraph_level = 1;
97
372b7a95 98static Lisp_Object paragraph_start_re, paragraph_separate_re;
6bff6497 99static Lisp_Object Qparagraph_start, Qparagraph_separate;
b7b65b15 100
b7b65b15 101static void
971de7fb 102bidi_initialize (void)
b7b65b15 103{
317fbf33
EZ
104
105#include "biditype.h"
cbc4fd20 106#include "bidimirror.h"
317fbf33 107
b7b65b15
EZ
108 int i;
109
110 bidi_type_table = Fmake_char_table (Qnil, make_number (STRONG_L));
2d6e4628 111 staticpro (&bidi_type_table);
b7b65b15
EZ
112
113 for (i = 0; i < sizeof bidi_type / sizeof bidi_type[0]; i++)
317fbf33 114 char_table_set_range (bidi_type_table, bidi_type[i].from, bidi_type[i].to,
b7b65b15 115 make_number (bidi_type[i].type));
6bff6497 116
cbc4fd20
EZ
117 bidi_mirror_table = Fmake_char_table (Qnil, Qnil);
118 staticpro (&bidi_mirror_table);
119
120 for (i = 0; i < sizeof bidi_mirror / sizeof bidi_mirror[0]; i++)
121 char_table_set (bidi_mirror_table, bidi_mirror[i].from,
122 make_number (bidi_mirror[i].to));
123
b4bf28b7
SM
124 Qparagraph_start = intern ("paragraph-start");
125 staticpro (&Qparagraph_start);
372b7a95
EZ
126 paragraph_start_re = Fsymbol_value (Qparagraph_start);
127 if (!STRINGP (paragraph_start_re))
128 paragraph_start_re = build_string ("\f\\|[ \t]*$");
129 staticpro (&paragraph_start_re);
b4bf28b7
SM
130 Qparagraph_separate = intern ("paragraph-separate");
131 staticpro (&Qparagraph_separate);
372b7a95
EZ
132 paragraph_separate_re = Fsymbol_value (Qparagraph_separate);
133 if (!STRINGP (paragraph_separate_re))
134 paragraph_separate_re = build_string ("[ \t\f]*$");
135 staticpro (&paragraph_separate_re);
b7b65b15
EZ
136 bidi_initialized = 1;
137}
138
6bff6497
EZ
139/* Return the bidi type of a character CH, subject to the current
140 directional OVERRIDE. */
fd3998ff 141static INLINE bidi_type_t
6bff6497 142bidi_get_type (int ch, bidi_dir_t override)
b7b65b15 143{
6bff6497
EZ
144 bidi_type_t default_type;
145
e7402cb2
EZ
146 if (ch == BIDI_EOB)
147 return NEUTRAL_B;
e342a24d
EZ
148 if (ch < 0 || ch > MAX_CHAR)
149 abort ();
6bff6497
EZ
150
151 default_type = (bidi_type_t) XINT (CHAR_TABLE_REF (bidi_type_table, ch));
152
153 if (override == NEUTRAL_DIR)
154 return default_type;
155
156 switch (default_type)
157 {
158 /* Although UAX#9 does not tell, it doesn't make sense to
159 override NEUTRAL_B and LRM/RLM characters. */
160 case NEUTRAL_B:
161 case LRE:
162 case LRO:
163 case RLE:
164 case RLO:
165 case PDF:
166 return default_type;
167 default:
168 switch (ch)
169 {
170 case LRM_CHAR:
171 case RLM_CHAR:
172 return default_type;
173 default:
174 if (override == L2R) /* X6 */
175 return STRONG_L;
176 else if (override == R2L)
177 return STRONG_R;
178 else
179 abort (); /* can't happen: handled above */
180 }
181 }
b7b65b15
EZ
182}
183
2d6e4628
EZ
184void
185bidi_check_type (bidi_type_t type)
186{
187 if (type < UNKNOWN_BT || type > NEUTRAL_ON)
188 abort ();
189}
190
b7b65b15 191/* Given a bidi TYPE of a character, return its category. */
fd3998ff 192static INLINE bidi_category_t
b7b65b15
EZ
193bidi_get_category (bidi_type_t type)
194{
195 switch (type)
196 {
197 case UNKNOWN_BT:
198 return UNKNOWN_BC;
199 case STRONG_L:
200 case STRONG_R:
201 case STRONG_AL:
202 case LRE:
203 case LRO:
204 case RLE:
205 case RLO:
206 return STRONG;
207 case PDF: /* ??? really?? */
208 case WEAK_EN:
209 case WEAK_ES:
210 case WEAK_ET:
211 case WEAK_AN:
212 case WEAK_CS:
213 case WEAK_NSM:
214 case WEAK_BN:
215 return WEAK;
216 case NEUTRAL_B:
217 case NEUTRAL_S:
218 case NEUTRAL_WS:
219 case NEUTRAL_ON:
220 return NEUTRAL;
221 default:
222 abort ();
223 }
224}
225
a6e8d97c
EZ
226/* Return the mirrored character of C, if it has one. If C has no
227 mirrored counterpart, return C.
228 Note: The conditions in UAX#9 clause L4 regarding the surrounding
229 context must be tested by the caller. */
b7b65b15
EZ
230int
231bidi_mirror_char (int c)
232{
cbc4fd20
EZ
233 Lisp_Object val;
234
235 if (c == BIDI_EOB)
236 return c;
237 if (c < 0 || c > MAX_CHAR)
238 abort ();
b7b65b15 239
cbc4fd20
EZ
240 val = CHAR_TABLE_REF (bidi_mirror_table, c);
241 if (INTEGERP (val))
b7b65b15 242 {
cbc4fd20 243 int v = XINT (val);
b7b65b15 244
cbc4fd20
EZ
245 if (v < 0 || v > MAX_CHAR)
246 abort ();
247
248 return v;
b7b65b15 249 }
cbc4fd20 250
b7b65b15
EZ
251 return c;
252}
253
254/* Copy the bidi iterator from FROM to TO. To save cycles, this only
255 copies the part of the level stack that is actually in use. */
fd3998ff 256static INLINE void
b7b65b15
EZ
257bidi_copy_it (struct bidi_it *to, struct bidi_it *from)
258{
259 int i;
260
e69a9370
EZ
261 /* Copy everything except the level stack and beyond. */
262 memcpy (to, from, ((size_t)&((struct bidi_it *)0)->level_stack[0]));
b7b65b15
EZ
263
264 /* Copy the active part of the level stack. */
265 to->level_stack[0] = from->level_stack[0]; /* level zero is always in use */
266 for (i = 1; i <= from->stack_idx; i++)
267 to->level_stack[i] = from->level_stack[i];
268}
269
270/* Caching the bidi iterator states. */
271
2fe72643
EZ
272#define BIDI_CACHE_CHUNK 200
273static struct bidi_it *bidi_cache;
274static size_t bidi_cache_size = 0;
0416466c 275static size_t elsz = sizeof (struct bidi_it);
2fe72643
EZ
276static int bidi_cache_idx; /* next unused cache slot */
277static int bidi_cache_last_idx; /* slot of last cache hit */
b7b65b15 278
fd3998ff 279static INLINE void
b7b65b15
EZ
280bidi_cache_reset (void)
281{
282 bidi_cache_idx = 0;
283 bidi_cache_last_idx = -1;
284}
285
2fe72643
EZ
286static INLINE void
287bidi_cache_shrink (void)
288{
289 if (bidi_cache_size > BIDI_CACHE_CHUNK)
290 {
0416466c
EZ
291 bidi_cache_size = BIDI_CACHE_CHUNK;
292 bidi_cache =
293 (struct bidi_it *) xrealloc (bidi_cache, bidi_cache_size * elsz);
2fe72643
EZ
294 }
295 bidi_cache_reset ();
296}
297
fd3998ff 298static INLINE void
b7b65b15
EZ
299bidi_cache_fetch_state (int idx, struct bidi_it *bidi_it)
300{
301 int current_scan_dir = bidi_it->scan_dir;
302
303 if (idx < 0 || idx >= bidi_cache_idx)
304 abort ();
305
306 bidi_copy_it (bidi_it, &bidi_cache[idx]);
307 bidi_it->scan_dir = current_scan_dir;
308 bidi_cache_last_idx = idx;
309}
310
311/* Find a cached state with a given CHARPOS and resolved embedding
312 level less or equal to LEVEL. if LEVEL is -1, disregard the
313 resolved levels in cached states. DIR, if non-zero, means search
314 in that direction from the last cache hit. */
fd3998ff 315static INLINE int
b7b65b15
EZ
316bidi_cache_search (int charpos, int level, int dir)
317{
318 int i, i_start;
319
320 if (bidi_cache_idx)
321 {
322 if (charpos < bidi_cache[bidi_cache_last_idx].charpos)
323 dir = -1;
324 else if (charpos > bidi_cache[bidi_cache_last_idx].charpos)
325 dir = 1;
326 if (dir)
327 i_start = bidi_cache_last_idx;
328 else
329 {
330 dir = -1;
331 i_start = bidi_cache_idx - 1;
332 }
333
334 if (dir < 0)
335 {
336 /* Linear search for now; FIXME! */
337 for (i = i_start; i >= 0; i--)
338 if (bidi_cache[i].charpos == charpos
339 && (level == -1 || bidi_cache[i].resolved_level <= level))
340 return i;
341 }
342 else
343 {
344 for (i = i_start; i < bidi_cache_idx; i++)
345 if (bidi_cache[i].charpos == charpos
346 && (level == -1 || bidi_cache[i].resolved_level <= level))
347 return i;
348 }
349 }
350
351 return -1;
352}
353
354/* Find a cached state where the resolved level changes to a value
355 that is lower than LEVEL, and return its cache slot index. DIR is
356 the direction to search, starting with the last used cache slot.
357 BEFORE, if non-zero, means return the index of the slot that is
358 ``before'' the level change in the search direction. That is,
359 given the cached levels like this:
360
361 1122333442211
362 AB C
363
364 and assuming we are at the position cached at the slot marked with
365 C, searching backwards (DIR = -1) for LEVEL = 2 will return the
366 index of slot B or A, depending whether BEFORE is, respectively,
367 non-zero or zero. */
368static int
369bidi_cache_find_level_change (int level, int dir, int before)
370{
371 if (bidi_cache_idx)
372 {
373 int i = dir ? bidi_cache_last_idx : bidi_cache_idx - 1;
374 int incr = before ? 1 : 0;
375
376 if (!dir)
377 dir = -1;
378 else if (!incr)
379 i += dir;
380
381 if (dir < 0)
382 {
383 while (i >= incr)
384 {
385 if (bidi_cache[i - incr].resolved_level >= 0
386 && bidi_cache[i - incr].resolved_level < level)
387 return i;
388 i--;
389 }
390 }
391 else
392 {
393 while (i < bidi_cache_idx - incr)
394 {
395 if (bidi_cache[i + incr].resolved_level >= 0
396 && bidi_cache[i + incr].resolved_level < level)
397 return i;
398 i++;
399 }
400 }
401 }
402
403 return -1;
404}
405
fd3998ff 406static INLINE void
b7b65b15
EZ
407bidi_cache_iterator_state (struct bidi_it *bidi_it, int resolved)
408{
409 int idx;
410
411 /* We should never cache on backward scans. */
412 if (bidi_it->scan_dir == -1)
413 abort ();
414 idx = bidi_cache_search (bidi_it->charpos, -1, 1);
415
416 if (idx < 0)
417 {
418 idx = bidi_cache_idx;
2fe72643
EZ
419 /* Enlarge the cache as needed. */
420 if (idx >= bidi_cache_size)
421 {
0416466c 422 bidi_cache_size += BIDI_CACHE_CHUNK;
2fe72643 423 bidi_cache =
0416466c 424 (struct bidi_it *) xrealloc (bidi_cache, bidi_cache_size * elsz);
2fe72643 425 }
bd924a5d
EZ
426 /* Character positions should correspond to cache positions 1:1.
427 If we are outside the range of cached positions, the cache is
428 useless and must be reset. */
429 if (idx > 0 &&
430 (bidi_it->charpos > bidi_cache[idx - 1].charpos + 1
431 || bidi_it->charpos < bidi_cache[0].charpos))
432 {
433 bidi_cache_reset ();
434 idx = 0;
435 }
b7b65b15
EZ
436 bidi_copy_it (&bidi_cache[idx], bidi_it);
437 if (!resolved)
438 bidi_cache[idx].resolved_level = -1;
439 }
440 else
441 {
442 /* Copy only the members which could have changed, to avoid
443 costly copying of the entire struct. */
444 bidi_cache[idx].type = bidi_it->type;
2d6e4628 445 bidi_check_type (bidi_it->type);
89d3374a
EZ
446 bidi_cache[idx].type_after_w1 = bidi_it->type_after_w1;
447 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
448 if (resolved)
449 bidi_cache[idx].resolved_level = bidi_it->resolved_level;
450 else
451 bidi_cache[idx].resolved_level = -1;
452 bidi_cache[idx].invalid_levels = bidi_it->invalid_levels;
453 bidi_cache[idx].invalid_rl_levels = bidi_it->invalid_rl_levels;
454 bidi_cache[idx].next_for_neutral = bidi_it->next_for_neutral;
455 bidi_cache[idx].next_for_ws = bidi_it->next_for_ws;
456 bidi_cache[idx].ignore_bn_limit = bidi_it->ignore_bn_limit;
457 }
458
459 bidi_cache_last_idx = idx;
460 if (idx >= bidi_cache_idx)
461 bidi_cache_idx = idx + 1;
462}
463
fd3998ff 464static INLINE bidi_type_t
b7b65b15
EZ
465bidi_cache_find (int charpos, int level, struct bidi_it *bidi_it)
466{
467 int i = bidi_cache_search (charpos, level, bidi_it->scan_dir);
468
469 if (i >= 0)
470 {
471 bidi_dir_t current_scan_dir = bidi_it->scan_dir;
472
5009f85e 473 bidi_copy_it (bidi_it, &bidi_cache[i]);
b7b65b15
EZ
474 bidi_cache_last_idx = i;
475 /* Don't let scan direction from from the cached state override
476 the current scan direction. */
477 bidi_it->scan_dir = current_scan_dir;
478 return bidi_it->type;
479 }
480
481 return UNKNOWN_BT;
482}
483
fd3998ff 484static INLINE int
b7b65b15
EZ
485bidi_peek_at_next_level (struct bidi_it *bidi_it)
486{
487 if (bidi_cache_idx == 0 || bidi_cache_last_idx == -1)
488 abort ();
489 return bidi_cache[bidi_cache_last_idx + bidi_it->scan_dir].resolved_level;
490}
491
be39f003
EZ
492/* Check if buffer position CHARPOS/BYTEPOS is the end of a paragraph.
493 Value is the non-negative length of the paragraph separator
494 following the buffer position, -1 if position is at the beginning
495 of a new paragraph, or -2 if position is neither at beginning nor
496 at end of a paragraph. */
fd3998ff 497static EMACS_INT
6bff6497 498bidi_at_paragraph_end (EMACS_INT charpos, EMACS_INT bytepos)
b7b65b15 499{
372b7a95
EZ
500 Lisp_Object sep_re;
501 Lisp_Object start_re;
be39f003
EZ
502 EMACS_INT val;
503
372b7a95
EZ
504 sep_re = paragraph_separate_re;
505 start_re = paragraph_start_re;
be39f003
EZ
506
507 val = fast_looking_at (sep_re, charpos, bytepos, ZV, ZV_BYTE, Qnil);
508 if (val < 0)
509 {
510 if (fast_looking_at (start_re, charpos, bytepos, ZV, ZV_BYTE, Qnil) >= 0)
511 val = -1;
512 else
513 val = -2;
514 }
b7b65b15 515
be39f003 516 return val;
b7b65b15
EZ
517}
518
519/* Determine the start-of-run (sor) directional type given the two
520 embedding levels on either side of the run boundary. Also, update
521 the saved info about previously seen characters, since that info is
522 generally valid for a single level run. */
fd3998ff 523static INLINE void
b7b65b15
EZ
524bidi_set_sor_type (struct bidi_it *bidi_it, int level_before, int level_after)
525{
526 int higher_level = level_before > level_after ? level_before : level_after;
527
528 /* The prev_was_pdf gork is required for when we have several PDFs
529 in a row. In that case, we want to compute the sor type for the
530 next level run only once: when we see the first PDF. That's
531 because the sor type depends only on the higher of the two levels
532 that we find on the two sides of the level boundary (see UAX#9,
533 clause X10), and so we don't need to know the final embedding
534 level to which we descend after processing all the PDFs. */
e342a24d 535 if (!bidi_it->prev_was_pdf || level_before < level_after)
b7b65b15
EZ
536 /* FIXME: should the default sor direction be user selectable? */
537 bidi_it->sor = (higher_level & 1) != 0 ? R2L : L2R;
538 if (level_before > level_after)
539 bidi_it->prev_was_pdf = 1;
540
541 bidi_it->prev.type = UNKNOWN_BT;
89d3374a
EZ
542 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1 =
543 bidi_it->last_strong.orig_type = UNKNOWN_BT;
b7b65b15
EZ
544 bidi_it->prev_for_neutral.type = bidi_it->sor == R2L ? STRONG_R : STRONG_L;
545 bidi_it->prev_for_neutral.charpos = bidi_it->charpos;
546 bidi_it->prev_for_neutral.bytepos = bidi_it->bytepos;
89d3374a
EZ
547 bidi_it->next_for_neutral.type = bidi_it->next_for_neutral.type_after_w1 =
548 bidi_it->next_for_neutral.orig_type = UNKNOWN_BT;
b7b65b15
EZ
549 bidi_it->ignore_bn_limit = 0; /* meaning it's unknown */
550}
551
6bff6497 552static void
be39f003
EZ
553bidi_line_init (struct bidi_it *bidi_it)
554{
555 bidi_it->scan_dir = 1; /* FIXME: do we need to have control on this? */
556 bidi_it->resolved_level = bidi_it->level_stack[0].level;
557 bidi_it->level_stack[0].override = NEUTRAL_DIR; /* X1 */
558 bidi_it->invalid_levels = 0;
559 bidi_it->invalid_rl_levels = -1;
560 bidi_it->next_en_pos = -1;
561 bidi_it->next_for_ws.type = UNKNOWN_BT;
b44d9321
EZ
562 bidi_set_sor_type (bidi_it,
563 bidi_it->paragraph_dir == R2L ? 1 : 0,
be39f003
EZ
564 bidi_it->level_stack[0].level); /* X10 */
565
566 bidi_cache_reset ();
567}
568
569/* Find the beginning of this paragraph by looking back in the buffer.
570 Value is the byte position of the paragraph's beginning. */
571static EMACS_INT
b44d9321 572bidi_find_paragraph_start (EMACS_INT pos, EMACS_INT pos_byte)
6bff6497 573{
372b7a95 574 Lisp_Object re = paragraph_start_re;
6bff6497
EZ
575 EMACS_INT limit = ZV, limit_byte = ZV_BYTE;
576
6bff6497
EZ
577 while (pos_byte > BEGV_BYTE
578 && fast_looking_at (re, pos, pos_byte, limit, limit_byte, Qnil) < 0)
579 {
be39f003
EZ
580 pos = find_next_newline_no_quit (pos - 1, -1);
581 pos_byte = CHAR_TO_BYTE (pos);
6bff6497 582 }
be39f003 583 return pos_byte;
6bff6497
EZ
584}
585
be39f003 586/* Determine the direction, a.k.a. base embedding level, of the
b44d9321
EZ
587 paragraph we are about to iterate through. If DIR is either L2R or
588 R2L, just use that. Otherwise, determine the paragraph direction
589 from the first strong character of the paragraph.
590
591 Note that this gives the paragraph separator the same direction as
592 the preceding paragraph, even though Emacs generally views the
593 separartor as not belonging to any paragraph. */
b7b65b15
EZ
594void
595bidi_paragraph_init (bidi_dir_t dir, struct bidi_it *bidi_it)
596{
6bff6497 597 EMACS_INT bytepos = bidi_it->bytepos;
e7402cb2 598
5e65aec0
EZ
599 /* Special case for an empty buffer. */
600 if (bytepos == BEGV_BYTE && bytepos == ZV_BYTE)
601 dir = L2R;
9c82e145 602 /* We should never be called at EOB or before BEGV. */
5e65aec0 603 else if (bytepos >= ZV_BYTE || bytepos < BEGV_BYTE)
9c82e145
EZ
604 abort ();
605
be39f003
EZ
606 if (dir == L2R)
607 {
608 bidi_it->paragraph_dir = L2R;
609 bidi_it->new_paragraph = 0;
610 }
611 else if (dir == R2L)
612 {
613 bidi_it->paragraph_dir = R2L;
614 bidi_it->new_paragraph = 0;
615 }
b7b65b15
EZ
616 else if (dir == NEUTRAL_DIR) /* P2 */
617 {
6bff6497
EZ
618 int ch, ch_len;
619 EMACS_INT pos;
620 bidi_type_t type;
be39f003 621
d20e1419
EZ
622 if (!bidi_initialized)
623 bidi_initialize ();
624
be39f003
EZ
625 /* If we are inside a paragraph separator, we are just waiting
626 for the separator to be exhausted; use the previous paragraph
e5a2fec7
EZ
627 direction. But don't do that if we have been just reseated,
628 because we need to reinitialize below in that case. */
629 if (!bidi_it->first_elt
630 && bidi_it->charpos < bidi_it->separator_limit)
be39f003
EZ
631 return;
632
b44d9321 633 /* If we are on a newline, get past it to where the next
5e65aec0
EZ
634 paragraph might start. But don't do that at BEGV since then
635 we are potentially in a new paragraph that doesn't yet
636 exist. */
c143c213 637 pos = bidi_it->charpos;
5e65aec0 638 if (bytepos > BEGV_BYTE && FETCH_CHAR (bytepos) == '\n')
be39f003 639 {
b44d9321 640 bytepos++;
c143c213 641 pos++;
be39f003 642 }
b44d9321
EZ
643
644 /* We are either at the beginning of a paragraph or in the
645 middle of it. Find where this paragraph starts. */
646 bytepos = bidi_find_paragraph_start (pos, bytepos);
6bff6497 647
be39f003
EZ
648 bidi_it->separator_limit = -1;
649 bidi_it->new_paragraph = 0;
6bff6497
EZ
650 ch = FETCH_CHAR (bytepos);
651 ch_len = CHAR_BYTES (ch);
be39f003 652 pos = BYTE_TO_CHAR (bytepos);
6bff6497 653 type = bidi_get_type (ch, NEUTRAL_DIR);
b7b65b15 654
e342a24d 655 for (pos++, bytepos += ch_len;
b7b65b15
EZ
656 /* NOTE: UAX#9 says to search only for L, AL, or R types of
657 characters, and ignore RLE, RLO, LRE, and LRO. However,
658 I'm not sure it makes sense to omit those 4; should try
659 with and without that to see the effect. */
660 (bidi_get_category (type) != STRONG)
661 || (bidi_ignore_explicit_marks_for_paragraph_level
662 && (type == RLE || type == RLO
663 || type == LRE || type == LRO));
6bff6497 664 type = bidi_get_type (ch, NEUTRAL_DIR))
b7b65b15 665 {
be39f003 666 if (type == NEUTRAL_B && bidi_at_paragraph_end (pos, bytepos) >= -1)
b7b65b15 667 break;
21fce5ab
EZ
668 if (bytepos >= ZV_BYTE)
669 {
670 /* Pretend there's a paragraph separator at end of buffer. */
671 type = NEUTRAL_B;
672 break;
673 }
b7b65b15
EZ
674 FETCH_CHAR_ADVANCE (ch, pos, bytepos);
675 }
676 if (type == STRONG_R || type == STRONG_AL) /* P3 */
be39f003
EZ
677 bidi_it->paragraph_dir = R2L;
678 else if (type == STRONG_L)
679 bidi_it->paragraph_dir = L2R;
b7b65b15 680 }
be39f003
EZ
681 else
682 abort ();
b7b65b15 683
b44d9321
EZ
684 /* Contrary to UAX#9 clause P3, we only default the paragraph
685 direction to L2R if we have no previous usable paragraph
686 direction. */
d20e1419 687 if (bidi_it->paragraph_dir != L2R && bidi_it->paragraph_dir != R2L)
b44d9321 688 bidi_it->paragraph_dir = L2R; /* P3 and ``higher protocols'' */
be39f003 689 if (bidi_it->paragraph_dir == R2L)
b44d9321 690 bidi_it->level_stack[0].level = 1;
be39f003 691 else
b44d9321 692 bidi_it->level_stack[0].level = 0;
be39f003
EZ
693
694 bidi_line_init (bidi_it);
b7b65b15
EZ
695}
696
6bff6497
EZ
697/* Do whatever UAX#9 clause X8 says should be done at paragraph's
698 end. */
fd3998ff 699static INLINE void
b7b65b15
EZ
700bidi_set_paragraph_end (struct bidi_it *bidi_it)
701{
702 bidi_it->invalid_levels = 0;
703 bidi_it->invalid_rl_levels = -1;
704 bidi_it->stack_idx = 0;
705 bidi_it->resolved_level = bidi_it->level_stack[0].level;
b7b65b15
EZ
706}
707
89d3374a 708/* Initialize the bidi iterator from buffer position CHARPOS. */
b7b65b15 709void
6bff6497 710bidi_init_it (EMACS_INT charpos, EMACS_INT bytepos, struct bidi_it *bidi_it)
b7b65b15
EZ
711{
712 if (! bidi_initialized)
713 bidi_initialize ();
89d3374a
EZ
714 bidi_it->charpos = charpos;
715 bidi_it->bytepos = bytepos;
6bff6497
EZ
716 bidi_it->first_elt = 1;
717 bidi_set_paragraph_end (bidi_it);
718 bidi_it->new_paragraph = 1;
be39f003 719 bidi_it->separator_limit = -1;
b7b65b15 720 bidi_it->type = NEUTRAL_B;
ebb5722e
EZ
721 bidi_it->type_after_w1 = NEUTRAL_B;
722 bidi_it->orig_type = NEUTRAL_B;
b7b65b15 723 bidi_it->prev_was_pdf = 0;
ebb5722e
EZ
724 bidi_it->prev.type = bidi_it->prev.type_after_w1 =
725 bidi_it->prev.orig_type = UNKNOWN_BT;
89d3374a
EZ
726 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1 =
727 bidi_it->last_strong.orig_type = UNKNOWN_BT;
b7b65b15
EZ
728 bidi_it->next_for_neutral.charpos = -1;
729 bidi_it->next_for_neutral.type =
89d3374a
EZ
730 bidi_it->next_for_neutral.type_after_w1 =
731 bidi_it->next_for_neutral.orig_type = UNKNOWN_BT;
b7b65b15
EZ
732 bidi_it->prev_for_neutral.charpos = -1;
733 bidi_it->prev_for_neutral.type =
89d3374a
EZ
734 bidi_it->prev_for_neutral.type_after_w1 =
735 bidi_it->prev_for_neutral.orig_type = UNKNOWN_BT;
b7b65b15 736 bidi_it->sor = L2R; /* FIXME: should it be user-selectable? */
2fe72643 737 bidi_cache_shrink ();
b7b65b15
EZ
738}
739
740/* Push the current embedding level and override status; reset the
741 current level to LEVEL and the current override status to OVERRIDE. */
fd3998ff 742static INLINE void
b7b65b15
EZ
743bidi_push_embedding_level (struct bidi_it *bidi_it,
744 int level, bidi_dir_t override)
745{
746 bidi_it->stack_idx++;
747 if (bidi_it->stack_idx >= BIDI_MAXLEVEL)
748 abort ();
749 bidi_it->level_stack[bidi_it->stack_idx].level = level;
750 bidi_it->level_stack[bidi_it->stack_idx].override = override;
751}
752
753/* Pop the embedding level and directional override status from the
754 stack, and return the new level. */
fd3998ff 755static INLINE int
b7b65b15
EZ
756bidi_pop_embedding_level (struct bidi_it *bidi_it)
757{
758 /* UAX#9 says to ignore invalid PDFs. */
759 if (bidi_it->stack_idx > 0)
760 bidi_it->stack_idx--;
761 return bidi_it->level_stack[bidi_it->stack_idx].level;
762}
763
764/* Record in SAVED_INFO the information about the current character. */
fd3998ff 765static INLINE void
b7b65b15
EZ
766bidi_remember_char (struct bidi_saved_info *saved_info,
767 struct bidi_it *bidi_it)
768{
769 saved_info->charpos = bidi_it->charpos;
770 saved_info->bytepos = bidi_it->bytepos;
771 saved_info->type = bidi_it->type;
2d6e4628 772 bidi_check_type (bidi_it->type);
89d3374a
EZ
773 saved_info->type_after_w1 = bidi_it->type_after_w1;
774 bidi_check_type (bidi_it->type_after_w1);
b7b65b15 775 saved_info->orig_type = bidi_it->orig_type;
2d6e4628 776 bidi_check_type (bidi_it->orig_type);
b7b65b15
EZ
777}
778
779/* Resolve the type of a neutral character according to the type of
780 surrounding strong text and the current embedding level. */
fd3998ff 781static INLINE bidi_type_t
b7b65b15
EZ
782bidi_resolve_neutral_1 (bidi_type_t prev_type, bidi_type_t next_type, int lev)
783{
784 /* N1: European and Arabic numbers are treated as though they were R. */
785 if (next_type == WEAK_EN || next_type == WEAK_AN)
786 next_type = STRONG_R;
787 if (prev_type == WEAK_EN || prev_type == WEAK_AN)
788 prev_type = STRONG_R;
789
790 if (next_type == prev_type) /* N1 */
791 return next_type;
792 else if ((lev & 1) == 0) /* N2 */
793 return STRONG_L;
794 else
795 return STRONG_R;
796}
797
fd3998ff 798static INLINE int
b7b65b15
EZ
799bidi_explicit_dir_char (int c)
800{
801 /* FIXME: this should be replaced with a lookup table with suitable
802 bits set, like standard C ctype macros do. */
803 return (c == LRE_CHAR || c == LRO_CHAR
804 || c == RLE_CHAR || c == RLO_CHAR || c == PDF_CHAR);
805}
806
807/* A helper function for bidi_resolve_explicit. It advances to the
808 next character in logical order and determines the new embedding
809 level and directional override, but does not take into account
810 empty embeddings. */
811static int
812bidi_resolve_explicit_1 (struct bidi_it *bidi_it)
813{
814 int curchar;
815 bidi_type_t type;
816 int current_level;
817 int new_level;
818 bidi_dir_t override;
819
9c82e145
EZ
820 if (bidi_it->bytepos < BEGV_BYTE /* after reseat to BEGV? */
821 || bidi_it->first_elt)
e7402cb2 822 {
9c82e145
EZ
823 bidi_it->first_elt = 0;
824 if (bidi_it->charpos < BEGV)
825 bidi_it->charpos = BEGV;
826 bidi_it->bytepos = CHAR_TO_BYTE (bidi_it->charpos);
e7402cb2 827 }
9c82e145 828 else if (bidi_it->bytepos < ZV_BYTE) /* don't move at ZV */
b7b65b15
EZ
829 {
830 bidi_it->charpos++;
e7402cb2
EZ
831 if (bidi_it->ch_len == 0)
832 abort ();
b7b65b15
EZ
833 bidi_it->bytepos += bidi_it->ch_len;
834 }
835
836 current_level = bidi_it->level_stack[bidi_it->stack_idx].level; /* X1 */
837 override = bidi_it->level_stack[bidi_it->stack_idx].override;
838 new_level = current_level;
839
840 /* in case it is a unibyte character (not yet implemented) */
841 /* _fetch_multibyte_char_len = 1; */
e7402cb2
EZ
842 if (bidi_it->bytepos >= ZV_BYTE)
843 {
844 curchar = BIDI_EOB;
845 bidi_it->ch_len = 1;
846 }
847 else
848 {
849 curchar = FETCH_CHAR (bidi_it->bytepos);
850 bidi_it->ch_len = CHAR_BYTES (curchar);
851 }
b7b65b15 852 bidi_it->ch = curchar;
b7b65b15 853
6bff6497
EZ
854 /* Don't apply directional override here, as all the types we handle
855 below will not be affected by the override anyway, and we need
856 the original type unaltered. The override will be applied in
857 bidi_resolve_weak. */
858 type = bidi_get_type (curchar, NEUTRAL_DIR);
89d3374a
EZ
859 bidi_it->orig_type = type;
860 bidi_check_type (bidi_it->orig_type);
b7b65b15
EZ
861
862 if (type != PDF)
863 bidi_it->prev_was_pdf = 0;
864
89d3374a 865 bidi_it->type_after_w1 = UNKNOWN_BT;
b7b65b15
EZ
866
867 switch (type)
868 {
869 case RLE: /* X2 */
870 case RLO: /* X4 */
89d3374a
EZ
871 bidi_it->type_after_w1 = type;
872 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
873 type = WEAK_BN; /* X9/Retaining */
874 if (bidi_it->ignore_bn_limit <= 0)
875 {
876 if (current_level <= BIDI_MAXLEVEL - 4)
877 {
878 /* Compute the least odd embedding level greater than
879 the current level. */
880 new_level = ((current_level + 1) & ~1) + 1;
89d3374a 881 if (bidi_it->type_after_w1 == RLE)
b7b65b15
EZ
882 override = NEUTRAL_DIR;
883 else
884 override = R2L;
885 if (current_level == BIDI_MAXLEVEL - 4)
886 bidi_it->invalid_rl_levels = 0;
887 bidi_push_embedding_level (bidi_it, new_level, override);
888 }
889 else
890 {
891 bidi_it->invalid_levels++;
892 /* See the commentary about invalid_rl_levels below. */
893 if (bidi_it->invalid_rl_levels < 0)
894 bidi_it->invalid_rl_levels = 0;
895 bidi_it->invalid_rl_levels++;
896 }
897 }
89d3374a 898 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
b7b65b15
EZ
899 || bidi_it->next_en_pos > bidi_it->charpos)
900 type = WEAK_EN;
901 break;
902 case LRE: /* X3 */
903 case LRO: /* X5 */
89d3374a
EZ
904 bidi_it->type_after_w1 = type;
905 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
906 type = WEAK_BN; /* X9/Retaining */
907 if (bidi_it->ignore_bn_limit <= 0)
908 {
909 if (current_level <= BIDI_MAXLEVEL - 5)
910 {
911 /* Compute the least even embedding level greater than
912 the current level. */
913 new_level = ((current_level + 2) & ~1);
89d3374a 914 if (bidi_it->type_after_w1 == LRE)
b7b65b15
EZ
915 override = NEUTRAL_DIR;
916 else
917 override = L2R;
918 bidi_push_embedding_level (bidi_it, new_level, override);
919 }
920 else
921 {
922 bidi_it->invalid_levels++;
923 /* invalid_rl_levels counts invalid levels encountered
924 while the embedding level was already too high for
925 LRE/LRO, but not for RLE/RLO. That is because
926 there may be exactly one PDF which we should not
927 ignore even though invalid_levels is non-zero.
928 invalid_rl_levels helps to know what PDF is
929 that. */
930 if (bidi_it->invalid_rl_levels >= 0)
931 bidi_it->invalid_rl_levels++;
932 }
933 }
89d3374a 934 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
b7b65b15
EZ
935 || bidi_it->next_en_pos > bidi_it->charpos)
936 type = WEAK_EN;
937 break;
938 case PDF: /* X7 */
89d3374a
EZ
939 bidi_it->type_after_w1 = type;
940 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
941 type = WEAK_BN; /* X9/Retaining */
942 if (bidi_it->ignore_bn_limit <= 0)
943 {
944 if (!bidi_it->invalid_rl_levels)
945 {
946 new_level = bidi_pop_embedding_level (bidi_it);
947 bidi_it->invalid_rl_levels = -1;
948 if (bidi_it->invalid_levels)
949 bidi_it->invalid_levels--;
950 /* else nothing: UAX#9 says to ignore invalid PDFs */
951 }
952 if (!bidi_it->invalid_levels)
953 new_level = bidi_pop_embedding_level (bidi_it);
954 else
955 {
956 bidi_it->invalid_levels--;
957 bidi_it->invalid_rl_levels--;
958 }
959 }
89d3374a 960 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */
b7b65b15
EZ
961 || bidi_it->next_en_pos > bidi_it->charpos)
962 type = WEAK_EN;
963 break;
964 default:
965 /* Nothing. */
966 break;
967 }
968
969 bidi_it->type = type;
2d6e4628 970 bidi_check_type (bidi_it->type);
b7b65b15
EZ
971
972 return new_level;
973}
974
975/* Given an iterator state in BIDI_IT, advance one character position
976 in the buffer to the next character (in the logical order), resolve
977 any explicit embeddings and directional overrides, and return the
978 embedding level of the character after resolving explicit
979 directives and ignoring empty embeddings. */
980static int
981bidi_resolve_explicit (struct bidi_it *bidi_it)
982{
983 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
984 int new_level = bidi_resolve_explicit_1 (bidi_it);
985
986 if (prev_level < new_level
987 && bidi_it->type == WEAK_BN
988 && bidi_it->ignore_bn_limit == 0 /* only if not already known */
1502b819 989 && bidi_it->bytepos < ZV_BYTE /* not already at EOB */
b7b65b15
EZ
990 && bidi_explicit_dir_char (FETCH_CHAR (bidi_it->bytepos
991 + bidi_it->ch_len)))
992 {
993 /* Avoid pushing and popping embedding levels if the level run
994 is empty, as this breaks level runs where it shouldn't.
995 UAX#9 removes all the explicit embedding and override codes,
996 so empty embeddings disappear without a trace. We need to
997 behave as if we did the same. */
998 struct bidi_it saved_it;
999 int level = prev_level;
1000
1001 bidi_copy_it (&saved_it, bidi_it);
1002
1003 while (bidi_explicit_dir_char (FETCH_CHAR (bidi_it->bytepos
1004 + bidi_it->ch_len)))
1005 {
1006 level = bidi_resolve_explicit_1 (bidi_it);
1007 }
1008
1009 if (level == prev_level) /* empty embedding */
1010 saved_it.ignore_bn_limit = bidi_it->charpos + 1;
1011 else /* this embedding is non-empty */
1012 saved_it.ignore_bn_limit = -1;
1013
1014 bidi_copy_it (bidi_it, &saved_it);
1015 if (bidi_it->ignore_bn_limit > 0)
1016 {
1017 /* We pushed a level, but we shouldn't have. Undo that. */
1018 if (!bidi_it->invalid_rl_levels)
1019 {
1020 new_level = bidi_pop_embedding_level (bidi_it);
1021 bidi_it->invalid_rl_levels = -1;
1022 if (bidi_it->invalid_levels)
1023 bidi_it->invalid_levels--;
1024 }
1025 if (!bidi_it->invalid_levels)
1026 new_level = bidi_pop_embedding_level (bidi_it);
1027 else
1028 {
1029 bidi_it->invalid_levels--;
1030 bidi_it->invalid_rl_levels--;
1031 }
1032 }
1033 }
1034
b7b65b15
EZ
1035 if (bidi_it->type == NEUTRAL_B) /* X8 */
1036 {
21fce5ab 1037 bidi_set_paragraph_end (bidi_it);
6bff6497
EZ
1038 /* This is needed by bidi_resolve_weak below, and in L1. */
1039 bidi_it->type_after_w1 = bidi_it->type;
89d3374a 1040 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
1041 }
1042
1043 return new_level;
1044}
1045
1046/* Advance in the buffer, resolve weak types and return the type of
1047 the next character after weak type resolution. */
fd3998ff 1048static bidi_type_t
b7b65b15
EZ
1049bidi_resolve_weak (struct bidi_it *bidi_it)
1050{
1051 bidi_type_t type;
1052 bidi_dir_t override;
1053 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1054 int new_level = bidi_resolve_explicit (bidi_it);
1055 int next_char;
1056 bidi_type_t type_of_next;
1057 struct bidi_it saved_it;
1058
1059 type = bidi_it->type;
1060 override = bidi_it->level_stack[bidi_it->stack_idx].override;
1061
1062 if (type == UNKNOWN_BT
1063 || type == LRE
1064 || type == LRO
1065 || type == RLE
1066 || type == RLO
1067 || type == PDF)
1068 abort ();
1069
1070 if (new_level != prev_level
1071 || bidi_it->type == NEUTRAL_B)
1072 {
1073 /* We've got a new embedding level run, compute the directional
1074 type of sor and initialize per-run variables (UAX#9, clause
1075 X10). */
1076 bidi_set_sor_type (bidi_it, prev_level, new_level);
1077 }
1078 else if (type == NEUTRAL_S || type == NEUTRAL_WS
1079 || type == WEAK_BN || type == STRONG_AL)
89d3374a
EZ
1080 bidi_it->type_after_w1 = type; /* needed in L1 */
1081 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
1082
1083 /* Level and directional override status are already recorded in
1084 bidi_it, and do not need any change; see X6. */
1085 if (override == R2L) /* X6 */
1086 type = STRONG_R;
1087 else if (override == L2R)
1088 type = STRONG_L;
bc5a45f3 1089 else
b7b65b15 1090 {
bc5a45f3 1091 if (type == WEAK_NSM) /* W1 */
b7b65b15 1092 {
bc5a45f3 1093 /* Note that we don't need to consider the case where the
5930fe97
EZ
1094 prev character has its type overridden by an RLO or LRO,
1095 because then either the type of this NSM would have been
1096 also overridden, or the previous character is outside the
1097 current level run, and thus not relevant to this NSM.
1098 This is why NSM gets the type_after_w1 of the previous
1099 character. */
ebb5722e
EZ
1100 if (bidi_it->prev.type_after_w1 != UNKNOWN_BT
1101 /* if type_after_w1 is NEUTRAL_B, this NSM is at sor */
1102 && bidi_it->prev.type_after_w1 != NEUTRAL_B)
5930fe97 1103 type = bidi_it->prev.type_after_w1;
bc5a45f3
EZ
1104 else if (bidi_it->sor == R2L)
1105 type = STRONG_R;
1106 else if (bidi_it->sor == L2R)
1107 type = STRONG_L;
1108 else /* shouldn't happen! */
1109 abort ();
b7b65b15 1110 }
bc5a45f3
EZ
1111 if (type == WEAK_EN /* W2 */
1112 && bidi_it->last_strong.type_after_w1 == STRONG_AL)
1113 type = WEAK_AN;
1114 else if (type == STRONG_AL) /* W3 */
1115 type = STRONG_R;
1116 else if ((type == WEAK_ES /* W4 */
1117 && bidi_it->prev.type_after_w1 == WEAK_EN
1118 && bidi_it->prev.orig_type == WEAK_EN)
1119 || (type == WEAK_CS
1120 && ((bidi_it->prev.type_after_w1 == WEAK_EN
1121 && bidi_it->prev.orig_type == WEAK_EN)
1122 || bidi_it->prev.type_after_w1 == WEAK_AN)))
b7b65b15 1123 {
e7402cb2
EZ
1124 next_char =
1125 bidi_it->bytepos + bidi_it->ch_len >= ZV_BYTE
1126 ? BIDI_EOB : FETCH_CHAR (bidi_it->bytepos + bidi_it->ch_len);
6bff6497 1127 type_of_next = bidi_get_type (next_char, override);
b7b65b15 1128
bc5a45f3 1129 if (type_of_next == WEAK_BN
b7b65b15
EZ
1130 || bidi_explicit_dir_char (next_char))
1131 {
1132 bidi_copy_it (&saved_it, bidi_it);
1133 while (bidi_resolve_explicit (bidi_it) == new_level
bc5a45f3 1134 && bidi_it->type == WEAK_BN)
b7b65b15
EZ
1135 ;
1136 type_of_next = bidi_it->type;
b7b65b15
EZ
1137 bidi_copy_it (bidi_it, &saved_it);
1138 }
bc5a45f3
EZ
1139
1140 /* If the next character is EN, but the last strong-type
1141 character is AL, that next EN will be changed to AN when
1142 we process it in W2 above. So in that case, this ES
1143 should not be changed into EN. */
1144 if (type == WEAK_ES
1145 && type_of_next == WEAK_EN
1146 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1147 type = WEAK_EN;
1148 else if (type == WEAK_CS)
b7b65b15 1149 {
bc5a45f3
EZ
1150 if (bidi_it->prev.type_after_w1 == WEAK_AN
1151 && (type_of_next == WEAK_AN
1152 /* If the next character is EN, but the last
1153 strong-type character is AL, EN will be later
1154 changed to AN when we process it in W2 above.
1155 So in that case, this ES should not be
1156 changed into EN. */
1157 || (type_of_next == WEAK_EN
1158 && bidi_it->last_strong.type_after_w1 == STRONG_AL)))
1159 type = WEAK_AN;
1160 else if (bidi_it->prev.type_after_w1 == WEAK_EN
1161 && type_of_next == WEAK_EN
1162 && bidi_it->last_strong.type_after_w1 != STRONG_AL)
1163 type = WEAK_EN;
1164 }
1165 }
1166 else if (type == WEAK_ET /* W5: ET with EN before or after it */
1167 || type == WEAK_BN) /* W5/Retaining */
1168 {
1169 if (bidi_it->prev.type_after_w1 == WEAK_EN /* ET/BN w/EN before it */
1170 || bidi_it->next_en_pos > bidi_it->charpos)
1171 type = WEAK_EN;
1172 else /* W5: ET/BN with EN after it. */
1173 {
1174 EMACS_INT en_pos = bidi_it->charpos + 1;
1175
1176 next_char =
1177 bidi_it->bytepos + bidi_it->ch_len >= ZV_BYTE
1178 ? BIDI_EOB : FETCH_CHAR (bidi_it->bytepos + bidi_it->ch_len);
1179 type_of_next = bidi_get_type (next_char, override);
1180
1181 if (type_of_next == WEAK_ET
1182 || type_of_next == WEAK_BN
1183 || bidi_explicit_dir_char (next_char))
1184 {
1185 bidi_copy_it (&saved_it, bidi_it);
1186 while (bidi_resolve_explicit (bidi_it) == new_level
1187 && (bidi_it->type == WEAK_BN
1188 || bidi_it->type == WEAK_ET))
1189 ;
1190 type_of_next = bidi_it->type;
1191 en_pos = bidi_it->charpos;
1192 bidi_copy_it (bidi_it, &saved_it);
1193 }
1194 if (type_of_next == WEAK_EN)
b7b65b15 1195 {
bc5a45f3
EZ
1196 /* If the last strong character is AL, the EN we've
1197 found will become AN when we get to it (W2). */
1198 if (bidi_it->last_strong.type_after_w1 != STRONG_AL)
1199 {
1200 type = WEAK_EN;
1201 /* Remember this EN position, to speed up processing
1202 of the next ETs. */
1203 bidi_it->next_en_pos = en_pos;
1204 }
1205 else if (type == WEAK_BN)
1206 type = NEUTRAL_ON; /* W6/Retaining */
b7b65b15 1207 }
b7b65b15
EZ
1208 }
1209 }
1210 }
1211
1212 if (type == WEAK_ES || type == WEAK_ET || type == WEAK_CS /* W6 */
89d3374a
EZ
1213 || (type == WEAK_BN
1214 && (bidi_it->prev.type_after_w1 == WEAK_CS /* W6/Retaining */
1215 || bidi_it->prev.type_after_w1 == WEAK_ES
1216 || bidi_it->prev.type_after_w1 == WEAK_ET)))
b7b65b15
EZ
1217 type = NEUTRAL_ON;
1218
1219 /* Store the type we've got so far, before we clobber it with strong
1220 types in W7 and while resolving neutral types. But leave alone
1221 the original types that were recorded above, because we will need
1222 them for the L1 clause. */
89d3374a
EZ
1223 if (bidi_it->type_after_w1 == UNKNOWN_BT)
1224 bidi_it->type_after_w1 = type;
1225 bidi_check_type (bidi_it->type_after_w1);
b7b65b15
EZ
1226
1227 if (type == WEAK_EN) /* W7 */
1228 {
89d3374a 1229 if ((bidi_it->last_strong.type_after_w1 == STRONG_L)
b7b65b15
EZ
1230 || (bidi_it->last_strong.type == UNKNOWN_BT && bidi_it->sor == L2R))
1231 type = STRONG_L;
1232 }
1233
1234 bidi_it->type = type;
2d6e4628 1235 bidi_check_type (bidi_it->type);
b7b65b15
EZ
1236 return type;
1237}
1238
fd3998ff 1239static bidi_type_t
b7b65b15
EZ
1240bidi_resolve_neutral (struct bidi_it *bidi_it)
1241{
1242 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1243 bidi_type_t type = bidi_resolve_weak (bidi_it);
1244 int current_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1245
1246 if (!(type == STRONG_R
1247 || type == STRONG_L
1248 || type == WEAK_BN
1249 || type == WEAK_EN
1250 || type == WEAK_AN
1251 || type == NEUTRAL_B
1252 || type == NEUTRAL_S
1253 || type == NEUTRAL_WS
1254 || type == NEUTRAL_ON))
1255 abort ();
1256
1257 if (bidi_get_category (type) == NEUTRAL
1258 || (type == WEAK_BN && prev_level == current_level))
1259 {
1260 if (bidi_it->next_for_neutral.type != UNKNOWN_BT)
1261 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1262 bidi_it->next_for_neutral.type,
1263 current_level);
1264 else
1265 {
1266 /* Arrrgh!! The UAX#9 algorithm is too deeply entrenched in
1267 the assumption of batch-style processing; see clauses W4,
1268 W5, and especially N1, which require to look far forward
1269 (as well as back) in the buffer. May the fleas of a
1270 thousand camels infest the armpits of those who design
1271 supposedly general-purpose algorithms by looking at their
1272 own implementations, and fail to consider other possible
1273 implementations! */
1274 struct bidi_it saved_it;
1275 bidi_type_t next_type;
1276
1277 if (bidi_it->scan_dir == -1)
1278 abort ();
1279
1280 bidi_copy_it (&saved_it, bidi_it);
1281 /* Scan the text forward until we find the first non-neutral
1282 character, and then use that to resolve the neutral we
1283 are dealing with now. We also cache the scanned iterator
1284 states, to salvage some of the effort later. */
1285 bidi_cache_iterator_state (bidi_it, 0);
1286 do {
1287 /* Record the info about the previous character, so that
1288 it will be cached below with this state. */
89d3374a 1289 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
b7b65b15
EZ
1290 && bidi_it->type != WEAK_BN)
1291 bidi_remember_char (&bidi_it->prev, bidi_it);
1292 type = bidi_resolve_weak (bidi_it);
1293 /* Paragraph separators have their levels fully resolved
1294 at this point, so cache them as resolved. */
1295 bidi_cache_iterator_state (bidi_it, type == NEUTRAL_B);
1296 /* FIXME: implement L1 here, by testing for a newline and
1297 resetting the level for any sequence of whitespace
1298 characters adjacent to it. */
1299 } while (!(type == NEUTRAL_B
1300 || (type != WEAK_BN
1301 && bidi_get_category (type) != NEUTRAL)
1302 /* This is all per level run, so stop when we
1303 reach the end of this level run. */
1304 || bidi_it->level_stack[bidi_it->stack_idx].level !=
1305 current_level));
1306
1307 bidi_remember_char (&saved_it.next_for_neutral, bidi_it);
1308
1309 switch (type)
1310 {
1311 case STRONG_L:
1312 case STRONG_R:
1313 case STRONG_AL:
1314 next_type = type;
1315 break;
1316 case WEAK_EN:
1317 case WEAK_AN:
1318 /* N1: ``European and Arabic numbers are treated as
1319 though they were R.'' */
1320 next_type = STRONG_R;
1321 saved_it.next_for_neutral.type = STRONG_R;
1322 break;
1323 case WEAK_BN:
1324 if (!bidi_explicit_dir_char (bidi_it->ch))
1325 abort (); /* can't happen: BNs are skipped */
1326 /* FALLTHROUGH */
1327 case NEUTRAL_B:
1328 /* Marched all the way to the end of this level run.
1329 We need to use the eor type, whose information is
1330 stored by bidi_set_sor_type in the prev_for_neutral
1331 member. */
1332 if (saved_it.type != WEAK_BN
89d3374a 1333 || bidi_get_category (bidi_it->prev.type_after_w1) == NEUTRAL)
b7b65b15
EZ
1334 {
1335 next_type = bidi_it->prev_for_neutral.type;
1336 saved_it.next_for_neutral.type = next_type;
2d6e4628 1337 bidi_check_type (next_type);
b7b65b15
EZ
1338 }
1339 else
1340 {
1341 /* This is a BN which does not adjoin neutrals.
1342 Leave its type alone. */
1343 bidi_copy_it (bidi_it, &saved_it);
1344 return bidi_it->type;
1345 }
1346 break;
1347 default:
1348 abort ();
1349 }
1350 type = bidi_resolve_neutral_1 (saved_it.prev_for_neutral.type,
1351 next_type, current_level);
1352 saved_it.type = type;
2d6e4628 1353 bidi_check_type (type);
b7b65b15
EZ
1354 bidi_copy_it (bidi_it, &saved_it);
1355 }
1356 }
1357 return type;
1358}
1359
1360/* Given an iterator state in BIDI_IT, advance one character position
1361 in the buffer to the next character (in the logical order), resolve
1362 the bidi type of that next character, and return that type. */
fd3998ff 1363static bidi_type_t
b7b65b15
EZ
1364bidi_type_of_next_char (struct bidi_it *bidi_it)
1365{
1366 bidi_type_t type;
1367
1368 /* This should always be called during a forward scan. */
1369 if (bidi_it->scan_dir != 1)
1370 abort ();
1371
1372 /* Reset the limit until which to ignore BNs if we step out of the
1373 area where we found only empty levels. */
1374 if ((bidi_it->ignore_bn_limit > 0
1375 && bidi_it->ignore_bn_limit <= bidi_it->charpos)
1376 || (bidi_it->ignore_bn_limit == -1
1377 && !bidi_explicit_dir_char (bidi_it->ch)))
1378 bidi_it->ignore_bn_limit = 0;
1379
1380 type = bidi_resolve_neutral (bidi_it);
1381
1382 return type;
1383}
1384
1385/* Given an iterator state BIDI_IT, advance one character position in
1386 the buffer to the next character (in the logical order), resolve
1387 the embedding and implicit levels of that next character, and
1388 return the resulting level. */
fd3998ff 1389static int
b7b65b15
EZ
1390bidi_level_of_next_char (struct bidi_it *bidi_it)
1391{
1392 bidi_type_t type;
1393 int level, prev_level = -1;
1394 struct bidi_saved_info next_for_neutral;
1395
1396 if (bidi_it->scan_dir == 1)
1397 {
1398 /* There's no sense in trying to advance if we hit end of text. */
1502b819 1399 if (bidi_it->bytepos >= ZV_BYTE)
b7b65b15
EZ
1400 return bidi_it->resolved_level;
1401
1402 /* Record the info about the previous character. */
89d3374a 1403 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */
b7b65b15
EZ
1404 && bidi_it->type != WEAK_BN)
1405 bidi_remember_char (&bidi_it->prev, bidi_it);
89d3374a
EZ
1406 if (bidi_it->type_after_w1 == STRONG_R
1407 || bidi_it->type_after_w1 == STRONG_L
1408 || bidi_it->type_after_w1 == STRONG_AL)
b7b65b15
EZ
1409 bidi_remember_char (&bidi_it->last_strong, bidi_it);
1410 /* FIXME: it sounds like we don't need both prev and
1411 prev_for_neutral members, but I'm leaving them both for now. */
1412 if (bidi_it->type == STRONG_R || bidi_it->type == STRONG_L
1413 || bidi_it->type == WEAK_EN || bidi_it->type == WEAK_AN)
1414 bidi_remember_char (&bidi_it->prev_for_neutral, bidi_it);
1415
1416 /* If we overstepped the characters used for resolving neutrals
1417 and whitespace, invalidate their info in the iterator. */
1418 if (bidi_it->charpos >= bidi_it->next_for_neutral.charpos)
1419 bidi_it->next_for_neutral.type = UNKNOWN_BT;
1420 if (bidi_it->next_en_pos >= 0
1421 && bidi_it->charpos >= bidi_it->next_en_pos)
1422 bidi_it->next_en_pos = -1;
1423 if (bidi_it->next_for_ws.type != UNKNOWN_BT
1424 && bidi_it->charpos >= bidi_it->next_for_ws.charpos)
1425 bidi_it->next_for_ws.type = UNKNOWN_BT;
1426
1427 /* This must be taken before we fill the iterator with the info
1428 about the next char. If we scan backwards, the iterator
1429 state must be already cached, so there's no need to know the
1430 embedding level of the previous character, since we will be
1431 returning to our caller shortly. */
1432 prev_level = bidi_it->level_stack[bidi_it->stack_idx].level;
1433 }
1434 next_for_neutral = bidi_it->next_for_neutral;
1435
1436 /* Perhaps it is already cached. */
1437 type = bidi_cache_find (bidi_it->charpos + bidi_it->scan_dir, -1, bidi_it);
1438 if (type != UNKNOWN_BT)
1439 {
1440 /* Don't lose the information for resolving neutrals! The
1441 cached states could have been cached before their
1442 next_for_neutral member was computed. If we are on our way
1443 forward, we can simply take the info from the previous
1444 state. */
1445 if (bidi_it->scan_dir == 1
1446 && bidi_it->next_for_neutral.type == UNKNOWN_BT)
1447 bidi_it->next_for_neutral = next_for_neutral;
1448
1449 /* If resolved_level is -1, it means this state was cached
1450 before it was completely resolved, so we cannot return
1451 it. */
1452 if (bidi_it->resolved_level != -1)
1453 return bidi_it->resolved_level;
1454 }
1455 if (bidi_it->scan_dir == -1)
1456 /* If we are going backwards, the iterator state is already cached
1457 from previous scans, and should be fully resolved. */
1458 abort ();
1459
1460 if (type == UNKNOWN_BT)
1461 type = bidi_type_of_next_char (bidi_it);
1462
1463 if (type == NEUTRAL_B)
1464 return bidi_it->resolved_level;
1465
1466 level = bidi_it->level_stack[bidi_it->stack_idx].level;
1467 if ((bidi_get_category (type) == NEUTRAL /* && type != NEUTRAL_B */)
1468 || (type == WEAK_BN && prev_level == level))
1469 {
1470 if (bidi_it->next_for_neutral.type == UNKNOWN_BT)
1471 abort ();
1472
1473 /* If the cached state shows a neutral character, it was not
1474 resolved by bidi_resolve_neutral, so do it now. */
1475 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type,
1476 bidi_it->next_for_neutral.type,
1477 level);
1478 }
1479
1480 if (!(type == STRONG_R
1481 || type == STRONG_L
1482 || type == WEAK_BN
1483 || type == WEAK_EN
1484 || type == WEAK_AN))
1485 abort ();
1486 bidi_it->type = type;
2d6e4628 1487 bidi_check_type (bidi_it->type);
b7b65b15
EZ
1488
1489 /* For L1 below, we need to know, for each WS character, whether
1490 it belongs to a sequence of WS characters preceeding a newline
1491 or a TAB or a paragraph separator. */
89d3374a 1492 if (bidi_it->orig_type == NEUTRAL_WS
b7b65b15
EZ
1493 && bidi_it->next_for_ws.type == UNKNOWN_BT)
1494 {
1495 int ch;
1496 int clen = bidi_it->ch_len;
6bff6497
EZ
1497 EMACS_INT bpos = bidi_it->bytepos;
1498 EMACS_INT cpos = bidi_it->charpos;
b7b65b15
EZ
1499 bidi_type_t chtype;
1500
1501 do {
1502 /*_fetch_multibyte_char_len = 1;*/
e7402cb2 1503 ch = bpos + clen >= ZV_BYTE ? BIDI_EOB : FETCH_CHAR (bpos + clen);
b7b65b15
EZ
1504 bpos += clen;
1505 cpos++;
e7402cb2
EZ
1506 clen = (ch == BIDI_EOB ? 1 : CHAR_BYTES (ch));
1507 if (ch == '\n' || ch == BIDI_EOB /* || ch == LINESEP_CHAR */)
b7b65b15
EZ
1508 chtype = NEUTRAL_B;
1509 else
6bff6497 1510 chtype = bidi_get_type (ch, NEUTRAL_DIR);
b7b65b15
EZ
1511 } while (chtype == NEUTRAL_WS || chtype == WEAK_BN
1512 || bidi_explicit_dir_char (ch)); /* L1/Retaining */
1513 bidi_it->next_for_ws.type = chtype;
2d6e4628 1514 bidi_check_type (bidi_it->next_for_ws.type);
b7b65b15
EZ
1515 bidi_it->next_for_ws.charpos = cpos;
1516 bidi_it->next_for_ws.bytepos = bpos;
1517 }
1518
1519 /* Resolve implicit levels, with a twist: PDFs get the embedding
1520 level of the enbedding they terminate. See below for the
1521 reason. */
89d3374a 1522 if (bidi_it->orig_type == PDF
b7b65b15
EZ
1523 /* Don't do this if this formatting code didn't change the
1524 embedding level due to invalid or empty embeddings. */
1525 && prev_level != level)
1526 {
1527 /* Don't look in UAX#9 for the reason for this: it's our own
1528 private quirk. The reason is that we want the formatting
1529 codes to be delivered so that they bracket the text of their
1530 embedding. For example, given the text
1531
1532 {RLO}teST{PDF}
1533
1534 we want it to be displayed as
1535
0d68907d 1536 {PDF}STet{RLO}
b7b65b15
EZ
1537
1538 not as
1539
1540 STet{RLO}{PDF}
1541
1542 which will result because we bump up the embedding level as
1543 soon as we see the RLO and pop it as soon as we see the PDF,
1544 so RLO itself has the same embedding level as "teST", and
1545 thus would be normally delivered last, just before the PDF.
1546 The switch below fiddles with the level of PDF so that this
1547 ugly side effect does not happen.
1548
1549 (This is, of course, only important if the formatting codes
e7402cb2
EZ
1550 are actually displayed, but Emacs does need to display them
1551 if the user wants to.) */
b7b65b15
EZ
1552 level = prev_level;
1553 }
89d3374a
EZ
1554 else if (bidi_it->orig_type == NEUTRAL_B /* L1 */
1555 || bidi_it->orig_type == NEUTRAL_S
e7402cb2
EZ
1556 || bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB
1557 /* || bidi_it->ch == LINESEP_CHAR */
89d3374a 1558 || (bidi_it->orig_type == NEUTRAL_WS
b7b65b15
EZ
1559 && (bidi_it->next_for_ws.type == NEUTRAL_B
1560 || bidi_it->next_for_ws.type == NEUTRAL_S)))
1561 level = bidi_it->level_stack[0].level;
1562 else if ((level & 1) == 0) /* I1 */
1563 {
1564 if (type == STRONG_R)
1565 level++;
1566 else if (type == WEAK_EN || type == WEAK_AN)
1567 level += 2;
1568 }
1569 else /* I2 */
1570 {
1571 if (type == STRONG_L || type == WEAK_EN || type == WEAK_AN)
1572 level++;
1573 }
1574
1575 bidi_it->resolved_level = level;
1576 return level;
1577}
1578
1579/* Move to the other edge of a level given by LEVEL. If END_FLAG is
1580 non-zero, we are at the end of a level, and we need to prepare to
1581 resume the scan of the lower level.
1582
1583 If this level's other edge is cached, we simply jump to it, filling
1584 the iterator structure with the iterator state on the other edge.
1585 Otherwise, we walk the buffer until we come back to the same level
1586 as LEVEL.
1587
1588 Note: we are not talking here about a ``level run'' in the UAX#9
1589 sense of the term, but rather about a ``level'' which includes
1590 all the levels higher than it. In other words, given the levels
1591 like this:
1592
1593 11111112222222333333334443343222222111111112223322111
1594 A B C
1595
1596 and assuming we are at point A scanning left to right, this
1597 function moves to point C, whereas the UAX#9 ``level 2 run'' ends
1598 at point B. */
1599static void
1600bidi_find_other_level_edge (struct bidi_it *bidi_it, int level, int end_flag)
1601{
1602 int dir = end_flag ? -bidi_it->scan_dir : bidi_it->scan_dir;
1603 int idx;
1604
1605 /* Try the cache first. */
1606 if ((idx = bidi_cache_find_level_change (level, dir, end_flag)) >= 0)
1607 bidi_cache_fetch_state (idx, bidi_it);
1608 else
1609 {
1610 int new_level;
1611
1612 if (end_flag)
1613 abort (); /* if we are at end of level, its edges must be cached */
1614
1615 bidi_cache_iterator_state (bidi_it, 1);
1616 do {
1617 new_level = bidi_level_of_next_char (bidi_it);
1618 bidi_cache_iterator_state (bidi_it, 1);
1619 } while (new_level >= level);
1620 }
1621}
1622
1623void
4b292a22 1624bidi_move_to_visually_next (struct bidi_it *bidi_it)
b7b65b15
EZ
1625{
1626 int old_level, new_level, next_level;
9c82e145 1627 struct bidi_it sentinel;
b7b65b15
EZ
1628
1629 if (bidi_it->scan_dir == 0)
1630 {
1631 bidi_it->scan_dir = 1; /* default to logical order */
1632 }
1633
be39f003
EZ
1634 /* If we just passed a newline, initialize for the next line. */
1635 if (!bidi_it->first_elt && bidi_it->orig_type == NEUTRAL_B)
1636 bidi_line_init (bidi_it);
1637
6dcfd253
EZ
1638 /* Prepare the sentinel iterator state, and cache it. When we bump
1639 into it, scanning backwards, we'll know that the last non-base
1640 level is exhausted. */
b7b65b15 1641 if (bidi_cache_idx == 0)
9c82e145
EZ
1642 {
1643 bidi_copy_it (&sentinel, bidi_it);
1644 if (bidi_it->first_elt)
1645 {
1646 sentinel.charpos--; /* cached charpos needs to be monotonic */
1647 sentinel.bytepos--;
1648 sentinel.ch = '\n'; /* doesn't matter, but why not? */
1649 sentinel.ch_len = 1;
1650 }
6dcfd253 1651 bidi_cache_iterator_state (&sentinel, 1);
9c82e145 1652 }
b7b65b15
EZ
1653
1654 old_level = bidi_it->resolved_level;
1655 new_level = bidi_level_of_next_char (bidi_it);
b7b65b15
EZ
1656
1657 /* Reordering of resolved levels (clause L2) is implemented by
1658 jumping to the other edge of the level and flipping direction of
c0546589 1659 scanning the text whenever we find a level change. */
b7b65b15
EZ
1660 if (new_level != old_level)
1661 {
1662 int ascending = new_level > old_level;
1663 int level_to_search = ascending ? old_level + 1 : old_level;
1664 int incr = ascending ? 1 : -1;
1665 int expected_next_level = old_level + incr;
1666
b7b65b15
EZ
1667 /* Jump (or walk) to the other edge of this level. */
1668 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
1669 /* Switch scan direction and peek at the next character in the
1670 new direction. */
1671 bidi_it->scan_dir = -bidi_it->scan_dir;
1672
1673 /* The following loop handles the case where the resolved level
1674 jumps by more than one. This is typical for numbers inside a
1675 run of text with left-to-right embedding direction, but can
1676 also happen in other situations. In those cases the decision
1677 where to continue after a level change, and in what direction,
1678 is tricky. For example, given a text like below:
1679
1680 abcdefgh
1681 11336622
1682
1683 (where the numbers below the text show the resolved levels),
1684 the result of reordering according to UAX#9 should be this:
1685
1686 efdcghba
1687
1688 This is implemented by the loop below which flips direction
1689 and jumps to the other edge of the level each time it finds
1690 the new level not to be the expected one. The expected level
1691 is always one more or one less than the previous one. */
1692 next_level = bidi_peek_at_next_level (bidi_it);
1693 while (next_level != expected_next_level)
1694 {
1695 expected_next_level += incr;
1696 level_to_search += incr;
1697 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending);
1698 bidi_it->scan_dir = -bidi_it->scan_dir;
1699 next_level = bidi_peek_at_next_level (bidi_it);
1700 }
1701
1702 /* Finally, deliver the next character in the new direction. */
1703 next_level = bidi_level_of_next_char (bidi_it);
1704 }
1705
b44d9321
EZ
1706 /* Take note when we have just processed the newline that precedes
1707 the end of the paragraph. The next time we are about to be
1708 called, set_iterator_to_next will automatically reinit the
1709 paragraph direction, if needed. We do this at the newline before
1710 the paragraph separator, because the next character might not be
1711 the first character of the next paragraph, due to the bidi
c0546589
EZ
1712 reordering, whereas we _must_ know the paragraph base direction
1713 _before_ we process the paragraph's text, since the base
1714 direction affects the reordering. */
6bff6497 1715 if (bidi_it->scan_dir == 1
be39f003
EZ
1716 && bidi_it->orig_type == NEUTRAL_B
1717 && bidi_it->bytepos < ZV_BYTE)
1718 {
1719 EMACS_INT sep_len =
1720 bidi_at_paragraph_end (bidi_it->charpos + 1,
1721 bidi_it->bytepos + bidi_it->ch_len);
1722 if (sep_len >= 0)
1723 {
1724 bidi_it->new_paragraph = 1;
b44d9321
EZ
1725 /* Record the buffer position of the last character of the
1726 paragraph separator. */
1727 bidi_it->separator_limit = bidi_it->charpos + 1 + sep_len;
be39f003
EZ
1728 }
1729 }
6bff6497 1730
b7b65b15
EZ
1731 if (bidi_it->scan_dir == 1 && bidi_cache_idx)
1732 {
1733 /* If we are at paragraph's base embedding level and beyond the
1734 last cached position, the cache's job is done and we can
1735 discard it. */
1736 if (bidi_it->resolved_level == bidi_it->level_stack[0].level
1737 && bidi_it->charpos > bidi_cache[bidi_cache_idx - 1].charpos)
1738 bidi_cache_reset ();
1739 /* But as long as we are caching during forward scan, we must
1740 cache each state, or else the cache integrity will be
1741 compromised: it assumes cached states correspond to buffer
1742 positions 1:1. */
1743 else
1744 bidi_cache_iterator_state (bidi_it, 1);
1745 }
1746}
1747
1748/* This is meant to be called from within the debugger, whenever you
1749 wish to examine the cache contents. */
1750void
1751bidi_dump_cached_states (void)
1752{
1753 int i;
1754 int ndigits = 1;
1755
1756 if (bidi_cache_idx == 0)
1757 {
1758 fprintf (stderr, "The cache is empty.\n");
1759 return;
1760 }
1761 fprintf (stderr, "Total of %d state%s in cache:\n",
1762 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s");
1763
1764 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10)
1765 ndigits++;
1766 fputs ("ch ", stderr);
1767 for (i = 0; i < bidi_cache_idx; i++)
1768 fprintf (stderr, "%*c", ndigits, bidi_cache[i].ch);
1769 fputs ("\n", stderr);
1770 fputs ("lvl ", stderr);
1771 for (i = 0; i < bidi_cache_idx; i++)
1772 fprintf (stderr, "%*d", ndigits, bidi_cache[i].resolved_level);
1773 fputs ("\n", stderr);
1774 fputs ("pos ", stderr);
1775 for (i = 0; i < bidi_cache_idx; i++)
3d608a86 1776 fprintf (stderr, "%*ld", ndigits, (long)bidi_cache[i].charpos);
b7b65b15
EZ
1777 fputs ("\n", stderr);
1778}