Mercurial > emacs
annotate src/bidi.c @ 107793:d3738a1728c6
* verilog-mode.el (verilog-forward-sexp, verilog-calc-1): Support
"disable fork" and "fork wait" multi word keywords, suggested by
Steve Pearlmutter.
(verilog-pretty-declarations): Support lineup of declarations in
port lists.
(verilog-skip-backward-comments, verilog-skip-forward-comment-p):
fix bug for /* / comments
(verilog-backward-syntactic-ws, verilog-forward-syntactic-ws):
Speed up and simplfy as this is never called with a bound.
(verilog-pretty-declarations): Enhance to line up declarations
inside a parameter list, suggested by Alan Morgan.
(verilog-pretty-expr): Tune assignment regular expression match
string for corner cases; also use markers instead of character
number as indent changes the later.
(verilog-type-keywords): Fix pulldown as missing
keyword.
(verilog-read-sub-decls-line): Fix comments in AUTO_TEMPLATE
causing truncation of AUTOWIRE signals. Reported by Bruce
Tennant.
(verilog-auto-inst, verilog-auto-inst-port): Add vl_mbits for
AUTO_TEMPLATEs needing multiple array bits. Suggested by Bruce
Tennant.
(verilog-keywords):
(verilog-1800-2005-keywords, verilog-1800-2009-keywords): Add IEEE
1800-2009 keywords, including "global.".
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Tue, 06 Apr 2010 21:06:23 -0700 |
parents | 291efac2eff3 |
children | ba0339bda073 |
rev | line source |
---|---|
107583 | 1 /* Low-level bidirectional buffer-scanning functions for GNU Emacs. |
107649
d5e97cf4b4d1
bidi.c: Update Copyright years.
Eli Zaretskii <eliz@gnu.org>
parents:
107645
diff
changeset
|
2 Copyright (C) 2000, 2001, 2004, 2005, 2009, 2010 |
d5e97cf4b4d1
bidi.c: Update Copyright years.
Eli Zaretskii <eliz@gnu.org>
parents:
107645
diff
changeset
|
3 Free Software Foundation, Inc. |
107583 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
107650 | 7 GNU Emacs is free software: you can redistribute it and/or modify |
107583 | 8 it under the terms of the GNU General Public License as published by |
107650 | 9 the Free Software Foundation, either version 3 of the License, or |
10 (at your option) any later version. | |
107583 | 11 |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
107650 | 18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
107583 | 19 |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
20 /* Written by Eli Zaretskii <eliz@gnu.org>. |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
21 |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
22 A sequential implementation of the Unicode Bidirectional algorithm, |
107583 | 23 as per UAX#9, a part of the Unicode Standard. |
24 | |
25 Unlike the reference and most other implementations, this one is | |
26 designed to be called once for every character in the buffer. | |
27 | |
28 The main entry point is bidi_get_next_char_visually. Each time it | |
29 is called, it finds the next character in the visual order, and | |
30 returns its information in a special structure. The caller is then | |
31 expected to process this character for display or any other | |
32 purposes, and call bidi_get_next_char_visually for the next | |
33 character. See the comments in bidi_get_next_char_visually for | |
34 more details about its algorithm that finds the next visual-order | |
35 character by resolving their levels on the fly. | |
36 | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
37 If you want to understand the code, you will have to read it |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
38 together with the relevant portions of UAX#9. The comments include |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
39 references to UAX#9 rules, for that very reason. |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
40 |
107583 | 41 A note about references to UAX#9 rules: if the reference says |
42 something like "X9/Retaining", it means that you need to refer to | |
43 rule X9 and to its modifications decribed in the "Implementation | |
44 Notes" section of UAX#9, under "Retaining Format Codes". */ | |
45 | |
46 #ifdef HAVE_CONFIG_H | |
47 #include <config.h> | |
48 #endif | |
49 | |
50 #include <stdio.h> | |
51 | |
52 #ifdef HAVE_STRING_H | |
53 #include <string.h> | |
54 #endif | |
55 | |
107599
23f8a579b56e
Retrospective commit from 2009-10-24.
Eli Zaretskii <eliz@gnu.org>
parents:
107598
diff
changeset
|
56 #include <setjmp.h> |
23f8a579b56e
Retrospective commit from 2009-10-24.
Eli Zaretskii <eliz@gnu.org>
parents:
107598
diff
changeset
|
57 |
107583 | 58 #include "lisp.h" |
59 #include "buffer.h" | |
60 #include "character.h" | |
61 #include "dispextern.h" | |
62 | |
63 static int bidi_initialized = 0; | |
64 | |
65 static Lisp_Object bidi_type_table; | |
66 | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
67 /* FIXME: Remove these when bidi_explicit_dir_char uses a lookup table. */ |
107583 | 68 #define LRM_CHAR 0x200E |
69 #define RLM_CHAR 0x200F | |
70 #define LRE_CHAR 0x202A | |
71 #define RLE_CHAR 0x202B | |
72 #define PDF_CHAR 0x202C | |
73 #define LRO_CHAR 0x202D | |
74 #define RLO_CHAR 0x202E | |
75 | |
76 #define BIDI_EOB -1 | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
77 #define BIDI_BOB -2 /* FIXME: Is this needed? */ |
107583 | 78 |
79 /* Local data structures. (Look in dispextern.h for the rest.) */ | |
80 | |
81 /* What we need to know about the current paragraph. */ | |
82 struct bidi_paragraph_info { | |
83 int start_bytepos; /* byte position where it begins */ | |
84 int end_bytepos; /* byte position where it ends */ | |
85 int embedding_level; /* its basic embedding level */ | |
86 bidi_dir_t base_dir; /* its base direction */ | |
87 }; | |
88 | |
89 /* Data type for describing the bidirectional character categories. */ | |
90 typedef enum { | |
91 UNKNOWN_BC, | |
92 NEUTRAL, | |
93 WEAK, | |
94 STRONG | |
95 } bidi_category_t; | |
96 | |
97 int bidi_ignore_explicit_marks_for_paragraph_level = 1; | |
98 | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
99 static Lisp_Object fallback_paragraph_start_re, fallback_paragraph_separate_re; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
100 static Lisp_Object Qparagraph_start, Qparagraph_separate; |
107583 | 101 |
102 static void | |
103 bidi_initialize () | |
104 { | |
105 /* FIXME: This should come from the Unicode Database. */ | |
106 struct { | |
107 int from, to; | |
108 bidi_type_t type; | |
109 } bidi_type[] = | |
110 { { 0x0000, 0x0008, WEAK_BN }, | |
111 { 0x0009, 0x0000, NEUTRAL_S }, | |
112 { 0x000A, 0x0000, NEUTRAL_B }, | |
113 { 0x000B, 0x0000, NEUTRAL_S }, | |
114 { 0x000C, 0x0000, NEUTRAL_WS }, | |
115 { 0x000D, 0x0000, NEUTRAL_B }, | |
116 { 0x000E, 0x001B, WEAK_BN }, | |
117 { 0x001C, 0x001E, NEUTRAL_B }, | |
118 { 0x001F, 0x0000, NEUTRAL_S }, | |
119 { 0x0020, 0x0000, NEUTRAL_WS }, | |
120 { 0x0021, 0x0022, NEUTRAL_ON }, | |
121 { 0x0023, 0x0025, WEAK_ET }, | |
122 { 0x0026, 0x002A, NEUTRAL_ON }, | |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
123 { 0x002B, 0x0000, WEAK_ES }, |
107583 | 124 { 0x002C, 0x0000, WEAK_CS }, |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
125 { 0x002D, 0x0000, WEAK_ES }, |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
126 { 0x002E, 0x002F, WEAK_CS }, |
107583 | 127 { 0x0030, 0x0039, WEAK_EN }, |
128 { 0x003A, 0x0000, WEAK_CS }, | |
129 { 0x003B, 0x0040, NEUTRAL_ON }, | |
130 { 0x005B, 0x0060, NEUTRAL_ON }, | |
131 { 0x007B, 0x007E, NEUTRAL_ON }, | |
132 { 0x007F, 0x0084, WEAK_BN }, | |
133 { 0x0085, 0x0000, NEUTRAL_B }, | |
134 { 0x0086, 0x009F, WEAK_BN }, | |
135 { 0x00A0, 0x0000, WEAK_CS }, | |
136 { 0x00A1, 0x0000, NEUTRAL_ON }, | |
137 { 0x00A2, 0x00A5, WEAK_ET }, | |
138 { 0x00A6, 0x00A9, NEUTRAL_ON }, | |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
139 { 0x00AB, 0x00AC, NEUTRAL_ON }, |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
140 { 0x00AD, 0x0000, WEAK_BN }, |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
141 { 0x00AE, 0x00Af, NEUTRAL_ON }, |
107583 | 142 { 0x00B0, 0x00B1, WEAK_ET }, |
143 { 0x00B2, 0x00B3, WEAK_EN }, | |
144 { 0x00B4, 0x0000, NEUTRAL_ON }, | |
145 { 0x00B6, 0x00B8, NEUTRAL_ON }, | |
146 { 0x00B9, 0x0000, WEAK_EN }, | |
147 { 0x00BB, 0x00BF, NEUTRAL_ON }, | |
148 { 0x00D7, 0x0000, NEUTRAL_ON }, | |
149 { 0x00F7, 0x0000, NEUTRAL_ON }, | |
150 { 0x02B9, 0x02BA, NEUTRAL_ON }, | |
151 { 0x02C2, 0x02CF, NEUTRAL_ON }, | |
152 { 0x02D2, 0x02DF, NEUTRAL_ON }, | |
153 { 0x02E5, 0x02ED, NEUTRAL_ON }, | |
154 { 0x0300, 0x036F, WEAK_NSM }, | |
155 { 0x0374, 0x0375, NEUTRAL_ON }, | |
156 { 0x037E, 0x0385, NEUTRAL_ON }, | |
157 { 0x0387, 0x0000, NEUTRAL_ON }, | |
158 { 0x03F6, 0x0000, NEUTRAL_ON }, | |
159 { 0x0483, 0x0489, WEAK_NSM }, | |
160 { 0x058A, 0x0000, NEUTRAL_ON }, | |
161 { 0x0591, 0x05BD, WEAK_NSM }, | |
162 { 0x05BE, 0x0000, STRONG_R }, | |
163 { 0x05BF, 0x0000, WEAK_NSM }, | |
164 { 0x05C0, 0x0000, STRONG_R }, | |
165 { 0x05C1, 0x05C2, WEAK_NSM }, | |
166 { 0x05C3, 0x0000, STRONG_R }, | |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
167 { 0x05C4, 0x05C5, WEAK_NSM }, |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
168 { 0x05C6, 0x0000, STRONG_R }, |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
169 { 0x05C7, 0x0000, WEAK_NSM }, |
107583 | 170 { 0x05D0, 0x05F4, STRONG_R }, |
171 { 0x060C, 0x0000, WEAK_CS }, | |
172 { 0x061B, 0x064A, STRONG_AL }, | |
173 { 0x064B, 0x0655, WEAK_NSM }, | |
174 { 0x0660, 0x0669, WEAK_AN }, | |
175 { 0x066A, 0x0000, WEAK_ET }, | |
176 { 0x066B, 0x066C, WEAK_AN }, | |
177 { 0x066D, 0x066F, STRONG_AL }, | |
178 { 0x0670, 0x0000, WEAK_NSM }, | |
179 { 0x0671, 0x06D5, STRONG_AL }, | |
180 { 0x06D6, 0x06DC, WEAK_NSM }, | |
181 { 0x06DD, 0x0000, STRONG_AL }, | |
182 { 0x06DE, 0x06E4, WEAK_NSM }, | |
183 { 0x06E5, 0x06E6, STRONG_AL }, | |
184 { 0x06E7, 0x06E8, WEAK_NSM }, | |
185 { 0x06E9, 0x0000, NEUTRAL_ON }, | |
186 { 0x06EA, 0x06ED, WEAK_NSM }, | |
187 { 0x06F0, 0x06F9, WEAK_EN }, | |
188 { 0x06FA, 0x070D, STRONG_AL }, | |
189 { 0x070F, 0x0000, WEAK_BN }, | |
190 { 0x0710, 0x0000, STRONG_AL }, | |
191 { 0x0711, 0x0000, WEAK_NSM }, | |
192 { 0x0712, 0x072C, STRONG_AL }, | |
193 { 0x0730, 0x074A, WEAK_NSM }, | |
194 { 0x0780, 0x07A5, STRONG_AL }, | |
195 { 0x07A6, 0x07B0, WEAK_NSM }, | |
196 { 0x07B1, 0x0000, STRONG_AL }, | |
197 { 0x0901, 0x0902, WEAK_NSM }, | |
198 { 0x093C, 0x0000, WEAK_NSM }, | |
199 { 0x0941, 0x0948, WEAK_NSM }, | |
200 { 0x094D, 0x0000, WEAK_NSM }, | |
201 { 0x0951, 0x0954, WEAK_NSM }, | |
202 { 0x0962, 0x0963, WEAK_NSM }, | |
203 { 0x0981, 0x0000, WEAK_NSM }, | |
204 { 0x09BC, 0x0000, WEAK_NSM }, | |
205 { 0x09C1, 0x09C4, WEAK_NSM }, | |
206 { 0x09CD, 0x0000, WEAK_NSM }, | |
207 { 0x09E2, 0x09E3, WEAK_NSM }, | |
208 { 0x09F2, 0x09F3, WEAK_ET }, | |
209 { 0x0A02, 0x0000, WEAK_NSM }, | |
210 { 0x0A3C, 0x0000, WEAK_NSM }, | |
211 { 0x0A41, 0x0A4D, WEAK_NSM }, | |
212 { 0x0A70, 0x0A71, WEAK_NSM }, | |
213 { 0x0A81, 0x0A82, WEAK_NSM }, | |
214 { 0x0ABC, 0x0000, WEAK_NSM }, | |
215 { 0x0AC1, 0x0AC8, WEAK_NSM }, | |
216 { 0x0ACD, 0x0000, WEAK_NSM }, | |
217 { 0x0B01, 0x0000, WEAK_NSM }, | |
218 { 0x0B3C, 0x0000, WEAK_NSM }, | |
219 { 0x0B3F, 0x0000, WEAK_NSM }, | |
220 { 0x0B41, 0x0B43, WEAK_NSM }, | |
221 { 0x0B4D, 0x0B56, WEAK_NSM }, | |
222 { 0x0B82, 0x0000, WEAK_NSM }, | |
223 { 0x0BC0, 0x0000, WEAK_NSM }, | |
224 { 0x0BCD, 0x0000, WEAK_NSM }, | |
225 { 0x0C3E, 0x0C40, WEAK_NSM }, | |
226 { 0x0C46, 0x0C56, WEAK_NSM }, | |
227 { 0x0CBF, 0x0000, WEAK_NSM }, | |
228 { 0x0CC6, 0x0000, WEAK_NSM }, | |
229 { 0x0CCC, 0x0CCD, WEAK_NSM }, | |
230 { 0x0D41, 0x0D43, WEAK_NSM }, | |
231 { 0x0D4D, 0x0000, WEAK_NSM }, | |
232 { 0x0DCA, 0x0000, WEAK_NSM }, | |
233 { 0x0DD2, 0x0DD6, WEAK_NSM }, | |
234 { 0x0E31, 0x0000, WEAK_NSM }, | |
235 { 0x0E34, 0x0E3A, WEAK_NSM }, | |
236 { 0x0E3F, 0x0000, WEAK_ET }, | |
237 { 0x0E47, 0x0E4E, WEAK_NSM }, | |
238 { 0x0EB1, 0x0000, WEAK_NSM }, | |
239 { 0x0EB4, 0x0EBC, WEAK_NSM }, | |
240 { 0x0EC8, 0x0ECD, WEAK_NSM }, | |
241 { 0x0F18, 0x0F19, WEAK_NSM }, | |
242 { 0x0F35, 0x0000, WEAK_NSM }, | |
243 { 0x0F37, 0x0000, WEAK_NSM }, | |
244 { 0x0F39, 0x0000, WEAK_NSM }, | |
245 { 0x0F3A, 0x0F3D, NEUTRAL_ON }, | |
246 { 0x0F71, 0x0F7E, WEAK_NSM }, | |
247 { 0x0F80, 0x0F84, WEAK_NSM }, | |
248 { 0x0F86, 0x0F87, WEAK_NSM }, | |
249 { 0x0F90, 0x0FBC, WEAK_NSM }, | |
250 { 0x0FC6, 0x0000, WEAK_NSM }, | |
251 { 0x102D, 0x1030, WEAK_NSM }, | |
252 { 0x1032, 0x1037, WEAK_NSM }, | |
253 { 0x1039, 0x0000, WEAK_NSM }, | |
254 { 0x1058, 0x1059, WEAK_NSM }, | |
255 { 0x1680, 0x0000, NEUTRAL_WS }, | |
256 { 0x169B, 0x169C, NEUTRAL_ON }, | |
257 { 0x1712, 0x1714, WEAK_NSM }, | |
258 { 0x1732, 0x1734, WEAK_NSM }, | |
259 { 0x1752, 0x1753, WEAK_NSM }, | |
260 { 0x1772, 0x1773, WEAK_NSM }, | |
261 { 0x17B7, 0x17BD, WEAK_NSM }, | |
262 { 0x17C6, 0x0000, WEAK_NSM }, | |
263 { 0x17C9, 0x17D3, WEAK_NSM }, | |
264 { 0x17DB, 0x0000, WEAK_ET }, | |
265 { 0x1800, 0x180A, NEUTRAL_ON }, | |
266 { 0x180B, 0x180D, WEAK_NSM }, | |
267 { 0x180E, 0x0000, WEAK_BN }, | |
268 { 0x18A9, 0x0000, WEAK_NSM }, | |
269 { 0x1FBD, 0x0000, NEUTRAL_ON }, | |
270 { 0x1FBF, 0x1FC1, NEUTRAL_ON }, | |
271 { 0x1FCD, 0x1FCF, NEUTRAL_ON }, | |
272 { 0x1FDD, 0x1FDF, NEUTRAL_ON }, | |
273 { 0x1FED, 0x1FEF, NEUTRAL_ON }, | |
274 { 0x1FFD, 0x1FFE, NEUTRAL_ON }, | |
275 { 0x2000, 0x200A, NEUTRAL_WS }, | |
276 { 0x200B, 0x200D, WEAK_BN }, | |
277 { 0x200F, 0x0000, STRONG_R }, | |
278 { 0x2010, 0x2027, NEUTRAL_ON }, | |
279 { 0x2028, 0x0000, NEUTRAL_WS }, | |
280 { 0x2029, 0x0000, NEUTRAL_B }, | |
281 { 0x202A, 0x0000, LRE }, | |
282 { 0x202B, 0x0000, RLE }, | |
283 { 0x202C, 0x0000, PDF }, | |
284 { 0x202D, 0x0000, LRO }, | |
285 { 0x202E, 0x0000, RLO }, | |
286 { 0x202F, 0x0000, NEUTRAL_WS }, | |
287 { 0x2030, 0x2034, WEAK_ET }, | |
288 { 0x2035, 0x2057, NEUTRAL_ON }, | |
289 { 0x205F, 0x0000, NEUTRAL_WS }, | |
290 { 0x2060, 0x206F, WEAK_BN }, | |
291 { 0x2070, 0x0000, WEAK_EN }, | |
292 { 0x2074, 0x2079, WEAK_EN }, | |
293 { 0x207A, 0x207B, WEAK_ET }, | |
294 { 0x207C, 0x207E, NEUTRAL_ON }, | |
295 { 0x2080, 0x2089, WEAK_EN }, | |
296 { 0x208A, 0x208B, WEAK_ET }, | |
297 { 0x208C, 0x208E, NEUTRAL_ON }, | |
298 { 0x20A0, 0x20B1, WEAK_ET }, | |
299 { 0x20D0, 0x20EA, WEAK_NSM }, | |
300 { 0x2100, 0x2101, NEUTRAL_ON }, | |
301 { 0x2103, 0x2106, NEUTRAL_ON }, | |
302 { 0x2108, 0x2109, NEUTRAL_ON }, | |
303 { 0x2114, 0x0000, NEUTRAL_ON }, | |
304 { 0x2116, 0x2118, NEUTRAL_ON }, | |
305 { 0x211E, 0x2123, NEUTRAL_ON }, | |
306 { 0x2125, 0x0000, NEUTRAL_ON }, | |
307 { 0x2127, 0x0000, NEUTRAL_ON }, | |
308 { 0x2129, 0x0000, NEUTRAL_ON }, | |
309 { 0x212E, 0x0000, WEAK_ET }, | |
310 { 0x2132, 0x0000, NEUTRAL_ON }, | |
311 { 0x213A, 0x0000, NEUTRAL_ON }, | |
312 { 0x2140, 0x2144, NEUTRAL_ON }, | |
313 { 0x214A, 0x215F, NEUTRAL_ON }, | |
314 { 0x2190, 0x2211, NEUTRAL_ON }, | |
315 { 0x2212, 0x2213, WEAK_ET }, | |
316 { 0x2214, 0x2335, NEUTRAL_ON }, | |
317 { 0x237B, 0x2394, NEUTRAL_ON }, | |
318 { 0x2396, 0x244A, NEUTRAL_ON }, | |
319 { 0x2460, 0x249B, WEAK_EN }, | |
320 { 0x24EA, 0x0000, WEAK_EN }, | |
321 { 0x24EB, 0x2FFB, NEUTRAL_ON }, | |
322 { 0x3000, 0x0000, NEUTRAL_WS }, | |
323 { 0x3001, 0x3004, NEUTRAL_ON }, | |
324 { 0x3008, 0x3020, NEUTRAL_ON }, | |
325 { 0x302A, 0x302F, WEAK_NSM }, | |
326 { 0x3030, 0x0000, NEUTRAL_ON }, | |
327 { 0x3036, 0x3037, NEUTRAL_ON }, | |
328 { 0x303D, 0x303F, NEUTRAL_ON }, | |
329 { 0x3099, 0x309A, WEAK_NSM }, | |
330 { 0x309B, 0x309C, NEUTRAL_ON }, | |
331 { 0x30A0, 0x0000, NEUTRAL_ON }, | |
332 { 0x30FB, 0x0000, NEUTRAL_ON }, | |
333 { 0x3251, 0x325F, NEUTRAL_ON }, | |
334 { 0x32B1, 0x32BF, NEUTRAL_ON }, | |
335 { 0xA490, 0xA4C6, NEUTRAL_ON }, | |
336 { 0xFB1D, 0x0000, STRONG_R }, | |
337 { 0xFB1E, 0x0000, WEAK_NSM }, | |
338 { 0xFB1F, 0xFB28, STRONG_R }, | |
339 { 0xFB29, 0x0000, WEAK_ET }, | |
340 { 0xFB2A, 0xFB4F, STRONG_R }, | |
341 { 0xFB50, 0xFD3D, STRONG_AL }, | |
342 { 0xFD3E, 0xFD3F, NEUTRAL_ON }, | |
343 { 0xFD50, 0xFDFC, STRONG_AL }, | |
344 { 0xFE00, 0xFE23, WEAK_NSM }, | |
345 { 0xFE30, 0xFE4F, NEUTRAL_ON }, | |
346 { 0xFE50, 0x0000, WEAK_CS }, | |
347 { 0xFE51, 0x0000, NEUTRAL_ON }, | |
348 { 0xFE52, 0x0000, WEAK_CS }, | |
349 { 0xFE54, 0x0000, NEUTRAL_ON }, | |
350 { 0xFE55, 0x0000, WEAK_CS }, | |
351 { 0xFE56, 0xFE5E, NEUTRAL_ON }, | |
352 { 0xFE5F, 0x0000, WEAK_ET }, | |
353 { 0xFE60, 0xFE61, NEUTRAL_ON }, | |
354 { 0xFE62, 0xFE63, WEAK_ET }, | |
355 { 0xFE64, 0xFE68, NEUTRAL_ON }, | |
356 { 0xFE69, 0xFE6A, WEAK_ET }, | |
357 { 0xFE6B, 0x0000, NEUTRAL_ON }, | |
358 { 0xFE70, 0xFEFC, STRONG_AL }, | |
359 { 0xFEFF, 0x0000, WEAK_BN }, | |
360 { 0xFF01, 0xFF02, NEUTRAL_ON }, | |
361 { 0xFF03, 0xFF05, WEAK_ET }, | |
362 { 0xFF06, 0xFF0A, NEUTRAL_ON }, | |
363 { 0xFF0B, 0x0000, WEAK_ET }, | |
364 { 0xFF0C, 0x0000, WEAK_CS }, | |
365 { 0xFF0D, 0x0000, WEAK_ET }, | |
366 { 0xFF0E, 0x0000, WEAK_CS }, | |
367 { 0xFF0F, 0x0000, WEAK_ES }, | |
368 { 0xFF10, 0xFF19, WEAK_EN }, | |
369 { 0xFF1A, 0x0000, WEAK_CS }, | |
370 { 0xFF1B, 0xFF20, NEUTRAL_ON }, | |
371 { 0xFF3B, 0xFF40, NEUTRAL_ON }, | |
372 { 0xFF5B, 0xFF65, NEUTRAL_ON }, | |
373 { 0xFFE0, 0xFFE1, WEAK_ET }, | |
374 { 0xFFE2, 0xFFE4, NEUTRAL_ON }, | |
375 { 0xFFE5, 0xFFE6, WEAK_ET }, | |
376 { 0xFFE8, 0xFFEE, NEUTRAL_ON }, | |
377 { 0xFFF9, 0xFFFB, WEAK_BN }, | |
378 { 0xFFFC, 0xFFFD, NEUTRAL_ON }, | |
379 { 0x1D167, 0x1D169, WEAK_NSM }, | |
380 { 0x1D173, 0x1D17A, WEAK_BN }, | |
381 { 0x1D17B, 0x1D182, WEAK_NSM }, | |
382 { 0x1D185, 0x1D18B, WEAK_NSM }, | |
383 { 0x1D1AA, 0x1D1AD, WEAK_NSM }, | |
384 { 0x1D7CE, 0x1D7FF, WEAK_EN }, | |
385 { 0xE0001, 0xE007F, WEAK_BN } }; | |
386 int i; | |
387 | |
388 bidi_type_table = Fmake_char_table (Qnil, make_number (STRONG_L)); | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
389 staticpro (&bidi_type_table); |
107583 | 390 |
391 for (i = 0; i < sizeof bidi_type / sizeof bidi_type[0]; i++) | |
107584
e0df0337f248
Retrospective commit from 2009-08-15.
Eli Zaretskii <eliz@gnu.org>
parents:
107583
diff
changeset
|
392 char_table_set_range (bidi_type_table, bidi_type[i].from, |
e0df0337f248
Retrospective commit from 2009-08-15.
Eli Zaretskii <eliz@gnu.org>
parents:
107583
diff
changeset
|
393 bidi_type[i].to ? bidi_type[i].to : bidi_type[i].from, |
107583 | 394 make_number (bidi_type[i].type)); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
395 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
396 fallback_paragraph_start_re = |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
397 XSYMBOL (Fintern_soft (build_string ("paragraph-start"), Qnil))->value; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
398 if (!STRINGP (fallback_paragraph_start_re)) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
399 fallback_paragraph_start_re = build_string ("\f\\|[ \t]*$"); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
400 staticpro (&fallback_paragraph_start_re); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
401 Qparagraph_start = intern ("paragraph-start"); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
402 staticpro (&Qparagraph_start); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
403 fallback_paragraph_separate_re = |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
404 XSYMBOL (Fintern_soft (build_string ("paragraph-separate"), Qnil))->value; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
405 if (!STRINGP (fallback_paragraph_separate_re)) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
406 fallback_paragraph_separate_re = build_string ("[ \t\f]*$"); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
407 staticpro (&fallback_paragraph_separate_re); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
408 Qparagraph_separate = intern ("paragraph-separate"); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
409 staticpro (&Qparagraph_separate); |
107583 | 410 bidi_initialized = 1; |
411 } | |
412 | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
413 /* Return the bidi type of a character CH, subject to the current |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
414 directional OVERRIDE. */ |
107583 | 415 bidi_type_t |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
416 bidi_get_type (int ch, bidi_dir_t override) |
107583 | 417 { |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
418 bidi_type_t default_type; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
419 |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
420 if (ch == BIDI_EOB) |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
421 return NEUTRAL_B; |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
422 if (ch < 0 || ch > MAX_CHAR) |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
423 abort (); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
424 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
425 default_type = (bidi_type_t) XINT (CHAR_TABLE_REF (bidi_type_table, ch)); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
426 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
427 if (override == NEUTRAL_DIR) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
428 return default_type; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
429 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
430 switch (default_type) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
431 { |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
432 /* Although UAX#9 does not tell, it doesn't make sense to |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
433 override NEUTRAL_B and LRM/RLM characters. */ |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
434 case NEUTRAL_B: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
435 case LRE: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
436 case LRO: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
437 case RLE: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
438 case RLO: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
439 case PDF: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
440 return default_type; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
441 default: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
442 switch (ch) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
443 { |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
444 case LRM_CHAR: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
445 case RLM_CHAR: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
446 return default_type; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
447 default: |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
448 if (override == L2R) /* X6 */ |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
449 return STRONG_L; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
450 else if (override == R2L) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
451 return STRONG_R; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
452 else |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
453 abort (); /* can't happen: handled above */ |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
454 } |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
455 } |
107583 | 456 } |
457 | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
458 void |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
459 bidi_check_type (bidi_type_t type) |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
460 { |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
461 if (type < UNKNOWN_BT || type > NEUTRAL_ON) |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
462 abort (); |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
463 } |
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
464 |
107583 | 465 /* Given a bidi TYPE of a character, return its category. */ |
466 bidi_category_t | |
467 bidi_get_category (bidi_type_t type) | |
468 { | |
469 switch (type) | |
470 { | |
471 case UNKNOWN_BT: | |
472 return UNKNOWN_BC; | |
473 case STRONG_L: | |
474 case STRONG_R: | |
475 case STRONG_AL: | |
476 case LRE: | |
477 case LRO: | |
478 case RLE: | |
479 case RLO: | |
480 return STRONG; | |
481 case PDF: /* ??? really?? */ | |
482 case WEAK_EN: | |
483 case WEAK_ES: | |
484 case WEAK_ET: | |
485 case WEAK_AN: | |
486 case WEAK_CS: | |
487 case WEAK_NSM: | |
488 case WEAK_BN: | |
489 return WEAK; | |
490 case NEUTRAL_B: | |
491 case NEUTRAL_S: | |
492 case NEUTRAL_WS: | |
493 case NEUTRAL_ON: | |
494 return NEUTRAL; | |
495 default: | |
496 abort (); | |
497 } | |
498 } | |
499 | |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
500 /* Return the mirrored character of C, if any. |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
501 |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
502 Note: The conditions in UAX#9 clause L4 must be tested by the |
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
503 caller. */ |
107583 | 504 /* FIXME: exceedingly temporary! Should consult the Unicode database |
505 of character properties. */ | |
506 int | |
507 bidi_mirror_char (int c) | |
508 { | |
509 static const char mirrored_pairs[] = "()<>[]{}"; | |
107606
297c59e52ecf
Retrospective commit from 2009-12-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107605
diff
changeset
|
510 const char *p = c > 0 && c < 128 ? strchr (mirrored_pairs, c) : NULL; |
107583 | 511 |
512 if (p) | |
513 { | |
514 size_t i = p - mirrored_pairs; | |
515 | |
107606
297c59e52ecf
Retrospective commit from 2009-12-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107605
diff
changeset
|
516 return mirrored_pairs [(i ^ 1)]; |
107583 | 517 } |
518 return c; | |
519 } | |
520 | |
521 /* Copy the bidi iterator from FROM to TO. To save cycles, this only | |
522 copies the part of the level stack that is actually in use. */ | |
523 static inline void | |
524 bidi_copy_it (struct bidi_it *to, struct bidi_it *from) | |
525 { | |
526 int i; | |
527 | |
107604
9e8415b885ee
Retrospective commit from 2009-12-12.
Eli Zaretskii <eliz@gnu.org>
parents:
107601
diff
changeset
|
528 /* Copy everything except the level stack and beyond. */ |
9e8415b885ee
Retrospective commit from 2009-12-12.
Eli Zaretskii <eliz@gnu.org>
parents:
107601
diff
changeset
|
529 memcpy (to, from, ((size_t)&((struct bidi_it *)0)->level_stack[0])); |
107583 | 530 |
531 /* Copy the active part of the level stack. */ | |
532 to->level_stack[0] = from->level_stack[0]; /* level zero is always in use */ | |
533 for (i = 1; i <= from->stack_idx; i++) | |
534 to->level_stack[i] = from->level_stack[i]; | |
535 } | |
536 | |
537 /* Caching the bidi iterator states. */ | |
538 | |
539 static struct bidi_it bidi_cache[1000]; /* FIXME: make this dynamically allocated! */ | |
540 static int bidi_cache_idx; | |
541 static int bidi_cache_last_idx; | |
542 | |
543 static inline void | |
544 bidi_cache_reset (void) | |
545 { | |
546 bidi_cache_idx = 0; | |
547 bidi_cache_last_idx = -1; | |
548 } | |
549 | |
550 static inline void | |
551 bidi_cache_fetch_state (int idx, struct bidi_it *bidi_it) | |
552 { | |
553 int current_scan_dir = bidi_it->scan_dir; | |
554 | |
555 if (idx < 0 || idx >= bidi_cache_idx) | |
556 abort (); | |
557 | |
558 bidi_copy_it (bidi_it, &bidi_cache[idx]); | |
559 bidi_it->scan_dir = current_scan_dir; | |
560 bidi_cache_last_idx = idx; | |
561 } | |
562 | |
563 /* Find a cached state with a given CHARPOS and resolved embedding | |
564 level less or equal to LEVEL. if LEVEL is -1, disregard the | |
565 resolved levels in cached states. DIR, if non-zero, means search | |
566 in that direction from the last cache hit. */ | |
567 static inline int | |
568 bidi_cache_search (int charpos, int level, int dir) | |
569 { | |
570 int i, i_start; | |
571 | |
572 if (bidi_cache_idx) | |
573 { | |
574 if (charpos < bidi_cache[bidi_cache_last_idx].charpos) | |
575 dir = -1; | |
576 else if (charpos > bidi_cache[bidi_cache_last_idx].charpos) | |
577 dir = 1; | |
578 if (dir) | |
579 i_start = bidi_cache_last_idx; | |
580 else | |
581 { | |
582 dir = -1; | |
583 i_start = bidi_cache_idx - 1; | |
584 } | |
585 | |
586 if (dir < 0) | |
587 { | |
588 /* Linear search for now; FIXME! */ | |
589 for (i = i_start; i >= 0; i--) | |
590 if (bidi_cache[i].charpos == charpos | |
591 && (level == -1 || bidi_cache[i].resolved_level <= level)) | |
592 return i; | |
593 } | |
594 else | |
595 { | |
596 for (i = i_start; i < bidi_cache_idx; i++) | |
597 if (bidi_cache[i].charpos == charpos | |
598 && (level == -1 || bidi_cache[i].resolved_level <= level)) | |
599 return i; | |
600 } | |
601 } | |
602 | |
603 return -1; | |
604 } | |
605 | |
606 /* Find a cached state where the resolved level changes to a value | |
607 that is lower than LEVEL, and return its cache slot index. DIR is | |
608 the direction to search, starting with the last used cache slot. | |
609 BEFORE, if non-zero, means return the index of the slot that is | |
610 ``before'' the level change in the search direction. That is, | |
611 given the cached levels like this: | |
612 | |
613 1122333442211 | |
614 AB C | |
615 | |
616 and assuming we are at the position cached at the slot marked with | |
617 C, searching backwards (DIR = -1) for LEVEL = 2 will return the | |
618 index of slot B or A, depending whether BEFORE is, respectively, | |
619 non-zero or zero. */ | |
620 static int | |
621 bidi_cache_find_level_change (int level, int dir, int before) | |
622 { | |
623 if (bidi_cache_idx) | |
624 { | |
625 int i = dir ? bidi_cache_last_idx : bidi_cache_idx - 1; | |
626 int incr = before ? 1 : 0; | |
627 | |
628 if (!dir) | |
629 dir = -1; | |
630 else if (!incr) | |
631 i += dir; | |
632 | |
633 if (dir < 0) | |
634 { | |
635 while (i >= incr) | |
636 { | |
637 if (bidi_cache[i - incr].resolved_level >= 0 | |
638 && bidi_cache[i - incr].resolved_level < level) | |
639 return i; | |
640 i--; | |
641 } | |
642 } | |
643 else | |
644 { | |
645 while (i < bidi_cache_idx - incr) | |
646 { | |
647 if (bidi_cache[i + incr].resolved_level >= 0 | |
648 && bidi_cache[i + incr].resolved_level < level) | |
649 return i; | |
650 i++; | |
651 } | |
652 } | |
653 } | |
654 | |
655 return -1; | |
656 } | |
657 | |
658 static inline void | |
659 bidi_cache_iterator_state (struct bidi_it *bidi_it, int resolved) | |
660 { | |
661 int idx; | |
662 | |
663 /* We should never cache on backward scans. */ | |
664 if (bidi_it->scan_dir == -1) | |
665 abort (); | |
666 idx = bidi_cache_search (bidi_it->charpos, -1, 1); | |
667 | |
668 if (idx < 0) | |
669 { | |
670 idx = bidi_cache_idx; | |
107597
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
671 /* Don't overrun the cache limit. */ |
107583 | 672 if (idx > sizeof (bidi_cache) / sizeof (bidi_cache[0]) - 1) |
673 abort (); | |
107655
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
674 /* Character positions should correspond to cache positions 1:1. |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
675 If we are outside the range of cached positions, the cache is |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
676 useless and must be reset. */ |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
677 if (idx > 0 && |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
678 (bidi_it->charpos > bidi_cache[idx - 1].charpos + 1 |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
679 || bidi_it->charpos < bidi_cache[0].charpos)) |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
680 { |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
681 bidi_cache_reset (); |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
682 idx = 0; |
0958f6c3f7c6
Fix a crash of I-search in a bidi-reordered buffer.
Eli Zaretskii <eliz@gnu.org>
parents:
107650
diff
changeset
|
683 } |
107583 | 684 bidi_copy_it (&bidi_cache[idx], bidi_it); |
685 if (!resolved) | |
686 bidi_cache[idx].resolved_level = -1; | |
107597
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
687 bidi_cache[idx].new_paragraph = 0; |
107583 | 688 } |
689 else | |
690 { | |
691 /* Copy only the members which could have changed, to avoid | |
692 costly copying of the entire struct. */ | |
693 bidi_cache[idx].type = bidi_it->type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
694 bidi_check_type (bidi_it->type); |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
695 bidi_cache[idx].type_after_w1 = bidi_it->type_after_w1; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
696 bidi_check_type (bidi_it->type_after_w1); |
107583 | 697 if (resolved) |
698 bidi_cache[idx].resolved_level = bidi_it->resolved_level; | |
699 else | |
700 bidi_cache[idx].resolved_level = -1; | |
701 bidi_cache[idx].invalid_levels = bidi_it->invalid_levels; | |
702 bidi_cache[idx].invalid_rl_levels = bidi_it->invalid_rl_levels; | |
703 bidi_cache[idx].next_for_neutral = bidi_it->next_for_neutral; | |
704 bidi_cache[idx].next_for_ws = bidi_it->next_for_ws; | |
705 bidi_cache[idx].ignore_bn_limit = bidi_it->ignore_bn_limit; | |
706 } | |
707 | |
708 bidi_cache_last_idx = idx; | |
709 if (idx >= bidi_cache_idx) | |
710 bidi_cache_idx = idx + 1; | |
711 } | |
712 | |
713 static inline bidi_type_t | |
714 bidi_cache_find (int charpos, int level, struct bidi_it *bidi_it) | |
715 { | |
716 int i = bidi_cache_search (charpos, level, bidi_it->scan_dir); | |
717 | |
718 if (i >= 0) | |
719 { | |
720 bidi_dir_t current_scan_dir = bidi_it->scan_dir; | |
721 | |
107624
552007beee69
Finish and debug display of invisible text.
Eli Zaretskii <eliz@gnu.org>
parents:
107606
diff
changeset
|
722 bidi_copy_it (bidi_it, &bidi_cache[i]); |
107583 | 723 bidi_cache_last_idx = i; |
724 /* Don't let scan direction from from the cached state override | |
725 the current scan direction. */ | |
726 bidi_it->scan_dir = current_scan_dir; | |
727 return bidi_it->type; | |
728 } | |
729 | |
730 return UNKNOWN_BT; | |
731 } | |
732 | |
733 static inline int | |
734 bidi_peek_at_next_level (struct bidi_it *bidi_it) | |
735 { | |
736 if (bidi_cache_idx == 0 || bidi_cache_last_idx == -1) | |
737 abort (); | |
738 return bidi_cache[bidi_cache_last_idx + bidi_it->scan_dir].resolved_level; | |
739 } | |
740 | |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
741 /* Check if buffer position CHARPOS/BYTEPOS is the end of a paragraph. |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
742 Value is the non-negative length of the paragraph separator |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
743 following the buffer position, -1 if position is at the beginning |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
744 of a new paragraph, or -2 if position is neither at beginning nor |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
745 at end of a paragraph. */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
746 EMACS_INT |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
747 bidi_at_paragraph_end (EMACS_INT charpos, EMACS_INT bytepos) |
107583 | 748 { |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
749 Lisp_Object sep_re = Fbuffer_local_value (Qparagraph_separate, |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
750 Fcurrent_buffer ()); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
751 Lisp_Object start_re = Fbuffer_local_value (Qparagraph_start, |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
752 Fcurrent_buffer ()); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
753 EMACS_INT val; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
754 |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
755 if (!STRINGP (sep_re)) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
756 sep_re = fallback_paragraph_separate_re; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
757 if (!STRINGP (start_re)) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
758 start_re = fallback_paragraph_start_re; |
107583 | 759 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
760 val = fast_looking_at (sep_re, charpos, bytepos, ZV, ZV_BYTE, Qnil); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
761 if (val < 0) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
762 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
763 if (fast_looking_at (start_re, charpos, bytepos, ZV, ZV_BYTE, Qnil) >= 0) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
764 val = -1; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
765 else |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
766 val = -2; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
767 } |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
768 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
769 return val; |
107583 | 770 } |
771 | |
772 /* Determine the start-of-run (sor) directional type given the two | |
773 embedding levels on either side of the run boundary. Also, update | |
774 the saved info about previously seen characters, since that info is | |
775 generally valid for a single level run. */ | |
776 static inline void | |
777 bidi_set_sor_type (struct bidi_it *bidi_it, int level_before, int level_after) | |
778 { | |
779 int higher_level = level_before > level_after ? level_before : level_after; | |
780 | |
781 /* The prev_was_pdf gork is required for when we have several PDFs | |
782 in a row. In that case, we want to compute the sor type for the | |
783 next level run only once: when we see the first PDF. That's | |
784 because the sor type depends only on the higher of the two levels | |
785 that we find on the two sides of the level boundary (see UAX#9, | |
786 clause X10), and so we don't need to know the final embedding | |
787 level to which we descend after processing all the PDFs. */ | |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
788 if (!bidi_it->prev_was_pdf || level_before < level_after) |
107583 | 789 /* FIXME: should the default sor direction be user selectable? */ |
790 bidi_it->sor = (higher_level & 1) != 0 ? R2L : L2R; | |
791 if (level_before > level_after) | |
792 bidi_it->prev_was_pdf = 1; | |
793 | |
794 bidi_it->prev.type = UNKNOWN_BT; | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
795 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1 = |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
796 bidi_it->last_strong.orig_type = UNKNOWN_BT; |
107583 | 797 bidi_it->prev_for_neutral.type = bidi_it->sor == R2L ? STRONG_R : STRONG_L; |
798 bidi_it->prev_for_neutral.charpos = bidi_it->charpos; | |
799 bidi_it->prev_for_neutral.bytepos = bidi_it->bytepos; | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
800 bidi_it->next_for_neutral.type = bidi_it->next_for_neutral.type_after_w1 = |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
801 bidi_it->next_for_neutral.orig_type = UNKNOWN_BT; |
107583 | 802 bidi_it->ignore_bn_limit = 0; /* meaning it's unknown */ |
803 } | |
804 | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
805 static void |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
806 bidi_line_init (struct bidi_it *bidi_it) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
807 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
808 bidi_it->scan_dir = 1; /* FIXME: do we need to have control on this? */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
809 bidi_it->resolved_level = bidi_it->level_stack[0].level; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
810 bidi_it->level_stack[0].override = NEUTRAL_DIR; /* X1 */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
811 bidi_it->invalid_levels = 0; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
812 bidi_it->invalid_rl_levels = -1; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
813 bidi_it->next_en_pos = -1; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
814 bidi_it->next_for_ws.type = UNKNOWN_BT; |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
815 bidi_set_sor_type (bidi_it, |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
816 bidi_it->paragraph_dir == R2L ? 1 : 0, |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
817 bidi_it->level_stack[0].level); /* X10 */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
818 |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
819 bidi_cache_reset (); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
820 } |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
821 |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
822 /* Find the beginning of this paragraph by looking back in the buffer. |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
823 Value is the byte position of the paragraph's beginning. */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
824 static EMACS_INT |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
825 bidi_find_paragraph_start (EMACS_INT pos, EMACS_INT pos_byte) |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
826 { |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
827 Lisp_Object re = Fbuffer_local_value (Qparagraph_start, Fcurrent_buffer ()); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
828 EMACS_INT limit = ZV, limit_byte = ZV_BYTE; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
829 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
830 if (!STRINGP (re)) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
831 re = fallback_paragraph_start_re; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
832 while (pos_byte > BEGV_BYTE |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
833 && fast_looking_at (re, pos, pos_byte, limit, limit_byte, Qnil) < 0) |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
834 { |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
835 pos = find_next_newline_no_quit (pos - 1, -1); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
836 pos_byte = CHAR_TO_BYTE (pos); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
837 } |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
838 return pos_byte; |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
839 } |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
840 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
841 /* Determine the direction, a.k.a. base embedding level, of the |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
842 paragraph we are about to iterate through. If DIR is either L2R or |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
843 R2L, just use that. Otherwise, determine the paragraph direction |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
844 from the first strong character of the paragraph. |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
845 |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
846 Note that this gives the paragraph separator the same direction as |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
847 the preceding paragraph, even though Emacs generally views the |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
848 separartor as not belonging to any paragraph. */ |
107583 | 849 void |
850 bidi_paragraph_init (bidi_dir_t dir, struct bidi_it *bidi_it) | |
851 { | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
852 EMACS_INT bytepos = bidi_it->bytepos; |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
853 |
107598
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
854 /* Special case for an empty buffer. */ |
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
855 if (bytepos == BEGV_BYTE && bytepos == ZV_BYTE) |
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
856 dir = L2R; |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
857 /* We should never be called at EOB or before BEGV. */ |
107598
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
858 else if (bytepos >= ZV_BYTE || bytepos < BEGV_BYTE) |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
859 abort (); |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
860 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
861 if (dir == L2R) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
862 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
863 bidi_it->paragraph_dir = L2R; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
864 bidi_it->new_paragraph = 0; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
865 } |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
866 else if (dir == R2L) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
867 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
868 bidi_it->paragraph_dir = R2L; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
869 bidi_it->new_paragraph = 0; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
870 } |
107583 | 871 else if (dir == NEUTRAL_DIR) /* P2 */ |
872 { | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
873 int ch, ch_len; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
874 EMACS_INT pos; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
875 bidi_type_t type; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
876 EMACS_INT sep_len; |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
877 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
878 /* If we are inside a paragraph separator, we are just waiting |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
879 for the separator to be exhausted; use the previous paragraph |
107597
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
880 direction. But don't do that if we have been just reseated, |
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
881 because we need to reinitialize below in that case. */ |
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
882 if (!bidi_it->first_elt |
7361a2f37d8e
Retrospective commit from 2009-10-10.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
883 && bidi_it->charpos < bidi_it->separator_limit) |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
884 return; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
885 |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
886 /* If we are on a newline, get past it to where the next |
107598
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
887 paragraph might start. But don't do that at BEGV since then |
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
888 we are potentially in a new paragraph that doesn't yet |
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
889 exist. */ |
107596
866e76f8ad75
Retrospective commit from 2009-10-08.
Eli Zaretskii <eliz@gnu.org>
parents:
107595
diff
changeset
|
890 pos = bidi_it->charpos; |
107598
4bad2c6338cc
Retrospective commit from 2009-10-17.
Eli Zaretskii <eliz@gnu.org>
parents:
107597
diff
changeset
|
891 if (bytepos > BEGV_BYTE && FETCH_CHAR (bytepos) == '\n') |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
892 { |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
893 bytepos++; |
107596
866e76f8ad75
Retrospective commit from 2009-10-08.
Eli Zaretskii <eliz@gnu.org>
parents:
107595
diff
changeset
|
894 pos++; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
895 } |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
896 |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
897 /* We are either at the beginning of a paragraph or in the |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
898 middle of it. Find where this paragraph starts. */ |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
899 bytepos = bidi_find_paragraph_start (pos, bytepos); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
900 |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
901 /* We should always be at the beginning of a new line at this |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
902 point. */ |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
903 if (!(bytepos == BEGV_BYTE || FETCH_CHAR (bytepos - 1) == '\n')) |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
904 abort (); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
905 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
906 bidi_it->separator_limit = -1; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
907 bidi_it->new_paragraph = 0; |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
908 ch = FETCH_CHAR (bytepos); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
909 ch_len = CHAR_BYTES (ch); |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
910 pos = BYTE_TO_CHAR (bytepos); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
911 type = bidi_get_type (ch, NEUTRAL_DIR); |
107583 | 912 |
107592
e6df672626c1
Retrospective commit from 2009-09-27.
Eli Zaretskii <eliz@gnu.org>
parents:
107591
diff
changeset
|
913 for (pos++, bytepos += ch_len; |
107583 | 914 /* NOTE: UAX#9 says to search only for L, AL, or R types of |
915 characters, and ignore RLE, RLO, LRE, and LRO. However, | |
916 I'm not sure it makes sense to omit those 4; should try | |
917 with and without that to see the effect. */ | |
918 (bidi_get_category (type) != STRONG) | |
919 || (bidi_ignore_explicit_marks_for_paragraph_level | |
920 && (type == RLE || type == RLO | |
921 || type == LRE || type == LRO)); | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
922 type = bidi_get_type (ch, NEUTRAL_DIR)) |
107583 | 923 { |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
924 if (type == NEUTRAL_B && bidi_at_paragraph_end (pos, bytepos) >= -1) |
107583 | 925 break; |
107601
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
926 if (bytepos >= ZV_BYTE) |
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
927 { |
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
928 /* Pretend there's a paragraph separator at end of buffer. */ |
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
929 type = NEUTRAL_B; |
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
930 break; |
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
931 } |
107583 | 932 FETCH_CHAR_ADVANCE (ch, pos, bytepos); |
933 } | |
934 if (type == STRONG_R || type == STRONG_AL) /* P3 */ | |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
935 bidi_it->paragraph_dir = R2L; |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
936 else if (type == STRONG_L) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
937 bidi_it->paragraph_dir = L2R; |
107583 | 938 } |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
939 else |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
940 abort (); |
107583 | 941 |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
942 /* Contrary to UAX#9 clause P3, we only default the paragraph |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
943 direction to L2R if we have no previous usable paragraph |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
944 direction. */ |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
945 if (bidi_it->paragraph_dir == NEUTRAL_DIR) |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
946 bidi_it->paragraph_dir = L2R; /* P3 and ``higher protocols'' */ |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
947 if (bidi_it->paragraph_dir == R2L) |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
948 bidi_it->level_stack[0].level = 1; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
949 else |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
950 bidi_it->level_stack[0].level = 0; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
951 |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
952 bidi_line_init (bidi_it); |
107583 | 953 } |
954 | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
955 /* Do whatever UAX#9 clause X8 says should be done at paragraph's |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
956 end. */ |
107583 | 957 static inline void |
958 bidi_set_paragraph_end (struct bidi_it *bidi_it) | |
959 { | |
960 bidi_it->invalid_levels = 0; | |
961 bidi_it->invalid_rl_levels = -1; | |
962 bidi_it->stack_idx = 0; | |
963 bidi_it->resolved_level = bidi_it->level_stack[0].level; | |
964 } | |
965 | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
966 /* Initialize the bidi iterator from buffer position CHARPOS. */ |
107583 | 967 void |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
968 bidi_init_it (EMACS_INT charpos, EMACS_INT bytepos, struct bidi_it *bidi_it) |
107583 | 969 { |
970 if (! bidi_initialized) | |
971 bidi_initialize (); | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
972 bidi_it->charpos = charpos; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
973 bidi_it->bytepos = bytepos; |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
974 bidi_it->first_elt = 1; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
975 bidi_set_paragraph_end (bidi_it); |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
976 bidi_it->new_paragraph = 1; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
977 bidi_it->separator_limit = -1; |
107583 | 978 bidi_it->type = NEUTRAL_B; |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
979 bidi_it->type_after_w1 = UNKNOWN_BT; |
107583 | 980 bidi_it->orig_type = UNKNOWN_BT; |
981 bidi_it->prev_was_pdf = 0; | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
982 bidi_it->prev.type = bidi_it->prev.type_after_w1 = UNKNOWN_BT; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
983 bidi_it->last_strong.type = bidi_it->last_strong.type_after_w1 = |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
984 bidi_it->last_strong.orig_type = UNKNOWN_BT; |
107583 | 985 bidi_it->next_for_neutral.charpos = -1; |
986 bidi_it->next_for_neutral.type = | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
987 bidi_it->next_for_neutral.type_after_w1 = |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
988 bidi_it->next_for_neutral.orig_type = UNKNOWN_BT; |
107583 | 989 bidi_it->prev_for_neutral.charpos = -1; |
990 bidi_it->prev_for_neutral.type = | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
991 bidi_it->prev_for_neutral.type_after_w1 = |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
992 bidi_it->prev_for_neutral.orig_type = UNKNOWN_BT; |
107583 | 993 bidi_it->sor = L2R; /* FIXME: should it be user-selectable? */ |
994 } | |
995 | |
996 /* Push the current embedding level and override status; reset the | |
997 current level to LEVEL and the current override status to OVERRIDE. */ | |
998 static inline void | |
999 bidi_push_embedding_level (struct bidi_it *bidi_it, | |
1000 int level, bidi_dir_t override) | |
1001 { | |
1002 bidi_it->stack_idx++; | |
1003 if (bidi_it->stack_idx >= BIDI_MAXLEVEL) | |
1004 abort (); | |
1005 bidi_it->level_stack[bidi_it->stack_idx].level = level; | |
1006 bidi_it->level_stack[bidi_it->stack_idx].override = override; | |
1007 } | |
1008 | |
1009 /* Pop the embedding level and directional override status from the | |
1010 stack, and return the new level. */ | |
1011 static inline int | |
1012 bidi_pop_embedding_level (struct bidi_it *bidi_it) | |
1013 { | |
1014 /* UAX#9 says to ignore invalid PDFs. */ | |
1015 if (bidi_it->stack_idx > 0) | |
1016 bidi_it->stack_idx--; | |
1017 return bidi_it->level_stack[bidi_it->stack_idx].level; | |
1018 } | |
1019 | |
1020 /* Record in SAVED_INFO the information about the current character. */ | |
1021 static inline void | |
1022 bidi_remember_char (struct bidi_saved_info *saved_info, | |
1023 struct bidi_it *bidi_it) | |
1024 { | |
1025 saved_info->charpos = bidi_it->charpos; | |
1026 saved_info->bytepos = bidi_it->bytepos; | |
1027 saved_info->type = bidi_it->type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1028 bidi_check_type (bidi_it->type); |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1029 saved_info->type_after_w1 = bidi_it->type_after_w1; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1030 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1031 saved_info->orig_type = bidi_it->orig_type; |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1032 bidi_check_type (bidi_it->orig_type); |
107583 | 1033 } |
1034 | |
1035 /* Resolve the type of a neutral character according to the type of | |
1036 surrounding strong text and the current embedding level. */ | |
1037 static inline bidi_type_t | |
1038 bidi_resolve_neutral_1 (bidi_type_t prev_type, bidi_type_t next_type, int lev) | |
1039 { | |
1040 /* N1: European and Arabic numbers are treated as though they were R. */ | |
1041 if (next_type == WEAK_EN || next_type == WEAK_AN) | |
1042 next_type = STRONG_R; | |
1043 if (prev_type == WEAK_EN || prev_type == WEAK_AN) | |
1044 prev_type = STRONG_R; | |
1045 | |
1046 if (next_type == prev_type) /* N1 */ | |
1047 return next_type; | |
1048 else if ((lev & 1) == 0) /* N2 */ | |
1049 return STRONG_L; | |
1050 else | |
1051 return STRONG_R; | |
1052 } | |
1053 | |
1054 static inline int | |
1055 bidi_explicit_dir_char (int c) | |
1056 { | |
1057 /* FIXME: this should be replaced with a lookup table with suitable | |
1058 bits set, like standard C ctype macros do. */ | |
1059 return (c == LRE_CHAR || c == LRO_CHAR | |
1060 || c == RLE_CHAR || c == RLO_CHAR || c == PDF_CHAR); | |
1061 } | |
1062 | |
1063 /* A helper function for bidi_resolve_explicit. It advances to the | |
1064 next character in logical order and determines the new embedding | |
1065 level and directional override, but does not take into account | |
1066 empty embeddings. */ | |
1067 static int | |
1068 bidi_resolve_explicit_1 (struct bidi_it *bidi_it) | |
1069 { | |
1070 int curchar; | |
1071 bidi_type_t type; | |
1072 int current_level; | |
1073 int new_level; | |
1074 bidi_dir_t override; | |
1075 | |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1076 if (bidi_it->bytepos < BEGV_BYTE /* after reseat to BEGV? */ |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1077 || bidi_it->first_elt) |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1078 { |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1079 bidi_it->first_elt = 0; |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1080 if (bidi_it->charpos < BEGV) |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1081 bidi_it->charpos = BEGV; |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1082 bidi_it->bytepos = CHAR_TO_BYTE (bidi_it->charpos); |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1083 } |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1084 else if (bidi_it->bytepos < ZV_BYTE) /* don't move at ZV */ |
107583 | 1085 { |
1086 bidi_it->charpos++; | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1087 if (bidi_it->ch_len == 0) |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1088 abort (); |
107583 | 1089 bidi_it->bytepos += bidi_it->ch_len; |
1090 } | |
1091 | |
1092 current_level = bidi_it->level_stack[bidi_it->stack_idx].level; /* X1 */ | |
1093 override = bidi_it->level_stack[bidi_it->stack_idx].override; | |
1094 new_level = current_level; | |
1095 | |
1096 /* in case it is a unibyte character (not yet implemented) */ | |
1097 /* _fetch_multibyte_char_len = 1; */ | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1098 if (bidi_it->bytepos >= ZV_BYTE) |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1099 { |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1100 curchar = BIDI_EOB; |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1101 bidi_it->ch_len = 1; |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1102 } |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1103 else |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1104 { |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1105 curchar = FETCH_CHAR (bidi_it->bytepos); |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1106 bidi_it->ch_len = CHAR_BYTES (curchar); |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1107 } |
107583 | 1108 bidi_it->ch = curchar; |
1109 | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1110 /* Don't apply directional override here, as all the types we handle |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1111 below will not be affected by the override anyway, and we need |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1112 the original type unaltered. The override will be applied in |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1113 bidi_resolve_weak. */ |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1114 type = bidi_get_type (curchar, NEUTRAL_DIR); |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1115 bidi_it->orig_type = type; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1116 bidi_check_type (bidi_it->orig_type); |
107583 | 1117 |
1118 if (type != PDF) | |
1119 bidi_it->prev_was_pdf = 0; | |
1120 | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1121 bidi_it->type_after_w1 = UNKNOWN_BT; |
107583 | 1122 |
1123 switch (type) | |
1124 { | |
1125 case RLE: /* X2 */ | |
1126 case RLO: /* X4 */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1127 bidi_it->type_after_w1 = type; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1128 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1129 type = WEAK_BN; /* X9/Retaining */ |
1130 if (bidi_it->ignore_bn_limit <= 0) | |
1131 { | |
1132 if (current_level <= BIDI_MAXLEVEL - 4) | |
1133 { | |
1134 /* Compute the least odd embedding level greater than | |
1135 the current level. */ | |
1136 new_level = ((current_level + 1) & ~1) + 1; | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1137 if (bidi_it->type_after_w1 == RLE) |
107583 | 1138 override = NEUTRAL_DIR; |
1139 else | |
1140 override = R2L; | |
1141 if (current_level == BIDI_MAXLEVEL - 4) | |
1142 bidi_it->invalid_rl_levels = 0; | |
1143 bidi_push_embedding_level (bidi_it, new_level, override); | |
1144 } | |
1145 else | |
1146 { | |
1147 bidi_it->invalid_levels++; | |
1148 /* See the commentary about invalid_rl_levels below. */ | |
1149 if (bidi_it->invalid_rl_levels < 0) | |
1150 bidi_it->invalid_rl_levels = 0; | |
1151 bidi_it->invalid_rl_levels++; | |
1152 } | |
1153 } | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1154 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */ |
107583 | 1155 || bidi_it->next_en_pos > bidi_it->charpos) |
1156 type = WEAK_EN; | |
1157 break; | |
1158 case LRE: /* X3 */ | |
1159 case LRO: /* X5 */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1160 bidi_it->type_after_w1 = type; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1161 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1162 type = WEAK_BN; /* X9/Retaining */ |
1163 if (bidi_it->ignore_bn_limit <= 0) | |
1164 { | |
1165 if (current_level <= BIDI_MAXLEVEL - 5) | |
1166 { | |
1167 /* Compute the least even embedding level greater than | |
1168 the current level. */ | |
1169 new_level = ((current_level + 2) & ~1); | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1170 if (bidi_it->type_after_w1 == LRE) |
107583 | 1171 override = NEUTRAL_DIR; |
1172 else | |
1173 override = L2R; | |
1174 bidi_push_embedding_level (bidi_it, new_level, override); | |
1175 } | |
1176 else | |
1177 { | |
1178 bidi_it->invalid_levels++; | |
1179 /* invalid_rl_levels counts invalid levels encountered | |
1180 while the embedding level was already too high for | |
1181 LRE/LRO, but not for RLE/RLO. That is because | |
1182 there may be exactly one PDF which we should not | |
1183 ignore even though invalid_levels is non-zero. | |
1184 invalid_rl_levels helps to know what PDF is | |
1185 that. */ | |
1186 if (bidi_it->invalid_rl_levels >= 0) | |
1187 bidi_it->invalid_rl_levels++; | |
1188 } | |
1189 } | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1190 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */ |
107583 | 1191 || bidi_it->next_en_pos > bidi_it->charpos) |
1192 type = WEAK_EN; | |
1193 break; | |
1194 case PDF: /* X7 */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1195 bidi_it->type_after_w1 = type; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1196 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1197 type = WEAK_BN; /* X9/Retaining */ |
1198 if (bidi_it->ignore_bn_limit <= 0) | |
1199 { | |
1200 if (!bidi_it->invalid_rl_levels) | |
1201 { | |
1202 new_level = bidi_pop_embedding_level (bidi_it); | |
1203 bidi_it->invalid_rl_levels = -1; | |
1204 if (bidi_it->invalid_levels) | |
1205 bidi_it->invalid_levels--; | |
1206 /* else nothing: UAX#9 says to ignore invalid PDFs */ | |
1207 } | |
1208 if (!bidi_it->invalid_levels) | |
1209 new_level = bidi_pop_embedding_level (bidi_it); | |
1210 else | |
1211 { | |
1212 bidi_it->invalid_levels--; | |
1213 bidi_it->invalid_rl_levels--; | |
1214 } | |
1215 } | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1216 else if (bidi_it->prev.type_after_w1 == WEAK_EN /* W5/Retaining */ |
107583 | 1217 || bidi_it->next_en_pos > bidi_it->charpos) |
1218 type = WEAK_EN; | |
1219 break; | |
1220 default: | |
1221 /* Nothing. */ | |
1222 break; | |
1223 } | |
1224 | |
1225 bidi_it->type = type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1226 bidi_check_type (bidi_it->type); |
107583 | 1227 |
1228 return new_level; | |
1229 } | |
1230 | |
1231 /* Given an iterator state in BIDI_IT, advance one character position | |
1232 in the buffer to the next character (in the logical order), resolve | |
1233 any explicit embeddings and directional overrides, and return the | |
1234 embedding level of the character after resolving explicit | |
1235 directives and ignoring empty embeddings. */ | |
1236 static int | |
1237 bidi_resolve_explicit (struct bidi_it *bidi_it) | |
1238 { | |
1239 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1240 int new_level = bidi_resolve_explicit_1 (bidi_it); | |
1241 | |
1242 if (prev_level < new_level | |
1243 && bidi_it->type == WEAK_BN | |
1244 && bidi_it->ignore_bn_limit == 0 /* only if not already known */ | |
107774
291efac2eff3
Fix infloop in bidi buffers with vertical cursor motion at ZV.
Eli Zaretskii <eliz@gnu.org>
parents:
107655
diff
changeset
|
1245 && bidi_it->bytepos < ZV_BYTE /* not already at EOB */ |
107583 | 1246 && bidi_explicit_dir_char (FETCH_CHAR (bidi_it->bytepos |
1247 + bidi_it->ch_len))) | |
1248 { | |
1249 /* Avoid pushing and popping embedding levels if the level run | |
1250 is empty, as this breaks level runs where it shouldn't. | |
1251 UAX#9 removes all the explicit embedding and override codes, | |
1252 so empty embeddings disappear without a trace. We need to | |
1253 behave as if we did the same. */ | |
1254 struct bidi_it saved_it; | |
1255 int level = prev_level; | |
1256 | |
1257 bidi_copy_it (&saved_it, bidi_it); | |
1258 | |
1259 while (bidi_explicit_dir_char (FETCH_CHAR (bidi_it->bytepos | |
1260 + bidi_it->ch_len))) | |
1261 { | |
1262 level = bidi_resolve_explicit_1 (bidi_it); | |
1263 } | |
1264 | |
1265 if (level == prev_level) /* empty embedding */ | |
1266 saved_it.ignore_bn_limit = bidi_it->charpos + 1; | |
1267 else /* this embedding is non-empty */ | |
1268 saved_it.ignore_bn_limit = -1; | |
1269 | |
1270 bidi_copy_it (bidi_it, &saved_it); | |
1271 if (bidi_it->ignore_bn_limit > 0) | |
1272 { | |
1273 /* We pushed a level, but we shouldn't have. Undo that. */ | |
1274 if (!bidi_it->invalid_rl_levels) | |
1275 { | |
1276 new_level = bidi_pop_embedding_level (bidi_it); | |
1277 bidi_it->invalid_rl_levels = -1; | |
1278 if (bidi_it->invalid_levels) | |
1279 bidi_it->invalid_levels--; | |
1280 } | |
1281 if (!bidi_it->invalid_levels) | |
1282 new_level = bidi_pop_embedding_level (bidi_it); | |
1283 else | |
1284 { | |
1285 bidi_it->invalid_levels--; | |
1286 bidi_it->invalid_rl_levels--; | |
1287 } | |
1288 } | |
1289 } | |
1290 | |
1291 if (bidi_it->type == NEUTRAL_B) /* X8 */ | |
1292 { | |
107601
ee023eee6207
Retrospective commit from 2009-11-07.
Eli Zaretskii <eliz@gnu.org>
parents:
107599
diff
changeset
|
1293 bidi_set_paragraph_end (bidi_it); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1294 /* This is needed by bidi_resolve_weak below, and in L1. */ |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1295 bidi_it->type_after_w1 = bidi_it->type; |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1296 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1297 } |
1298 | |
1299 return new_level; | |
1300 } | |
1301 | |
1302 /* Advance in the buffer, resolve weak types and return the type of | |
1303 the next character after weak type resolution. */ | |
1304 bidi_type_t | |
1305 bidi_resolve_weak (struct bidi_it *bidi_it) | |
1306 { | |
1307 bidi_type_t type; | |
1308 bidi_dir_t override; | |
1309 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1310 int new_level = bidi_resolve_explicit (bidi_it); | |
1311 int next_char; | |
1312 bidi_type_t type_of_next; | |
1313 struct bidi_it saved_it; | |
1314 | |
1315 type = bidi_it->type; | |
1316 override = bidi_it->level_stack[bidi_it->stack_idx].override; | |
1317 | |
1318 if (type == UNKNOWN_BT | |
1319 || type == LRE | |
1320 || type == LRO | |
1321 || type == RLE | |
1322 || type == RLO | |
1323 || type == PDF) | |
1324 abort (); | |
1325 | |
1326 if (new_level != prev_level | |
1327 || bidi_it->type == NEUTRAL_B) | |
1328 { | |
1329 /* We've got a new embedding level run, compute the directional | |
1330 type of sor and initialize per-run variables (UAX#9, clause | |
1331 X10). */ | |
1332 bidi_set_sor_type (bidi_it, prev_level, new_level); | |
1333 } | |
1334 else if (type == NEUTRAL_S || type == NEUTRAL_WS | |
1335 || type == WEAK_BN || type == STRONG_AL) | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1336 bidi_it->type_after_w1 = type; /* needed in L1 */ |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1337 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1338 |
1339 /* Level and directional override status are already recorded in | |
1340 bidi_it, and do not need any change; see X6. */ | |
1341 if (override == R2L) /* X6 */ | |
1342 type = STRONG_R; | |
1343 else if (override == L2R) | |
1344 type = STRONG_L; | |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1345 else |
107583 | 1346 { |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1347 if (type == WEAK_NSM) /* W1 */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1348 { |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1349 /* Note that we don't need to consider the case where the |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1350 prev character has its type overridden by an RLO or LRO: |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1351 such characters are outside the current level run, and |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1352 thus not relevant to this NSM. Thus, NSM gets the |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1353 orig_type of the previous character. */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1354 if (bidi_it->prev.type != UNKNOWN_BT) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1355 type = bidi_it->prev.orig_type; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1356 else if (bidi_it->sor == R2L) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1357 type = STRONG_R; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1358 else if (bidi_it->sor == L2R) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1359 type = STRONG_L; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1360 else /* shouldn't happen! */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1361 abort (); |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1362 } |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1363 if (type == WEAK_EN /* W2 */ |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1364 && bidi_it->last_strong.type_after_w1 == STRONG_AL) |
107583 | 1365 type = WEAK_AN; |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1366 else if (type == STRONG_AL) /* W3 */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1367 type = STRONG_R; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1368 else if ((type == WEAK_ES /* W4 */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1369 && bidi_it->prev.type_after_w1 == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1370 && bidi_it->prev.orig_type == WEAK_EN) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1371 || (type == WEAK_CS |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1372 && ((bidi_it->prev.type_after_w1 == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1373 && bidi_it->prev.orig_type == WEAK_EN) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1374 || bidi_it->prev.type_after_w1 == WEAK_AN))) |
107583 | 1375 { |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1376 next_char = |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1377 bidi_it->bytepos + bidi_it->ch_len >= ZV_BYTE |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1378 ? BIDI_EOB : FETCH_CHAR (bidi_it->bytepos + bidi_it->ch_len); |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1379 type_of_next = bidi_get_type (next_char, override); |
107583 | 1380 |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1381 if (type_of_next == WEAK_BN |
107583 | 1382 || bidi_explicit_dir_char (next_char)) |
1383 { | |
1384 bidi_copy_it (&saved_it, bidi_it); | |
1385 while (bidi_resolve_explicit (bidi_it) == new_level | |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1386 && bidi_it->type == WEAK_BN) |
107583 | 1387 ; |
1388 type_of_next = bidi_it->type; | |
1389 bidi_copy_it (bidi_it, &saved_it); | |
1390 } | |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1391 |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1392 /* If the next character is EN, but the last strong-type |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1393 character is AL, that next EN will be changed to AN when |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1394 we process it in W2 above. So in that case, this ES |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1395 should not be changed into EN. */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1396 if (type == WEAK_ES |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1397 && type_of_next == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1398 && bidi_it->last_strong.type_after_w1 != STRONG_AL) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1399 type = WEAK_EN; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1400 else if (type == WEAK_CS) |
107583 | 1401 { |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1402 if (bidi_it->prev.type_after_w1 == WEAK_AN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1403 && (type_of_next == WEAK_AN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1404 /* If the next character is EN, but the last |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1405 strong-type character is AL, EN will be later |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1406 changed to AN when we process it in W2 above. |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1407 So in that case, this ES should not be |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1408 changed into EN. */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1409 || (type_of_next == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1410 && bidi_it->last_strong.type_after_w1 == STRONG_AL))) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1411 type = WEAK_AN; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1412 else if (bidi_it->prev.type_after_w1 == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1413 && type_of_next == WEAK_EN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1414 && bidi_it->last_strong.type_after_w1 != STRONG_AL) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1415 type = WEAK_EN; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1416 } |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1417 } |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1418 else if (type == WEAK_ET /* W5: ET with EN before or after it */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1419 || type == WEAK_BN) /* W5/Retaining */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1420 { |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1421 if (bidi_it->prev.type_after_w1 == WEAK_EN /* ET/BN w/EN before it */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1422 || bidi_it->next_en_pos > bidi_it->charpos) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1423 type = WEAK_EN; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1424 else /* W5: ET/BN with EN after it. */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1425 { |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1426 EMACS_INT en_pos = bidi_it->charpos + 1; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1427 |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1428 next_char = |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1429 bidi_it->bytepos + bidi_it->ch_len >= ZV_BYTE |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1430 ? BIDI_EOB : FETCH_CHAR (bidi_it->bytepos + bidi_it->ch_len); |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1431 type_of_next = bidi_get_type (next_char, override); |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1432 |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1433 if (type_of_next == WEAK_ET |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1434 || type_of_next == WEAK_BN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1435 || bidi_explicit_dir_char (next_char)) |
107583 | 1436 { |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1437 bidi_copy_it (&saved_it, bidi_it); |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1438 while (bidi_resolve_explicit (bidi_it) == new_level |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1439 && (bidi_it->type == WEAK_BN |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1440 || bidi_it->type == WEAK_ET)) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1441 ; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1442 type_of_next = bidi_it->type; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1443 en_pos = bidi_it->charpos; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1444 bidi_copy_it (bidi_it, &saved_it); |
107583 | 1445 } |
107605
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1446 if (type_of_next == WEAK_EN) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1447 { |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1448 /* If the last strong character is AL, the EN we've |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1449 found will become AN when we get to it (W2). */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1450 if (bidi_it->last_strong.type_after_w1 != STRONG_AL) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1451 { |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1452 type = WEAK_EN; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1453 /* Remember this EN position, to speed up processing |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1454 of the next ETs. */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1455 bidi_it->next_en_pos = en_pos; |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1456 } |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1457 else if (type == WEAK_BN) |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1458 type = NEUTRAL_ON; /* W6/Retaining */ |
b1e1b45c9fb6
Retrospective commit from 2009-1219.
Eli Zaretskii <eliz@gnu.org>
parents:
107604
diff
changeset
|
1459 } |
107583 | 1460 } |
1461 } | |
1462 } | |
1463 | |
1464 if (type == WEAK_ES || type == WEAK_ET || type == WEAK_CS /* W6 */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1465 || (type == WEAK_BN |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1466 && (bidi_it->prev.type_after_w1 == WEAK_CS /* W6/Retaining */ |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1467 || bidi_it->prev.type_after_w1 == WEAK_ES |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1468 || bidi_it->prev.type_after_w1 == WEAK_ET))) |
107583 | 1469 type = NEUTRAL_ON; |
1470 | |
1471 /* Store the type we've got so far, before we clobber it with strong | |
1472 types in W7 and while resolving neutral types. But leave alone | |
1473 the original types that were recorded above, because we will need | |
1474 them for the L1 clause. */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1475 if (bidi_it->type_after_w1 == UNKNOWN_BT) |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1476 bidi_it->type_after_w1 = type; |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1477 bidi_check_type (bidi_it->type_after_w1); |
107583 | 1478 |
1479 if (type == WEAK_EN) /* W7 */ | |
1480 { | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1481 if ((bidi_it->last_strong.type_after_w1 == STRONG_L) |
107583 | 1482 || (bidi_it->last_strong.type == UNKNOWN_BT && bidi_it->sor == L2R)) |
1483 type = STRONG_L; | |
1484 } | |
1485 | |
1486 bidi_it->type = type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1487 bidi_check_type (bidi_it->type); |
107583 | 1488 return type; |
1489 } | |
1490 | |
1491 bidi_type_t | |
1492 bidi_resolve_neutral (struct bidi_it *bidi_it) | |
1493 { | |
1494 int prev_level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1495 bidi_type_t type = bidi_resolve_weak (bidi_it); | |
1496 int current_level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1497 | |
1498 if (!(type == STRONG_R | |
1499 || type == STRONG_L | |
1500 || type == WEAK_BN | |
1501 || type == WEAK_EN | |
1502 || type == WEAK_AN | |
1503 || type == NEUTRAL_B | |
1504 || type == NEUTRAL_S | |
1505 || type == NEUTRAL_WS | |
1506 || type == NEUTRAL_ON)) | |
1507 abort (); | |
1508 | |
1509 if (bidi_get_category (type) == NEUTRAL | |
1510 || (type == WEAK_BN && prev_level == current_level)) | |
1511 { | |
1512 if (bidi_it->next_for_neutral.type != UNKNOWN_BT) | |
1513 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type, | |
1514 bidi_it->next_for_neutral.type, | |
1515 current_level); | |
1516 else | |
1517 { | |
1518 /* Arrrgh!! The UAX#9 algorithm is too deeply entrenched in | |
1519 the assumption of batch-style processing; see clauses W4, | |
1520 W5, and especially N1, which require to look far forward | |
1521 (as well as back) in the buffer. May the fleas of a | |
1522 thousand camels infest the armpits of those who design | |
1523 supposedly general-purpose algorithms by looking at their | |
1524 own implementations, and fail to consider other possible | |
1525 implementations! */ | |
1526 struct bidi_it saved_it; | |
1527 bidi_type_t next_type; | |
1528 | |
1529 if (bidi_it->scan_dir == -1) | |
1530 abort (); | |
1531 | |
1532 bidi_copy_it (&saved_it, bidi_it); | |
1533 /* Scan the text forward until we find the first non-neutral | |
1534 character, and then use that to resolve the neutral we | |
1535 are dealing with now. We also cache the scanned iterator | |
1536 states, to salvage some of the effort later. */ | |
1537 bidi_cache_iterator_state (bidi_it, 0); | |
1538 do { | |
1539 /* Record the info about the previous character, so that | |
1540 it will be cached below with this state. */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1541 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */ |
107583 | 1542 && bidi_it->type != WEAK_BN) |
1543 bidi_remember_char (&bidi_it->prev, bidi_it); | |
1544 type = bidi_resolve_weak (bidi_it); | |
1545 /* Paragraph separators have their levels fully resolved | |
1546 at this point, so cache them as resolved. */ | |
1547 bidi_cache_iterator_state (bidi_it, type == NEUTRAL_B); | |
1548 /* FIXME: implement L1 here, by testing for a newline and | |
1549 resetting the level for any sequence of whitespace | |
1550 characters adjacent to it. */ | |
1551 } while (!(type == NEUTRAL_B | |
1552 || (type != WEAK_BN | |
1553 && bidi_get_category (type) != NEUTRAL) | |
1554 /* This is all per level run, so stop when we | |
1555 reach the end of this level run. */ | |
1556 || bidi_it->level_stack[bidi_it->stack_idx].level != | |
1557 current_level)); | |
1558 | |
1559 bidi_remember_char (&saved_it.next_for_neutral, bidi_it); | |
1560 | |
1561 switch (type) | |
1562 { | |
1563 case STRONG_L: | |
1564 case STRONG_R: | |
1565 case STRONG_AL: | |
1566 next_type = type; | |
1567 break; | |
1568 case WEAK_EN: | |
1569 case WEAK_AN: | |
1570 /* N1: ``European and Arabic numbers are treated as | |
1571 though they were R.'' */ | |
1572 next_type = STRONG_R; | |
1573 saved_it.next_for_neutral.type = STRONG_R; | |
1574 break; | |
1575 case WEAK_BN: | |
1576 if (!bidi_explicit_dir_char (bidi_it->ch)) | |
1577 abort (); /* can't happen: BNs are skipped */ | |
1578 /* FALLTHROUGH */ | |
1579 case NEUTRAL_B: | |
1580 /* Marched all the way to the end of this level run. | |
1581 We need to use the eor type, whose information is | |
1582 stored by bidi_set_sor_type in the prev_for_neutral | |
1583 member. */ | |
1584 if (saved_it.type != WEAK_BN | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1585 || bidi_get_category (bidi_it->prev.type_after_w1) == NEUTRAL) |
107583 | 1586 { |
1587 next_type = bidi_it->prev_for_neutral.type; | |
1588 saved_it.next_for_neutral.type = next_type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1589 bidi_check_type (next_type); |
107583 | 1590 } |
1591 else | |
1592 { | |
1593 /* This is a BN which does not adjoin neutrals. | |
1594 Leave its type alone. */ | |
1595 bidi_copy_it (bidi_it, &saved_it); | |
1596 return bidi_it->type; | |
1597 } | |
1598 break; | |
1599 default: | |
1600 abort (); | |
1601 } | |
1602 type = bidi_resolve_neutral_1 (saved_it.prev_for_neutral.type, | |
1603 next_type, current_level); | |
1604 saved_it.type = type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1605 bidi_check_type (type); |
107583 | 1606 bidi_copy_it (bidi_it, &saved_it); |
1607 } | |
1608 } | |
1609 return type; | |
1610 } | |
1611 | |
1612 /* Given an iterator state in BIDI_IT, advance one character position | |
1613 in the buffer to the next character (in the logical order), resolve | |
1614 the bidi type of that next character, and return that type. */ | |
1615 bidi_type_t | |
1616 bidi_type_of_next_char (struct bidi_it *bidi_it) | |
1617 { | |
1618 bidi_type_t type; | |
1619 | |
1620 /* This should always be called during a forward scan. */ | |
1621 if (bidi_it->scan_dir != 1) | |
1622 abort (); | |
1623 | |
1624 /* Reset the limit until which to ignore BNs if we step out of the | |
1625 area where we found only empty levels. */ | |
1626 if ((bidi_it->ignore_bn_limit > 0 | |
1627 && bidi_it->ignore_bn_limit <= bidi_it->charpos) | |
1628 || (bidi_it->ignore_bn_limit == -1 | |
1629 && !bidi_explicit_dir_char (bidi_it->ch))) | |
1630 bidi_it->ignore_bn_limit = 0; | |
1631 | |
1632 type = bidi_resolve_neutral (bidi_it); | |
1633 | |
1634 return type; | |
1635 } | |
1636 | |
1637 /* Given an iterator state BIDI_IT, advance one character position in | |
1638 the buffer to the next character (in the logical order), resolve | |
1639 the embedding and implicit levels of that next character, and | |
1640 return the resulting level. */ | |
1641 int | |
1642 bidi_level_of_next_char (struct bidi_it *bidi_it) | |
1643 { | |
1644 bidi_type_t type; | |
1645 int level, prev_level = -1; | |
1646 struct bidi_saved_info next_for_neutral; | |
1647 | |
1648 if (bidi_it->scan_dir == 1) | |
1649 { | |
1650 /* There's no sense in trying to advance if we hit end of text. */ | |
107774
291efac2eff3
Fix infloop in bidi buffers with vertical cursor motion at ZV.
Eli Zaretskii <eliz@gnu.org>
parents:
107655
diff
changeset
|
1651 if (bidi_it->bytepos >= ZV_BYTE) |
107583 | 1652 return bidi_it->resolved_level; |
1653 | |
1654 /* Record the info about the previous character. */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1655 if (bidi_it->type_after_w1 != WEAK_BN /* W1/Retaining */ |
107583 | 1656 && bidi_it->type != WEAK_BN) |
1657 bidi_remember_char (&bidi_it->prev, bidi_it); | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1658 if (bidi_it->type_after_w1 == STRONG_R |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1659 || bidi_it->type_after_w1 == STRONG_L |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1660 || bidi_it->type_after_w1 == STRONG_AL) |
107583 | 1661 bidi_remember_char (&bidi_it->last_strong, bidi_it); |
1662 /* FIXME: it sounds like we don't need both prev and | |
1663 prev_for_neutral members, but I'm leaving them both for now. */ | |
1664 if (bidi_it->type == STRONG_R || bidi_it->type == STRONG_L | |
1665 || bidi_it->type == WEAK_EN || bidi_it->type == WEAK_AN) | |
1666 bidi_remember_char (&bidi_it->prev_for_neutral, bidi_it); | |
1667 | |
1668 /* If we overstepped the characters used for resolving neutrals | |
1669 and whitespace, invalidate their info in the iterator. */ | |
1670 if (bidi_it->charpos >= bidi_it->next_for_neutral.charpos) | |
1671 bidi_it->next_for_neutral.type = UNKNOWN_BT; | |
1672 if (bidi_it->next_en_pos >= 0 | |
1673 && bidi_it->charpos >= bidi_it->next_en_pos) | |
1674 bidi_it->next_en_pos = -1; | |
1675 if (bidi_it->next_for_ws.type != UNKNOWN_BT | |
1676 && bidi_it->charpos >= bidi_it->next_for_ws.charpos) | |
1677 bidi_it->next_for_ws.type = UNKNOWN_BT; | |
1678 | |
1679 /* This must be taken before we fill the iterator with the info | |
1680 about the next char. If we scan backwards, the iterator | |
1681 state must be already cached, so there's no need to know the | |
1682 embedding level of the previous character, since we will be | |
1683 returning to our caller shortly. */ | |
1684 prev_level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1685 } | |
1686 next_for_neutral = bidi_it->next_for_neutral; | |
1687 | |
1688 /* Perhaps it is already cached. */ | |
1689 type = bidi_cache_find (bidi_it->charpos + bidi_it->scan_dir, -1, bidi_it); | |
1690 if (type != UNKNOWN_BT) | |
1691 { | |
1692 /* Don't lose the information for resolving neutrals! The | |
1693 cached states could have been cached before their | |
1694 next_for_neutral member was computed. If we are on our way | |
1695 forward, we can simply take the info from the previous | |
1696 state. */ | |
1697 if (bidi_it->scan_dir == 1 | |
1698 && bidi_it->next_for_neutral.type == UNKNOWN_BT) | |
1699 bidi_it->next_for_neutral = next_for_neutral; | |
1700 | |
1701 /* If resolved_level is -1, it means this state was cached | |
1702 before it was completely resolved, so we cannot return | |
1703 it. */ | |
1704 if (bidi_it->resolved_level != -1) | |
1705 return bidi_it->resolved_level; | |
1706 } | |
1707 if (bidi_it->scan_dir == -1) | |
1708 /* If we are going backwards, the iterator state is already cached | |
1709 from previous scans, and should be fully resolved. */ | |
1710 abort (); | |
1711 | |
1712 if (type == UNKNOWN_BT) | |
1713 type = bidi_type_of_next_char (bidi_it); | |
1714 | |
1715 if (type == NEUTRAL_B) | |
1716 return bidi_it->resolved_level; | |
1717 | |
1718 level = bidi_it->level_stack[bidi_it->stack_idx].level; | |
1719 if ((bidi_get_category (type) == NEUTRAL /* && type != NEUTRAL_B */) | |
1720 || (type == WEAK_BN && prev_level == level)) | |
1721 { | |
1722 if (bidi_it->next_for_neutral.type == UNKNOWN_BT) | |
1723 abort (); | |
1724 | |
1725 /* If the cached state shows a neutral character, it was not | |
1726 resolved by bidi_resolve_neutral, so do it now. */ | |
1727 type = bidi_resolve_neutral_1 (bidi_it->prev_for_neutral.type, | |
1728 bidi_it->next_for_neutral.type, | |
1729 level); | |
1730 } | |
1731 | |
1732 if (!(type == STRONG_R | |
1733 || type == STRONG_L | |
1734 || type == WEAK_BN | |
1735 || type == WEAK_EN | |
1736 || type == WEAK_AN)) | |
1737 abort (); | |
1738 bidi_it->type = type; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1739 bidi_check_type (bidi_it->type); |
107583 | 1740 |
1741 /* For L1 below, we need to know, for each WS character, whether | |
1742 it belongs to a sequence of WS characters preceeding a newline | |
1743 or a TAB or a paragraph separator. */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1744 if (bidi_it->orig_type == NEUTRAL_WS |
107583 | 1745 && bidi_it->next_for_ws.type == UNKNOWN_BT) |
1746 { | |
1747 int ch; | |
1748 int clen = bidi_it->ch_len; | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1749 EMACS_INT bpos = bidi_it->bytepos; |
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1750 EMACS_INT cpos = bidi_it->charpos; |
107583 | 1751 bidi_type_t chtype; |
1752 | |
1753 do { | |
1754 /*_fetch_multibyte_char_len = 1;*/ | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1755 ch = bpos + clen >= ZV_BYTE ? BIDI_EOB : FETCH_CHAR (bpos + clen); |
107583 | 1756 bpos += clen; |
1757 cpos++; | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1758 clen = (ch == BIDI_EOB ? 1 : CHAR_BYTES (ch)); |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1759 if (ch == '\n' || ch == BIDI_EOB /* || ch == LINESEP_CHAR */) |
107583 | 1760 chtype = NEUTRAL_B; |
1761 else | |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1762 chtype = bidi_get_type (ch, NEUTRAL_DIR); |
107583 | 1763 } while (chtype == NEUTRAL_WS || chtype == WEAK_BN |
1764 || bidi_explicit_dir_char (ch)); /* L1/Retaining */ | |
1765 bidi_it->next_for_ws.type = chtype; | |
107585
35abfc7649e1
Retrospective commit from 2009-08-22.
Eli Zaretskii <eliz@gnu.org>
parents:
107584
diff
changeset
|
1766 bidi_check_type (bidi_it->next_for_ws.type); |
107583 | 1767 bidi_it->next_for_ws.charpos = cpos; |
1768 bidi_it->next_for_ws.bytepos = bpos; | |
1769 } | |
1770 | |
1771 /* Resolve implicit levels, with a twist: PDFs get the embedding | |
1772 level of the enbedding they terminate. See below for the | |
1773 reason. */ | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1774 if (bidi_it->orig_type == PDF |
107583 | 1775 /* Don't do this if this formatting code didn't change the |
1776 embedding level due to invalid or empty embeddings. */ | |
1777 && prev_level != level) | |
1778 { | |
1779 /* Don't look in UAX#9 for the reason for this: it's our own | |
1780 private quirk. The reason is that we want the formatting | |
1781 codes to be delivered so that they bracket the text of their | |
1782 embedding. For example, given the text | |
1783 | |
1784 {RLO}teST{PDF} | |
1785 | |
1786 we want it to be displayed as | |
1787 | |
1788 {RLO}STet{PDF} | |
1789 | |
1790 not as | |
1791 | |
1792 STet{RLO}{PDF} | |
1793 | |
1794 which will result because we bump up the embedding level as | |
1795 soon as we see the RLO and pop it as soon as we see the PDF, | |
1796 so RLO itself has the same embedding level as "teST", and | |
1797 thus would be normally delivered last, just before the PDF. | |
1798 The switch below fiddles with the level of PDF so that this | |
1799 ugly side effect does not happen. | |
1800 | |
1801 (This is, of course, only important if the formatting codes | |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1802 are actually displayed, but Emacs does need to display them |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1803 if the user wants to.) */ |
107583 | 1804 level = prev_level; |
1805 } | |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1806 else if (bidi_it->orig_type == NEUTRAL_B /* L1 */ |
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1807 || bidi_it->orig_type == NEUTRAL_S |
107590
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1808 || bidi_it->ch == '\n' || bidi_it->ch == BIDI_EOB |
ebdfe4d01cff
Retrospective commit from 2009-09-20.
Eli Zaretskii <eliz@gnu.org>
parents:
107589
diff
changeset
|
1809 /* || bidi_it->ch == LINESEP_CHAR */ |
107589
84267baa779b
Retrospective commit from 2009-09-19.
Eli Zaretskii <eliz@gnu.org>
parents:
107586
diff
changeset
|
1810 || (bidi_it->orig_type == NEUTRAL_WS |
107583 | 1811 && (bidi_it->next_for_ws.type == NEUTRAL_B |
1812 || bidi_it->next_for_ws.type == NEUTRAL_S))) | |
1813 level = bidi_it->level_stack[0].level; | |
1814 else if ((level & 1) == 0) /* I1 */ | |
1815 { | |
1816 if (type == STRONG_R) | |
1817 level++; | |
1818 else if (type == WEAK_EN || type == WEAK_AN) | |
1819 level += 2; | |
1820 } | |
1821 else /* I2 */ | |
1822 { | |
1823 if (type == STRONG_L || type == WEAK_EN || type == WEAK_AN) | |
1824 level++; | |
1825 } | |
1826 | |
1827 bidi_it->resolved_level = level; | |
1828 return level; | |
1829 } | |
1830 | |
1831 /* Move to the other edge of a level given by LEVEL. If END_FLAG is | |
1832 non-zero, we are at the end of a level, and we need to prepare to | |
1833 resume the scan of the lower level. | |
1834 | |
1835 If this level's other edge is cached, we simply jump to it, filling | |
1836 the iterator structure with the iterator state on the other edge. | |
1837 Otherwise, we walk the buffer until we come back to the same level | |
1838 as LEVEL. | |
1839 | |
1840 Note: we are not talking here about a ``level run'' in the UAX#9 | |
1841 sense of the term, but rather about a ``level'' which includes | |
1842 all the levels higher than it. In other words, given the levels | |
1843 like this: | |
1844 | |
1845 11111112222222333333334443343222222111111112223322111 | |
1846 A B C | |
1847 | |
1848 and assuming we are at point A scanning left to right, this | |
1849 function moves to point C, whereas the UAX#9 ``level 2 run'' ends | |
1850 at point B. */ | |
1851 static void | |
1852 bidi_find_other_level_edge (struct bidi_it *bidi_it, int level, int end_flag) | |
1853 { | |
1854 int dir = end_flag ? -bidi_it->scan_dir : bidi_it->scan_dir; | |
1855 int idx; | |
1856 | |
1857 /* Try the cache first. */ | |
1858 if ((idx = bidi_cache_find_level_change (level, dir, end_flag)) >= 0) | |
1859 bidi_cache_fetch_state (idx, bidi_it); | |
1860 else | |
1861 { | |
1862 int new_level; | |
1863 | |
1864 if (end_flag) | |
1865 abort (); /* if we are at end of level, its edges must be cached */ | |
1866 | |
1867 bidi_cache_iterator_state (bidi_it, 1); | |
1868 do { | |
1869 new_level = bidi_level_of_next_char (bidi_it); | |
1870 bidi_cache_iterator_state (bidi_it, 1); | |
1871 } while (new_level >= level); | |
1872 } | |
1873 } | |
1874 | |
1875 void | |
1876 bidi_get_next_char_visually (struct bidi_it *bidi_it) | |
1877 { | |
1878 int old_level, new_level, next_level; | |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1879 struct bidi_it sentinel; |
107583 | 1880 |
1881 if (bidi_it->scan_dir == 0) | |
1882 { | |
1883 bidi_it->scan_dir = 1; /* default to logical order */ | |
1884 } | |
1885 | |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1886 /* If we just passed a newline, initialize for the next line. */ |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1887 if (!bidi_it->first_elt && bidi_it->orig_type == NEUTRAL_B) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1888 bidi_line_init (bidi_it); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1889 |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1890 /* Prepare the sentinel iterator state. */ |
107583 | 1891 if (bidi_cache_idx == 0) |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1892 { |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1893 bidi_copy_it (&sentinel, bidi_it); |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1894 if (bidi_it->first_elt) |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1895 { |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1896 sentinel.charpos--; /* cached charpos needs to be monotonic */ |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1897 sentinel.bytepos--; |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1898 sentinel.ch = '\n'; /* doesn't matter, but why not? */ |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1899 sentinel.ch_len = 1; |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1900 } |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1901 } |
107583 | 1902 |
1903 old_level = bidi_it->resolved_level; | |
1904 new_level = bidi_level_of_next_char (bidi_it); | |
1905 | |
1906 /* Reordering of resolved levels (clause L2) is implemented by | |
1907 jumping to the other edge of the level and flipping direction of | |
107645
6e29ba4351e0
Fix glyph_row reversed_p flag in empty lines between paragraphs.
Eli Zaretskii <eliz@gnu.org>
parents:
107624
diff
changeset
|
1908 scanning the text whenever we find a level change. */ |
107583 | 1909 if (new_level != old_level) |
1910 { | |
1911 int ascending = new_level > old_level; | |
1912 int level_to_search = ascending ? old_level + 1 : old_level; | |
1913 int incr = ascending ? 1 : -1; | |
1914 int expected_next_level = old_level + incr; | |
1915 | |
1916 /* If we don't have anything cached yet, we need to cache the | |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1917 sentinel state, since we'll need it to record where to jump |
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1918 when the last non-base level is exhausted. */ |
107583 | 1919 if (bidi_cache_idx == 0) |
107591
86eec24bee2c
Retrospective commit from 2009-09-26.
Eli Zaretskii <eliz@gnu.org>
parents:
107590
diff
changeset
|
1920 bidi_cache_iterator_state (&sentinel, 1); |
107583 | 1921 /* Jump (or walk) to the other edge of this level. */ |
1922 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending); | |
1923 /* Switch scan direction and peek at the next character in the | |
1924 new direction. */ | |
1925 bidi_it->scan_dir = -bidi_it->scan_dir; | |
1926 | |
1927 /* The following loop handles the case where the resolved level | |
1928 jumps by more than one. This is typical for numbers inside a | |
1929 run of text with left-to-right embedding direction, but can | |
1930 also happen in other situations. In those cases the decision | |
1931 where to continue after a level change, and in what direction, | |
1932 is tricky. For example, given a text like below: | |
1933 | |
1934 abcdefgh | |
1935 11336622 | |
1936 | |
1937 (where the numbers below the text show the resolved levels), | |
1938 the result of reordering according to UAX#9 should be this: | |
1939 | |
1940 efdcghba | |
1941 | |
1942 This is implemented by the loop below which flips direction | |
1943 and jumps to the other edge of the level each time it finds | |
1944 the new level not to be the expected one. The expected level | |
1945 is always one more or one less than the previous one. */ | |
1946 next_level = bidi_peek_at_next_level (bidi_it); | |
1947 while (next_level != expected_next_level) | |
1948 { | |
1949 expected_next_level += incr; | |
1950 level_to_search += incr; | |
1951 bidi_find_other_level_edge (bidi_it, level_to_search, !ascending); | |
1952 bidi_it->scan_dir = -bidi_it->scan_dir; | |
1953 next_level = bidi_peek_at_next_level (bidi_it); | |
1954 } | |
1955 | |
1956 /* Finally, deliver the next character in the new direction. */ | |
1957 next_level = bidi_level_of_next_char (bidi_it); | |
1958 } | |
1959 | |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1960 /* Take note when we have just processed the newline that precedes |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1961 the end of the paragraph. The next time we are about to be |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1962 called, set_iterator_to_next will automatically reinit the |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1963 paragraph direction, if needed. We do this at the newline before |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1964 the paragraph separator, because the next character might not be |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1965 the first character of the next paragraph, due to the bidi |
107645
6e29ba4351e0
Fix glyph_row reversed_p flag in empty lines between paragraphs.
Eli Zaretskii <eliz@gnu.org>
parents:
107624
diff
changeset
|
1966 reordering, whereas we _must_ know the paragraph base direction |
6e29ba4351e0
Fix glyph_row reversed_p flag in empty lines between paragraphs.
Eli Zaretskii <eliz@gnu.org>
parents:
107624
diff
changeset
|
1967 _before_ we process the paragraph's text, since the base |
6e29ba4351e0
Fix glyph_row reversed_p flag in empty lines between paragraphs.
Eli Zaretskii <eliz@gnu.org>
parents:
107624
diff
changeset
|
1968 direction affects the reordering. */ |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1969 if (bidi_it->scan_dir == 1 |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1970 && bidi_it->orig_type == NEUTRAL_B |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1971 && bidi_it->bytepos < ZV_BYTE) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1972 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1973 EMACS_INT sep_len = |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1974 bidi_at_paragraph_end (bidi_it->charpos + 1, |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1975 bidi_it->bytepos + bidi_it->ch_len); |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1976 if (sep_len >= 0) |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1977 { |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1978 bidi_it->new_paragraph = 1; |
107595
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1979 /* Record the buffer position of the last character of the |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1980 paragraph separator. */ |
69c12db7031d
Retrospective commit from 2009-10-05.
Eli Zaretskii <eliz@gnu.org>
parents:
107594
diff
changeset
|
1981 bidi_it->separator_limit = bidi_it->charpos + 1 + sep_len; |
107594
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1982 } |
40b49fa464cf
Retrospective commit from 2009-10-04.
Eli Zaretskii <eliz@gnu.org>
parents:
107593
diff
changeset
|
1983 } |
107593
a551e4109c04
Retrospective commit from 2009-10-03.
Eli Zaretskii <eliz@gnu.org>
parents:
107592
diff
changeset
|
1984 |
107583 | 1985 if (bidi_it->scan_dir == 1 && bidi_cache_idx) |
1986 { | |
1987 /* If we are at paragraph's base embedding level and beyond the | |
1988 last cached position, the cache's job is done and we can | |
1989 discard it. */ | |
1990 if (bidi_it->resolved_level == bidi_it->level_stack[0].level | |
1991 && bidi_it->charpos > bidi_cache[bidi_cache_idx - 1].charpos) | |
1992 bidi_cache_reset (); | |
1993 /* But as long as we are caching during forward scan, we must | |
1994 cache each state, or else the cache integrity will be | |
1995 compromised: it assumes cached states correspond to buffer | |
1996 positions 1:1. */ | |
1997 else | |
1998 bidi_cache_iterator_state (bidi_it, 1); | |
1999 } | |
2000 } | |
2001 | |
2002 /* This is meant to be called from within the debugger, whenever you | |
2003 wish to examine the cache contents. */ | |
2004 void | |
2005 bidi_dump_cached_states (void) | |
2006 { | |
2007 int i; | |
2008 int ndigits = 1; | |
2009 | |
2010 if (bidi_cache_idx == 0) | |
2011 { | |
2012 fprintf (stderr, "The cache is empty.\n"); | |
2013 return; | |
2014 } | |
2015 fprintf (stderr, "Total of %d state%s in cache:\n", | |
2016 bidi_cache_idx, bidi_cache_idx == 1 ? "" : "s"); | |
2017 | |
2018 for (i = bidi_cache[bidi_cache_idx - 1].charpos; i > 0; i /= 10) | |
2019 ndigits++; | |
2020 fputs ("ch ", stderr); | |
2021 for (i = 0; i < bidi_cache_idx; i++) | |
2022 fprintf (stderr, "%*c", ndigits, bidi_cache[i].ch); | |
2023 fputs ("\n", stderr); | |
2024 fputs ("lvl ", stderr); | |
2025 for (i = 0; i < bidi_cache_idx; i++) | |
2026 fprintf (stderr, "%*d", ndigits, bidi_cache[i].resolved_level); | |
2027 fputs ("\n", stderr); | |
2028 fputs ("pos ", stderr); | |
2029 for (i = 0; i < bidi_cache_idx; i++) | |
2030 fprintf (stderr, "%*d", ndigits, bidi_cache[i].charpos); | |
2031 fputs ("\n", stderr); | |
2032 } |