Spelling fixes for "does not exists".
[bpt/emacs.git] / src / composite.c
CommitLineData
ca4c9455 1/* Composite sequence support.
ab422c4d 2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
5df4f04c 3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
ce03bf76
KH
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H14PRO021
f30d8d94 6 Copyright (C) 2003, 2006
1527c36e
KH
7 National Institute of Advanced Industrial Science and Technology (AIST)
8 Registration Number H13PRO009
ca4c9455
KH
9
10This file is part of GNU Emacs.
11
9ec0b715 12GNU Emacs is free software: you can redistribute it and/or modify
ca4c9455 13it under the terms of the GNU General Public License as published by
9ec0b715
GM
14the Free Software Foundation, either version 3 of the License, or
15(at your option) any later version.
ca4c9455
KH
16
17GNU Emacs is distributed in the hope that it will be useful,
18but WITHOUT ANY WARRANTY; without even the implied warranty of
19MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20GNU General Public License for more details.
21
22You should have received a copy of the GNU General Public License
9ec0b715 23along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
ca4c9455
KH
24
25#include <config.h>
f162bcc3
PE
26
27#define COMPOSITE_INLINE EXTERN_INLINE
28
ca4c9455 29#include "lisp.h"
1527c36e 30#include "character.h"
e5560ff7 31#include "buffer.h"
f5199465 32#include "coding.h"
ca4c9455 33#include "intervals.h"
58753d74
KH
34#include "window.h"
35#include "frame.h"
36#include "dispextern.h"
37#include "font.h"
f5199465
KH
38#include "termhooks.h"
39
ca4c9455
KH
40
41/* Emacs uses special text property `composition' to support character
42 composition. A sequence of characters that have the same (i.e. eq)
43 `composition' property value is treated as a single composite
44 sequence (we call it just `composition' here after). Characters in
45 a composition are all composed somehow on the screen.
46
47 The property value has this form when the composition is made:
48 ((LENGTH . COMPONENTS) . MODIFICATION-FUNC)
49 then turns to this form:
50 (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC))
51 when the composition is registered in composition_hash_table and
52 composition_table. These rather peculiar structures were designed
53 to make it easy to distinguish them quickly (we can do that by
54 checking only the first element) and to extract LENGTH (from the
55 former form) and COMPOSITION-ID (from the latter form).
56
57 We register a composition when it is displayed, or when the width
58 is required (for instance, to calculate columns).
59
60 LENGTH -- Length of the composition. This information is used to
61 check the validity of the composition.
62
63 COMPONENTS -- Character, string, vector, list, or nil.
64
65 If it is nil, characters in the text are composed relatively
66 according to their metrics in font glyphs.
67
68 If it is a character or a string, the character or characters
69 in the string are composed relatively.
70
71 If it is a vector or list of integers, the element is a
72 character or an encoded composition rule. The characters are
73 composed according to the rules. (2N)th elements are
74 characters to be composed and (2N+1)th elements are
75 composition rules to tell how to compose (2N+2)th element with
76 the previously composed 2N glyphs.
77
763d7377
EZ
78 COMPONENTS-VEC -- Vector of integers. In a relative composition,
79 the elements are the characters to be composed. In a rule-base
ca4c9455
KH
80 composition, the elements are characters or encoded
81 composition rules.
82
83 MODIFICATION-FUNC -- If non nil, it is a function to call when the
84 composition gets invalid after a modification in a buffer. If
85 it is nil, a function in `composition-function-table' of the
86 first character in the sequence is called.
87
88 COMPOSITION-ID --Identification number of the composition. It is
89 used as an index to composition_table for the composition.
90
91 When Emacs has to display a composition or has to know its
92 displaying width, the function get_composition_id is called. It
93 returns COMPOSITION-ID so that the caller can access the
94 information about the composition through composition_table. If a
95 COMPOSITION-ID has not yet been assigned to the composition,
96 get_composition_id checks the validity of `composition' property,
97 and, if valid, assigns a new ID, registers the information in
98 composition_hash_table and composition_table, and changes the form
763d7377
EZ
99 of the property value. If the property is invalid,
100 get_composition_id returns -1 without changing the property value.
ca4c9455 101
763d7377 102 We use two tables to keep the information about composition;
ca4c9455
KH
103 composition_hash_table and composition_table.
104
763d7377 105 The former is a hash table whose keys are COMPONENTS-VECs and
ca4c9455 106 values are the corresponding COMPOSITION-IDs. This hash table is
4abc7470 107 weak, but as each key (COMPONENTS-VEC) is also kept as a value of the
ca4c9455 108 `composition' property, it won't be collected as garbage until all
4abc7470 109 bits of text that have the same COMPONENTS-VEC are deleted.
ca4c9455
KH
110
111 The latter is a table of pointers to `struct composition' indexed
4abc7470 112 by COMPOSITION-ID. This structure keeps the other information (see
ca4c9455
KH
113 composite.h).
114
115 In general, a text property holds information about individual
116 characters. But, a `composition' property holds information about
4abc7470 117 a sequence of characters (in this sense, it is like the `intangible'
ca4c9455 118 property). That means that we should not share the property value
4abc7470 119 in adjacent compositions -- we can't distinguish them if they have the
ca4c9455
KH
120 same property. So, after any changes, we call
121 `update_compositions' and change a property of one of adjacent
122 compositions to a copy of it. This function also runs a proper
123 composition modification function to make a composition that gets
124 invalid by the change valid again.
125
4abc7470 126 As the value of the `composition' property holds information about a
ca4c9455 127 specific range of text, the value gets invalid if we change the
4abc7470 128 text in the range. We treat the `composition' property as always
ca4c9455
KH
129 rear-nonsticky (currently by setting default-text-properties to
130 (rear-nonsticky (composition))) and we never make properties of
131 adjacent compositions identical. Thus, any such changes make the
4abc7470 132 range just shorter. So, we can check the validity of the `composition'
ca4c9455
KH
133 property by comparing LENGTH information with the actual length of
134 the composition.
135
136*/
137
138
139Lisp_Object Qcomposition;
140
141/* Table of pointers to the structure `composition' indexed by
142 COMPOSITION-ID. This structure is for storing information about
143 each composition except for COMPONENTS-VEC. */
144struct composition **composition_table;
145
146/* The current size of `composition_table'. */
ebfa62c0 147static ptrdiff_t composition_table_size;
ca4c9455
KH
148
149/* Number of compositions currently made. */
ebfa62c0 150ptrdiff_t n_compositions;
ca4c9455
KH
151
152/* Hash table for compositions. The key is COMPONENTS-VEC of
153 `composition' property. The value is the corresponding
154 COMPOSITION-ID. */
155Lisp_Object composition_hash_table;
156
955cbe7b
PE
157static Lisp_Object Qauto_composed;
158static Lisp_Object Qauto_composition_function;
763d7377
EZ
159/* Maximum number of characters to look back for
160 auto-compositions. */
895416e3
KH
161#define MAX_AUTO_COMPOSITION_LOOKBACK 3
162
ca4c9455
KH
163/* Temporary variable used in macros COMPOSITION_XXX. */
164Lisp_Object composition_temp;
f30d8d94 165
ca4c9455 166\f
ca4c9455
KH
167/* Return COMPOSITION-ID of a composition at buffer position
168 CHARPOS/BYTEPOS and length NCHARS. The `composition' property of
169 the sequence is PROP. STRING, if non-nil, is a string that
170 contains the composition instead of the current buffer.
171
172 If the composition is invalid, return -1. */
173
ebfa62c0 174ptrdiff_t
d311d28c 175get_composition_id (ptrdiff_t charpos, ptrdiff_t bytepos, ptrdiff_t nchars,
579c18d0 176 Lisp_Object prop, Lisp_Object string)
ca4c9455
KH
177{
178 Lisp_Object id, length, components, key, *key_contents;
d86d0d74 179 ptrdiff_t glyph_len;
ca4c9455 180 struct Lisp_Hash_Table *hash_table = XHASH_TABLE (composition_hash_table);
d3411f89 181 ptrdiff_t hash_index;
0de4bb68 182 EMACS_UINT hash_code;
d86d0d74 183 enum composition_method method;
ca4c9455 184 struct composition *cmp;
d311d28c 185 ptrdiff_t i;
579c18d0 186 int ch;
ca4c9455 187
0065d054
PE
188 /* Maximum length of a string of glyphs. XftGlyphExtents limits
189 this to INT_MAX, and Emacs limits it further. Divide INT_MAX - 1
190 by 2 because x_produce_glyphs computes glyph_len * 2 + 1. Divide
191 the size by MAX_MULTIBYTE_LENGTH because encode_terminal_code
192 multiplies glyph_len by MAX_MULTIBYTE_LENGTH. */
d86d0d74 193 enum {
0065d054
PE
194 GLYPH_LEN_MAX = min ((INT_MAX - 1) / 2,
195 min (PTRDIFF_MAX, SIZE_MAX) / MAX_MULTIBYTE_LENGTH)
d86d0d74
PE
196 };
197
ca4c9455
KH
198 /* PROP should be
199 Form-A: ((LENGTH . COMPONENTS) . MODIFICATION-FUNC)
200 or
201 Form-B: (COMPOSITION-ID . (LENGTH COMPONENTS-VEC . MODIFICATION-FUNC))
202 */
203 if (nchars == 0 || !CONSP (prop))
204 goto invalid_composition;
205
206 id = XCAR (prop);
207 if (INTEGERP (id))
208 {
209 /* PROP should be Form-B. */
210 if (XINT (id) < 0 || XINT (id) >= n_compositions)
211 goto invalid_composition;
212 return XINT (id);
213 }
214
215 /* PROP should be Form-A.
216 Thus, ID should be (LENGTH . COMPONENTS). */
217 if (!CONSP (id))
218 goto invalid_composition;
219 length = XCAR (id);
220 if (!INTEGERP (length) || XINT (length) != nchars)
221 goto invalid_composition;
222
223 components = XCDR (id);
224
225 /* Check if the same composition has already been registered or not
226 by consulting composition_hash_table. The key for this table is
227 COMPONENTS (converted to a vector COMPONENTS-VEC) or, if it is
228 nil, vector of characters in the composition range. */
229 if (INTEGERP (components))
230 key = Fmake_vector (make_number (1), components);
231 else if (STRINGP (components) || CONSP (components))
232 key = Fvconcat (1, &components);
233 else if (VECTORP (components))
234 key = components;
235 else if (NILP (components))
236 {
3bfc46eb 237 key = make_uninit_vector (nchars);
ca4c9455
KH
238 if (STRINGP (string))
239 for (i = 0; i < nchars; i++)
240 {
241 FETCH_STRING_CHAR_ADVANCE (ch, string, charpos, bytepos);
28be1ada 242 ASET (key, i, make_number (ch));
ca4c9455
KH
243 }
244 else
245 for (i = 0; i < nchars; i++)
246 {
247 FETCH_CHAR_ADVANCE (ch, charpos, bytepos);
28be1ada 248 ASET (key, i, make_number (ch));
ca4c9455
KH
249 }
250 }
251 else
252 goto invalid_composition;
253
254 hash_index = hash_lookup (hash_table, key, &hash_code);
255 if (hash_index >= 0)
256 {
257 /* We have already registered the same composition. Change PROP
258 from Form-A above to Form-B while replacing COMPONENTS with
259 COMPONENTS-VEC stored in the hash table. We can directly
260 modify the cons cell of PROP because it is not shared. */
261 key = HASH_KEY (hash_table, hash_index);
262 id = HASH_VALUE (hash_table, hash_index);
f3fbd155
KR
263 XSETCAR (prop, id);
264 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop))));
ca4c9455
KH
265 return XINT (id);
266 }
267
268 /* This composition is a new one. We must register it. */
177c0ea7 269
ca4c9455 270 /* Check if we have sufficient memory to store this information. */
0065d054
PE
271 if (composition_table_size <= n_compositions)
272 composition_table = xpalloc (composition_table, &composition_table_size,
273 1, -1, sizeof *composition_table);
ca4c9455
KH
274
275 key_contents = XVECTOR (key)->contents;
276
277 /* Check if the contents of COMPONENTS are valid if COMPONENTS is a
278 vector or a list. It should be a sequence of:
279 char1 rule1 char2 rule2 char3 ... ruleN charN+1 */
f30d8d94 280
dd5e1ed4 281 if (VECTORP (components)
f30d8d94
KH
282 && ASIZE (components) >= 2
283 && VECTORP (AREF (components, 0)))
284 {
285 /* COMPONENTS is a glyph-string. */
d311d28c 286 ptrdiff_t len = ASIZE (key);
f30d8d94
KH
287
288 for (i = 1; i < len; i++)
289 if (! VECTORP (AREF (key, i)))
290 goto invalid_composition;
291 }
dd5e1ed4 292 else if (VECTORP (components) || CONSP (components))
ca4c9455 293 {
d311d28c 294 ptrdiff_t len = ASIZE (key);
ca4c9455
KH
295
296 /* The number of elements should be odd. */
297 if ((len % 2) == 0)
298 goto invalid_composition;
299 /* All elements should be integers (character or encoded
300 composition rule). */
301 for (i = 0; i < len; i++)
302 {
303 if (!INTEGERP (key_contents[i]))
304 goto invalid_composition;
305 }
306 }
307
308 /* Change PROP from Form-A above to Form-B. We can directly modify
309 the cons cell of PROP because it is not shared. */
310 XSETFASTINT (id, n_compositions);
f3fbd155
KR
311 XSETCAR (prop, id);
312 XSETCDR (prop, Fcons (make_number (nchars), Fcons (key, XCDR (prop))));
ca4c9455
KH
313
314 /* Register the composition in composition_hash_table. */
315 hash_index = hash_put (hash_table, key, id, hash_code);
316
d86d0d74
PE
317 method = (NILP (components)
318 ? COMPOSITION_RELATIVE
319 : ((INTEGERP (components) || STRINGP (components))
320 ? COMPOSITION_WITH_ALTCHARS
321 : COMPOSITION_WITH_RULE_ALTCHARS));
322
323 glyph_len = (method == COMPOSITION_WITH_RULE_ALTCHARS
324 ? (ASIZE (key) + 1) / 2
325 : ASIZE (key));
326
0065d054 327 if (GLYPH_LEN_MAX < glyph_len)
d86d0d74
PE
328 memory_full (SIZE_MAX);
329
ca4c9455 330 /* Register the composition in composition_table. */
38182d90 331 cmp = xmalloc (sizeof *cmp);
ca4c9455 332
d86d0d74 333 cmp->method = method;
ca4c9455 334 cmp->hash_index = hash_index;
ca4c9455 335 cmp->glyph_len = glyph_len;
0065d054 336 cmp->offsets = xnmalloc (glyph_len, 2 * sizeof *cmp->offsets);
ca4c9455
KH
337 cmp->font = NULL;
338
58753d74 339 if (cmp->method != COMPOSITION_WITH_RULE_ALTCHARS)
ca4c9455
KH
340 {
341 /* Relative composition. */
342 cmp->width = 0;
343 for (i = 0; i < glyph_len; i++)
344 {
345 int this_width;
346 ch = XINT (key_contents[i]);
bd01620e
EZ
347 /* TAB in a composition means display glyphs with padding
348 space on the left or right. */
8e86803c 349 this_width = (ch == '\t' ? 1 : CHAR_WIDTH (ch));
ca4c9455
KH
350 if (cmp->width < this_width)
351 cmp->width = this_width;
352 }
353 }
354 else
355 {
356 /* Rule-base composition. */
cb3c2e3e 357 double leftmost = 0.0, rightmost;
ca4c9455
KH
358
359 ch = XINT (key_contents[0]);
69df789a 360 rightmost = ch != '\t' ? CHAR_WIDTH (ch) : 1;
ca4c9455
KH
361
362 for (i = 1; i < glyph_len; i += 2)
363 {
b13a45c6 364 int rule, gref, nref;
ca4c9455 365 int this_width;
cb3c2e3e 366 double this_left;
ca4c9455
KH
367
368 rule = XINT (key_contents[i]);
369 ch = XINT (key_contents[i + 1]);
69df789a 370 this_width = ch != '\t' ? CHAR_WIDTH (ch) : 1;
ca4c9455
KH
371
372 /* A composition rule is specified by an integer value
373 that encodes global and new reference points (GREF and
374 NREF). GREF and NREF are specified by numbers as
375 below:
376 0---1---2 -- ascent
377 | |
378 | |
379 | |
380 9--10--11 -- center
381 | |
382 ---3---4---5--- baseline
383 | |
384 6---7---8 -- descent
385 */
b13a45c6 386 COMPOSITION_DECODE_REFS (rule, gref, nref);
ca4c9455
KH
387 this_left = (leftmost
388 + (gref % 3) * (rightmost - leftmost) / 2.0
389 - (nref % 3) * this_width / 2.0);
390
391 if (this_left < leftmost)
392 leftmost = this_left;
393 if (this_left + this_width > rightmost)
394 rightmost = this_left + this_width;
395 }
396
397 cmp->width = rightmost - leftmost;
398 if (cmp->width < (rightmost - leftmost))
399 /* To get a ceiling integer value. */
400 cmp->width++;
401 }
402
403 composition_table[n_compositions] = cmp;
404
405 return n_compositions++;
406
407 invalid_composition:
408 /* Would it be better to remove this `composition' property? */
409 return -1;
410}
411
412\f
90b3fe91
KH
413/* Find a static composition at or nearest to position POS of OBJECT
414 (buffer or string).
ca4c9455
KH
415
416 OBJECT defaults to the current buffer. If there's a composition at
417 POS, set *START and *END to the start and end of the sequence,
418 *PROP to the `composition' property, and return 1.
419
420 If there's no composition at POS and LIMIT is negative, return 0.
421
422 Otherwise, search for a composition forward (LIMIT > POS) or
423 backward (LIMIT < POS). In this case, LIMIT bounds the search.
424
425 If a composition is found, set *START, *END, and *PROP as above,
426 and return 1, else return 0.
427
428 This doesn't check the validity of composition. */
429
de1339b0 430bool
d311d28c
PE
431find_composition (ptrdiff_t pos, ptrdiff_t limit,
432 ptrdiff_t *start, ptrdiff_t *end,
579c18d0 433 Lisp_Object *prop, Lisp_Object object)
ca4c9455
KH
434{
435 Lisp_Object val;
436
437 if (get_property_and_range (pos, Qcomposition, prop, start, end, object))
438 return 1;
439
440 if (limit < 0 || limit == pos)
441 return 0;
442
443 if (limit > pos) /* search forward */
d279f620
KH
444 {
445 val = Fnext_single_property_change (make_number (pos), Qcomposition,
446 object, make_number (limit));
447 pos = XINT (val);
448 if (pos == limit)
449 return 0;
450 }
ca4c9455 451 else /* search backward */
d279f620
KH
452 {
453 if (get_property_and_range (pos - 1, Qcomposition, prop, start, end,
454 object))
455 return 1;
456 val = Fprevious_single_property_change (make_number (pos), Qcomposition,
457 object, make_number (limit));
458 pos = XINT (val);
459 if (pos == limit)
460 return 0;
461 pos--;
462 }
ca4c9455
KH
463 get_property_and_range (pos, Qcomposition, prop, start, end, object);
464 return 1;
465}
466
467/* Run a proper function to adjust the composition sitting between
468 FROM and TO with property PROP. */
469
470static void
d311d28c 471run_composition_function (ptrdiff_t from, ptrdiff_t to, Lisp_Object prop)
ca4c9455 472{
7d019510 473 Lisp_Object func;
d311d28c 474 ptrdiff_t start, end;
ca4c9455
KH
475
476 func = COMPOSITION_MODIFICATION_FUNC (prop);
477 /* If an invalid composition precedes or follows, try to make them
478 valid too. */
479 if (from > BEGV
480 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)
481 && !COMPOSITION_VALID_P (start, end, prop))
482 from = start;
483 if (to < ZV
484 && find_composition (to, -1, &start, &end, &prop, Qnil)
485 && !COMPOSITION_VALID_P (start, end, prop))
486 to = end;
775b3d2d 487 if (!NILP (Ffboundp (func)))
ca4c9455 488 call2 (func, make_number (from), make_number (to));
ca4c9455
KH
489}
490
491/* Make invalid compositions adjacent to or inside FROM and TO valid.
492 CHECK_MASK is bitwise `or' of mask bits defined by macros
493 CHECK_XXX (see the comment in composite.h).
494
b418f8a6 495 It also resets the text-property `auto-composed' to a proper region
f96ba4c1
KH
496 so that automatic character composition works correctly later while
497 displaying the region.
8f924df7 498
ca4c9455
KH
499 This function is called when a buffer text is changed. If the
500 change is deletion, FROM == TO. Otherwise, FROM < TO. */
501
502void
d311d28c 503update_compositions (ptrdiff_t from, ptrdiff_t to, int check_mask)
ca4c9455 504{
7d019510 505 Lisp_Object prop;
d311d28c 506 ptrdiff_t start, end;
f96ba4c1
KH
507 /* The beginning and end of the region to set the property
508 `auto-composed' to nil. */
d311d28c 509 ptrdiff_t min_pos = from, max_pos = to;
ca4c9455 510
6c1aa7f1
GM
511 if (inhibit_modification_hooks)
512 return;
177c0ea7 513
d3f40cbd
KH
514 /* If FROM and TO are not in a valid range, do nothing. */
515 if (! (BEGV <= from && from <= to && to <= ZV))
516 return;
517
ca4c9455
KH
518 if (check_mask & CHECK_HEAD)
519 {
520 /* FROM should be at composition boundary. But, insertion or
521 deletion will make two compositions adjacent and
522 indistinguishable when they have same (eq) property. To
523 avoid it, in such a case, we change the property of the
524 latter to the copy of it. */
525 if (from > BEGV
553d3164
KH
526 && find_composition (from - 1, -1, &start, &end, &prop, Qnil)
527 && COMPOSITION_VALID_P (start, end, prop))
ca4c9455 528 {
f96ba4c1
KH
529 min_pos = start;
530 if (end > to)
531 max_pos = end;
ca4c9455
KH
532 if (from < end)
533 Fput_text_property (make_number (from), make_number (end),
534 Qcomposition,
535 Fcons (XCAR (prop), XCDR (prop)), Qnil);
536 run_composition_function (start, end, prop);
537 from = end;
538 }
dd33cc56 539 else if (from < ZV
553d3164 540 && find_composition (from, -1, &start, &from, &prop, Qnil)
9657d668 541 && COMPOSITION_VALID_P (start, from, prop))
f96ba4c1
KH
542 {
543 if (from > to)
544 max_pos = from;
545 run_composition_function (start, from, prop);
546 }
ca4c9455
KH
547 }
548
549 if (check_mask & CHECK_INSIDE)
550 {
551 /* In this case, we are sure that (check & CHECK_TAIL) is also
552 nonzero. Thus, here we should check only compositions before
553 (to - 1). */
554 while (from < to - 1
555 && find_composition (from, to, &start, &from, &prop, Qnil)
9657d668 556 && COMPOSITION_VALID_P (start, from, prop)
ca4c9455
KH
557 && from < to - 1)
558 run_composition_function (start, from, prop);
559 }
560
561 if (check_mask & CHECK_TAIL)
562 {
563 if (from < to
553d3164
KH
564 && find_composition (to - 1, -1, &start, &end, &prop, Qnil)
565 && COMPOSITION_VALID_P (start, end, prop))
ca4c9455
KH
566 {
567 /* TO should be also at composition boundary. But,
568 insertion or deletion will make two compositions adjacent
569 and indistinguishable when they have same (eq) property.
570 To avoid it, in such a case, we change the property of
571 the former to the copy of it. */
572 if (to < end)
f96ba4c1
KH
573 {
574 Fput_text_property (make_number (start), make_number (to),
575 Qcomposition,
576 Fcons (XCAR (prop), XCDR (prop)), Qnil);
577 max_pos = end;
578 }
ca4c9455
KH
579 run_composition_function (start, end, prop);
580 }
581 else if (to < ZV
553d3164
KH
582 && find_composition (to, -1, &start, &end, &prop, Qnil)
583 && COMPOSITION_VALID_P (start, end, prop))
f96ba4c1
KH
584 {
585 run_composition_function (start, end, prop);
586 max_pos = end;
587 }
ca4c9455 588 }
f96ba4c1 589 if (min_pos < max_pos)
9d440521 590 {
d311d28c 591 ptrdiff_t count = SPECPDL_INDEX ();
9d440521
KH
592
593 specbind (Qinhibit_read_only, Qt);
594 specbind (Qinhibit_modification_hooks, Qt);
595 specbind (Qinhibit_point_motion_hooks, Qt);
596 Fremove_list_of_text_properties (make_number (min_pos),
597 make_number (max_pos),
598 Fcons (Qauto_composed, Qnil), Qnil);
599 unbind_to (count, Qnil);
600 }
ca4c9455
KH
601}
602
c1361885
KH
603
604/* Modify composition property values in LIST destructively. LIST is
605 a list as returned from text_property_list. Change values to the
606 top-level copies of them so that none of them are `eq'. */
607
608void
971de7fb 609make_composition_value_copy (Lisp_Object list)
c1361885
KH
610{
611 Lisp_Object plist, val;
612
613 for (; CONSP (list); list = XCDR (list))
614 {
615 plist = XCAR (XCDR (XCDR (XCAR (list))));
616 while (CONSP (plist) && CONSP (XCDR (plist)))
617 {
618 if (EQ (XCAR (plist), Qcomposition)
619 && (val = XCAR (XCDR (plist)), CONSP (val)))
f3fbd155 620 XSETCAR (XCDR (plist), Fcons (XCAR (val), XCDR (val)));
c1361885
KH
621 plist = XCDR (XCDR (plist));
622 }
623 }
624}
625
626
ca4c9455
KH
627/* Make text in the region between START and END a composition that
628 has COMPONENTS and MODIFICATION-FUNC.
629
630 If STRING is non-nil, then operate on characters contained between
631 indices START and END in STRING. */
632
633void
d311d28c 634compose_text (ptrdiff_t start, ptrdiff_t end, Lisp_Object components,
579c18d0 635 Lisp_Object modification_func, Lisp_Object string)
ca4c9455
KH
636{
637 Lisp_Object prop;
638
639 prop = Fcons (Fcons (make_number (end - start), components),
640 modification_func);
641 Fput_text_property (make_number (start), make_number (end),
642 Qcomposition, prop, string);
643}
58753d74 644
5a655b9f 645/* Lisp glyph-string handlers. */
58753d74
KH
646
647/* Hash table for automatic composition. The key is a header of a
648 lgstring (Lispy glyph-string), and the value is a body of a
649 lgstring. */
650
651static Lisp_Object gstring_hash_table;
652
f57e2426 653static Lisp_Object gstring_lookup_cache (Lisp_Object);
58753d74
KH
654
655static Lisp_Object
971de7fb 656gstring_lookup_cache (Lisp_Object header)
58753d74
KH
657{
658 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
d3411f89 659 ptrdiff_t i = hash_lookup (h, header, NULL);
58753d74
KH
660
661 return (i >= 0 ? HASH_VALUE (h, i) : Qnil);
662}
663
664Lisp_Object
d311d28c 665composition_gstring_put_cache (Lisp_Object gstring, ptrdiff_t len)
58753d74
KH
666{
667 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
0de4bb68 668 EMACS_UINT hash;
58753d74 669 Lisp_Object header, copy;
d311d28c 670 ptrdiff_t i;
58753d74
KH
671
672 header = LGSTRING_HEADER (gstring);
b7432bb2 673 hash = h->test.hashfn (&h->test, header);
58753d74
KH
674 if (len < 0)
675 {
d311d28c 676 ptrdiff_t j, glyph_len = LGSTRING_GLYPH_LEN (gstring);
27ccc379
PE
677 for (j = 0; j < glyph_len; j++)
678 if (NILP (LGSTRING_GLYPH (gstring, j)))
58753d74 679 break;
27ccc379 680 len = j;
58753d74 681 }
087e2ea9 682
d311d28c 683 lint_assume (len <= TYPE_MAXIMUM (ptrdiff_t) - 2);
58753d74
KH
684 copy = Fmake_vector (make_number (len + 2), Qnil);
685 LGSTRING_SET_HEADER (copy, Fcopy_sequence (header));
686 for (i = 0; i < len; i++)
687 LGSTRING_SET_GLYPH (copy, i, Fcopy_sequence (LGSTRING_GLYPH (gstring, i)));
688 i = hash_put (h, LGSTRING_HEADER (copy), copy, hash);
689 LGSTRING_SET_ID (copy, make_number (i));
690 return copy;
691}
692
693Lisp_Object
ebfa62c0 694composition_gstring_from_id (ptrdiff_t id)
58753d74
KH
695{
696 struct Lisp_Hash_Table *h = XHASH_TABLE (gstring_hash_table);
697
698 return HASH_VALUE (h, id);
699}
700
de1339b0 701bool
971de7fb 702composition_gstring_p (Lisp_Object gstring)
58753d74
KH
703{
704 Lisp_Object header;
d311d28c 705 ptrdiff_t i;
58753d74
KH
706
707 if (! VECTORP (gstring) || ASIZE (gstring) < 2)
708 return 0;
709 header = LGSTRING_HEADER (gstring);
710 if (! VECTORP (header) || ASIZE (header) < 2)
711 return 0;
712 if (! NILP (LGSTRING_FONT (gstring))
f5199465
KH
713 && (! FONT_OBJECT_P (LGSTRING_FONT (gstring))
714 && ! CODING_SYSTEM_P (LGSTRING_FONT (gstring))))
58753d74
KH
715 return 0;
716 for (i = 1; i < ASIZE (LGSTRING_HEADER (gstring)); i++)
717 if (! NATNUMP (AREF (LGSTRING_HEADER (gstring), i)))
718 return 0;
719 if (! NILP (LGSTRING_ID (gstring)) && ! NATNUMP (LGSTRING_ID (gstring)))
720 return 0;
721 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
722 {
723 Lisp_Object glyph = LGSTRING_GLYPH (gstring, i);
724 if (NILP (glyph))
725 break;
726 if (! VECTORP (glyph) || ASIZE (glyph) != LGLYPH_SIZE)
727 return 0;
728 }
729 return 1;
730}
731
732int
d311d28c 733composition_gstring_width (Lisp_Object gstring, ptrdiff_t from, ptrdiff_t to,
579c18d0 734 struct font_metrics *metrics)
58753d74
KH
735{
736 Lisp_Object *glyph;
737 int width = 0;
738
739 if (metrics)
740 {
741 Lisp_Object font_object = LGSTRING_FONT (gstring);
58753d74 742
f5199465
KH
743 if (FONT_OBJECT_P (font_object))
744 {
745 struct font *font = XFONT_OBJECT (font_object);
746
747 metrics->ascent = font->ascent;
748 metrics->descent = font->descent;
749 }
750 else
751 {
752 metrics->ascent = 1;
753 metrics->descent = 0;
754 }
58753d74
KH
755 metrics->width = metrics->lbearing = metrics->rbearing = 0;
756 }
4939150c 757 for (glyph = lgstring_glyph_addr (gstring, from); from < to; from++, glyph++)
58753d74
KH
758 {
759 int x;
760
761 if (NILP (LGLYPH_ADJUSTMENT (*glyph)))
762 width += LGLYPH_WIDTH (*glyph);
763 else
764 width += LGLYPH_WADJUST (*glyph);
765 if (metrics)
766 {
767 x = metrics->width + LGLYPH_LBEARING (*glyph) + LGLYPH_XOFF (*glyph);
768 if (metrics->lbearing > x)
769 metrics->lbearing = x;
770 x = metrics->width + LGLYPH_RBEARING (*glyph) + LGLYPH_XOFF (*glyph);
771 if (metrics->rbearing < x)
772 metrics->rbearing = x;
773 metrics->width = width;
774 x = LGLYPH_ASCENT (*glyph) - LGLYPH_YOFF (*glyph);
775 if (metrics->ascent < x)
776 metrics->ascent = x;
895416e3 777 x = LGLYPH_DESCENT (*glyph) + LGLYPH_YOFF (*glyph);
58753d74
KH
778 if (metrics->descent < x)
779 metrics->descent = x;
780 }
781 }
782 return width;
783}
784
785
786static Lisp_Object gstring_work;
787static Lisp_Object gstring_work_headers;
788
789static Lisp_Object
0063fdb1
DA
790fill_gstring_header (Lisp_Object header, Lisp_Object start, Lisp_Object end,
791 Lisp_Object font_object, Lisp_Object string)
58753d74 792{
d311d28c
PE
793 ptrdiff_t from, to, from_byte;
794 ptrdiff_t len, i;
58753d74
KH
795
796 if (NILP (string))
797 {
4b4deea2 798 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
58753d74
KH
799 error ("Attempt to shape unibyte text");
800 validate_region (&start, &end);
801 from = XFASTINT (start);
802 to = XFASTINT (end);
803 from_byte = CHAR_TO_BYTE (from);
804 }
805 else
806 {
807 CHECK_STRING (string);
793ffee8 808 if (! STRING_MULTIBYTE (string))
58753d74 809 error ("Attempt to shape unibyte text");
d311d28c
PE
810 /* The caller checks that START and END are nonnegative integers. */
811 if (! (XINT (start) <= XINT (end) && XINT (end) <= SCHARS (string)))
812 args_out_of_range_3 (string, start, end);
58753d74 813 from = XINT (start);
58753d74 814 to = XINT (end);
58753d74
KH
815 from_byte = string_char_to_byte (string, from);
816 }
817
818 len = to - from;
819 if (len == 0)
820 error ("Attempt to shape zero-length text");
821 if (VECTORP (header))
822 {
823 if (ASIZE (header) != len + 1)
824 args_out_of_range (header, make_number (len + 1));
825 }
826 else
827 {
828 if (len <= 8)
829 header = AREF (gstring_work_headers, len - 1);
830 else
3bfc46eb 831 header = make_uninit_vector (len + 1);
58753d74
KH
832 }
833
834 ASET (header, 0, font_object);
835 for (i = 0; i < len; i++)
836 {
837 int c;
838
839 if (NILP (string))
840 FETCH_CHAR_ADVANCE_NO_CHECK (c, from, from_byte);
841 else
842 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, from, from_byte);
843 ASET (header, i + 1, make_number (c));
844 }
845 return header;
846}
847
58753d74 848static void
971de7fb 849fill_gstring_body (Lisp_Object gstring)
58753d74
KH
850{
851 Lisp_Object font_object = LGSTRING_FONT (gstring);
852 Lisp_Object header = AREF (gstring, 0);
d311d28c
PE
853 ptrdiff_t len = LGSTRING_CHAR_LEN (gstring);
854 ptrdiff_t i;
58753d74
KH
855
856 for (i = 0; i < len; i++)
857 {
858 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
f8c86b69 859 int c = XFASTINT (AREF (header, i + 1));
58753d74
KH
860
861 if (NILP (g))
862 {
863 g = LGLYPH_NEW ();
864 LGSTRING_SET_GLYPH (gstring, i, g);
865 }
866 LGLYPH_SET_FROM (g, i);
867 LGLYPH_SET_TO (g, i);
868 LGLYPH_SET_CHAR (g, c);
f5199465 869 if (FONT_OBJECT_P (font_object))
58753d74
KH
870 {
871 font_fill_lglyph_metrics (g, font_object);
872 }
873 else
874 {
875 int width = XFASTINT (CHAR_TABLE_REF (Vchar_width_table, c));
876
877 LGLYPH_SET_CODE (g, c);
878 LGLYPH_SET_LBEARING (g, 0);
879 LGLYPH_SET_RBEARING (g, width);
880 LGLYPH_SET_WIDTH (g, width);
881 LGLYPH_SET_ASCENT (g, 1);
882 LGLYPH_SET_DESCENT (g, 0);
883 }
884 LGLYPH_SET_ADJUSTMENT (g, Qnil);
885 }
886 if (i < LGSTRING_GLYPH_LEN (gstring))
887 LGSTRING_SET_GLYPH (gstring, i, Qnil);
888}
889
58753d74 890
10f72a37
KH
891/* Try to compose the characters at CHARPOS according to composition
892 rule RULE ([PATTERN PREV-CHARS FUNC]). LIMIT limits the characters
893 to compose. STRING, if not nil, is a target string. WIN is a
894 window where the characters are being displayed. If characters are
895 successfully composed, return the composition as a glyph-string
896 object. Otherwise return nil. */
58753d74
KH
897
898static Lisp_Object
5a655b9f
DA
899autocmp_chars (Lisp_Object rule, ptrdiff_t charpos, ptrdiff_t bytepos,
900 ptrdiff_t limit, struct window *win, struct face *face,
901 Lisp_Object string)
58753d74 902{
d311d28c 903 ptrdiff_t count = SPECPDL_INDEX ();
d3d50620 904 FRAME_PTR f = XFRAME (win->frame);
58753d74 905 Lisp_Object pos = make_number (charpos);
d311d28c
PE
906 ptrdiff_t to;
907 ptrdiff_t pt = PT, pt_byte = PT_BYTE;
10f72a37 908 Lisp_Object re, font_object, lgstring;
d311d28c 909 ptrdiff_t len;
087e2ea9 910
58753d74 911 record_unwind_save_match_data ();
10f72a37
KH
912 re = AREF (rule, 0);
913 if (NILP (re))
914 len = 1;
915 else if (! STRINGP (re))
916 return unbind_to (count, Qnil);
917 else if ((len = fast_looking_at (re, charpos, bytepos, limit, -1, string))
918 > 0)
58753d74 919 {
10f72a37
KH
920 if (NILP (string))
921 len = BYTE_TO_CHAR (bytepos + len) - charpos;
922 else
923 len = string_byte_to_char (string, bytepos + len) - charpos;
924 }
925 if (len <= 0)
926 return unbind_to (count, Qnil);
927 to = limit = charpos + len;
58753d74 928#ifdef HAVE_WINDOW_SYSTEM
10f72a37
KH
929 if (FRAME_WINDOW_P (f))
930 {
5a655b9f 931 font_object = font_range (charpos, bytepos, &to, win, face, string);
10f72a37
KH
932 if (! FONT_OBJECT_P (font_object)
933 || (! NILP (re)
934 && to < limit
935 && (fast_looking_at (re, charpos, bytepos, to, -1, string) <= 0)))
936 return unbind_to (count, Qnil);
937 }
938 else
58753d74 939#endif /* not HAVE_WINDOW_SYSTEM */
d3d50620 940 font_object = win->frame;
10f72a37
KH
941 lgstring = Fcomposition_get_gstring (pos, make_number (to), font_object,
942 string);
943 if (NILP (LGSTRING_ID (lgstring)))
944 {
10f72a37
KH
945 /* Save point as marker before calling out to lisp. */
946 if (NILP (string))
657924ff
DA
947 record_unwind_protect (restore_point_unwind,
948 build_marker (current_buffer, pt, pt_byte));
6cd7a139
DA
949 lgstring = safe_call (6, Vauto_composition_function, AREF (rule, 2),
950 pos, make_number (to), font_object, string);
58753d74 951 }
10f72a37 952 return unbind_to (count, lgstring);
58753d74
KH
953}
954
82ebc97b 955static Lisp_Object _work_val;
82ebc97b 956
f6aa6ec6
KH
957/* 1 iff the character C is composable. Characters of general
958 category Z? or C? are not composable except for ZWNJ and ZWJ. */
959
82ebc97b 960#define CHAR_COMPOSABLE_P(C) \
a28d4396
KH
961 ((C) > ' ' \
962 && ((C) == 0x200C || (C) == 0x200D \
963 || (_work_val = CHAR_TABLE_REF (Vunicode_category_table, (C)), \
c805dec0
KH
964 (INTEGERP (_work_val) \
965 && (XINT (_work_val) <= UNICODE_CATEGORY_So)))))
58753d74
KH
966
967/* Update cmp_it->stop_pos to the next position after CHARPOS (and
968 BYTEPOS) where character composition may happen. If BYTEPOS is
82ebc97b
KH
969 negative, compute it. ENDPOS is a limit of searching. If it is
970 less than CHARPOS, search backward to ENDPOS+1 assuming that
971 set_iterator_to_next works in reverse order. In this case, if a
972 composition closest to CHARPOS is found, set cmp_it->stop_pos to
973 the last character of the composition.
974
975 If no composition is found, set cmp_it->ch to -2. If a static
976 composition is found, set cmp_it->ch to -1. Otherwise, set
977 cmp_it->ch to the character that triggers the automatic
978 composition. */
58753d74
KH
979
980void
d311d28c 981composition_compute_stop_pos (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff_t bytepos, ptrdiff_t endpos, Lisp_Object string)
58753d74 982{
d311d28c 983 ptrdiff_t start, end;
f8c86b69 984 int c;
58753d74 985 Lisp_Object prop, val;
3ffdafce
KH
986 /* This is from forward_to_next_line_start in xdisp.c. */
987 const int MAX_NEWLINE_DISTANCE = 500;
58753d74 988
82ebc97b
KH
989 if (charpos < endpos)
990 {
991 if (endpos > charpos + MAX_NEWLINE_DISTANCE)
992 endpos = charpos + MAX_NEWLINE_DISTANCE;
993 }
994 else if (endpos < charpos)
995 {
996 /* We search backward for a position to check composition. */
997 if (endpos < 0)
998 {
999 /* But we don't know where to stop the searching. */
1000 endpos = NILP (string) ? BEGV - 1 : -1;
1001 /* Usually we don't reach ENDPOS because we stop searching
1002 at an uncomposable character (NL, LRE, etc). */
1003 }
1004 }
053ca52b 1005 cmp_it->id = -1;
44566dc7 1006 cmp_it->ch = -2;
82ebc97b
KH
1007 cmp_it->reversed_p = 0;
1008 cmp_it->stop_pos = endpos;
1009 if (charpos == endpos)
1010 return;
1011 /* FIXME: Bidi is not yet handled well in static composition. */
1012 if (charpos < endpos
1013 && find_composition (charpos, endpos, &start, &end, &prop, string)
15fa4783 1014 && start >= charpos
58753d74
KH
1015 && COMPOSITION_VALID_P (start, end, prop))
1016 {
1017 cmp_it->stop_pos = endpos = start;
1018 cmp_it->ch = -1;
1019 }
4b4deea2 1020 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
d9a7c140 1021 || NILP (Vauto_composition_mode))
58753d74
KH
1022 return;
1023 if (bytepos < 0)
1024 {
82ebc97b 1025 if (NILP (string))
58753d74 1026 bytepos = CHAR_TO_BYTE (charpos);
82ebc97b
KH
1027 else
1028 bytepos = string_char_to_byte (string, charpos);
58753d74
KH
1029 }
1030
1031 start = charpos;
82ebc97b 1032 if (charpos < endpos)
58753d74 1033 {
82ebc97b
KH
1034 /* Forward search. */
1035 while (charpos < endpos)
ea8ba975 1036 {
82ebc97b
KH
1037 if (STRINGP (string))
1038 FETCH_STRING_CHAR_ADVANCE (c, string, charpos, bytepos);
1039 else
1040 FETCH_CHAR_ADVANCE (c, charpos, bytepos);
1041 if (c == '\n')
1042 {
1043 cmp_it->ch = -2;
1044 break;
1045 }
1046 val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1047 if (! NILP (val))
1048 {
1049 Lisp_Object elt;
10f72a37 1050 int ridx;
82ebc97b 1051
10f72a37 1052 for (ridx = 0; CONSP (val); val = XCDR (val), ridx++)
82ebc97b
KH
1053 {
1054 elt = XCAR (val);
1055 if (VECTORP (elt) && ASIZE (elt) == 3
1056 && NATNUMP (AREF (elt, 1))
1057 && charpos - 1 - XFASTINT (AREF (elt, 1)) >= start)
1058 break;
1059 }
1060 if (CONSP (val))
1061 {
10f72a37 1062 cmp_it->rule_idx = ridx;
82ebc97b
KH
1063 cmp_it->lookback = XFASTINT (AREF (elt, 1));
1064 cmp_it->stop_pos = charpos - 1 - cmp_it->lookback;
1065 cmp_it->ch = c;
1066 return;
1067 }
1068 }
ea8ba975 1069 }
ff94e32c
KH
1070 if (charpos == endpos)
1071 {
1072 /* We couldn't find a composition point before ENDPOS. But,
1073 some character after ENDPOS may be composed with
1074 characters before ENDPOS. So, we should stop at the safe
1075 point. */
1076 charpos = endpos - MAX_AUTO_COMPOSITION_LOOKBACK;
1077 if (charpos < start)
1078 charpos = start;
1079 }
82ebc97b 1080 }
b7050583 1081 else if (charpos > endpos)
82ebc97b
KH
1082 {
1083 /* Search backward for a pattern that may be composed and the
1084 position of (possibly) the last character of the match is
1085 closest to (but not after) START. The reason for the last
d07f018c
EZ
1086 character is that set_iterator_to_next works in reverse order,
1087 and thus we must stop at the last character for composition
82ebc97b
KH
1088 check. */
1089 unsigned char *p;
1090 int len;
d07f018c
EZ
1091 /* Limit byte position used in fast_looking_at. This is the
1092 byte position of the character after START. */
d311d28c 1093 ptrdiff_t limit;
82ebc97b
KH
1094
1095 if (NILP (string))
1096 p = BYTE_POS_ADDR (bytepos);
1097 else
1098 p = SDATA (string) + bytepos;
1099 c = STRING_CHAR_AND_LENGTH (p, len);
1100 limit = bytepos + len;
1101 while (CHAR_COMPOSABLE_P (c))
58753d74 1102 {
10f72a37
KH
1103 val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1104 if (! NILP (val))
82ebc97b 1105 {
10f72a37 1106 Lisp_Object elt;
d311d28c 1107 int ridx, blen;
58753d74 1108
10f72a37 1109 for (ridx = 0; CONSP (val); val = XCDR (val), ridx++)
82ebc97b 1110 {
10f72a37
KH
1111 elt = XCAR (val);
1112 if (VECTORP (elt) && ASIZE (elt) == 3
1113 && NATNUMP (AREF (elt, 1))
d311d28c 1114 && charpos - XFASTINT (AREF (elt, 1)) > endpos)
82ebc97b 1115 {
d311d28c
PE
1116 ptrdiff_t back = XFASTINT (AREF (elt, 1));
1117 ptrdiff_t cpos = charpos - back, bpos;
10f72a37
KH
1118
1119 if (back == 0)
1120 bpos = bytepos;
82ebc97b 1121 else
10f72a37
KH
1122 bpos = (NILP (string) ? CHAR_TO_BYTE (cpos)
1123 : string_char_to_byte (string, cpos));
1124 if (STRINGP (AREF (elt, 0)))
8f5201ae
PE
1125 blen = fast_looking_at (AREF (elt, 0), cpos, bpos,
1126 start + 1, limit, string);
10f72a37 1127 else
8f5201ae
PE
1128 blen = 1;
1129 if (blen > 0)
82ebc97b 1130 {
10f72a37 1131 /* Make CPOS point to the last character of
8f5201ae
PE
1132 match. Note that BLEN is byte-length. */
1133 if (blen > 1)
10f72a37 1134 {
8f5201ae 1135 bpos += blen;
10f72a37
KH
1136 if (NILP (string))
1137 cpos = BYTE_TO_CHAR (bpos) - 1;
1138 else
1139 cpos = string_byte_to_char (string, bpos) - 1;
1140 }
1141 back = cpos - (charpos - back);
1142 if (cmp_it->stop_pos < cpos
1143 || (cmp_it->stop_pos == cpos
1144 && cmp_it->lookback < back))
1145 {
1146 cmp_it->rule_idx = ridx;
1147 cmp_it->stop_pos = cpos;
1148 cmp_it->ch = c;
1149 cmp_it->lookback = back;
1150 cmp_it->nchars = back + 1;
1151 }
82ebc97b
KH
1152 }
1153 }
1154 }
1155 }
1156 if (charpos - 1 == endpos)
1157 break;
1158 if (STRINGP (string))
58753d74 1159 {
82ebc97b
KH
1160 p--, bytepos--;
1161 while (! CHAR_HEAD_P (*p))
1162 p--, bytepos--;
1163 charpos--;
1164 }
1165 else
1166 {
1167 DEC_BOTH (charpos, bytepos);
1168 p = BYTE_POS_ADDR (bytepos);
58753d74 1169 }
82ebc97b
KH
1170 c = STRING_CHAR (p);
1171 }
1172 if (cmp_it->ch >= 0)
1173 /* We found a position to check. */
1174 return;
1175 /* Skip all uncomposable characters. */
1176 if (NILP (string))
1177 {
1178 while (charpos - 1 > endpos && ! CHAR_COMPOSABLE_P (c))
58753d74 1179 {
82ebc97b
KH
1180 DEC_BOTH (charpos, bytepos);
1181 c = FETCH_MULTIBYTE_CHAR (bytepos);
1182 }
1183 }
1184 else
1185 {
1186 while (charpos - 1 > endpos && ! CHAR_COMPOSABLE_P (c))
1187 {
1188 p--;
1189 while (! CHAR_HEAD_P (*p))
1190 p--;
1191 charpos--;
1192 c = STRING_CHAR (p);
58753d74
KH
1193 }
1194 }
1195 }
44566dc7 1196 cmp_it->stop_pos = charpos;
58753d74
KH
1197}
1198
1199/* Check if the character at CHARPOS (and BYTEPOS) is composed
22e33406 1200 (possibly with the following characters) on window W. ENDPOS limits
58753d74
KH
1201 characters to be composed. FACE, in non-NULL, is a base face of
1202 the character. If STRING is not nil, it is a string containing the
1203 character to check, and CHARPOS and BYTEPOS are indices in the
1204 string. In that case, FACE must not be NULL.
1205
1206 If the character is composed, setup members of CMP_IT (id, nglyphs,
de1339b0
PE
1207 from, to, reversed_p), and return true. Otherwise, update
1208 CMP_IT->stop_pos, and return false. */
58753d74 1209
de1339b0
PE
1210bool
1211composition_reseat_it (struct composition_it *cmp_it, ptrdiff_t charpos,
1212 ptrdiff_t bytepos, ptrdiff_t endpos, struct window *w,
1213 struct face *face, Lisp_Object string)
58753d74 1214{
3ffdafce
KH
1215 if (cmp_it->ch == -2)
1216 {
1217 composition_compute_stop_pos (cmp_it, charpos, bytepos, endpos, string);
10f72a37 1218 if (cmp_it->ch == -2 || cmp_it->stop_pos != charpos)
82ebc97b 1219 /* The current position is not composed. */
3ffdafce
KH
1220 return 0;
1221 }
1222
3cccbd87
KH
1223 if (endpos < 0)
1224 endpos = NILP (string) ? BEGV : 0;
1225
58753d74
KH
1226 if (cmp_it->ch < 0)
1227 {
1228 /* We are looking at a static composition. */
d311d28c 1229 ptrdiff_t start, end;
58753d74
KH
1230 Lisp_Object prop;
1231
1232 find_composition (charpos, -1, &start, &end, &prop, string);
1233 cmp_it->id = get_composition_id (charpos, bytepos, end - start,
1234 prop, string);
1235 if (cmp_it->id < 0)
1236 goto no_composition;
1237 cmp_it->nchars = end - start;
1238 cmp_it->nglyphs = composition_table[cmp_it->id]->glyph_len;
1239 }
29fb7306 1240 else if (w)
58753d74 1241 {
10f72a37 1242 Lisp_Object lgstring = Qnil;
b246f932 1243 Lisp_Object val, elt;
d311d28c 1244 ptrdiff_t i;
58753d74
KH
1245
1246 val = CHAR_TABLE_REF (Vcomposition_function_table, cmp_it->ch);
10f72a37 1247 for (i = 0; i < cmp_it->rule_idx; i++, val = XCDR (val));
82ebc97b 1248 if (charpos < endpos)
90b3fe91 1249 {
82ebc97b
KH
1250 for (; CONSP (val); val = XCDR (val))
1251 {
1252 elt = XCAR (val);
10f72a37
KH
1253 if (! VECTORP (elt) || ASIZE (elt) != 3
1254 || ! INTEGERP (AREF (elt, 1)))
1255 continue;
1256 if (XFASTINT (AREF (elt, 1)) != cmp_it->lookback)
aa3830c4 1257 goto no_composition;
10f72a37
KH
1258 lgstring = autocmp_chars (elt, charpos, bytepos, endpos,
1259 w, face, string);
1260 if (composition_gstring_p (lgstring))
82ebc97b 1261 break;
10f72a37
KH
1262 lgstring = Qnil;
1263 /* Composition failed perhaps because the font doesn't
1264 support sufficient range of characters. Try the
1265 other composition rules if any. */
82ebc97b 1266 }
82ebc97b 1267 cmp_it->reversed_p = 0;
90b3fe91 1268 }
82ebc97b
KH
1269 else
1270 {
d311d28c 1271 ptrdiff_t cpos = charpos, bpos = bytepos;
90b3fe91 1272
3cccbd87
KH
1273 cmp_it->reversed_p = 1;
1274 elt = XCAR (val);
1275 if (cmp_it->lookback > 0)
82ebc97b 1276 {
3cccbd87
KH
1277 cpos = charpos - cmp_it->lookback;
1278 if (STRINGP (string))
1279 bpos = string_char_to_byte (string, cpos);
1280 else
1281 bpos = CHAR_TO_BYTE (cpos);
82ebc97b 1282 }
3cccbd87
KH
1283 lgstring = autocmp_chars (elt, cpos, bpos, charpos + 1, w, face,
1284 string);
1285 if (! composition_gstring_p (lgstring)
1286 || cpos + LGSTRING_CHAR_LEN (lgstring) - 1 != charpos)
1287 /* Composition failed or didn't cover the current
1288 character. */
1289 goto no_composition;
82ebc97b 1290 }
10f72a37
KH
1291 if (NILP (lgstring))
1292 goto no_composition;
1293 if (NILP (LGSTRING_ID (lgstring)))
1294 lgstring = composition_gstring_put_cache (lgstring, -1);
1295 cmp_it->id = XINT (LGSTRING_ID (lgstring));
1296 for (i = 0; i < LGSTRING_GLYPH_LEN (lgstring); i++)
1297 if (NILP (LGSTRING_GLYPH (lgstring, i)))
58753d74
KH
1298 break;
1299 cmp_it->nglyphs = i;
82ebc97b
KH
1300 cmp_it->from = 0;
1301 cmp_it->to = i;
58753d74 1302 }
29fb7306
KH
1303 else
1304 goto no_composition;
58753d74
KH
1305 return 1;
1306
1307 no_composition:
82ebc97b
KH
1308 if (charpos == endpos)
1309 return 0;
1310 if (charpos < endpos)
1311 {
1312 charpos++;
10f72a37 1313 if (NILP (string))
82ebc97b 1314 INC_POS (bytepos);
10f72a37 1315 else
aa3830c4 1316 bytepos += BYTES_BY_CHAR_HEAD (*(SDATA (string) + bytepos));
82ebc97b 1317 }
58753d74 1318 else
82ebc97b
KH
1319 {
1320 charpos--;
1321 /* BYTEPOS is calculated in composition_compute_stop_pos */
1322 bytepos = -1;
1323 }
3cccbd87
KH
1324 if (cmp_it->reversed_p)
1325 endpos = -1;
58753d74
KH
1326 composition_compute_stop_pos (cmp_it, charpos, bytepos, endpos, string);
1327 return 0;
1328}
1329
10f72a37
KH
1330/* Update charpos, nchars, nbytes, and width of the current grapheme
1331 cluster.
1332
1333 If the composition is static or automatic in L2R context, the
1334 cluster is identified by CMP_IT->from, and CHARPOS is the position
1335 of the first character of the cluster. In this case, update
1336 CMP_IT->to too.
1337
1338 If the composition is automatic in R2L context, the cluster is
1339 identified by CMP_IT->to, and CHARPOS is the position of the last
1340 character of the cluster. In this case, update CMP_IT->from too.
1341
1342 The return value is the character code of the first character of
1343 the cluster, or -1 if the composition is somehow broken. */
82ebc97b 1344
58753d74 1345int
d311d28c 1346composition_update_it (struct composition_it *cmp_it, ptrdiff_t charpos, ptrdiff_t bytepos, Lisp_Object string)
58753d74 1347{
80e079b2 1348 int i, c IF_LINT (= 0);
58753d74
KH
1349
1350 if (cmp_it->ch < 0)
1351 {
10f72a37 1352 /* static composition */
58753d74
KH
1353 struct composition *cmp = composition_table[cmp_it->id];
1354
10f72a37 1355 cmp_it->charpos = charpos;
58753d74
KH
1356 cmp_it->to = cmp_it->nglyphs;
1357 if (cmp_it->nglyphs == 0)
1358 c = -1;
1359 else
1360 {
1361 for (i = 0; i < cmp->glyph_len; i++)
bd01620e
EZ
1362 /* TAB in a composition means display glyphs with padding
1363 space on the left or right. */
58753d74
KH
1364 if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t')
1365 break;
1366 if (c == '\t')
1367 c = ' ';
1368 }
1369 cmp_it->width = cmp->width;
10f72a37
KH
1370 charpos += cmp_it->nchars;
1371 if (STRINGP (string))
1372 cmp_it->nbytes = string_char_to_byte (string, charpos) - bytepos;
1373 else
1374 cmp_it->nbytes = CHAR_TO_BYTE (charpos) - bytepos;
58753d74
KH
1375 }
1376 else
1377 {
b7432bb2 1378 /* Automatic composition. */
58753d74 1379 Lisp_Object gstring = composition_gstring_from_id (cmp_it->id);
10f72a37 1380 Lisp_Object glyph;
d311d28c 1381 ptrdiff_t from;
58753d74
KH
1382
1383 if (cmp_it->nglyphs == 0)
1384 {
58753d74
KH
1385 cmp_it->nchars = LGSTRING_CHAR_LEN (gstring);
1386 cmp_it->width = 0;
10f72a37
KH
1387 cmp_it->from = cmp_it->to = 0;
1388 return -1;
58753d74 1389 }
10f72a37 1390 if (! cmp_it->reversed_p)
58753d74 1391 {
10f72a37
KH
1392 glyph = LGSTRING_GLYPH (gstring, cmp_it->from);
1393 from = LGLYPH_FROM (glyph);
58753d74
KH
1394 for (cmp_it->to = cmp_it->from + 1; cmp_it->to < cmp_it->nglyphs;
1395 cmp_it->to++)
1396 {
1397 glyph = LGSTRING_GLYPH (gstring, cmp_it->to);
1398 if (LGLYPH_FROM (glyph) != from)
1399 break;
58753d74 1400 }
10f72a37 1401 cmp_it->charpos = charpos;
58753d74 1402 }
82ebc97b
KH
1403 else
1404 {
10f72a37
KH
1405 glyph = LGSTRING_GLYPH (gstring, cmp_it->to - 1);
1406 from = LGLYPH_FROM (glyph);
1407 cmp_it->charpos = charpos - (LGLYPH_TO (glyph) - from);
1408 for (cmp_it->from = cmp_it->to - 1; cmp_it->from > 0;
1409 cmp_it->from--)
82ebc97b 1410 {
10f72a37 1411 glyph = LGSTRING_GLYPH (gstring, cmp_it->from - 1);
82ebc97b
KH
1412 if (LGLYPH_FROM (glyph) != from)
1413 break;
82ebc97b 1414 }
10f72a37
KH
1415 }
1416 glyph = LGSTRING_GLYPH (gstring, cmp_it->from);
1417 cmp_it->nchars = LGLYPH_TO (glyph) + 1 - from;
1418 cmp_it->nbytes = 0;
1419 cmp_it->width = 0;
1420 for (i = cmp_it->nchars - 1; i >= 0; i--)
1421 {
1422 c = XINT (LGSTRING_CHAR (gstring, i));
1423 cmp_it->nbytes += CHAR_BYTES (c);
63257f6c 1424 cmp_it->width += CHAR_WIDTH (c);
82ebc97b 1425 }
58753d74 1426 }
58753d74
KH
1427 return c;
1428}
1429
1430
90b3fe91
KH
1431struct position_record
1432{
d311d28c 1433 ptrdiff_t pos, pos_byte;
90b3fe91
KH
1434 unsigned char *p;
1435};
1436
763d7377 1437/* Update the members of POSITION to the next character boundary. */
90b3fe91
KH
1438#define FORWARD_CHAR(POSITION, STOP) \
1439 do { \
90b3fe91 1440 (POSITION).pos++; \
900c4486
KH
1441 if ((POSITION).pos == (STOP)) \
1442 { \
1443 (POSITION).p = GAP_END_ADDR; \
1444 (POSITION).pos_byte = GPT_BYTE; \
1445 } \
1446 else \
1447 { \
900c4486 1448 (POSITION).pos_byte += BYTES_BY_CHAR_HEAD (*((POSITION).p)); \
d45a49e3 1449 (POSITION).p += BYTES_BY_CHAR_HEAD (*((POSITION).p)); \
900c4486 1450 } \
90b3fe91
KH
1451 } while (0)
1452
763d7377 1453/* Update the members of POSITION to the previous character boundary. */
90b3fe91
KH
1454#define BACKWARD_CHAR(POSITION, STOP) \
1455 do { \
a28d4396 1456 if ((POSITION).pos == (STOP)) \
90b3fe91
KH
1457 (POSITION).p = GPT_ADDR; \
1458 do { \
1459 (POSITION).pos_byte--; \
1460 (POSITION).p--; \
1461 } while (! CHAR_HEAD_P (*((POSITION).p))); \
1462 (POSITION).pos--; \
1463 } while (0)
1464
90b3fe91 1465/* This is like find_composition, but find an automatic composition
a28d4396
KH
1466 instead. It is assured that POS is not within a static
1467 composition. If found, set *GSTRING to the glyph-string
de1339b0
PE
1468 representing the composition, and return true. Otherwise, *GSTRING to
1469 Qnil, and return false. */
90b3fe91 1470
de1339b0 1471static bool
d311d28c
PE
1472find_automatic_composition (ptrdiff_t pos, ptrdiff_t limit,
1473 ptrdiff_t *start, ptrdiff_t *end,
a28d4396 1474 Lisp_Object *gstring, Lisp_Object string)
90b3fe91 1475{
d311d28c 1476 ptrdiff_t head, tail, stop;
a28d4396
KH
1477 /* Forward limit position of checking a composition taking a
1478 looking-back count into account. */
d311d28c 1479 ptrdiff_t fore_check_limit;
a28d4396 1480 struct position_record cur, prev;
90b3fe91 1481 int c;
29fb7306 1482 Lisp_Object window;
90b3fe91 1483 struct window *w;
de1339b0 1484 bool need_adjustment = 0;
90b3fe91 1485
3eda4b19 1486 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
29fb7306
KH
1487 if (NILP (window))
1488 return 0;
1489 w = XWINDOW (window);
1490
a28d4396 1491 cur.pos = pos;
90b3fe91
KH
1492 if (NILP (string))
1493 {
1494 head = BEGV, tail = ZV, stop = GPT;
a28d4396
KH
1495 cur.pos_byte = CHAR_TO_BYTE (cur.pos);
1496 cur.p = BYTE_POS_ADDR (cur.pos_byte);
90b3fe91
KH
1497 }
1498 else
1499 {
1500 head = 0, tail = SCHARS (string), stop = -1;
a28d4396
KH
1501 cur.pos_byte = string_char_to_byte (string, cur.pos);
1502 cur.p = SDATA (string) + cur.pos_byte;
90b3fe91 1503 }
a28d4396
KH
1504 if (limit < 0)
1505 /* Finding a composition covering the character after POS is the
1506 same as setting LIMIT to POS. */
1507 limit = pos;
1508 if (limit <= pos)
1509 fore_check_limit = min (tail, pos + 1 + MAX_AUTO_COMPOSITION_LOOKBACK);
90b3fe91 1510 else
895416e3 1511 fore_check_limit = min (tail, limit + MAX_AUTO_COMPOSITION_LOOKBACK);
90b3fe91 1512
a28d4396 1513 /* Provided that we have these possible compositions now:
895416e3 1514
a28d4396
KH
1515 POS: 1 2 3 4 5 6 7 8 9
1516 |-A-|
1517 |-B-|-C-|--D--|
895416e3 1518
a28d4396
KH
1519 Here, it is known that characters after positions 1 and 9 can
1520 never be composed (i.e. ! CHAR_COMPOSABLE_P (CH)), and
1521 composition A is an invalid one because it's partially covered by
1522 the valid composition C. And to know whether a composition is
1523 valid or not, the only way is to start searching forward from a
1524 position that can not be a tail part of composition (it's 2 in
1525 the above case).
1526
1527 Now we have these cases (1 through 4):
1528
1529 -- character after POS is ... --
1530 not composable composable
1531 LIMIT <= POS (1) (3)
1532 POS < LIMIT (2) (4)
1533
1534 Among them, in case (2), we simply search forward from POS.
1535
1536 In the other cases, we at first rewind back to the position where
1537 the previous character is not composable or the beginning of
1538 buffer (string), then search compositions forward. In case (1)
1539 and (3) we repeat this process until a composition is found. */
1540
1541 while (1)
1542 {
62a6e103 1543 c = STRING_CHAR (cur.p);
90b3fe91 1544 if (! CHAR_COMPOSABLE_P (c))
90b3fe91 1545 {
a28d4396
KH
1546 if (limit <= pos) /* case (1) */
1547 {
1548 do {
31bfc35c 1549 if (cur.pos <= limit)
a28d4396
KH
1550 return 0;
1551 BACKWARD_CHAR (cur, stop);
1552 c = STRING_CHAR (cur.p);
1553 } while (! CHAR_COMPOSABLE_P (c));
1554 fore_check_limit = cur.pos + 1;
1555 }
1556 else /* case (2) */
1557 /* No need of rewinding back. */
1558 goto search_forward;
1559 }
90b3fe91 1560
a28d4396
KH
1561 /* Rewind back to the position where we can safely search
1562 forward for compositions. It is assured that the character
1563 at cur.pos is composable. */
1564 while (head < cur.pos)
1565 {
1566 prev = cur;
1567 BACKWARD_CHAR (cur, stop);
1568 c = STRING_CHAR (cur.p);
1569 if (! CHAR_COMPOSABLE_P (c))
90b3fe91 1570 {
a28d4396
KH
1571 cur = prev;
1572 break;
90b3fe91 1573 }
a28d4396
KH
1574 }
1575
1576 search_forward:
1577 /* Now search forward. */
1578 *gstring = Qnil;
1579 prev = cur; /* remember the start of searching position. */
1580 while (cur.pos < fore_check_limit)
1581 {
1582 Lisp_Object val;
1583
1584 c = STRING_CHAR (cur.p);
1585 for (val = CHAR_TABLE_REF (Vcomposition_function_table, c);
1586 CONSP (val); val = XCDR (val))
90b3fe91 1587 {
a28d4396
KH
1588 Lisp_Object elt = XCAR (val);
1589
1590 if (VECTORP (elt) && ASIZE (elt) == 3 && NATNUMP (AREF (elt, 1)))
90b3fe91 1591 {
a28d4396
KH
1592 EMACS_INT check_pos = cur.pos - XFASTINT (AREF (elt, 1));
1593 struct position_record check;
1594
1595 if (check_pos < head
1596 || (limit <= pos ? pos < check_pos
1597 : limit <= check_pos))
1598 continue;
1599 for (check = cur; check_pos < check.pos; )
1600 BACKWARD_CHAR (check, stop);
1601 *gstring = autocmp_chars (elt, check.pos, check.pos_byte,
1602 tail, w, NULL, string);
90b3fe91 1603 need_adjustment = 1;
a28d4396 1604 if (NILP (*gstring))
90b3fe91 1605 {
a28d4396
KH
1606 /* As we have called Lisp, there's a possibility
1607 that buffer/string is relocated. */
1608 if (NILP (string))
1609 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1610 else
1611 cur.p = SDATA (string) + cur.pos_byte;
1612 }
1613 else
1614 {
1615 /* We found a candidate of a target composition. */
90b3fe91
KH
1616 *start = check.pos;
1617 *end = check.pos + LGSTRING_CHAR_LEN (*gstring);
a28d4396
KH
1618 if (pos < limit
1619 ? pos < *end
1620 : *start <= pos && pos < *end)
1621 /* This is the target composition. */
90b3fe91
KH
1622 return 1;
1623 cur.pos = *end;
a28d4396
KH
1624 if (NILP (string))
1625 {
1626 cur.pos_byte = CHAR_TO_BYTE (cur.pos);
1627 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1628 }
1629 else
1630 {
1631 cur.pos_byte = string_char_to_byte (string, cur.pos);
1632 cur.p = SDATA (string) + cur.pos_byte;
1633 }
90b3fe91
KH
1634 break;
1635 }
1636 }
1637 }
a28d4396
KH
1638 if (! CONSP (val))
1639 /* We found no composition here. */
90b3fe91 1640 FORWARD_CHAR (cur, stop);
90b3fe91 1641 }
a28d4396
KH
1642
1643 if (pos < limit) /* case (2) and (4)*/
1644 return 0;
1645 if (! NILP (*gstring))
1646 return 1;
1647 if (prev.pos == head)
1648 return 0;
90b3fe91 1649 cur = prev;
a28d4396
KH
1650 if (need_adjustment)
1651 {
1652 if (NILP (string))
1653 cur.p = BYTE_POS_ADDR (cur.pos_byte);
1654 else
1655 cur.p = SDATA (string) + cur.pos_byte;
1656 }
90b3fe91 1657 BACKWARD_CHAR (cur, stop);
90b3fe91 1658 }
90b3fe91
KH
1659}
1660
e614ea00
KH
1661/* Return the adjusted point provided that point is moved from LAST_PT
1662 to NEW_PT. */
1663
d311d28c
PE
1664ptrdiff_t
1665composition_adjust_point (ptrdiff_t last_pt, ptrdiff_t new_pt)
58753d74 1666{
d311d28c 1667 ptrdiff_t i, beg, end;
90b3fe91 1668 Lisp_Object val;
58753d74 1669
e614ea00
KH
1670 if (new_pt == BEGV || new_pt == ZV)
1671 return new_pt;
58753d74 1672
90b3fe91 1673 /* At first check the static composition. */
e614ea00 1674 if (get_property_and_range (new_pt, Qcomposition, &val, &beg, &end, Qnil)
895416e3
KH
1675 && COMPOSITION_VALID_P (beg, end, val))
1676 {
e614ea00 1677 if (beg < new_pt /* && end > new_pt <- It's always the case. */
895416e3 1678 && (last_pt <= beg || last_pt >= end))
e614ea00
KH
1679 return (new_pt < last_pt ? beg : end);
1680 return new_pt;
895416e3 1681 }
58753d74 1682
4b4deea2 1683 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
d9a7c140 1684 || NILP (Vauto_composition_mode))
e614ea00 1685 return new_pt;
58753d74 1686
90b3fe91 1687 /* Next check the automatic composition. */
d311d28c 1688 if (! find_automatic_composition (new_pt, (ptrdiff_t) -1, &beg, &end, &val,
e614ea00
KH
1689 Qnil)
1690 || beg == new_pt)
1691 return new_pt;
90b3fe91 1692 for (i = 0; i < LGSTRING_GLYPH_LEN (val); i++)
58753d74 1693 {
90b3fe91 1694 Lisp_Object glyph = LGSTRING_GLYPH (val, i);
58753d74 1695
90b3fe91
KH
1696 if (NILP (glyph))
1697 break;
e614ea00
KH
1698 if (beg + LGLYPH_FROM (glyph) == new_pt)
1699 return new_pt;
1700 if (beg + LGLYPH_TO (glyph) >= new_pt)
1701 return (new_pt < last_pt
90b3fe91
KH
1702 ? beg + LGLYPH_FROM (glyph)
1703 : beg + LGLYPH_TO (glyph) + 1);
58753d74 1704 }
e614ea00 1705 return new_pt;
58753d74
KH
1706}
1707
1708DEFUN ("composition-get-gstring", Fcomposition_get_gstring,
1709 Scomposition_get_gstring, 4, 4, 0,
1710 doc: /* Return a glyph-string for characters between FROM and TO.
9d751859 1711If the glyph string is for graphic display, FONT-OBJECT must be
58753d74 1712a font-object to use for those characters.
f5199465
KH
1713Otherwise (for terminal display), FONT-OBJECT must be a terminal ID, a
1714frame, or nil for the selected frame's terminal device.
58753d74
KH
1715
1716If the optional 4th argument STRING is not nil, it is a string
1717containing the target characters between indices FROM and TO.
1718
9d751859
EZ
1719A glyph-string is a vector containing information about how to display
1720a specific character sequence. The format is:
58753d74
KH
1721 [HEADER ID GLYPH ...]
1722
1723HEADER is a vector of this form:
1724 [FONT-OBJECT CHAR ...]
1725where
1726 FONT-OBJECT is a font-object for all glyphs in the glyph-string,
f5199465 1727 or the terminal coding system of the specified terminal.
58753d74
KH
1728 CHARs are characters to be composed by GLYPHs.
1729
1730ID is an identification number of the glyph-string. It may be nil if
1731not yet shaped.
1732
9d751859 1733GLYPH is a vector whose elements have this form:
58753d74
KH
1734 [ FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT
1735 [ [X-OFF Y-OFF WADJUST] | nil] ]
1736where
1737 FROM-IDX and TO-IDX are used internally and should not be touched.
1738 C is the character of the glyph.
1739 CODE is the glyph-code of C in FONT-OBJECT.
1740 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
9d751859 1741 X-OFF and Y-OFF are offsets to the base position for the glyph.
58753d74
KH
1742 WADJUST is the adjustment to the normal width of the glyph.
1743
9d751859
EZ
1744If GLYPH is nil, the remaining elements of the glyph-string vector
1745should be ignored. */)
5842a27b 1746 (Lisp_Object from, Lisp_Object to, Lisp_Object font_object, Lisp_Object string)
58753d74
KH
1747{
1748 Lisp_Object gstring, header;
d311d28c 1749 ptrdiff_t frompos, topos;
58753d74 1750
ea8ba975
KH
1751 CHECK_NATNUM (from);
1752 CHECK_NATNUM (to);
f5199465
KH
1753 if (! FONT_OBJECT_P (font_object))
1754 {
1755 struct coding_system *coding;
1756 struct terminal *terminal = get_terminal (font_object, 1);
1757
1758 coding = ((TERMINAL_TERMINAL_CODING (terminal)->common_flags
1759 & CODING_REQUIRE_ENCODING_MASK)
1760 ? TERMINAL_TERMINAL_CODING (terminal) : &safe_terminal_coding);
1761 font_object = CODING_ID_NAME (coding->id);
1762 }
1763
58753d74
KH
1764 header = fill_gstring_header (Qnil, from, to, font_object, string);
1765 gstring = gstring_lookup_cache (header);
1766 if (! NILP (gstring))
1767 return gstring;
46f905e1 1768
ea8ba975
KH
1769 frompos = XINT (from);
1770 topos = XINT (to);
46f905e1
SM
1771 if (LGSTRING_GLYPH_LEN (gstring_work) < topos - frompos)
1772 gstring_work = Fmake_vector (make_number (topos - frompos + 2), Qnil);
58753d74
KH
1773 LGSTRING_SET_HEADER (gstring_work, header);
1774 LGSTRING_SET_ID (gstring_work, Qnil);
1775 fill_gstring_body (gstring_work);
1776 return gstring_work;
1777}
1778
ca4c9455
KH
1779\f
1780/* Emacs Lisp APIs. */
1781
1782DEFUN ("compose-region-internal", Fcompose_region_internal,
1783 Scompose_region_internal, 2, 4, 0,
335c5470
PJ
1784 doc: /* Internal use only.
1785
1786Compose text in the region between START and END.
1787Optional 3rd and 4th arguments are COMPONENTS and MODIFICATION-FUNC
9d751859 1788for the composition. See `compose-region' for more details. */)
5842a27b 1789 (Lisp_Object start, Lisp_Object end, Lisp_Object components, Lisp_Object modification_func)
ca4c9455
KH
1790{
1791 validate_region (&start, &end);
1792 if (!NILP (components)
1793 && !INTEGERP (components)
1794 && !CONSP (components)
1795 && !STRINGP (components))
b7826503 1796 CHECK_VECTOR (components);
ca4c9455 1797
d562f8ab 1798 compose_text (XINT (start), XINT (end), components, modification_func, Qnil);
ca4c9455
KH
1799 return Qnil;
1800}
1801
1802DEFUN ("compose-string-internal", Fcompose_string_internal,
1803 Scompose_string_internal, 3, 5, 0,
335c5470
PJ
1804 doc: /* Internal use only.
1805
1806Compose text between indices START and END of STRING.
1807Optional 4th and 5th arguments are COMPONENTS and MODIFICATION-FUNC
9d751859 1808for the composition. See `compose-string' for more details. */)
5842a27b 1809 (Lisp_Object string, Lisp_Object start, Lisp_Object end, Lisp_Object components, Lisp_Object modification_func)
ca4c9455 1810{
b7826503
PJ
1811 CHECK_STRING (string);
1812 CHECK_NUMBER (start);
1813 CHECK_NUMBER (end);
ca4c9455
KH
1814
1815 if (XINT (start) < 0 ||
1816 XINT (start) > XINT (end)
d5db4077 1817 || XINT (end) > SCHARS (string))
ca4c9455
KH
1818 args_out_of_range (start, end);
1819
d562f8ab 1820 compose_text (XINT (start), XINT (end), components, modification_func, string);
ca4c9455
KH
1821 return string;
1822}
1823
1824DEFUN ("find-composition-internal", Ffind_composition_internal,
177c0ea7 1825 Sfind_composition_internal, 4, 4, 0,
335c5470
PJ
1826 doc: /* Internal use only.
1827
1828Return information about composition at or nearest to position POS.
9d751859 1829See `find-composition' for more details. */)
5842a27b 1830 (Lisp_Object pos, Lisp_Object limit, Lisp_Object string, Lisp_Object detail_p)
ca4c9455 1831{
90b3fe91 1832 Lisp_Object prop, tail, gstring;
d311d28c 1833 ptrdiff_t start, end, from, to;
ca4c9455
KH
1834 int id;
1835
b7826503 1836 CHECK_NUMBER_COERCE_MARKER (pos);
ca4c9455
KH
1837 if (!NILP (limit))
1838 {
b7826503 1839 CHECK_NUMBER_COERCE_MARKER (limit);
d311d28c 1840 to = min (XINT (limit), ZV);
ca4c9455
KH
1841 }
1842 else
90b3fe91 1843 to = -1;
177c0ea7 1844
ca4c9455 1845 if (!NILP (string))
e3b3e327 1846 {
b7826503 1847 CHECK_STRING (string);
d5db4077 1848 if (XINT (pos) < 0 || XINT (pos) > SCHARS (string))
e3b3e327
GM
1849 args_out_of_range (string, pos);
1850 }
1851 else
1852 {
fa9090b8 1853 if (XINT (pos) < BEGV || XINT (pos) > ZV)
e3b3e327
GM
1854 args_out_of_range (Fcurrent_buffer (), pos);
1855 }
d311d28c 1856 from = XINT (pos);
ca4c9455 1857
90b3fe91
KH
1858 if (!find_composition (from, to, &start, &end, &prop, string))
1859 {
4b4deea2 1860 if (!NILP (BVAR (current_buffer, enable_multibyte_characters))
d9a7c140 1861 && ! NILP (Vauto_composition_mode)
90b3fe91
KH
1862 && find_automatic_composition (from, to, &start, &end, &gstring,
1863 string))
1864 return list3 (make_number (start), make_number (end), gstring);
1865 return Qnil;
1866 }
1867 if ((end <= XINT (pos) || start > XINT (pos)))
1868 {
d311d28c 1869 ptrdiff_t s, e;
90b3fe91
KH
1870
1871 if (find_automatic_composition (from, to, &s, &e, &gstring, string)
1872 && (e <= XINT (pos) ? e > end : s < start))
fcebfc6a 1873 return list3 (make_number (s), make_number (e), gstring);
90b3fe91 1874 }
ca4c9455
KH
1875 if (!COMPOSITION_VALID_P (start, end, prop))
1876 return Fcons (make_number (start), Fcons (make_number (end),
1877 Fcons (Qnil, Qnil)));
1878 if (NILP (detail_p))
1879 return Fcons (make_number (start), Fcons (make_number (end),
1880 Fcons (Qt, Qnil)));
1881
1882 if (COMPOSITION_REGISTERD_P (prop))
1883 id = COMPOSITION_ID (prop);
1884 else
1885 {
d311d28c 1886 ptrdiff_t start_byte = (NILP (string)
579c18d0
EZ
1887 ? CHAR_TO_BYTE (start)
1888 : string_char_to_byte (string, start));
ca4c9455
KH
1889 id = get_composition_id (start, start_byte, end - start, prop, string);
1890 }
1891
1892 if (id >= 0)
1893 {
1894 Lisp_Object components, relative_p, mod_func;
1895 enum composition_method method = COMPOSITION_METHOD (prop);
1896 int width = composition_table[id]->width;
1897
1898 components = Fcopy_sequence (COMPOSITION_COMPONENTS (prop));
1899 relative_p = (method == COMPOSITION_WITH_RULE_ALTCHARS
1900 ? Qnil : Qt);
1901 mod_func = COMPOSITION_MODIFICATION_FUNC (prop);
1902 tail = Fcons (components,
1903 Fcons (relative_p,
1904 Fcons (mod_func,
1905 Fcons (make_number (width), Qnil))));
1906 }
1907 else
1908 tail = Qnil;
1909
1910 return Fcons (make_number (start), Fcons (make_number (end), tail));
1911}
1912
1913\f
1914void
971de7fb 1915syms_of_composite (void)
ca4c9455 1916{
58753d74
KH
1917 int i;
1918
cd3520a4 1919 DEFSYM (Qcomposition, "composition");
ca4c9455 1920
58753d74 1921 /* Make a hash table for static composition. */
ca4c9455 1922 {
09654086 1923 Lisp_Object args[6];
177c0ea7 1924
ca4c9455
KH
1925 args[0] = QCtest;
1926 args[1] = Qequal;
1927 args[2] = QCweakness;
dc47eccc 1928 /* We used to make the hash table weak so that unreferenced
ca101cff 1929 compositions can be garbage-collected. But, usually once
dc47eccc
KH
1930 created compositions are repeatedly used in an Emacs session,
1931 and thus it's not worth to save memory in such a way. So, we
1932 make the table not weak. */
6a83ee8a 1933 args[3] = Qnil;
ca4c9455
KH
1934 args[4] = QCsize;
1935 args[5] = make_number (311);
09654086 1936 composition_hash_table = Fmake_hash_table (6, args);
ca4c9455
KH
1937 staticpro (&composition_hash_table);
1938 }
1939
58753d74
KH
1940 /* Make a hash table for glyph-string. */
1941 {
1942 Lisp_Object args[6];
58753d74
KH
1943 args[0] = QCtest;
1944 args[1] = Qequal;
1945 args[2] = QCweakness;
1946 args[3] = Qnil;
1947 args[4] = QCsize;
1948 args[5] = make_number (311);
1949 gstring_hash_table = Fmake_hash_table (6, args);
1950 staticpro (&gstring_hash_table);
1951 }
1952
1953 staticpro (&gstring_work_headers);
25721f5b 1954 gstring_work_headers = make_uninit_vector (8);
58753d74
KH
1955 for (i = 0; i < 8; i++)
1956 ASET (gstring_work_headers, i, Fmake_vector (make_number (i + 2), Qnil));
1957 staticpro (&gstring_work);
1958 gstring_work = Fmake_vector (make_number (10), Qnil);
1959
ca4c9455
KH
1960 /* Text property `composition' should be nonsticky by default. */
1961 Vtext_property_default_nonsticky
1962 = Fcons (Fcons (Qcomposition, Qt), Vtext_property_default_nonsticky);
1963
29208e82 1964 DEFVAR_LISP ("compose-chars-after-function", Vcompose_chars_after_function,
335c5470
PJ
1965 doc: /* Function to adjust composition of buffer text.
1966
9d751859
EZ
1967This function is called with three arguments: FROM, TO, and OBJECT.
1968FROM and TO specify the range of text whose composition should be
335c5470
PJ
1969adjusted. OBJECT, if non-nil, is a string that contains the text.
1970
1971This function is called after a text with `composition' property is
1972inserted or deleted to keep `composition' property of buffer text
1973valid.
1974
1975The default value is the function `compose-chars-after'. */);
d67b4f80 1976 Vcompose_chars_after_function = intern_c_string ("compose-chars-after");
ca4c9455 1977
cd3520a4
JB
1978 DEFSYM (Qauto_composed, "auto-composed");
1979 DEFSYM (Qauto_composition_function, "auto-composition-function");
40add26d 1980
29208e82 1981 DEFVAR_LISP ("auto-composition-mode", Vauto_composition_mode,
d9a7c140
KH
1982 doc: /* Non-nil if Auto-Composition mode is enabled.
1983Use the command `auto-composition-mode' to change this variable. */);
1984 Vauto_composition_mode = Qt;
1985
29208e82 1986 DEFVAR_LISP ("auto-composition-function", Vauto_composition_function,
f96ba4c1 1987 doc: /* Function to call to compose characters automatically.
9d751859 1988This function is called from the display routine with four arguments:
ddc872ba 1989FROM, TO, WINDOW, and STRING.
335c5470 1990
ddc872ba
KH
1991If STRING is nil, the function must compose characters in the region
1992between FROM and TO in the current buffer.
335c5470 1993
ddc872ba
KH
1994Otherwise, STRING is a string, and FROM and TO are indices into the
1995string. In this case, the function must compose characters in the
1996string. */);
f96ba4c1 1997 Vauto_composition_function = Qnil;
40add26d 1998
29208e82 1999 DEFVAR_LISP ("composition-function-table", Vcomposition_function_table,
9d751859 2000 doc: /* Char-table of functions for automatic character composition.
58753d74
KH
2001For each character that has to be composed automatically with
2002preceding and/or following characters, this char-table contains
2003a function to call to compose that character.
2004
2005The element at index C in the table, if non-nil, is a list of
10f72a37 2006composition rules of this form: ([PATTERN PREV-CHARS FUNC] ...)
58753d74 2007
9d751859 2008PATTERN is a regular expression which C and the surrounding
58753d74
KH
2009characters must match.
2010
895416e3
KH
2011PREV-CHARS is a non-negative integer (less than 4) specifying how many
2012characters before C to check the matching with PATTERN. If it is 0,
2013PATTERN must match C and the following characters. If it is 1,
2014PATTERN must match a character before C and the following characters.
58753d74
KH
2015
2016If PREV-CHARS is 0, PATTERN can be nil, which means that the
2017single character C should be composed.
2018
2019FUNC is a function to return a glyph-string representing a
9d751859 2020composition of the characters that match PATTERN. It is
58753d74
KH
2021called with one argument GSTRING.
2022
2023GSTRING is a template of a glyph-string to return. It is already
2024filled with a proper header for the characters to compose, and
2025glyphs corresponding to those characters one by one. The
9d751859 2026function must return a new glyph-string with the same header as
58753d74
KH
2027GSTRING, or modify GSTRING itself and return it.
2028
2029See also the documentation of `auto-composition-mode'. */);
2030 Vcomposition_function_table = Fmake_char_table (Qnil, Qnil);
2031
ca4c9455
KH
2032 defsubr (&Scompose_region_internal);
2033 defsubr (&Scompose_string_internal);
2034 defsubr (&Sfind_composition_internal);
58753d74 2035 defsubr (&Scomposition_get_gstring);
ca4c9455 2036}