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