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