0
|
1 /* Copyright (c) 1994, 1995 Free Software Foundation, Inc.
|
|
2 Copyright (c) 1995 Sun Microsystems, Inc.
|
|
3 Copyright (c) 1995, 1996 Ben Wing.
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not in FSF. */
|
|
23
|
|
24 /* This file has been Mule-ized. */
|
|
25
|
298
|
26 /* Written by Ben Wing <ben@xemacs.org>.
|
0
|
27
|
|
28 [Originally written by some people at Lucid.
|
|
29 Hacked on by jwz.
|
|
30 Start/end-open stuff added by John Rose (john.rose@eng.sun.com).
|
|
31 Rewritten from scratch by Ben Wing, December 1994.] */
|
|
32
|
|
33 /* Commentary:
|
|
34
|
|
35 Extents are regions over a buffer, with a start and an end position
|
|
36 denoting the region of the buffer included in the extent. In
|
|
37 addition, either end can be closed or open, meaning that the endpoint
|
|
38 is or is not logically included in the extent. Insertion of a character
|
|
39 at a closed endpoint causes the character to go inside the extent;
|
|
40 insertion at an open endpoint causes the character to go outside.
|
|
41
|
|
42 Extent endpoints are stored using memory indices (see insdel.c),
|
|
43 to minimize the amount of adjusting that needs to be done when
|
|
44 characters are inserted or deleted.
|
|
45
|
|
46 (Formerly, extent endpoints at the gap could be either before or
|
|
47 after the gap, depending on the open/closedness of the endpoint.
|
|
48 The intent of this was to make it so that insertions would
|
|
49 automatically go inside or out of extents as necessary with no
|
|
50 further work needing to be done. It didn't work out that way,
|
|
51 however, and just ended up complexifying and buggifying all the
|
|
52 rest of the code.)
|
|
53
|
|
54 Extents are compared using memory indices. There are two orderings
|
|
55 for extents and both orders are kept current at all times. The normal
|
|
56 or "display" order is as follows:
|
|
57
|
|
58 Extent A is "less than" extent B, that is, earlier in the display order,
|
|
59 if: A-start < B-start,
|
|
60 or if: A-start = B-start, and A-end > B-end
|
|
61
|
|
62 So if two extents begin at the same position, the larger of them is the
|
|
63 earlier one in the display order (EXTENT_LESS is true).
|
|
64
|
|
65 For the e-order, the same thing holds: Extent A is "less than" extent B
|
|
66 in e-order, that is, later in the buffer,
|
|
67 if: A-end < B-end,
|
|
68 or if: A-end = B-end, and A-start > B-start
|
|
69
|
|
70 So if two extents end at the same position, the smaller of them is the
|
|
71 earlier one in the e-order (EXTENT_E_LESS is true).
|
|
72
|
|
73 The display order and the e-order are complementary orders: any
|
|
74 theorem about the display order also applies to the e-order if you
|
|
75 swap all occurrences of "display order" and "e-order", "less than"
|
|
76 and "greater than", and "extent start" and "extent end".
|
|
77
|
|
78 Extents can be zero-length, and will end up that way if their endpoints
|
|
79 are explicitly set that way or if their detachable property is nil
|
|
80 and all the text in the extent is deleted. (The exception is open-open
|
|
81 zero-length extents, which are barred from existing because there is
|
|
82 no sensible way to define their properties. Deletion of the text in
|
|
83 an open-open extent causes it to be converted into a closed-open
|
|
84 extent.) Zero-length extents are primarily used to represent
|
|
85 annotations, and behave as follows:
|
|
86
|
|
87 1) Insertion at the position of a zero-length extent expands the extent
|
|
88 if both endpoints are closed; goes after the extent if it is closed-open;
|
|
89 and goes before the extent if it is open-closed.
|
|
90
|
|
91 2) Deletion of a character on a side of a zero-length extent whose
|
|
92 corresponding endpoint is closed causes the extent to be detached if
|
|
93 it is detachable; if the extent is not detachable or the corresponding
|
|
94 endpoint is open, the extent remains in the buffer, moving as necessary.
|
|
95
|
|
96 Note that closed-open, non-detachable zero-length extents behave exactly
|
|
97 like markers and that open-closed, non-detachable zero-length extents
|
|
98 behave like the "point-type" marker in Mule.
|
|
99
|
|
100
|
|
101 #### The following information is wrong in places.
|
|
102
|
|
103 More about the different orders:
|
|
104 --------------------------------
|
|
105
|
|
106 The extents in a buffer are ordered by "display order" because that
|
|
107 is that order that the redisplay mechanism needs to process them in.
|
|
108 The e-order is an auxiliary ordering used to facilitate operations
|
|
109 over extents. The operations that can be performed on the ordered
|
|
110 list of extents in a buffer are
|
|
111
|
|
112 1) Locate where an extent would go if inserted into the list.
|
|
113 2) Insert an extent into the list.
|
|
114 3) Remove an extent from the list.
|
|
115 4) Map over all the extents that overlap a range.
|
|
116
|
|
117 (4) requires being able to determine the first and last extents
|
|
118 that overlap a range.
|
|
119
|
|
120 NOTE: "overlap" is used as follows:
|
|
121
|
|
122 -- two ranges overlap if they have at least one point in common.
|
|
123 Whether the endpoints are open or closed makes a difference here.
|
|
124 -- a point overlaps a range if the point is contained within the
|
|
125 range; this is equivalent to treating a point P as the range
|
|
126 [P, P].
|
|
127 -- In the case of an *extent* overlapping a point or range, the
|
|
128 extent is normally treated as having closed endpoints. This
|
|
129 applies consistently in the discussion of stacks of extents
|
|
130 and such below. Note that this definition of overlap is not
|
|
131 necessarily consistent with the extents that `map-extents'
|
|
132 maps over, since `map-extents' sometimes pays attention to
|
|
133 whether the endpoints of an extents are open or closed.
|
|
134 But for our purposes, it greatly simplifies things to treat
|
|
135 all extents as having closed endpoints.
|
173
|
136
|
0
|
137 First, define >, <, <=, etc. as applied to extents to mean
|
|
138 comparison according to the display order. Comparison between an
|
|
139 extent E and an index I means comparison between E and the range
|
|
140 [I, I].
|
|
141 Also define e>, e<, e<=, etc. to mean comparison according to the
|
|
142 e-order.
|
|
143 For any range R, define R(0) to be the starting index of the range
|
|
144 and R(1) to be the ending index of the range.
|
|
145 For any extent E, define E(next) to be the extent directly following
|
|
146 E, and E(prev) to be the extent directly preceding E. Assume
|
|
147 E(next) and E(prev) can be determined from E in constant time.
|
|
148 (This is because we store the extent list as a doubly linked
|
|
149 list.)
|
|
150 Similarly, define E(e-next) and E(e-prev) to be the extents
|
|
151 directly following and preceding E in the e-order.
|
|
152
|
|
153 Now:
|
|
154
|
|
155 Let R be a range.
|
|
156 Let F be the first extent overlapping R.
|
|
157 Let L be the last extent overlapping R.
|
173
|
158
|
0
|
159 Theorem 1: R(1) lies between L and L(next), i.e. L <= R(1) < L(next).
|
|
160
|
|
161 This follows easily from the definition of display order. The
|
|
162 basic reason that this theorem applies is that the display order
|
|
163 sorts by increasing starting index.
|
|
164
|
|
165 Therefore, we can determine L just by looking at where we would
|
|
166 insert R(1) into the list, and if we know F and are moving forward
|
|
167 over extents, we can easily determine when we've hit L by comparing
|
|
168 the extent we're at to R(1).
|
|
169
|
|
170 Theorem 2: F(e-prev) e< [1, R(0)] e<= F.
|
|
171
|
|
172 This is the analog of Theorem 1, and applies because the e-order
|
|
173 sorts by increasing ending index.
|
|
174
|
|
175 Therefore, F can be found in the same amount of time as operation (1),
|
|
176 i.e. the time that it takes to locate where an extent would go if
|
|
177 inserted into the e-order list.
|
|
178
|
|
179 If the lists were stored as balanced binary trees, then operation (1)
|
|
180 would take logarithmic time, which is usually quite fast. However,
|
|
181 currently they're stored as simple doubly-linked lists, and instead
|
|
182 we do some caching to try to speed things up.
|
|
183
|
|
184 Define a "stack of extents" (or "SOE") as the set of extents
|
|
185 (ordered in the display order) that overlap an index I, together with
|
|
186 the SOE's "previous" extent, which is an extent that precedes I in
|
|
187 the e-order. (Hopefully there will not be very many extents between
|
|
188 I and the previous extent.)
|
|
189
|
|
190 Now:
|
|
191
|
|
192 Let I be an index, let S be the stack of extents on I, let F be
|
|
193 the first extent in S, and let P be S's previous extent.
|
|
194
|
|
195 Theorem 3: The first extent in S is the first extent that overlaps
|
|
196 any range [I, J].
|
|
197
|
|
198 Proof: Any extent that overlaps [I, J] but does not include I must
|
|
199 have a start index > I, and thus be greater than any extent in S.
|
|
200
|
|
201 Therefore, finding the first extent that overlaps a range R is the
|
|
202 same as finding the first extent that overlaps R(0).
|
|
203
|
|
204 Theorem 4: Let I2 be an index such that I2 > I, and let F2 be the
|
|
205 first extent that overlaps I2. Then, either F2 is in S or F2 is
|
|
206 greater than any extent in S.
|
|
207
|
|
208 Proof: If F2 does not include I then its start index is greater
|
|
209 than I and thus it is greater than any extent in S, including F.
|
|
210 Otherwise, F2 includes I and thus is in S, and thus F2 >= F.
|
|
211
|
|
212 */
|
|
213
|
|
214 #include <config.h>
|
|
215 #include "lisp.h"
|
|
216
|
173
|
217 #include "buffer.h"
|
0
|
218 #include "debug.h"
|
|
219 #include "device.h"
|
|
220 #include "elhash.h"
|
|
221 #include "extents.h"
|
|
222 #include "faces.h"
|
|
223 #include "frame.h"
|
|
224 #include "glyphs.h"
|
|
225 #include "hash.h"
|
|
226 #include "insdel.h"
|
272
|
227 #include "keymap.h"
|
0
|
228 #include "opaque.h"
|
|
229 #include "process.h"
|
|
230 #include "redisplay.h"
|
|
231
|
|
232 /* ------------------------------- */
|
|
233 /* gap array */
|
|
234 /* ------------------------------- */
|
|
235
|
|
236 /* Note that this object is not extent-specific and should perhaps be
|
|
237 moved into another file. */
|
|
238
|
|
239 /* Holds a marker that moves as elements in the array are inserted and
|
|
240 deleted, similar to standard markers. */
|
|
241
|
|
242 typedef struct gap_array_marker
|
|
243 {
|
|
244 int pos;
|
|
245 struct gap_array_marker *next;
|
|
246 } Gap_Array_Marker;
|
|
247
|
|
248 /* Holds a "gap array", which is an array of elements with a gap located
|
|
249 in it. Insertions and deletions with a high degree of locality
|
|
250 are very fast, essentially in constant time. Array positions as
|
|
251 used and returned in the gap array functions are independent of
|
|
252 the gap. */
|
|
253
|
|
254 typedef struct gap_array
|
|
255 {
|
|
256 char *array;
|
|
257 int gap;
|
|
258 int gapsize;
|
|
259 int numels;
|
|
260 int elsize;
|
|
261 Gap_Array_Marker *markers;
|
|
262 } Gap_Array;
|
|
263
|
|
264 Gap_Array_Marker *gap_array_marker_freelist;
|
|
265
|
|
266 /* Convert a "memory position" (i.e. taking the gap into account) into
|
|
267 the address of the element at (i.e. after) that position. "Memory
|
|
268 positions" are only used internally and are of type Memind.
|
|
269 "Array positions" are used externally and are of type int. */
|
|
270 #define GAP_ARRAY_MEMEL_ADDR(ga, memel) ((ga)->array + (ga)->elsize*(memel))
|
|
271
|
|
272 /* Number of elements currently in a gap array */
|
|
273 #define GAP_ARRAY_NUM_ELS(ga) ((ga)->numels)
|
|
274
|
|
275 #define GAP_ARRAY_ARRAY_TO_MEMORY_POS(ga, pos) \
|
|
276 ((pos) <= (ga)->gap ? (pos) : (pos) + (ga)->gapsize)
|
|
277
|
|
278 #define GAP_ARRAY_MEMORY_TO_ARRAY_POS(ga, pos) \
|
|
279 ((pos) <= (ga)->gap ? (pos) : (pos) - (ga)->gapsize)
|
|
280
|
|
281 /* Convert an array position into the address of the element at
|
|
282 (i.e. after) that position. */
|
|
283 #define GAP_ARRAY_EL_ADDR(ga, pos) ((pos) < (ga)->gap ? \
|
|
284 GAP_ARRAY_MEMEL_ADDR(ga, pos) : \
|
|
285 GAP_ARRAY_MEMEL_ADDR(ga, (pos) + (ga)->gapsize))
|
|
286
|
|
287 /* ------------------------------- */
|
|
288 /* extent list */
|
|
289 /* ------------------------------- */
|
|
290
|
|
291 typedef struct extent_list_marker
|
|
292 {
|
|
293 Gap_Array_Marker *m;
|
|
294 int endp;
|
|
295 struct extent_list_marker *next;
|
|
296 } Extent_List_Marker;
|
|
297
|
|
298 typedef struct extent_list
|
|
299 {
|
|
300 Gap_Array *start;
|
|
301 Gap_Array *end;
|
|
302 Extent_List_Marker *markers;
|
|
303 } Extent_List;
|
|
304
|
|
305 Extent_List_Marker *extent_list_marker_freelist;
|
|
306
|
|
307 #define EXTENT_LESS_VALS(e,st,nd) ((extent_start (e) < (st)) || \
|
|
308 ((extent_start (e) == (st)) && \
|
|
309 (extent_end (e) > (nd))))
|
|
310
|
|
311 #define EXTENT_EQUAL_VALS(e,st,nd) ((extent_start (e) == (st)) && \
|
|
312 (extent_end (e) == (nd)))
|
|
313
|
|
314 #define EXTENT_LESS_EQUAL_VALS(e,st,nd) ((extent_start (e) < (st)) || \
|
|
315 ((extent_start (e) == (st)) && \
|
|
316 (extent_end (e) >= (nd))))
|
|
317
|
|
318 /* Is extent E1 less than extent E2 in the display order? */
|
|
319 #define EXTENT_LESS(e1,e2) \
|
|
320 EXTENT_LESS_VALS (e1, extent_start (e2), extent_end (e2))
|
|
321
|
|
322 /* Is extent E1 equal to extent E2? */
|
|
323 #define EXTENT_EQUAL(e1,e2) \
|
|
324 EXTENT_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
|
|
325
|
|
326 /* Is extent E1 less than or equal to extent E2 in the display order? */
|
|
327 #define EXTENT_LESS_EQUAL(e1,e2) \
|
|
328 EXTENT_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
|
|
329
|
|
330 #define EXTENT_E_LESS_VALS(e,st,nd) ((extent_end (e) < (nd)) || \
|
|
331 ((extent_end (e) == (nd)) && \
|
|
332 (extent_start (e) > (st))))
|
|
333
|
|
334 #define EXTENT_E_LESS_EQUAL_VALS(e,st,nd) ((extent_end (e) < (nd)) || \
|
|
335 ((extent_end (e) == (nd)) && \
|
|
336 (extent_start (e) >= (st))))
|
|
337
|
|
338 /* Is extent E1 less than extent E2 in the e-order? */
|
|
339 #define EXTENT_E_LESS(e1,e2) \
|
|
340 EXTENT_E_LESS_VALS(e1, extent_start (e2), extent_end (e2))
|
|
341
|
|
342 /* Is extent E1 less than or equal to extent E2 in the e-order? */
|
|
343 #define EXTENT_E_LESS_EQUAL(e1,e2) \
|
|
344 EXTENT_E_LESS_EQUAL_VALS (e1, extent_start (e2), extent_end (e2))
|
|
345
|
|
346 #define EXTENT_GAP_ARRAY_AT(ga, pos) (* (EXTENT *) GAP_ARRAY_EL_ADDR(ga, pos))
|
|
347
|
|
348 /* ------------------------------- */
|
|
349 /* auxiliary extent structure */
|
|
350 /* ------------------------------- */
|
|
351
|
|
352 struct extent_auxiliary extent_auxiliary_defaults;
|
|
353
|
|
354 /* ------------------------------- */
|
|
355 /* buffer-extent primitives */
|
|
356 /* ------------------------------- */
|
|
357
|
|
358 typedef struct stack_of_extents
|
|
359 {
|
|
360 Extent_List *extents;
|
|
361 Memind pos; /* Position of stack of extents. EXTENTS is the list of
|
|
362 all extents that overlap this position. This position
|
|
363 can be -1 if the stack of extents is invalid (this
|
|
364 happens when a buffer is first created or a string's
|
|
365 stack of extents is created [a string's stack of extents
|
|
366 is nuked when a GC occurs, to conserve memory]). */
|
|
367 } Stack_Of_Extents;
|
|
368
|
|
369 /* ------------------------------- */
|
|
370 /* map-extents */
|
|
371 /* ------------------------------- */
|
|
372
|
|
373 typedef int Endpoint_Index;
|
|
374
|
|
375 #define memind_to_startind(x, start_open) \
|
|
376 ((Endpoint_Index) (((x) << 1) + !!(start_open)))
|
|
377 #define memind_to_endind(x, end_open) \
|
|
378 ((Endpoint_Index) (((x) << 1) - !!(end_open)))
|
|
379
|
|
380 /* Combination macros */
|
|
381 #define bytind_to_startind(buf, x, start_open) \
|
|
382 memind_to_startind (bytind_to_memind (buf, x), start_open)
|
|
383 #define bytind_to_endind(buf, x, end_open) \
|
|
384 memind_to_endind (bytind_to_memind (buf, x), end_open)
|
|
385
|
|
386 /* ------------------------------- */
|
|
387 /* buffer-or-string primitives */
|
|
388 /* ------------------------------- */
|
|
389
|
|
390 /* Similar for Bytinds and start/end indices. */
|
|
391
|
|
392 #define buffer_or_string_bytind_to_startind(obj, ind, start_open) \
|
|
393 memind_to_startind (buffer_or_string_bytind_to_memind (obj, ind), \
|
|
394 start_open)
|
|
395
|
|
396 #define buffer_or_string_bytind_to_endind(obj, ind, end_open) \
|
|
397 memind_to_endind (buffer_or_string_bytind_to_memind (obj, ind), \
|
|
398 end_open)
|
|
399
|
|
400 /* ------------------------------- */
|
|
401 /* Lisp-level functions */
|
|
402 /* ------------------------------- */
|
|
403
|
|
404 /* flags for decode_extent() */
|
|
405 #define DE_MUST_HAVE_BUFFER 1
|
|
406 #define DE_MUST_BE_ATTACHED 2
|
|
407
|
|
408 Lisp_Object Vlast_highlighted_extent;
|
|
409 int mouse_highlight_priority;
|
|
410
|
|
411 Lisp_Object Qextentp;
|
|
412 Lisp_Object Qextent_live_p;
|
|
413
|
|
414 Lisp_Object Qall_extents_closed;
|
|
415 Lisp_Object Qall_extents_open;
|
|
416 Lisp_Object Qall_extents_closed_open;
|
|
417 Lisp_Object Qall_extents_open_closed;
|
|
418 Lisp_Object Qstart_in_region;
|
|
419 Lisp_Object Qend_in_region;
|
|
420 Lisp_Object Qstart_and_end_in_region;
|
|
421 Lisp_Object Qstart_or_end_in_region;
|
|
422 Lisp_Object Qnegate_in_region;
|
|
423
|
|
424 Lisp_Object Qdetached;
|
|
425 Lisp_Object Qdestroyed;
|
|
426 Lisp_Object Qbegin_glyph;
|
|
427 Lisp_Object Qend_glyph;
|
|
428 Lisp_Object Qstart_open;
|
|
429 Lisp_Object Qend_open;
|
|
430 Lisp_Object Qstart_closed;
|
|
431 Lisp_Object Qend_closed;
|
|
432 Lisp_Object Qread_only;
|
|
433 /* Qhighlight defined in general.c */
|
|
434 Lisp_Object Qunique;
|
|
435 Lisp_Object Qduplicable;
|
|
436 Lisp_Object Qdetachable;
|
|
437 Lisp_Object Qpriority;
|
|
438 Lisp_Object Qmouse_face;
|
207
|
439 Lisp_Object Qinitial_redisplay_function;
|
0
|
440
|
|
441 Lisp_Object Qglyph_layout; /* This exists only for backwards compatibility. */
|
|
442 Lisp_Object Qbegin_glyph_layout, Qend_glyph_layout;
|
|
443 Lisp_Object Qoutside_margin;
|
|
444 Lisp_Object Qinside_margin;
|
|
445 Lisp_Object Qwhitespace;
|
|
446 /* Qtext defined in general.c */
|
|
447
|
|
448 /* partially used in redisplay */
|
|
449 Lisp_Object Qglyph_invisible;
|
|
450
|
|
451 Lisp_Object Qcopy_function;
|
|
452 Lisp_Object Qpaste_function;
|
|
453
|
|
454 /* The idea here is that if we're given a list of faces, we
|
|
455 need to "memoize" this so that two lists of faces that are `equal'
|
|
456 turn into the same object. When `set-extent-face' is called, we
|
|
457 "memoize" into a list of actual faces; when `extent-face' is called,
|
|
458 we do a reverse lookup to get the list of symbols. */
|
|
459
|
|
460 static Lisp_Object canonicalize_extent_property (Lisp_Object prop,
|
|
461 Lisp_Object value);
|
|
462 Lisp_Object Vextent_face_memoize_hash_table;
|
|
463 Lisp_Object Vextent_face_reverse_memoize_hash_table;
|
|
464 Lisp_Object Vextent_face_reusable_list;
|
|
465 /* FSFmacs bogosity */
|
|
466 Lisp_Object Vdefault_text_properties;
|
|
467
|
272
|
468
|
|
469 EXFUN (Fextent_properties, 1);
|
|
470 EXFUN (Fset_extent_property, 3);
|
|
471
|
0
|
472
|
|
473 /************************************************************************/
|
|
474 /* Generalized gap array */
|
|
475 /************************************************************************/
|
|
476
|
|
477 /* This generalizes the "array with a gap" model used to store buffer
|
|
478 characters. This is based on the stuff in insdel.c and should
|
|
479 probably be merged with it. This is not extent-specific and should
|
|
480 perhaps be moved into a separate file. */
|
|
481
|
|
482 /* ------------------------------- */
|
|
483 /* internal functions */
|
|
484 /* ------------------------------- */
|
|
485
|
|
486 /* Adjust the gap array markers in the range (FROM, TO]. Parallel to
|
|
487 adjust_markers() in insdel.c. */
|
|
488
|
|
489 static void
|
|
490 gap_array_adjust_markers (Gap_Array *ga, Memind from,
|
|
491 Memind to, int amount)
|
|
492 {
|
|
493 Gap_Array_Marker *m;
|
|
494
|
|
495 for (m = ga->markers; m; m = m->next)
|
|
496 m->pos = do_marker_adjustment (m->pos, from, to, amount);
|
|
497 }
|
|
498
|
|
499 /* Move the gap to array position POS. Parallel to move_gap() in
|
|
500 insdel.c but somewhat simplified. */
|
|
501
|
|
502 static void
|
|
503 gap_array_move_gap (Gap_Array *ga, int pos)
|
|
504 {
|
|
505 int gap = ga->gap;
|
|
506 int gapsize = ga->gapsize;
|
|
507
|
|
508 assert (ga->array);
|
|
509 if (pos < gap)
|
|
510 {
|
|
511 memmove (GAP_ARRAY_MEMEL_ADDR (ga, pos + gapsize),
|
|
512 GAP_ARRAY_MEMEL_ADDR (ga, pos),
|
|
513 (gap - pos)*ga->elsize);
|
|
514 gap_array_adjust_markers (ga, (Memind) pos, (Memind) gap,
|
|
515 gapsize);
|
|
516 }
|
|
517 else if (pos > gap)
|
|
518 {
|
|
519 memmove (GAP_ARRAY_MEMEL_ADDR (ga, gap),
|
|
520 GAP_ARRAY_MEMEL_ADDR (ga, gap + gapsize),
|
|
521 (pos - gap)*ga->elsize);
|
|
522 gap_array_adjust_markers (ga, (Memind) (gap + gapsize),
|
|
523 (Memind) (pos + gapsize), - gapsize);
|
|
524 }
|
|
525 ga->gap = pos;
|
|
526 }
|
|
527
|
|
528 /* Make the gap INCREMENT characters longer. Parallel to make_gap() in
|
|
529 insdel.c. */
|
|
530
|
|
531 static void
|
|
532 gap_array_make_gap (Gap_Array *ga, int increment)
|
|
533 {
|
|
534 char *ptr = ga->array;
|
|
535 int real_gap_loc;
|
|
536 int old_gap_size;
|
|
537
|
|
538 /* If we have to get more space, get enough to last a while. We use
|
|
539 a geometric progession that saves on realloc space. */
|
|
540 increment += 100 + ga->numels / 8;
|
|
541
|
185
|
542 ptr = (char *) xrealloc (ptr,
|
|
543 (ga->numels + ga->gapsize + increment)*ga->elsize);
|
0
|
544 if (ptr == 0)
|
|
545 memory_full ();
|
|
546 ga->array = ptr;
|
|
547
|
|
548 real_gap_loc = ga->gap;
|
|
549 old_gap_size = ga->gapsize;
|
|
550
|
|
551 /* Call the newly allocated space a gap at the end of the whole space. */
|
|
552 ga->gap = ga->numels + ga->gapsize;
|
|
553 ga->gapsize = increment;
|
|
554
|
|
555 /* Move the new gap down to be consecutive with the end of the old one.
|
|
556 This adjusts the markers properly too. */
|
|
557 gap_array_move_gap (ga, real_gap_loc + old_gap_size);
|
|
558
|
|
559 /* Now combine the two into one large gap. */
|
|
560 ga->gapsize += old_gap_size;
|
|
561 ga->gap = real_gap_loc;
|
|
562 }
|
|
563
|
|
564 /* ------------------------------- */
|
|
565 /* external functions */
|
|
566 /* ------------------------------- */
|
|
567
|
|
568 /* Insert NUMELS elements (pointed to by ELPTR) into the specified
|
|
569 gap array at POS. */
|
|
570
|
|
571 static void
|
|
572 gap_array_insert_els (Gap_Array *ga, int pos, void *elptr, int numels)
|
|
573 {
|
|
574 assert (pos >= 0 && pos <= ga->numels);
|
|
575 if (ga->gapsize < numels)
|
|
576 gap_array_make_gap (ga, numels - ga->gapsize);
|
|
577 if (pos != ga->gap)
|
|
578 gap_array_move_gap (ga, pos);
|
|
579
|
|
580 memcpy (GAP_ARRAY_MEMEL_ADDR (ga, ga->gap), (char *) elptr,
|
|
581 numels*ga->elsize);
|
|
582 ga->gapsize -= numels;
|
|
583 ga->gap += numels;
|
|
584 ga->numels += numels;
|
|
585 /* This is the equivalent of insert-before-markers.
|
|
586
|
|
587 #### Should only happen if marker is "moves forward at insert" type.
|
|
588 */
|
|
589
|
|
590 gap_array_adjust_markers (ga, pos - 1, pos, numels);
|
|
591 }
|
|
592
|
|
593 /* Delete NUMELS elements from the specified gap array, starting at FROM. */
|
|
594
|
|
595 static void
|
|
596 gap_array_delete_els (Gap_Array *ga, int from, int numdel)
|
|
597 {
|
|
598 int to = from + numdel;
|
|
599 int gapsize = ga->gapsize;
|
|
600
|
|
601 assert (from >= 0);
|
|
602 assert (numdel >= 0);
|
|
603 assert (to <= ga->numels);
|
|
604
|
|
605 /* Make sure the gap is somewhere in or next to what we are deleting. */
|
|
606 if (to < ga->gap)
|
|
607 gap_array_move_gap (ga, to);
|
|
608 if (from > ga->gap)
|
|
609 gap_array_move_gap (ga, from);
|
|
610
|
|
611 /* Relocate all markers pointing into the new, larger gap
|
|
612 to point at the end of the text before the gap. */
|
|
613 gap_array_adjust_markers (ga, to + gapsize, to + gapsize,
|
|
614 - numdel - gapsize);
|
|
615
|
|
616 ga->gapsize += numdel;
|
|
617 ga->numels -= numdel;
|
|
618 ga->gap = from;
|
|
619 }
|
|
620
|
|
621 static Gap_Array_Marker *
|
|
622 gap_array_make_marker (Gap_Array *ga, int pos)
|
|
623 {
|
|
624 Gap_Array_Marker *m;
|
|
625
|
|
626 assert (pos >= 0 && pos <= ga->numels);
|
|
627 if (gap_array_marker_freelist)
|
|
628 {
|
|
629 m = gap_array_marker_freelist;
|
|
630 gap_array_marker_freelist = gap_array_marker_freelist->next;
|
|
631 }
|
|
632 else
|
185
|
633 m = xnew (Gap_Array_Marker);
|
0
|
634
|
|
635 m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS (ga, pos);
|
|
636 m->next = ga->markers;
|
|
637 ga->markers = m;
|
|
638 return m;
|
|
639 }
|
|
640
|
|
641 static void
|
|
642 gap_array_delete_marker (Gap_Array *ga, Gap_Array_Marker *m)
|
|
643 {
|
|
644 Gap_Array_Marker *p, *prev;
|
|
645
|
|
646 for (prev = 0, p = ga->markers; p && p != m; prev = p, p = p->next)
|
|
647 ;
|
|
648 assert (p);
|
|
649 if (prev)
|
|
650 prev->next = p->next;
|
|
651 else
|
|
652 ga->markers = p->next;
|
|
653 m->next = gap_array_marker_freelist;
|
|
654 m->pos = 0xDEADBEEF; /* -559038737 as an int */
|
|
655 gap_array_marker_freelist = m;
|
|
656 }
|
|
657
|
|
658 static void
|
|
659 gap_array_delete_all_markers (Gap_Array *ga)
|
|
660 {
|
|
661 Gap_Array_Marker *p, *next;
|
|
662
|
|
663 for (p = ga->markers; p; p = next)
|
|
664 {
|
|
665 next = p->next;
|
|
666 p->next = gap_array_marker_freelist;
|
|
667 p->pos = 0xDEADBEEF; /* -559038737 as an int */
|
|
668 gap_array_marker_freelist = p;
|
|
669 }
|
|
670 }
|
|
671
|
|
672 static void
|
|
673 gap_array_move_marker (Gap_Array *ga, Gap_Array_Marker *m, int pos)
|
|
674 {
|
|
675 assert (pos >= 0 && pos <= ga->numels);
|
|
676 m->pos = GAP_ARRAY_ARRAY_TO_MEMORY_POS (ga, pos);
|
|
677 }
|
|
678
|
|
679 #define gap_array_marker_pos(ga, m) \
|
|
680 GAP_ARRAY_MEMORY_TO_ARRAY_POS (ga, (m)->pos)
|
|
681
|
|
682 static Gap_Array *
|
|
683 make_gap_array (int elsize)
|
|
684 {
|
185
|
685 Gap_Array *ga = xnew_and_zero (Gap_Array);
|
0
|
686 ga->elsize = elsize;
|
|
687 return ga;
|
|
688 }
|
|
689
|
|
690 static void
|
|
691 free_gap_array (Gap_Array *ga)
|
|
692 {
|
|
693 if (ga->array)
|
|
694 xfree (ga->array);
|
|
695 gap_array_delete_all_markers (ga);
|
|
696 xfree (ga);
|
|
697 }
|
|
698
|
|
699
|
|
700 /************************************************************************/
|
|
701 /* Extent list primitives */
|
|
702 /************************************************************************/
|
|
703
|
|
704 /* A list of extents is maintained as a double gap array: one gap array
|
|
705 is ordered by start index (the "display order") and the other is
|
|
706 ordered by end index (the "e-order"). Note that positions in an
|
|
707 extent list should logically be conceived of as referring *to*
|
|
708 a particular extent (as is the norm in programs) rather than
|
|
709 sitting between two extents. Note also that callers of these
|
|
710 functions should not be aware of the fact that the extent list is
|
|
711 implemented as an array, except for the fact that positions are
|
|
712 integers (this should be generalized to handle integers and linked
|
|
713 list equally well).
|
|
714 */
|
|
715
|
|
716 /* Number of elements in an extent list */
|
|
717 #define extent_list_num_els(el) GAP_ARRAY_NUM_ELS(el->start)
|
|
718
|
|
719 /* Return the position at which EXTENT is located in the specified extent
|
|
720 list (in the display order if ENDP is 0, in the e-order otherwise).
|
|
721 If the extent is not found, the position where the extent would
|
|
722 be inserted is returned. If ENDP is 0, the insertion would go after
|
|
723 all other equal extents. If ENDP is not 0, the insertion would go
|
|
724 before all other equal extents. If FOUNDP is not 0, then whether
|
|
725 the extent was found will get written into it. */
|
|
726
|
|
727 static int
|
|
728 extent_list_locate (Extent_List *el, EXTENT extent, int endp, int *foundp)
|
|
729 {
|
|
730 Gap_Array *ga = endp ? el->end : el->start;
|
|
731 int left = 0, right = GAP_ARRAY_NUM_ELS (ga);
|
|
732 int oldfoundpos, foundpos;
|
|
733 int found;
|
|
734
|
|
735 while (left != right)
|
|
736 {
|
|
737 /* RIGHT might not point to a valid extent (i.e. it's at the end
|
|
738 of the list), so NEWPOS must round down. */
|
|
739 unsigned int newpos = (left + right) >> 1;
|
272
|
740 EXTENT e = EXTENT_GAP_ARRAY_AT (ga, (int) newpos);
|
173
|
741
|
0
|
742 if (endp ? EXTENT_E_LESS (e, extent) : EXTENT_LESS (e, extent))
|
|
743 left = newpos+1;
|
|
744 else
|
|
745 right = newpos;
|
|
746 }
|
|
747
|
|
748 /* Now we're at the beginning of all equal extents. */
|
|
749 found = 0;
|
|
750 oldfoundpos = foundpos = left;
|
|
751 while (foundpos < GAP_ARRAY_NUM_ELS (ga))
|
|
752 {
|
272
|
753 EXTENT e = EXTENT_GAP_ARRAY_AT (ga, foundpos);
|
0
|
754 if (e == extent)
|
|
755 {
|
|
756 found = 1;
|
|
757 break;
|
|
758 }
|
|
759 if (!EXTENT_EQUAL (e, extent))
|
|
760 break;
|
|
761 foundpos++;
|
|
762 }
|
|
763 if (foundp)
|
|
764 *foundp = found;
|
|
765 if (found || !endp)
|
|
766 return foundpos;
|
|
767 else
|
|
768 return oldfoundpos;
|
|
769 }
|
|
770
|
|
771 /* Return the position of the first extent that begins at or after POS
|
|
772 (or ends at or after POS, if ENDP is not 0).
|
|
773
|
|
774 An out-of-range value for POS is allowed, and guarantees that the
|
|
775 position at the beginning or end of the extent list is returned. */
|
|
776
|
|
777 static int
|
|
778 extent_list_locate_from_pos (Extent_List *el, Memind pos, int endp)
|
|
779 {
|
|
780 struct extent fake_extent;
|
|
781 /*
|
|
782
|
|
783 Note that if we search for [POS, POS], then we get the following:
|
|
784
|
|
785 -- if ENDP is 0, then all extents whose start position is <= POS
|
|
786 lie before the returned position, and all extents whose start
|
|
787 position is > POS lie at or after the returned position.
|
|
788
|
|
789 -- if ENDP is not 0, then all extents whose end position is < POS
|
|
790 lie before the returned position, and all extents whose end
|
|
791 position is >= POS lie at or after the returned position.
|
|
792
|
|
793 */
|
|
794 set_extent_start (&fake_extent, endp ? pos : pos-1);
|
|
795 set_extent_end (&fake_extent, endp ? pos : pos-1);
|
|
796 return extent_list_locate (el, &fake_extent, endp, 0);
|
|
797 }
|
|
798
|
|
799 /* Return the extent at POS. */
|
|
800
|
|
801 static EXTENT
|
|
802 extent_list_at (Extent_List *el, Memind pos, int endp)
|
|
803 {
|
|
804 Gap_Array *ga = endp ? el->end : el->start;
|
|
805
|
|
806 assert (pos >= 0 && pos < GAP_ARRAY_NUM_ELS (ga));
|
|
807 return EXTENT_GAP_ARRAY_AT (ga, pos);
|
|
808 }
|
|
809
|
|
810 /* Insert an extent into an extent list. */
|
|
811
|
|
812 static void
|
|
813 extent_list_insert (Extent_List *el, EXTENT extent)
|
|
814 {
|
|
815 int pos, foundp;
|
|
816
|
|
817 pos = extent_list_locate (el, extent, 0, &foundp);
|
|
818 assert (!foundp);
|
|
819 gap_array_insert_els (el->start, pos, &extent, 1);
|
|
820 pos = extent_list_locate (el, extent, 1, &foundp);
|
|
821 assert (!foundp);
|
|
822 gap_array_insert_els (el->end, pos, &extent, 1);
|
|
823 }
|
|
824
|
|
825 /* Delete an extent from an extent list. */
|
|
826
|
|
827 static void
|
|
828 extent_list_delete (Extent_List *el, EXTENT extent)
|
|
829 {
|
|
830 int pos, foundp;
|
|
831
|
|
832 pos = extent_list_locate (el, extent, 0, &foundp);
|
|
833 assert (foundp);
|
|
834 gap_array_delete_els (el->start, pos, 1);
|
|
835 pos = extent_list_locate (el, extent, 1, &foundp);
|
|
836 assert (foundp);
|
|
837 gap_array_delete_els (el->end, pos, 1);
|
|
838 }
|
|
839
|
|
840 static void
|
|
841 extent_list_delete_all (Extent_List *el)
|
|
842 {
|
|
843 gap_array_delete_els (el->start, 0, GAP_ARRAY_NUM_ELS (el->start));
|
|
844 gap_array_delete_els (el->end, 0, GAP_ARRAY_NUM_ELS (el->end));
|
|
845 }
|
|
846
|
|
847 static Extent_List_Marker *
|
|
848 extent_list_make_marker (Extent_List *el, int pos, int endp)
|
|
849 {
|
|
850 Extent_List_Marker *m;
|
|
851
|
|
852 if (extent_list_marker_freelist)
|
|
853 {
|
|
854 m = extent_list_marker_freelist;
|
|
855 extent_list_marker_freelist = extent_list_marker_freelist->next;
|
|
856 }
|
|
857 else
|
185
|
858 m = xnew (Extent_List_Marker);
|
0
|
859
|
|
860 m->m = gap_array_make_marker (endp ? el->end : el->start, pos);
|
|
861 m->endp = endp;
|
|
862 m->next = el->markers;
|
|
863 el->markers = m;
|
|
864 return m;
|
|
865 }
|
|
866
|
|
867 #define extent_list_move_marker(el, mkr, pos) \
|
|
868 gap_array_move_marker((mkr)->endp ? (el)->end : (el)->start, (mkr)->m, pos)
|
|
869
|
|
870 static void
|
|
871 extent_list_delete_marker (Extent_List *el, Extent_List_Marker *m)
|
|
872 {
|
|
873 Extent_List_Marker *p, *prev;
|
|
874
|
|
875 for (prev = 0, p = el->markers; p && p != m; prev = p, p = p->next)
|
|
876 ;
|
|
877 assert (p);
|
|
878 if (prev)
|
|
879 prev->next = p->next;
|
|
880 else
|
|
881 el->markers = p->next;
|
|
882 m->next = extent_list_marker_freelist;
|
|
883 extent_list_marker_freelist = m;
|
|
884 gap_array_delete_marker (m->endp ? el->end : el->start, m->m);
|
|
885 }
|
|
886
|
|
887 #define extent_list_marker_pos(el, mkr) \
|
|
888 gap_array_marker_pos ((mkr)->endp ? (el)->end : (el)->start, (mkr)->m)
|
|
889
|
|
890 static Extent_List *
|
|
891 allocate_extent_list (void)
|
|
892 {
|
185
|
893 Extent_List *el = xnew (Extent_List);
|
0
|
894 el->start = make_gap_array (sizeof(EXTENT));
|
|
895 el->end = make_gap_array (sizeof(EXTENT));
|
|
896 el->markers = 0;
|
|
897 return el;
|
|
898 }
|
|
899
|
|
900 static void
|
|
901 free_extent_list (Extent_List *el)
|
|
902 {
|
|
903 free_gap_array (el->start);
|
|
904 free_gap_array (el->end);
|
|
905 xfree (el);
|
|
906 }
|
|
907
|
|
908
|
|
909 /************************************************************************/
|
|
910 /* Auxiliary extent structure */
|
|
911 /************************************************************************/
|
|
912
|
|
913 static Lisp_Object
|
|
914 mark_extent_auxiliary (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
915 {
|
185
|
916 struct extent_auxiliary *data = XEXTENT_AUXILIARY (obj);
|
0
|
917 ((markobj) (data->begin_glyph));
|
|
918 ((markobj) (data->end_glyph));
|
|
919 ((markobj) (data->invisible));
|
|
920 ((markobj) (data->children));
|
|
921 ((markobj) (data->read_only));
|
|
922 ((markobj) (data->mouse_face));
|
207
|
923 ((markobj) (data->initial_redisplay_function));
|
173
|
924 return data->parent;
|
0
|
925 }
|
|
926
|
272
|
927 DEFINE_LRECORD_IMPLEMENTATION ("extent-auxiliary", extent_auxiliary,
|
|
928 mark_extent_auxiliary, internal_object_printer,
|
|
929 0, 0, 0, struct extent_auxiliary);
|
|
930
|
0
|
931 void
|
|
932 allocate_extent_auxiliary (EXTENT ext)
|
|
933 {
|
272
|
934 Lisp_Object extent_aux;
|
0
|
935 struct extent_auxiliary *data =
|
185
|
936 alloc_lcrecord_type (struct extent_auxiliary, lrecord_extent_auxiliary);
|
0
|
937
|
|
938 copy_lcrecord (data, &extent_auxiliary_defaults);
|
|
939 XSETEXTENT_AUXILIARY (extent_aux, data);
|
|
940 ext->plist = Fcons (extent_aux, ext->plist);
|
|
941 ext->flags.has_aux = 1;
|
|
942 }
|
|
943
|
|
944
|
|
945 /************************************************************************/
|
|
946 /* Extent info structure */
|
|
947 /************************************************************************/
|
|
948
|
|
949 /* An extent-info structure consists of a list of the buffer or string's
|
|
950 extents and a "stack of extents" that lists all of the extents over
|
|
951 a particular position. The stack-of-extents info is used for
|
|
952 optimization purposes -- it basically caches some info that might
|
|
953 be expensive to compute. Certain otherwise hard computations are easy
|
|
954 given the stack of extents over a particular position, and if the
|
|
955 stack of extents over a nearby position is known (because it was
|
|
956 calculated at some prior point in time), it's easy to move the stack
|
|
957 of extents to the proper position.
|
|
958
|
|
959 Given that the stack of extents is an optimization, and given that
|
|
960 it requires memory, a string's stack of extents is wiped out each
|
|
961 time a garbage collection occurs. Therefore, any time you retrieve
|
|
962 the stack of extents, it might not be there. If you need it to
|
|
963 be there, use the _force version.
|
|
964
|
2
|
965 Similarly, a string may or may not have an extent_info structure.
|
0
|
966 (Generally it won't if there haven't been any extents added to the
|
|
967 string.) So use the _force version if you need the extent_info
|
|
968 structure to be there. */
|
|
969
|
|
970 static struct stack_of_extents *allocate_soe (void);
|
|
971 static void free_soe (struct stack_of_extents *soe);
|
|
972 static void soe_invalidate (Lisp_Object obj);
|
|
973
|
|
974 static Lisp_Object
|
|
975 mark_extent_info (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
976 {
|
|
977 struct extent_info *data =
|
|
978 (struct extent_info *) XEXTENT_INFO (obj);
|
|
979 int i;
|
|
980 Extent_List *list;
|
|
981
|
|
982 /* Vbuffer_defaults and Vbuffer_local_symbols are buffer-like
|
|
983 objects that are created specially and never have their extent
|
|
984 list initialized (or rather, it is set to zero in
|
|
985 nuke_all_buffer_slots()). However, these objects get
|
|
986 garbage-collected so we have to deal.
|
|
987
|
|
988 (Also the list can be zero when we're dealing with a destroyed
|
|
989 buffer.) */
|
|
990
|
|
991 list = data->extents;
|
|
992 if (list)
|
|
993 {
|
|
994 for (i = 0; i < extent_list_num_els (list); i++)
|
|
995 {
|
|
996 struct extent *extent = extent_list_at (list, i, 0);
|
272
|
997 Lisp_Object exobj;
|
0
|
998
|
|
999 XSETEXTENT (exobj, extent);
|
|
1000 ((markobj) (exobj));
|
|
1001 }
|
|
1002 }
|
|
1003
|
|
1004 return Qnil;
|
|
1005 }
|
|
1006
|
|
1007 static void
|
|
1008 finalize_extent_info (void *header, int for_disksave)
|
|
1009 {
|
|
1010 struct extent_info *data = (struct extent_info *) header;
|
|
1011
|
|
1012 if (for_disksave)
|
|
1013 return;
|
|
1014
|
|
1015 if (data->soe)
|
|
1016 {
|
|
1017 free_soe (data->soe);
|
|
1018 data->soe = 0;
|
|
1019 }
|
|
1020 if (data->extents)
|
|
1021 {
|
|
1022 free_extent_list (data->extents);
|
|
1023 data->extents = 0;
|
|
1024 }
|
|
1025 }
|
|
1026
|
272
|
1027 DEFINE_LRECORD_IMPLEMENTATION ("extent-info", extent_info,
|
|
1028 mark_extent_info, internal_object_printer,
|
|
1029 finalize_extent_info, 0, 0,
|
|
1030 struct extent_info);
|
|
1031
|
0
|
1032 static Lisp_Object
|
|
1033 allocate_extent_info (void)
|
|
1034 {
|
272
|
1035 Lisp_Object extent_info;
|
0
|
1036 struct extent_info *data =
|
185
|
1037 alloc_lcrecord_type (struct extent_info, lrecord_extent_info);
|
0
|
1038
|
|
1039 XSETEXTENT_INFO (extent_info, data);
|
|
1040 data->extents = allocate_extent_list ();
|
|
1041 data->soe = 0;
|
|
1042 return extent_info;
|
|
1043 }
|
|
1044
|
|
1045 void
|
|
1046 flush_cached_extent_info (Lisp_Object extent_info)
|
|
1047 {
|
|
1048 struct extent_info *data = XEXTENT_INFO (extent_info);
|
|
1049
|
|
1050 if (data->soe)
|
|
1051 {
|
|
1052 free_soe (data->soe);
|
|
1053 data->soe = 0;
|
|
1054 }
|
|
1055 }
|
|
1056
|
|
1057
|
|
1058 /************************************************************************/
|
|
1059 /* Buffer/string extent primitives */
|
|
1060 /************************************************************************/
|
|
1061
|
|
1062 /* The functions in this section are the ONLY ones that should know
|
|
1063 about the internal implementation of the extent lists. Other functions
|
|
1064 should only know that there are two orderings on extents, the "display"
|
|
1065 order (sorted by start position, basically) and the e-order (sorted
|
|
1066 by end position, basically), and that certain operations are provided
|
|
1067 to manipulate the list. */
|
|
1068
|
|
1069 /* ------------------------------- */
|
|
1070 /* basic primitives */
|
|
1071 /* ------------------------------- */
|
|
1072
|
|
1073 static Lisp_Object
|
|
1074 decode_buffer_or_string (Lisp_Object object)
|
|
1075 {
|
|
1076 if (NILP (object))
|
|
1077 XSETBUFFER (object, current_buffer);
|
272
|
1078 else if (BUFFERP (object))
|
|
1079 CHECK_LIVE_BUFFER (object);
|
|
1080 else if (STRINGP (object))
|
|
1081 ;
|
0
|
1082 else
|
272
|
1083 dead_wrong_type_argument (Qbuffer_or_string_p, object);
|
|
1084
|
0
|
1085 return object;
|
173
|
1086 }
|
0
|
1087
|
|
1088 EXTENT
|
|
1089 extent_ancestor_1 (EXTENT e)
|
|
1090 {
|
|
1091 while (e->flags.has_parent)
|
|
1092 {
|
|
1093 /* There should be no circularities except in case of a logic
|
|
1094 error somewhere in the extent code */
|
|
1095 e = XEXTENT (XEXTENT_AUXILIARY (XCAR (e->plist))->parent);
|
|
1096 }
|
|
1097 return e;
|
|
1098 }
|
|
1099
|
272
|
1100 /* Given an extent object (string or buffer or nil), return its extent info.
|
|
1101 This may be 0 for a string. */
|
0
|
1102
|
|
1103 static struct extent_info *
|
|
1104 buffer_or_string_extent_info (Lisp_Object object)
|
|
1105 {
|
|
1106 if (STRINGP (object))
|
|
1107 {
|
|
1108 Lisp_Object plist = XSTRING (object)->plist;
|
|
1109 if (!CONSP (plist) || !EXTENT_INFOP (XCAR (plist)))
|
|
1110 return 0;
|
|
1111 return XEXTENT_INFO (XCAR (plist));
|
|
1112 }
|
|
1113 else if (NILP (object))
|
|
1114 return 0;
|
|
1115 else
|
|
1116 return XEXTENT_INFO (XBUFFER (object)->extent_info);
|
|
1117 }
|
|
1118
|
|
1119 /* Given a string or buffer, return its extent list. This may be
|
|
1120 0 for a string. */
|
|
1121
|
|
1122 static Extent_List *
|
|
1123 buffer_or_string_extent_list (Lisp_Object object)
|
|
1124 {
|
|
1125 struct extent_info *info = buffer_or_string_extent_info (object);
|
|
1126
|
|
1127 if (!info)
|
|
1128 return 0;
|
|
1129 return info->extents;
|
|
1130 }
|
|
1131
|
|
1132 /* Given a string or buffer, return its extent info. If it's not there,
|
|
1133 create it. */
|
|
1134
|
|
1135 static struct extent_info *
|
|
1136 buffer_or_string_extent_info_force (Lisp_Object object)
|
|
1137 {
|
|
1138 struct extent_info *info = buffer_or_string_extent_info (object);
|
173
|
1139
|
0
|
1140 if (!info)
|
|
1141 {
|
|
1142 Lisp_Object extent_info;
|
|
1143
|
|
1144 assert (STRINGP (object)); /* should never happen for buffers --
|
|
1145 the only buffers without an extent
|
|
1146 info are those after finalization,
|
|
1147 destroyed buffers, or special
|
|
1148 Lisp-inaccessible buffer objects. */
|
|
1149 extent_info = allocate_extent_info ();
|
|
1150 XSTRING (object)->plist = Fcons (extent_info, XSTRING (object)->plist);
|
|
1151 return XEXTENT_INFO (extent_info);
|
|
1152 }
|
|
1153
|
|
1154 return info;
|
|
1155 }
|
|
1156
|
|
1157 /* Detach all the extents in OBJECT. Called from redisplay. */
|
|
1158
|
|
1159 void
|
|
1160 detach_all_extents (Lisp_Object object)
|
|
1161 {
|
|
1162 struct extent_info *data = buffer_or_string_extent_info (object);
|
|
1163
|
|
1164 if (data)
|
|
1165 {
|
|
1166 if (data->extents)
|
|
1167 {
|
|
1168 int i;
|
|
1169
|
|
1170 for (i = 0; i < extent_list_num_els (data->extents); i++)
|
|
1171 {
|
|
1172 EXTENT e = extent_list_at (data->extents, i, 0);
|
|
1173 /* No need to do detach_extent(). Just nuke the damn things,
|
|
1174 which results in the equivalent but faster. */
|
|
1175 set_extent_start (e, -1);
|
|
1176 set_extent_end (e, -1);
|
|
1177 }
|
|
1178 }
|
|
1179
|
|
1180 /* But we need to clear all the lists containing extents or
|
|
1181 havoc will result. */
|
|
1182 extent_list_delete_all (data->extents);
|
|
1183 soe_invalidate (object);
|
|
1184 }
|
|
1185 }
|
|
1186
|
|
1187
|
|
1188 void
|
|
1189 init_buffer_extents (struct buffer *b)
|
|
1190 {
|
|
1191 b->extent_info = allocate_extent_info ();
|
|
1192 }
|
|
1193
|
|
1194 void
|
|
1195 uninit_buffer_extents (struct buffer *b)
|
|
1196 {
|
|
1197 struct extent_info *data = XEXTENT_INFO (b->extent_info);
|
|
1198
|
|
1199 /* Don't destroy the extents here -- there may still be children
|
|
1200 extents pointing to the extents. */
|
|
1201 detach_all_extents (make_buffer (b));
|
|
1202 finalize_extent_info (data, 0);
|
|
1203 }
|
|
1204
|
|
1205 /* Retrieve the extent list that an extent is a member of; the
|
|
1206 return value will never be 0 except in destroyed buffers (in which
|
|
1207 case the only extents that can refer to this buffer are detached
|
|
1208 ones). */
|
|
1209
|
|
1210 #define extent_extent_list(e) buffer_or_string_extent_list (extent_object (e))
|
|
1211
|
|
1212 /* ------------------------------- */
|
|
1213 /* stack of extents */
|
|
1214 /* ------------------------------- */
|
|
1215
|
|
1216 #ifdef ERROR_CHECK_EXTENTS
|
|
1217
|
|
1218 void
|
|
1219 sledgehammer_extent_check (Lisp_Object object)
|
|
1220 {
|
|
1221 int i;
|
|
1222 int endp;
|
|
1223 Extent_List *el = buffer_or_string_extent_list (object);
|
|
1224 struct buffer *buf = 0;
|
|
1225
|
|
1226 if (!el)
|
|
1227 return;
|
|
1228
|
|
1229 if (BUFFERP (object))
|
|
1230 buf = XBUFFER (object);
|
|
1231
|
|
1232 for (endp = 0; endp < 2; endp++)
|
|
1233 for (i = 1; i < extent_list_num_els (el); i++)
|
|
1234 {
|
|
1235 EXTENT e1 = extent_list_at (el, i-1, endp);
|
|
1236 EXTENT e2 = extent_list_at (el, i, endp);
|
|
1237 if (buf)
|
|
1238 {
|
|
1239 assert (extent_start (e1) <= buf->text->gpt ||
|
|
1240 extent_start (e1) > buf->text->gpt + buf->text->gap_size);
|
|
1241 assert (extent_end (e1) <= buf->text->gpt ||
|
|
1242 extent_end (e1) > buf->text->gpt + buf->text->gap_size);
|
|
1243 }
|
|
1244 assert (extent_start (e1) <= extent_end (e1));
|
|
1245 assert (endp ? (EXTENT_E_LESS_EQUAL (e1, e2)) :
|
|
1246 (EXTENT_LESS_EQUAL (e1, e2)));
|
|
1247 }
|
|
1248 }
|
|
1249
|
|
1250 #endif
|
|
1251
|
|
1252 static Stack_Of_Extents *
|
|
1253 buffer_or_string_stack_of_extents (Lisp_Object object)
|
|
1254 {
|
|
1255 struct extent_info *info = buffer_or_string_extent_info (object);
|
|
1256 if (!info)
|
|
1257 return 0;
|
|
1258 return info->soe;
|
|
1259 }
|
|
1260
|
|
1261 static Stack_Of_Extents *
|
|
1262 buffer_or_string_stack_of_extents_force (Lisp_Object object)
|
|
1263 {
|
|
1264 struct extent_info *info = buffer_or_string_extent_info_force (object);
|
|
1265 if (!info->soe)
|
|
1266 info->soe = allocate_soe ();
|
|
1267 return info->soe;
|
|
1268 }
|
|
1269
|
|
1270 /* #define SOE_DEBUG */
|
|
1271
|
|
1272 #ifdef SOE_DEBUG
|
|
1273
|
177
|
1274 static void print_extent_1 (char *buf, Lisp_Object extent);
|
0
|
1275
|
|
1276 static void
|
|
1277 print_extent_2 (EXTENT e)
|
|
1278 {
|
|
1279 Lisp_Object extent;
|
|
1280 char buf[200];
|
|
1281
|
|
1282 XSETEXTENT (extent, e);
|
|
1283 print_extent_1 (buf, extent);
|
272
|
1284 fputs (buf, stdout);
|
0
|
1285 }
|
|
1286
|
|
1287 static void
|
|
1288 soe_dump (Lisp_Object obj)
|
|
1289 {
|
|
1290 int i;
|
|
1291 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
|
|
1292 Extent_List *sel;
|
|
1293 int endp;
|
|
1294
|
|
1295 if (!soe)
|
|
1296 {
|
|
1297 printf ("No SOE");
|
|
1298 return;
|
|
1299 }
|
|
1300 sel = soe->extents;
|
|
1301 printf ("SOE pos is %d (memind %d)\n",
|
|
1302 soe->pos < 0 ? soe->pos :
|
|
1303 buffer_or_string_memind_to_bytind (obj, soe->pos),
|
|
1304 soe->pos);
|
|
1305 for (endp = 0; endp < 2; endp++)
|
|
1306 {
|
|
1307 printf (endp ? "SOE end:" : "SOE start:");
|
|
1308 for (i = 0; i < extent_list_num_els (sel); i++)
|
|
1309 {
|
|
1310 EXTENT e = extent_list_at (sel, i, endp);
|
272
|
1311 putchar ('\t');
|
0
|
1312 print_extent_2 (e);
|
|
1313 }
|
272
|
1314 putchar ('\n');
|
0
|
1315 }
|
272
|
1316 putchar ('\n');
|
0
|
1317 }
|
|
1318
|
|
1319 #endif
|
|
1320
|
|
1321 /* Insert EXTENT into OBJ's stack of extents, if necessary. */
|
|
1322
|
|
1323 static void
|
|
1324 soe_insert (Lisp_Object obj, EXTENT extent)
|
|
1325 {
|
|
1326 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
|
|
1327
|
|
1328 #ifdef SOE_DEBUG
|
|
1329 printf ("Inserting into SOE: ");
|
|
1330 print_extent_2 (extent);
|
272
|
1331 putchar ('\n');
|
0
|
1332 #endif
|
|
1333 if (!soe || soe->pos < extent_start (extent) ||
|
|
1334 soe->pos > extent_end (extent))
|
|
1335 {
|
|
1336 #ifdef SOE_DEBUG
|
|
1337 printf ("(not needed)\n\n");
|
|
1338 #endif
|
|
1339 return;
|
|
1340 }
|
|
1341 extent_list_insert (soe->extents, extent);
|
|
1342 #ifdef SOE_DEBUG
|
272
|
1343 puts ("SOE afterwards is:");
|
0
|
1344 soe_dump (obj);
|
|
1345 #endif
|
|
1346 }
|
|
1347
|
|
1348 /* Delete EXTENT from OBJ's stack of extents, if necessary. */
|
|
1349
|
|
1350 static void
|
|
1351 soe_delete (Lisp_Object obj, EXTENT extent)
|
|
1352 {
|
|
1353 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
|
|
1354
|
|
1355 #ifdef SOE_DEBUG
|
|
1356 printf ("Deleting from SOE: ");
|
|
1357 print_extent_2 (extent);
|
272
|
1358 putchar ('\n');
|
0
|
1359 #endif
|
|
1360 if (!soe || soe->pos < extent_start (extent) ||
|
|
1361 soe->pos > extent_end (extent))
|
|
1362 {
|
|
1363 #ifdef SOE_DEBUG
|
272
|
1364 puts ("(not needed)\n");
|
0
|
1365 #endif
|
|
1366 return;
|
|
1367 }
|
|
1368 extent_list_delete (soe->extents, extent);
|
|
1369 #ifdef SOE_DEBUG
|
272
|
1370 puts ("SOE afterwards is:");
|
0
|
1371 soe_dump (obj);
|
|
1372 #endif
|
|
1373 }
|
|
1374
|
|
1375 /* Move OBJ's stack of extents to lie over the specified position. */
|
|
1376
|
|
1377 static void
|
|
1378 soe_move (Lisp_Object obj, Memind pos)
|
|
1379 {
|
|
1380 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents_force (obj);
|
|
1381 Extent_List *sel = soe->extents;
|
|
1382 int numsoe = extent_list_num_els (sel);
|
|
1383 Extent_List *bel = buffer_or_string_extent_list (obj);
|
|
1384 int direction;
|
|
1385 int endp;
|
|
1386
|
|
1387 #ifdef ERROR_CHECK_EXTENTS
|
|
1388 assert (bel);
|
|
1389 #endif
|
|
1390
|
|
1391 #ifdef SOE_DEBUG
|
|
1392 printf ("Moving SOE from %d (memind %d) to %d (memind %d)\n",
|
|
1393 soe->pos < 0 ? soe->pos :
|
|
1394 buffer_or_string_memind_to_bytind (obj, soe->pos), soe->pos,
|
|
1395 buffer_or_string_memind_to_bytind (obj, pos), pos);
|
|
1396 #endif
|
|
1397 if (soe->pos < pos)
|
|
1398 {
|
|
1399 direction = 1;
|
|
1400 endp = 0;
|
|
1401 }
|
|
1402 else if (soe->pos > pos)
|
|
1403 {
|
|
1404 direction = -1;
|
|
1405 endp = 1;
|
|
1406 }
|
|
1407 else
|
|
1408 {
|
|
1409 #ifdef SOE_DEBUG
|
272
|
1410 puts ("(not needed)\n");
|
0
|
1411 #endif
|
|
1412 return;
|
|
1413 }
|
|
1414
|
|
1415 /* For DIRECTION = 1: Any extent that overlaps POS is either in the
|
|
1416 SOE (if the extent starts at or before SOE->POS) or is greater
|
|
1417 (in the display order) than any extent in the SOE (if it starts
|
|
1418 after SOE->POS).
|
|
1419
|
|
1420 For DIRECTION = -1: Any extent that overlaps POS is either in the
|
|
1421 SOE (if the extent ends at or after SOE->POS) or is less (in the
|
|
1422 e-order) than any extent in the SOE (if it ends before SOE->POS).
|
|
1423
|
|
1424 We proceed in two stages:
|
|
1425
|
|
1426 1) delete all extents in the SOE that don't overlap POS.
|
|
1427 2) insert all extents into the SOE that start (or end, when
|
|
1428 DIRECTION = -1) in (SOE->POS, POS] and that overlap
|
|
1429 POS. (Don't include SOE->POS in the range because those
|
|
1430 extents would already be in the SOE.)
|
|
1431 */
|
|
1432
|
|
1433 /* STAGE 1. */
|
|
1434
|
|
1435 if (numsoe > 0)
|
|
1436 {
|
|
1437 /* Delete all extents in the SOE that don't overlap POS.
|
|
1438 This is all extents that end before (or start after,
|
|
1439 if DIRECTION = -1) POS.
|
|
1440 */
|
|
1441
|
|
1442 /* Deleting extents from the SOE is tricky because it changes
|
|
1443 the positions of extents. If we are deleting in the forward
|
|
1444 direction we have to call extent_list_at() on the same position
|
|
1445 over and over again because positions after the deleted element
|
|
1446 get shifted back by 1. To make life simplest, we delete forward
|
|
1447 irrespective of DIRECTION.
|
|
1448 */
|
|
1449 int start, end;
|
|
1450 int i;
|
|
1451
|
|
1452 if (direction > 0)
|
|
1453 {
|
|
1454 start = 0;
|
|
1455 end = extent_list_locate_from_pos (sel, pos, 1);
|
|
1456 }
|
|
1457 else
|
|
1458 {
|
|
1459 start = extent_list_locate_from_pos (sel, pos+1, 0);
|
|
1460 end = numsoe;
|
|
1461 }
|
|
1462
|
|
1463 for (i = start; i < end; i++)
|
|
1464 extent_list_delete (sel, extent_list_at (sel, start /* see above */,
|
|
1465 !endp));
|
|
1466 }
|
|
1467
|
|
1468 /* STAGE 2. */
|
|
1469
|
|
1470 {
|
|
1471 int start_pos;
|
|
1472
|
|
1473 if (direction < 0)
|
|
1474 start_pos = extent_list_locate_from_pos (bel, soe->pos, endp) - 1;
|
|
1475 else
|
|
1476 start_pos = extent_list_locate_from_pos (bel, soe->pos + 1, endp);
|
|
1477
|
|
1478 for (; start_pos >= 0 && start_pos < extent_list_num_els (bel);
|
|
1479 start_pos += direction)
|
|
1480 {
|
|
1481 EXTENT e = extent_list_at (bel, start_pos, endp);
|
|
1482 if ((direction > 0) ?
|
|
1483 (extent_start (e) > pos) :
|
|
1484 (extent_end (e) < pos))
|
|
1485 break; /* All further extents lie on the far side of POS
|
|
1486 and thus can't overlap. */
|
|
1487 if ((direction > 0) ?
|
|
1488 (extent_end (e) >= pos) :
|
|
1489 (extent_start (e) <= pos))
|
|
1490 extent_list_insert (sel, e);
|
|
1491 }
|
|
1492 }
|
|
1493
|
|
1494 soe->pos = pos;
|
|
1495 #ifdef SOE_DEBUG
|
272
|
1496 puts ("SOE afterwards is:");
|
0
|
1497 soe_dump (obj);
|
|
1498 #endif
|
|
1499 }
|
|
1500
|
|
1501 static void
|
|
1502 soe_invalidate (Lisp_Object obj)
|
|
1503 {
|
|
1504 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (obj);
|
|
1505
|
|
1506 if (soe)
|
|
1507 {
|
|
1508 extent_list_delete_all (soe->extents);
|
|
1509 soe->pos = -1;
|
|
1510 }
|
|
1511 }
|
|
1512
|
|
1513 static struct stack_of_extents *
|
|
1514 allocate_soe (void)
|
|
1515 {
|
185
|
1516 struct stack_of_extents *soe = xnew_and_zero (struct stack_of_extents);
|
0
|
1517 soe->extents = allocate_extent_list ();
|
|
1518 soe->pos = -1;
|
|
1519 return soe;
|
|
1520 }
|
|
1521
|
|
1522 static void
|
|
1523 free_soe (struct stack_of_extents *soe)
|
|
1524 {
|
|
1525 free_extent_list (soe->extents);
|
|
1526 xfree (soe);
|
|
1527 }
|
|
1528
|
|
1529 /* ------------------------------- */
|
|
1530 /* other primitives */
|
|
1531 /* ------------------------------- */
|
|
1532
|
|
1533 /* Return the start (endp == 0) or end (endp == 1) of an extent as
|
|
1534 a byte index. If you want the value as a memory index, use
|
|
1535 extent_endpoint(). If you want the value as a buffer position,
|
|
1536 use extent_endpoint_bufpos(). */
|
|
1537
|
173
|
1538 static Bytind
|
0
|
1539 extent_endpoint_bytind (EXTENT extent, int endp)
|
|
1540 {
|
|
1541 assert (EXTENT_LIVE_P (extent));
|
|
1542 assert (!extent_detached_p (extent));
|
|
1543 {
|
|
1544 Memind i = (endp) ? (extent_end (extent)) :
|
|
1545 (extent_start (extent));
|
|
1546 Lisp_Object obj = extent_object (extent);
|
|
1547 return buffer_or_string_memind_to_bytind (obj, i);
|
|
1548 }
|
|
1549 }
|
|
1550
|
|
1551 static Bufpos
|
|
1552 extent_endpoint_bufpos (EXTENT extent, int endp)
|
|
1553 {
|
|
1554 assert (EXTENT_LIVE_P (extent));
|
|
1555 assert (!extent_detached_p (extent));
|
|
1556 {
|
|
1557 Memind i = (endp) ? (extent_end (extent)) :
|
|
1558 (extent_start (extent));
|
|
1559 Lisp_Object obj = extent_object (extent);
|
|
1560 return buffer_or_string_memind_to_bufpos (obj, i);
|
|
1561 }
|
|
1562 }
|
|
1563
|
|
1564 /* A change to an extent occurred that will change the display, so
|
|
1565 notify redisplay. Maybe also recurse over all the extent's
|
|
1566 descendants. */
|
|
1567
|
|
1568 static void
|
110
|
1569 extent_changed_for_redisplay (EXTENT extent, int descendants_too,
|
|
1570 int invisibility_change)
|
0
|
1571 {
|
|
1572 Lisp_Object object;
|
|
1573 Lisp_Object rest;
|
|
1574
|
|
1575 /* we could easily encounter a detached extent while traversing the
|
|
1576 children, but we should never be able to encounter a dead extent. */
|
|
1577 assert (EXTENT_LIVE_P (extent));
|
|
1578
|
|
1579 if (descendants_too)
|
|
1580 {
|
|
1581 Lisp_Object children = extent_children (extent);
|
|
1582
|
|
1583 if (!NILP (children))
|
|
1584 {
|
|
1585 /* first mark all of the extent's children. We will lose big-time
|
|
1586 if there are any circularities here, so we sure as hell better
|
|
1587 ensure that there aren't. */
|
|
1588 LIST_LOOP (rest, XWEAK_LIST_LIST (children))
|
110
|
1589 extent_changed_for_redisplay (XEXTENT (XCAR (rest)), 1,
|
|
1590 invisibility_change);
|
0
|
1591 }
|
|
1592 }
|
|
1593
|
|
1594 /* now mark the extent itself. */
|
173
|
1595
|
0
|
1596 object = extent_object (extent);
|
|
1597
|
|
1598 if (!BUFFERP (object) || extent_detached_p (extent))
|
|
1599 /* #### Can changes to string extents affect redisplay?
|
|
1600 I will have to think about this. What about string glyphs?
|
|
1601 Things in the modeline? etc. */
|
|
1602 /* #### changes to string extents can certainly affect redisplay
|
|
1603 if the extent is in some generated-modeline-string: when
|
|
1604 we change an extent in generated-modeline-string, this changes
|
|
1605 its parent, which is in `modeline-format', so we should
|
|
1606 force the modeline to be updated. But how to determine whether
|
|
1607 a string is a `generated-modeline-string'? Looping through
|
|
1608 all buffers is not very efficient. Should we add all
|
|
1609 `generated-modeline-string' strings to a hashtable?
|
|
1610 Maybe efficiency is not the greatest concern here and there's
|
|
1611 no big loss in looping over the buffers. */
|
|
1612 return;
|
|
1613
|
|
1614 {
|
|
1615 struct buffer *b;
|
|
1616 b = XBUFFER (object);
|
|
1617 BUF_FACECHANGE (b)++;
|
|
1618 MARK_EXTENTS_CHANGED;
|
110
|
1619 if (invisibility_change)
|
|
1620 MARK_CLIP_CHANGED;
|
0
|
1621 buffer_extent_signal_changed_region (b,
|
|
1622 extent_endpoint_bufpos (extent, 0),
|
|
1623 extent_endpoint_bufpos (extent, 1));
|
|
1624 }
|
|
1625 }
|
|
1626
|
183
|
1627 /* A change to an extent occurred that might affect redisplay.
|
0
|
1628 This is called when properties such as the endpoints, the layout,
|
|
1629 or the priority changes. Redisplay will be affected only if
|
|
1630 the extent has any displayable attributes. */
|
|
1631
|
|
1632 static void
|
110
|
1633 extent_maybe_changed_for_redisplay (EXTENT extent, int descendants_too,
|
|
1634 int invisibility_change)
|
0
|
1635 {
|
|
1636 /* Retrieve the ancestor for efficiency */
|
|
1637 EXTENT anc = extent_ancestor (extent);
|
183
|
1638 if (!NILP (extent_face (anc)) ||
|
|
1639 !NILP (extent_begin_glyph (anc)) ||
|
|
1640 !NILP (extent_end_glyph (anc)) ||
|
|
1641 !NILP (extent_mouse_face (anc)) ||
|
|
1642 !NILP (extent_invisible (anc)) ||
|
272
|
1643 !NILP (extent_initial_redisplay_function (anc)) ||
|
183
|
1644 invisibility_change)
|
110
|
1645 extent_changed_for_redisplay (extent, descendants_too,
|
|
1646 invisibility_change);
|
0
|
1647 }
|
|
1648
|
|
1649 static EXTENT
|
|
1650 make_extent_detached (Lisp_Object object)
|
|
1651 {
|
|
1652 EXTENT extent = allocate_extent ();
|
|
1653
|
|
1654 assert (NILP (object) || STRINGP (object) ||
|
|
1655 (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))));
|
|
1656 extent_object (extent) = object;
|
|
1657 /* Now make sure the extent info exists. */
|
|
1658 if (!NILP (object))
|
183
|
1659 buffer_or_string_extent_info_force (object);
|
0
|
1660 return extent;
|
|
1661 }
|
|
1662
|
|
1663 /* A "real" extent is any extent other than the internal (not-user-visible)
|
|
1664 extents used by `map-extents'. */
|
|
1665
|
|
1666 static EXTENT
|
|
1667 real_extent_at_forward (Extent_List *el, int pos, int endp)
|
|
1668 {
|
|
1669 for (; pos < extent_list_num_els (el); pos++)
|
|
1670 {
|
|
1671 EXTENT e = extent_list_at (el, pos, endp);
|
|
1672 if (!extent_internal_p (e))
|
|
1673 return e;
|
|
1674 }
|
|
1675 return 0;
|
|
1676 }
|
|
1677
|
|
1678 static EXTENT
|
|
1679 real_extent_at_backward (Extent_List *el, int pos, int endp)
|
|
1680 {
|
|
1681 for (; pos >= 0; pos--)
|
|
1682 {
|
|
1683 EXTENT e = extent_list_at (el, pos, endp);
|
|
1684 if (!extent_internal_p (e))
|
|
1685 return e;
|
|
1686 }
|
|
1687 return 0;
|
|
1688 }
|
|
1689
|
|
1690 static EXTENT
|
|
1691 extent_first (Lisp_Object obj)
|
|
1692 {
|
|
1693 Extent_List *el = buffer_or_string_extent_list (obj);
|
|
1694
|
|
1695 if (!el)
|
|
1696 return 0;
|
|
1697 return real_extent_at_forward (el, 0, 0);
|
|
1698 }
|
|
1699
|
|
1700 #ifdef DEBUG_XEMACS
|
|
1701 static EXTENT
|
|
1702 extent_e_first (Lisp_Object obj)
|
|
1703 {
|
|
1704 Extent_List *el = buffer_or_string_extent_list (obj);
|
|
1705
|
|
1706 if (!el)
|
|
1707 return 0;
|
|
1708 return real_extent_at_forward (el, 0, 1);
|
|
1709 }
|
|
1710 #endif
|
|
1711
|
|
1712 static EXTENT
|
|
1713 extent_next (EXTENT e)
|
|
1714 {
|
|
1715 Extent_List *el = extent_extent_list (e);
|
|
1716 int foundp;
|
272
|
1717 int pos = extent_list_locate (el, e, 0, &foundp);
|
0
|
1718 assert (foundp);
|
|
1719 return real_extent_at_forward (el, pos+1, 0);
|
|
1720 }
|
|
1721
|
|
1722 #ifdef DEBUG_XEMACS
|
|
1723 static EXTENT
|
|
1724 extent_e_next (EXTENT e)
|
|
1725 {
|
|
1726 Extent_List *el = extent_extent_list (e);
|
|
1727 int foundp;
|
272
|
1728 int pos = extent_list_locate (el, e, 1, &foundp);
|
0
|
1729 assert (foundp);
|
|
1730 return real_extent_at_forward (el, pos+1, 1);
|
|
1731 }
|
|
1732 #endif
|
|
1733
|
|
1734 static EXTENT
|
|
1735 extent_last (Lisp_Object obj)
|
|
1736 {
|
|
1737 Extent_List *el = buffer_or_string_extent_list (obj);
|
|
1738
|
|
1739 if (!el)
|
|
1740 return 0;
|
|
1741 return real_extent_at_backward (el, extent_list_num_els (el) - 1, 0);
|
|
1742 }
|
|
1743
|
|
1744 #ifdef DEBUG_XEMACS
|
|
1745 static EXTENT
|
|
1746 extent_e_last (Lisp_Object obj)
|
|
1747 {
|
|
1748 Extent_List *el = buffer_or_string_extent_list (obj);
|
|
1749
|
|
1750 if (!el)
|
|
1751 return 0;
|
|
1752 return real_extent_at_backward (el, extent_list_num_els (el) - 1, 1);
|
|
1753 }
|
|
1754 #endif
|
|
1755
|
|
1756 static EXTENT
|
|
1757 extent_previous (EXTENT e)
|
|
1758 {
|
|
1759 Extent_List *el = extent_extent_list (e);
|
|
1760 int foundp;
|
272
|
1761 int pos = extent_list_locate (el, e, 0, &foundp);
|
0
|
1762 assert (foundp);
|
|
1763 return real_extent_at_backward (el, pos-1, 0);
|
|
1764 }
|
|
1765
|
|
1766 #ifdef DEBUG_XEMACS
|
|
1767 static EXTENT
|
|
1768 extent_e_previous (EXTENT e)
|
|
1769 {
|
|
1770 Extent_List *el = extent_extent_list (e);
|
|
1771 int foundp;
|
272
|
1772 int pos = extent_list_locate (el, e, 1, &foundp);
|
0
|
1773 assert (foundp);
|
|
1774 return real_extent_at_backward (el, pos-1, 1);
|
|
1775 }
|
|
1776 #endif
|
|
1777
|
|
1778 static void
|
|
1779 extent_attach (EXTENT extent)
|
|
1780 {
|
|
1781 Extent_List *el = extent_extent_list (extent);
|
|
1782
|
|
1783 extent_list_insert (el, extent);
|
|
1784 soe_insert (extent_object (extent), extent);
|
|
1785 /* only this extent changed */
|
110
|
1786 extent_maybe_changed_for_redisplay (extent, 0,
|
|
1787 !NILP (extent_invisible (extent)));
|
0
|
1788 }
|
|
1789
|
|
1790 static void
|
|
1791 extent_detach (EXTENT extent)
|
173
|
1792 {
|
0
|
1793 Extent_List *el;
|
|
1794
|
|
1795 if (extent_detached_p (extent))
|
|
1796 return;
|
|
1797 el = extent_extent_list (extent);
|
|
1798
|
|
1799 /* call this before messing with the extent. */
|
110
|
1800 extent_maybe_changed_for_redisplay (extent, 0,
|
|
1801 !NILP (extent_invisible (extent)));
|
0
|
1802 extent_list_delete (el, extent);
|
|
1803 soe_delete (extent_object (extent), extent);
|
|
1804 set_extent_start (extent, -1);
|
|
1805 set_extent_end (extent, -1);
|
|
1806 }
|
|
1807
|
|
1808 /* ------------------------------- */
|
|
1809 /* map-extents et al. */
|
|
1810 /* ------------------------------- */
|
|
1811
|
|
1812 /* Returns true iff map_extents() would visit the given extent.
|
|
1813 See the comments at map_extents() for info on the overlap rule.
|
|
1814 Assumes that all validation on the extent and buffer positions has
|
|
1815 already been performed (see Fextent_in_region_p ()).
|
|
1816 */
|
|
1817 static int
|
|
1818 extent_in_region_p (EXTENT extent, Bytind from, Bytind to,
|
|
1819 unsigned int flags)
|
|
1820 {
|
|
1821 Lisp_Object obj = extent_object (extent);
|
|
1822 Endpoint_Index start, end, exs, exe;
|
|
1823 int start_open, end_open;
|
|
1824 unsigned int all_extents_flags = flags & ME_ALL_EXTENTS_MASK;
|
|
1825 unsigned int in_region_flags = flags & ME_IN_REGION_MASK;
|
|
1826 int retval;
|
|
1827
|
|
1828 /* A zero-length region is treated as closed-closed. */
|
|
1829 if (from == to)
|
|
1830 {
|
|
1831 flags |= ME_END_CLOSED;
|
|
1832 flags &= ~ME_START_OPEN;
|
|
1833 }
|
|
1834
|
|
1835 switch (all_extents_flags)
|
|
1836 {
|
|
1837 case ME_ALL_EXTENTS_CLOSED:
|
|
1838 start_open = end_open = 0; break;
|
|
1839 case ME_ALL_EXTENTS_OPEN:
|
|
1840 start_open = end_open = 1; break;
|
|
1841 case ME_ALL_EXTENTS_CLOSED_OPEN:
|
|
1842 start_open = 0; end_open = 1; break;
|
|
1843 case ME_ALL_EXTENTS_OPEN_CLOSED:
|
|
1844 start_open = 1; end_open = 0; break;
|
|
1845 default:
|
|
1846 start_open = extent_start_open_p (extent);
|
|
1847 end_open = extent_end_open_p (extent);
|
|
1848 break;
|
|
1849 }
|
|
1850
|
|
1851 /* So is a zero-length extent. */
|
|
1852 if (extent_start (extent) == extent_end (extent))
|
|
1853 start_open = end_open = 0;
|
|
1854
|
|
1855 start = buffer_or_string_bytind_to_startind (obj, from,
|
|
1856 flags & ME_START_OPEN);
|
|
1857 end = buffer_or_string_bytind_to_endind (obj, to, ! (flags & ME_END_CLOSED));
|
|
1858 exs = memind_to_startind (extent_start (extent), start_open);
|
|
1859 exe = memind_to_endind (extent_end (extent), end_open);
|
|
1860
|
|
1861 /* It's easy to determine whether an extent lies *outside* the
|
|
1862 region -- just determine whether it's completely before
|
|
1863 or completely after the region. Reject all such extents, so
|
|
1864 we're now left with only the extents that overlap the region.
|
|
1865 */
|
|
1866
|
|
1867 if (exs > end || exe < start)
|
|
1868 return 0;
|
|
1869
|
|
1870 /* See if any further restrictions are called for. */
|
|
1871 switch (in_region_flags)
|
|
1872 {
|
|
1873 case ME_START_IN_REGION:
|
|
1874 retval = start <= exs && exs <= end; break;
|
|
1875 case ME_END_IN_REGION:
|
|
1876 retval = start <= exe && exe <= end; break;
|
|
1877 case ME_START_AND_END_IN_REGION:
|
|
1878 retval = start <= exs && exe <= end; break;
|
|
1879 case ME_START_OR_END_IN_REGION:
|
|
1880 retval = (start <= exs && exs <= end) || (start <= exe && exe <= end);
|
|
1881 break;
|
|
1882 default:
|
|
1883 retval = 1; break;
|
|
1884 }
|
|
1885 return flags & ME_NEGATE_IN_REGION ? !retval : retval;
|
|
1886 }
|
|
1887
|
|
1888 struct map_extents_struct
|
|
1889 {
|
|
1890 Extent_List *el;
|
|
1891 Extent_List_Marker *mkr;
|
|
1892 EXTENT range;
|
|
1893 };
|
|
1894
|
|
1895 static Lisp_Object
|
|
1896 map_extents_unwind (Lisp_Object obj)
|
|
1897 {
|
173
|
1898 struct map_extents_struct *closure =
|
0
|
1899 (struct map_extents_struct *) get_opaque_ptr (obj);
|
|
1900 free_opaque_ptr (obj);
|
|
1901 if (closure->range)
|
|
1902 extent_detach (closure->range);
|
|
1903 if (closure->mkr)
|
|
1904 extent_list_delete_marker (closure->el, closure->mkr);
|
|
1905 return Qnil;
|
|
1906 }
|
|
1907
|
|
1908 /* This is the guts of `map-extents' and the other functions that
|
|
1909 map over extents. In theory the operation of this function is
|
|
1910 simple: just figure out what extents we're mapping over, and
|
|
1911 call the function on each one of them in the range. Unfortunately
|
|
1912 there are a wide variety of things that the mapping function
|
|
1913 might do, and we have to be very tricky to avoid getting messed
|
|
1914 up. Furthermore, this function needs to be very fast (it is
|
|
1915 called multiple times every time text is inserted or deleted
|
|
1916 from a buffer), and so we can't always afford the overhead of
|
|
1917 dealing with all the possible things that the mapping function
|
|
1918 might do; thus, there are many flags that can be specified
|
|
1919 indicating what the mapping function might or might not do.
|
|
1920
|
|
1921 The result of all this is that this is the most complicated
|
|
1922 function in this file. Change it at your own risk!
|
|
1923
|
|
1924 A potential simplification to the logic below is to determine
|
|
1925 all the extents that the mapping function should be called on
|
|
1926 before any calls are actually made and save them in an array.
|
|
1927 That introduces its own complications, however (the array
|
|
1928 needs to be marked for garbage-collection, and a static array
|
|
1929 cannot be used because map_extents() needs to be reentrant).
|
|
1930 Furthermore, the results might be a little less sensible than
|
|
1931 the logic below. */
|
|
1932
|
|
1933
|
|
1934 static void
|
272
|
1935 map_extents_bytind (Bytind from, Bytind to, map_extents_fun fn, void *arg,
|
0
|
1936 Lisp_Object obj, EXTENT after, unsigned int flags)
|
|
1937 {
|
|
1938 Memind st, en; /* range we're mapping over */
|
|
1939 EXTENT range = 0; /* extent for this, if ME_MIGHT_MODIFY_TEXT */
|
|
1940 Extent_List *el = 0; /* extent list we're iterating over */
|
|
1941 Extent_List_Marker *posm = 0; /* marker for extent list,
|
|
1942 if ME_MIGHT_MODIFY_EXTENTS */
|
|
1943 /* count and struct for unwind-protect, if ME_MIGHT_THROW */
|
|
1944 int count = 0;
|
|
1945 struct map_extents_struct closure;
|
|
1946
|
|
1947 #ifdef ERROR_CHECK_EXTENTS
|
|
1948 assert (from <= to);
|
|
1949 assert (from >= buffer_or_string_absolute_begin_byte (obj) &&
|
|
1950 from <= buffer_or_string_absolute_end_byte (obj) &&
|
|
1951 to >= buffer_or_string_absolute_begin_byte (obj) &&
|
|
1952 to <= buffer_or_string_absolute_end_byte (obj));
|
|
1953 #endif
|
|
1954
|
|
1955 if (after)
|
|
1956 {
|
|
1957 assert (EQ (obj, extent_object (after)));
|
|
1958 assert (!extent_detached_p (after));
|
|
1959 }
|
|
1960
|
80
|
1961 el = buffer_or_string_extent_list (obj);
|
|
1962 if (!el || !extent_list_num_els(el))
|
0
|
1963 return;
|
80
|
1964 el = 0;
|
0
|
1965
|
|
1966 st = buffer_or_string_bytind_to_memind (obj, from);
|
|
1967 en = buffer_or_string_bytind_to_memind (obj, to);
|
|
1968
|
|
1969 if (flags & ME_MIGHT_MODIFY_TEXT)
|
|
1970 {
|
|
1971 /* The mapping function might change the text in the buffer,
|
|
1972 so make an internal extent to hold the range we're mapping
|
|
1973 over. */
|
|
1974 range = make_extent_detached (obj);
|
|
1975 set_extent_start (range, st);
|
|
1976 set_extent_end (range, en);
|
|
1977 range->flags.start_open = flags & ME_START_OPEN;
|
|
1978 range->flags.end_open = !(flags & ME_END_CLOSED);
|
|
1979 range->flags.internal = 1;
|
|
1980 range->flags.detachable = 0;
|
|
1981 extent_attach (range);
|
|
1982 }
|
|
1983
|
|
1984 if (flags & ME_MIGHT_THROW)
|
|
1985 {
|
|
1986 /* The mapping function might throw past us so we need to use an
|
|
1987 unwind_protect() to eliminate the internal extent and range
|
|
1988 that we use. */
|
|
1989 count = specpdl_depth ();
|
|
1990 closure.range = range;
|
|
1991 closure.mkr = 0;
|
|
1992 record_unwind_protect (map_extents_unwind,
|
|
1993 make_opaque_ptr (&closure));
|
|
1994 }
|
|
1995
|
|
1996 /* ---------- Figure out where we start and what direction
|
|
1997 we move in. This is the trickiest part of this
|
|
1998 function. ---------- */
|
|
1999
|
|
2000 /* If ME_START_IN_REGION, ME_END_IN_REGION or ME_START_AND_END_IN_REGION
|
|
2001 was specified and ME_NEGATE_IN_REGION was not specified, our job
|
|
2002 is simple because of the presence of the display order and e-order.
|
|
2003 (Note that theoretically do something similar for
|
|
2004 ME_START_OR_END_IN_REGION, but that would require more trickiness
|
|
2005 than it's worth to avoid hitting the same extent twice.)
|
|
2006
|
|
2007 In the general case, all the extents that overlap a range can be
|
|
2008 divided into two classes: those whose start position lies within
|
|
2009 the range (including the range's end but not including the
|
|
2010 range's start), and those that overlap the start position,
|
|
2011 i.e. those in the SOE for the start position. Or equivalently,
|
|
2012 the extents can be divided into those whose end position lies
|
|
2013 within the range and those in the SOE for the end position. Note
|
|
2014 that for this purpose we treat both the range and all extents in
|
|
2015 the buffer as closed on both ends. If this is not what the ME_
|
|
2016 flags specified, then we've mapped over a few too many extents,
|
|
2017 but no big deal because extent_in_region_p() will filter them
|
|
2018 out. Ideally, we could move the SOE to the closer of the range's
|
|
2019 two ends and work forwards or backwards from there. However, in
|
|
2020 order to make the semantics of the AFTER argument work out, we
|
|
2021 have to always go in the same direction; so we choose to always
|
|
2022 move the SOE to the start position.
|
|
2023
|
|
2024 When it comes time to do the SOE stage, we first call soe_move()
|
|
2025 so that the SOE gets set up. Note that the SOE might get
|
|
2026 changed while we are mapping over its contents. If we can
|
|
2027 guarantee that the SOE won't get moved to a new position, we
|
|
2028 simply need to put a marker in the SOE and we will track deletions
|
|
2029 and insertions of extents in the SOE. If the SOE might get moved,
|
|
2030 however (this would happen as a result of a recursive invocation
|
|
2031 of map-extents or a call to a redisplay-type function), then
|
|
2032 trying to track its changes is hopeless, so we just keep a
|
|
2033 marker to the first (or last) extent in the SOE and use that as
|
|
2034 our bound.
|
|
2035
|
|
2036 Finally, if DONT_USE_SOE is defined, we don't use the SOE at all
|
|
2037 and instead just map from the beginning of the buffer. This is
|
|
2038 used for testing purposes and allows the SOE to be calculated
|
|
2039 using map_extents() instead of the other way around. */
|
|
2040
|
|
2041 {
|
|
2042 int range_flag; /* ME_*_IN_REGION subset of flags */
|
|
2043 int do_soe_stage = 0; /* Are we mapping over the SOE? */
|
|
2044 /* Does the range stage map over start or end positions? */
|
|
2045 int range_endp;
|
|
2046 /* If type == 0, we include the start position in the range stage mapping.
|
|
2047 If type == 1, we exclude the start position in the range stage mapping.
|
|
2048 If type == 2, we begin at range_start_pos, an extent-list position.
|
|
2049 */
|
|
2050 int range_start_type = 0;
|
|
2051 int range_start_pos = 0;
|
|
2052 int stage;
|
|
2053
|
|
2054 range_flag = flags & ME_IN_REGION_MASK;
|
|
2055 if ((range_flag == ME_START_IN_REGION ||
|
|
2056 range_flag == ME_START_AND_END_IN_REGION) &&
|
|
2057 !(flags & ME_NEGATE_IN_REGION))
|
|
2058 {
|
|
2059 /* map over start position in [range-start, range-end]. No SOE
|
|
2060 stage. */
|
|
2061 range_endp = 0;
|
|
2062 }
|
|
2063 else if (range_flag == ME_END_IN_REGION && !(flags & ME_NEGATE_IN_REGION))
|
|
2064 {
|
|
2065 /* map over end position in [range-start, range-end]. No SOE
|
|
2066 stage. */
|
|
2067 range_endp = 1;
|
|
2068 }
|
|
2069 else
|
|
2070 {
|
|
2071 /* Need to include the SOE extents. */
|
|
2072 #ifdef DONT_USE_SOE
|
|
2073 /* Just brute-force it: start from the beginning. */
|
|
2074 range_endp = 0;
|
|
2075 range_start_type = 2;
|
|
2076 range_start_pos = 0;
|
|
2077 #else
|
|
2078 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents_force (obj);
|
|
2079 int numsoe;
|
173
|
2080
|
0
|
2081 /* Move the SOE to the closer end of the range. This dictates
|
|
2082 whether we map over start positions or end positions. */
|
|
2083 range_endp = 0;
|
|
2084 soe_move (obj, st);
|
|
2085 numsoe = extent_list_num_els (soe->extents);
|
|
2086 if (numsoe)
|
|
2087 {
|
|
2088 if (flags & ME_MIGHT_MOVE_SOE)
|
|
2089 {
|
|
2090 int foundp;
|
|
2091 /* Can't map over SOE, so just extend range to cover the
|
|
2092 SOE. */
|
|
2093 EXTENT e = extent_list_at (soe->extents, 0, 0);
|
|
2094 range_start_pos =
|
|
2095 extent_list_locate (buffer_or_string_extent_list (obj), e, 0,
|
|
2096 &foundp);
|
|
2097 assert (foundp);
|
|
2098 range_start_type = 2;
|
|
2099 }
|
|
2100 else
|
|
2101 {
|
|
2102 /* We can map over the SOE. */
|
|
2103 do_soe_stage = 1;
|
|
2104 range_start_type = 1;
|
|
2105 }
|
|
2106 }
|
|
2107 else
|
|
2108 {
|
|
2109 /* No extents in the SOE to map over, so we act just as if
|
|
2110 ME_START_IN_REGION or ME_END_IN_REGION was specified.
|
|
2111 RANGE_ENDP already specified so no need to do anything else. */
|
|
2112 }
|
|
2113 }
|
|
2114 #endif
|
173
|
2115
|
0
|
2116 /* ---------- Now loop over the extents. ---------- */
|
|
2117
|
|
2118 /* We combine the code for the two stages because much of it
|
|
2119 overlaps. */
|
|
2120 for (stage = 0; stage < 2; stage++)
|
|
2121 {
|
|
2122 int pos = 0; /* Position in extent list */
|
|
2123
|
|
2124 /* First set up start conditions */
|
|
2125 if (stage == 0)
|
|
2126 { /* The SOE stage */
|
|
2127 if (!do_soe_stage)
|
|
2128 continue;
|
|
2129 el = buffer_or_string_stack_of_extents_force (obj)->extents;
|
|
2130 /* We will always be looping over start extents here. */
|
|
2131 assert (!range_endp);
|
|
2132 pos = 0;
|
|
2133 }
|
|
2134 else
|
|
2135 { /* The range stage */
|
|
2136 el = buffer_or_string_extent_list (obj);
|
|
2137 switch (range_start_type)
|
|
2138 {
|
|
2139 case 0:
|
|
2140 pos = extent_list_locate_from_pos (el, st, range_endp);
|
|
2141 break;
|
|
2142 case 1:
|
|
2143 pos = extent_list_locate_from_pos (el, st + 1, range_endp);
|
|
2144 break;
|
|
2145 case 2:
|
|
2146 pos = range_start_pos;
|
|
2147 break;
|
|
2148 }
|
|
2149 }
|
|
2150
|
|
2151 if (flags & ME_MIGHT_MODIFY_EXTENTS)
|
|
2152 {
|
|
2153 /* Create a marker to track changes to the extent list */
|
|
2154 if (posm)
|
|
2155 /* Delete the marker used in the SOE stage. */
|
|
2156 extent_list_delete_marker
|
|
2157 (buffer_or_string_stack_of_extents_force (obj)->extents, posm);
|
|
2158 posm = extent_list_make_marker (el, pos, range_endp);
|
|
2159 /* tell the unwind function about the marker. */
|
|
2160 closure.el = el;
|
|
2161 closure.mkr = posm;
|
|
2162 }
|
|
2163
|
|
2164 /* Now loop! */
|
|
2165 for (;;)
|
|
2166 {
|
|
2167 EXTENT e;
|
|
2168 Lisp_Object obj2;
|
|
2169
|
|
2170 /* ----- update position in extent list
|
|
2171 and fetch next extent ----- */
|
|
2172
|
|
2173 if (posm)
|
|
2174 /* fetch POS again to track extent insertions or deletions */
|
|
2175 pos = extent_list_marker_pos (el, posm);
|
|
2176 if (pos >= extent_list_num_els (el))
|
|
2177 break;
|
|
2178 e = extent_list_at (el, pos, range_endp);
|
|
2179 pos++;
|
|
2180 if (posm)
|
|
2181 /* now point the marker to the next one we're going to process.
|
|
2182 This ensures graceful behavior if this extent is deleted. */
|
|
2183 extent_list_move_marker (el, posm, pos);
|
|
2184
|
|
2185 /* ----- deal with internal extents ----- */
|
|
2186
|
|
2187 if (extent_internal_p (e))
|
|
2188 {
|
|
2189 if (!(flags & ME_INCLUDE_INTERNAL))
|
|
2190 continue;
|
|
2191 else if (e == range)
|
|
2192 {
|
|
2193 /* We're processing internal extents and we've
|
|
2194 come across our own special range extent.
|
|
2195 (This happens only in adjust_extents*() and
|
|
2196 process_extents*(), which handle text
|
|
2197 insertion and deletion.) We need to omit
|
|
2198 processing of this extent; otherwise
|
|
2199 we will probably end up prematurely
|
|
2200 terminating this loop. */
|
|
2201 continue;
|
|
2202 }
|
|
2203 }
|
|
2204
|
|
2205 /* ----- deal with AFTER condition ----- */
|
|
2206
|
|
2207 if (after)
|
|
2208 {
|
|
2209 /* if e > after, then we can stop skipping extents. */
|
|
2210 if (EXTENT_LESS (after, e))
|
|
2211 after = 0;
|
|
2212 else /* otherwise, skip this extent. */
|
|
2213 continue;
|
|
2214 }
|
|
2215
|
|
2216 /* ----- stop if we're completely outside the range ----- */
|
|
2217
|
|
2218 /* fetch ST and EN again to track text insertions or deletions */
|
|
2219 if (range)
|
|
2220 {
|
|
2221 st = extent_start (range);
|
|
2222 en = extent_end (range);
|
|
2223 }
|
|
2224 if (extent_endpoint (e, range_endp) > en)
|
|
2225 {
|
|
2226 /* Can't be mapping over SOE because all extents in
|
|
2227 there should overlap ST */
|
|
2228 assert (stage == 1);
|
|
2229 break;
|
|
2230 }
|
|
2231
|
|
2232 /* ----- Now actually call the function ----- */
|
|
2233
|
|
2234 obj2 = extent_object (e);
|
|
2235 if (extent_in_region_p (e,
|
|
2236 buffer_or_string_memind_to_bytind (obj2,
|
|
2237 st),
|
|
2238 buffer_or_string_memind_to_bytind (obj2,
|
|
2239 en),
|
|
2240 flags))
|
|
2241 {
|
|
2242 if ((*fn)(e, arg))
|
|
2243 {
|
|
2244 /* Function wants us to stop mapping. */
|
|
2245 stage = 1; /* so outer for loop will terminate */
|
|
2246 break;
|
|
2247 }
|
|
2248 }
|
|
2249 }
|
|
2250 }
|
|
2251 /* ---------- Finished looping. ---------- */
|
|
2252 }
|
|
2253
|
|
2254 if (flags & ME_MIGHT_THROW)
|
|
2255 /* This deletes the range extent and frees the marker. */
|
|
2256 unbind_to (count, Qnil);
|
|
2257 else
|
|
2258 {
|
|
2259 /* Delete them ourselves */
|
|
2260 if (range)
|
|
2261 extent_detach (range);
|
|
2262 if (posm)
|
|
2263 extent_list_delete_marker (el, posm);
|
|
2264 }
|
|
2265 }
|
|
2266
|
|
2267 void
|
272
|
2268 map_extents (Bufpos from, Bufpos to, map_extents_fun fn,
|
0
|
2269 void *arg, Lisp_Object obj, EXTENT after, unsigned int flags)
|
|
2270 {
|
|
2271 map_extents_bytind (buffer_or_string_bufpos_to_bytind (obj, from),
|
|
2272 buffer_or_string_bufpos_to_bytind (obj, to), fn, arg,
|
|
2273 obj, after, flags);
|
|
2274 }
|
|
2275
|
|
2276 /* ------------------------------- */
|
|
2277 /* adjust_extents() */
|
|
2278 /* ------------------------------- */
|
|
2279
|
|
2280 /* Add AMOUNT to all extent endpoints in the range (FROM, TO]. This
|
|
2281 happens whenever the gap is moved or (under Mule) a character in a
|
|
2282 string is substituted for a different-length one. The reason for
|
|
2283 this is that extent endpoints behave just like markers (all memory
|
|
2284 indices do) and this adjustment correct for markers -- see
|
|
2285 adjust_markers(). Note that it is important that we visit all
|
|
2286 extent endpoints in the range, irrespective of whether the
|
|
2287 endpoints are open or closed.
|
|
2288
|
|
2289 We could use map_extents() for this (and in fact the function
|
|
2290 was originally written that way), but the gap is in an incoherent
|
|
2291 state when this function is called and this function plays
|
|
2292 around with extent endpoints without detaching and reattaching
|
|
2293 the extents (this is provably correct and saves lots of time),
|
|
2294 so for safety we make it just look at the extent lists directly. */
|
|
2295
|
|
2296 void
|
|
2297 adjust_extents (Lisp_Object obj, Memind from, Memind to, int amount)
|
|
2298 {
|
|
2299 int endp;
|
|
2300 int pos;
|
|
2301 int startpos[2];
|
|
2302 Extent_List *el;
|
|
2303 Stack_Of_Extents *soe;
|
|
2304
|
|
2305 #ifdef ERROR_CHECK_EXTENTS
|
|
2306 sledgehammer_extent_check (obj);
|
|
2307 #endif
|
|
2308 el = buffer_or_string_extent_list (obj);
|
|
2309
|
80
|
2310 if (!el || !extent_list_num_els(el))
|
0
|
2311 return;
|
80
|
2312
|
0
|
2313 /* IMPORTANT! Compute the starting positions of the extents to
|
|
2314 modify BEFORE doing any modification! Otherwise the starting
|
|
2315 position for the second time through the loop might get
|
|
2316 incorrectly calculated (I got bit by this bug real bad). */
|
|
2317 startpos[0] = extent_list_locate_from_pos (el, from+1, 0);
|
|
2318 startpos[1] = extent_list_locate_from_pos (el, from+1, 1);
|
|
2319 for (endp = 0; endp < 2; endp++)
|
|
2320 {
|
|
2321 for (pos = startpos[endp]; pos < extent_list_num_els (el);
|
|
2322 pos++)
|
|
2323 {
|
|
2324 EXTENT e = extent_list_at (el, pos, endp);
|
|
2325 if (extent_endpoint (e, endp) > to)
|
|
2326 break;
|
|
2327 set_extent_endpoint (e,
|
|
2328 do_marker_adjustment (extent_endpoint (e, endp),
|
|
2329 from, to, amount),
|
|
2330 endp);
|
|
2331 }
|
|
2332 }
|
|
2333
|
|
2334 /* The index for the buffer's SOE is a memory index and thus
|
|
2335 needs to be adjusted like a marker. */
|
|
2336 soe = buffer_or_string_stack_of_extents (obj);
|
|
2337 if (soe && soe->pos >= 0)
|
|
2338 soe->pos = do_marker_adjustment (soe->pos, from, to, amount);
|
|
2339 }
|
|
2340
|
|
2341 /* ------------------------------- */
|
|
2342 /* adjust_extents_for_deletion() */
|
|
2343 /* ------------------------------- */
|
|
2344
|
|
2345 struct adjust_extents_for_deletion_arg
|
|
2346 {
|
185
|
2347 EXTENT_dynarr *list;
|
0
|
2348 };
|
|
2349
|
|
2350 static int
|
|
2351 adjust_extents_for_deletion_mapper (EXTENT extent, void *arg)
|
|
2352 {
|
|
2353 struct adjust_extents_for_deletion_arg *closure =
|
|
2354 (struct adjust_extents_for_deletion_arg *) arg;
|
|
2355
|
|
2356 Dynarr_add (closure->list, extent);
|
|
2357 return 0; /* continue mapping */
|
|
2358 }
|
|
2359
|
|
2360 /* For all extent endpoints in the range (FROM, TO], move them to the beginning
|
|
2361 of the new gap. Note that it is important that we visit all extent
|
|
2362 endpoints in the range, irrespective of whether the endpoints are open or
|
|
2363 closed.
|
|
2364
|
|
2365 This function deals with weird stuff such as the fact that extents
|
|
2366 may get reordered.
|
|
2367
|
|
2368 There is no string correspondent for this because you can't
|
|
2369 delete characters from a string.
|
|
2370 */
|
|
2371
|
|
2372 void
|
|
2373 adjust_extents_for_deletion (Lisp_Object object, Bytind from,
|
98
|
2374 Bytind to, int gapsize, int numdel,
|
|
2375 int movegapsize)
|
0
|
2376 {
|
|
2377 struct adjust_extents_for_deletion_arg closure;
|
|
2378 int i;
|
98
|
2379 Memind adjust_to = (Memind) (to + gapsize);
|
|
2380 Bytecount amount = - numdel - movegapsize;
|
173
|
2381 Memind oldsoe = 0, newsoe = 0;
|
0
|
2382 Stack_Of_Extents *soe = buffer_or_string_stack_of_extents (object);
|
|
2383
|
|
2384 #ifdef ERROR_CHECK_EXTENTS
|
|
2385 sledgehammer_extent_check (object);
|
|
2386 #endif
|
185
|
2387 closure.list = Dynarr_new (EXTENT);
|
0
|
2388
|
|
2389 /* We're going to be playing weird games below with extents and the SOE
|
|
2390 and such, so compute the list now of all the extents that we're going
|
|
2391 to muck with. If we do the mapping and adjusting together, things can
|
|
2392 get all screwed up. */
|
|
2393
|
|
2394 map_extents_bytind (from, to, adjust_extents_for_deletion_mapper,
|
|
2395 (void *) &closure, object, 0,
|
|
2396 /* extent endpoints move like markers regardless
|
|
2397 of their open/closeness. */
|
|
2398 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
|
|
2399 ME_START_OR_END_IN_REGION | ME_INCLUDE_INTERNAL);
|
|
2400
|
|
2401 /*
|
|
2402 Old and new values for the SOE's position. (It gets adjusted
|
|
2403 like a marker, just like extent endpoints.)
|
|
2404 */
|
|
2405
|
|
2406 if (soe)
|
|
2407 {
|
|
2408 oldsoe = soe->pos;
|
|
2409 if (soe->pos >= 0)
|
|
2410 newsoe = do_marker_adjustment (soe->pos,
|
98
|
2411 adjust_to, adjust_to,
|
|
2412 amount);
|
0
|
2413 else
|
|
2414 newsoe = soe->pos;
|
|
2415 }
|
|
2416
|
|
2417 for (i = 0; i < Dynarr_length (closure.list); i++)
|
|
2418 {
|
|
2419 EXTENT extent = Dynarr_at (closure.list, i);
|
98
|
2420 Memind new_start = extent_start (extent);
|
|
2421 Memind new_end = extent_end (extent);
|
0
|
2422
|
|
2423 /* do_marker_adjustment() will not adjust values that should not be
|
|
2424 adjusted. We're passing the same funky arguments to
|
|
2425 do_marker_adjustment() as buffer_delete_range() does. */
|
|
2426 new_start =
|
98
|
2427 do_marker_adjustment (new_start,
|
|
2428 adjust_to, adjust_to,
|
|
2429 amount);
|
0
|
2430 new_end =
|
98
|
2431 do_marker_adjustment (new_end,
|
|
2432 adjust_to, adjust_to,
|
|
2433 amount);
|
0
|
2434
|
|
2435 /* We need to be very careful here so that the SOE doesn't get
|
|
2436 corrupted. We are shrinking extents out of the deleted region
|
|
2437 and simultaneously moving the SOE's pos out of the deleted
|
|
2438 region, so the SOE should contain the same extents at the end
|
|
2439 as at the beginning. However, extents may get reordered
|
|
2440 by this process, so we have to operate by pulling the extents
|
|
2441 out of the buffer and SOE, changing their bounds, and then
|
|
2442 reinserting them. In order for the SOE not to get screwed up,
|
|
2443 we have to make sure that the SOE's pos points to its old
|
|
2444 location whenever we pull an extent out, and points to its
|
|
2445 new location whenever we put the extent back in.
|
|
2446 */
|
|
2447
|
|
2448 if (new_start != extent_start (extent) ||
|
|
2449 new_end != extent_end (extent))
|
|
2450 {
|
|
2451 extent_detach (extent);
|
|
2452 set_extent_start (extent, new_start);
|
|
2453 set_extent_end (extent, new_end);
|
|
2454 if (soe)
|
|
2455 soe->pos = newsoe;
|
|
2456 extent_attach (extent);
|
|
2457 if (soe)
|
|
2458 soe->pos = oldsoe;
|
|
2459 }
|
|
2460 }
|
|
2461
|
|
2462 if (soe)
|
|
2463 soe->pos = newsoe;
|
|
2464
|
|
2465 #ifdef ERROR_CHECK_EXTENTS
|
|
2466 sledgehammer_extent_check (object);
|
|
2467 #endif
|
|
2468 Dynarr_free (closure.list);
|
|
2469 }
|
|
2470
|
|
2471 /* ------------------------------- */
|
|
2472 /* extent fragments */
|
|
2473 /* ------------------------------- */
|
|
2474
|
|
2475 /* Imagine that the buffer is divided up into contiguous,
|
|
2476 nonoverlapping "runs" of text such that no extent
|
|
2477 starts or ends within a run (extents that abut the
|
|
2478 run don't count).
|
|
2479
|
|
2480 An extent fragment is a structure that holds data about
|
|
2481 the run that contains a particular buffer position (if
|
|
2482 the buffer position is at the junction of two runs, the
|
|
2483 run after the position is used) -- the beginning and
|
|
2484 end of the run, a list of all of the extents in that
|
|
2485 run, the "merged face" that results from merging all of
|
|
2486 the faces corresponding to those extents, the begin and
|
|
2487 end glyphs at the beginning of the run, etc. This is
|
|
2488 the information that redisplay needs in order to
|
|
2489 display this run.
|
|
2490
|
|
2491 Extent fragments have to be very quick to update to
|
|
2492 a new buffer position when moving linearly through
|
|
2493 the buffer. They rely on the stack-of-extents code,
|
|
2494 which does the heavy-duty algorithmic work of determining
|
|
2495 which extents overly a particular position. */
|
|
2496
|
|
2497 /* This function returns the position of the beginning of
|
|
2498 the first run that begins after POS, or returns POS if
|
|
2499 there are no such runs. */
|
|
2500
|
|
2501 static Bytind
|
|
2502 extent_find_end_of_run (Lisp_Object obj, Bytind pos, int outside_accessible)
|
|
2503 {
|
|
2504 Extent_List *sel;
|
|
2505 Extent_List *bel = buffer_or_string_extent_list (obj);
|
|
2506 Bytind pos1, pos2;
|
|
2507 int elind1, elind2;
|
|
2508 Memind mempos = buffer_or_string_bytind_to_memind (obj, pos);
|
|
2509 Bytind limit = outside_accessible ?
|
|
2510 buffer_or_string_absolute_end_byte (obj) :
|
|
2511 buffer_or_string_accessible_end_byte (obj);
|
|
2512
|
80
|
2513 if (!bel || !extent_list_num_els(bel))
|
0
|
2514 return limit;
|
|
2515
|
|
2516 sel = buffer_or_string_stack_of_extents_force (obj)->extents;
|
|
2517 soe_move (obj, mempos);
|
|
2518
|
|
2519 /* Find the first start position after POS. */
|
|
2520 elind1 = extent_list_locate_from_pos (bel, mempos+1, 0);
|
|
2521 if (elind1 < extent_list_num_els (bel))
|
|
2522 pos1 = buffer_or_string_memind_to_bytind
|
|
2523 (obj, extent_start (extent_list_at (bel, elind1, 0)));
|
|
2524 else
|
|
2525 pos1 = limit;
|
|
2526
|
|
2527 /* Find the first end position after POS. The extent corresponding
|
|
2528 to this position is either in the SOE or is greater than or
|
|
2529 equal to POS1, so we just have to look in the SOE. */
|
|
2530 elind2 = extent_list_locate_from_pos (sel, mempos+1, 1);
|
|
2531 if (elind2 < extent_list_num_els (sel))
|
|
2532 pos2 = buffer_or_string_memind_to_bytind
|
|
2533 (obj, extent_end (extent_list_at (sel, elind2, 1)));
|
|
2534 else
|
|
2535 pos2 = limit;
|
|
2536
|
|
2537 return min (min (pos1, pos2), limit);
|
|
2538 }
|
|
2539
|
|
2540 static Bytind
|
|
2541 extent_find_beginning_of_run (Lisp_Object obj, Bytind pos,
|
|
2542 int outside_accessible)
|
|
2543 {
|
|
2544 Extent_List *sel;
|
|
2545 Extent_List *bel = buffer_or_string_extent_list (obj);
|
|
2546 Bytind pos1, pos2;
|
|
2547 int elind1, elind2;
|
|
2548 Memind mempos = buffer_or_string_bytind_to_memind (obj, pos);
|
|
2549 Bytind limit = outside_accessible ?
|
|
2550 buffer_or_string_absolute_begin_byte (obj) :
|
|
2551 buffer_or_string_accessible_begin_byte (obj);
|
|
2552
|
80
|
2553 if (!bel || !extent_list_num_els(bel))
|
0
|
2554 return limit;
|
|
2555
|
|
2556 sel = buffer_or_string_stack_of_extents_force (obj)->extents;
|
|
2557 soe_move (obj, mempos);
|
|
2558
|
|
2559 /* Find the first end position before POS. */
|
|
2560 elind1 = extent_list_locate_from_pos (bel, mempos, 1);
|
|
2561 if (elind1 > 0)
|
|
2562 pos1 = buffer_or_string_memind_to_bytind
|
|
2563 (obj, extent_end (extent_list_at (bel, elind1 - 1, 1)));
|
|
2564 else
|
|
2565 pos1 = limit;
|
|
2566
|
|
2567 /* Find the first start position before POS. The extent corresponding
|
|
2568 to this position is either in the SOE or is less than or
|
|
2569 equal to POS1, so we just have to look in the SOE. */
|
|
2570 elind2 = extent_list_locate_from_pos (sel, mempos, 0);
|
|
2571 if (elind2 > 0)
|
|
2572 pos2 = buffer_or_string_memind_to_bytind
|
|
2573 (obj, extent_start (extent_list_at (sel, elind2 - 1, 0)));
|
|
2574 else
|
|
2575 pos2 = limit;
|
|
2576
|
|
2577 return max (max (pos1, pos2), limit);
|
|
2578 }
|
|
2579
|
|
2580 struct extent_fragment *
|
|
2581 extent_fragment_new (Lisp_Object buffer_or_string, struct frame *frm)
|
|
2582 {
|
185
|
2583 struct extent_fragment *ef = xnew_and_zero (struct extent_fragment);
|
|
2584
|
0
|
2585 ef->object = buffer_or_string;
|
|
2586 ef->frm = frm;
|
|
2587 ef->extents = Dynarr_new (EXTENT);
|
185
|
2588 ef->begin_glyphs = Dynarr_new (glyph_block);
|
|
2589 ef->end_glyphs = Dynarr_new (glyph_block);
|
0
|
2590
|
|
2591 return ef;
|
|
2592 }
|
|
2593
|
|
2594 void
|
|
2595 extent_fragment_delete (struct extent_fragment *ef)
|
|
2596 {
|
|
2597 Dynarr_free (ef->extents);
|
|
2598 Dynarr_free (ef->begin_glyphs);
|
|
2599 Dynarr_free (ef->end_glyphs);
|
|
2600 xfree (ef);
|
|
2601 }
|
|
2602
|
203
|
2603 /* Note: CONST is losing, but `const' is part of the interface of qsort() */
|
0
|
2604 static int
|
|
2605 extent_priority_sort_function (const void *humpty, const void *dumpty)
|
|
2606 {
|
|
2607 CONST EXTENT foo = * (CONST EXTENT *) humpty;
|
|
2608 CONST EXTENT bar = * (CONST EXTENT *) dumpty;
|
|
2609 if (extent_priority (foo) < extent_priority (bar))
|
|
2610 return -1;
|
173
|
2611 return extent_priority (foo) > extent_priority (bar);
|
0
|
2612 }
|
|
2613
|
|
2614 static void
|
185
|
2615 extent_fragment_sort_by_priority (EXTENT_dynarr *extarr)
|
0
|
2616 {
|
|
2617 int i;
|
|
2618
|
|
2619 /* Sort our copy of the stack by extent_priority. We use a bubble
|
|
2620 sort here because it's going to be faster than qsort() for small
|
|
2621 numbers of extents (less than 10 or so), and 99.999% of the time
|
|
2622 there won't ever be more extents than this in the stack. */
|
|
2623 if (Dynarr_length (extarr) < 10)
|
|
2624 {
|
|
2625 for (i = 1; i < Dynarr_length (extarr); i++)
|
|
2626 {
|
|
2627 int j = i - 1;
|
|
2628 while (j >= 0 &&
|
|
2629 (extent_priority (Dynarr_at (extarr, j)) >
|
|
2630 extent_priority (Dynarr_at (extarr, j+1))))
|
|
2631 {
|
|
2632 EXTENT tmp = Dynarr_at (extarr, j);
|
|
2633 Dynarr_at (extarr, j) = Dynarr_at (extarr, j+1);
|
|
2634 Dynarr_at (extarr, j+1) = tmp;
|
|
2635 j--;
|
|
2636 }
|
|
2637 }
|
|
2638 }
|
|
2639 else
|
|
2640 /* But some loser programs mess up and may create a large number
|
|
2641 of extents overlapping the same spot. This will result in
|
|
2642 catastrophic behavior if we use the bubble sort above. */
|
|
2643 qsort (Dynarr_atp (extarr, 0), Dynarr_length (extarr),
|
|
2644 sizeof (EXTENT), extent_priority_sort_function);
|
|
2645 }
|
|
2646
|
|
2647 /* If PROP is the `invisible' property of an extent,
|
|
2648 this is 1 if the extent should be treated as invisible. */
|
|
2649
|
|
2650 #define EXTENT_PROP_MEANS_INVISIBLE(buf, prop) \
|
|
2651 (EQ (buf->invisibility_spec, Qt) \
|
|
2652 ? ! NILP (prop) \
|
|
2653 : invisible_p (prop, buf->invisibility_spec))
|
|
2654
|
|
2655 /* If PROP is the `invisible' property of a extent,
|
|
2656 this is 1 if the extent should be treated as invisible
|
|
2657 and should have an ellipsis. */
|
|
2658
|
|
2659 #define EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS(buf, prop) \
|
|
2660 (EQ (buf->invisibility_spec, Qt) \
|
|
2661 ? 0 \
|
|
2662 : invisible_ellipsis_p (prop, buf->invisibility_spec))
|
|
2663
|
|
2664 /* This is like a combination of memq and assq.
|
|
2665 Return 1 if PROPVAL appears as an element of LIST
|
|
2666 or as the car of an element of LIST.
|
|
2667 If PROPVAL is a list, compare each element against LIST
|
|
2668 in that way, and return 1 if any element of PROPVAL is found in LIST.
|
|
2669 Otherwise return 0.
|
|
2670 This function cannot quit. */
|
|
2671
|
|
2672 static int
|
|
2673 invisible_p (REGISTER Lisp_Object propval, Lisp_Object list)
|
|
2674 {
|
|
2675 REGISTER Lisp_Object tail, proptail;
|
|
2676 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
|
2677 {
|
|
2678 REGISTER Lisp_Object tem;
|
|
2679 tem = XCAR (tail);
|
|
2680 if (EQ (propval, tem))
|
|
2681 return 1;
|
|
2682 if (CONSP (tem) && EQ (propval, XCAR (tem)))
|
|
2683 return 1;
|
|
2684 }
|
|
2685 if (CONSP (propval))
|
|
2686 for (proptail = propval; CONSP (proptail);
|
|
2687 proptail = XCDR (proptail))
|
|
2688 {
|
|
2689 Lisp_Object propelt;
|
|
2690 propelt = XCAR (proptail);
|
|
2691 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
|
2692 {
|
|
2693 REGISTER Lisp_Object tem;
|
|
2694 tem = XCAR (tail);
|
|
2695 if (EQ (propelt, tem))
|
|
2696 return 1;
|
|
2697 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
|
|
2698 return 1;
|
|
2699 }
|
|
2700 }
|
|
2701 return 0;
|
|
2702 }
|
|
2703
|
|
2704 /* Return 1 if PROPVAL appears as the car of an element of LIST
|
|
2705 and the cdr of that element is non-nil.
|
|
2706 If PROPVAL is a list, check each element of PROPVAL in that way,
|
|
2707 and the first time some element is found,
|
|
2708 return 1 if the cdr of that element is non-nil.
|
|
2709 Otherwise return 0.
|
|
2710 This function cannot quit. */
|
|
2711
|
|
2712 static int
|
|
2713 invisible_ellipsis_p (REGISTER Lisp_Object propval, Lisp_Object list)
|
|
2714 {
|
|
2715 REGISTER Lisp_Object tail, proptail;
|
|
2716 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
|
2717 {
|
|
2718 REGISTER Lisp_Object tem;
|
|
2719 tem = XCAR (tail);
|
|
2720 if (CONSP (tem) && EQ (propval, XCAR (tem)))
|
|
2721 return ! NILP (XCDR (tem));
|
|
2722 }
|
|
2723 if (CONSP (propval))
|
|
2724 for (proptail = propval; CONSP (proptail);
|
|
2725 proptail = XCDR (proptail))
|
|
2726 {
|
|
2727 Lisp_Object propelt;
|
|
2728 propelt = XCAR (proptail);
|
|
2729 for (tail = list; CONSP (tail); tail = XCDR (tail))
|
|
2730 {
|
|
2731 REGISTER Lisp_Object tem;
|
|
2732 tem = XCAR (tail);
|
|
2733 if (CONSP (tem) && EQ (propelt, XCAR (tem)))
|
|
2734 return ! NILP (XCDR (tem));
|
|
2735 }
|
|
2736 }
|
|
2737 return 0;
|
|
2738 }
|
|
2739
|
|
2740 face_index
|
|
2741 extent_fragment_update (struct window *w, struct extent_fragment *ef,
|
|
2742 Bytind pos)
|
|
2743 {
|
|
2744 int i;
|
|
2745 Extent_List *sel =
|
|
2746 buffer_or_string_stack_of_extents_force (ef->object)->extents;
|
|
2747 EXTENT lhe = 0;
|
|
2748 struct extent dummy_lhe_extent;
|
|
2749 Memind mempos = buffer_or_string_bytind_to_memind (ef->object, pos);
|
|
2750
|
|
2751 #ifdef ERROR_CHECK_EXTENTS
|
|
2752 assert (pos >= buffer_or_string_accessible_begin_byte (ef->object)
|
|
2753 && pos <= buffer_or_string_accessible_end_byte (ef->object));
|
|
2754 #endif
|
|
2755
|
|
2756 Dynarr_reset (ef->extents);
|
|
2757 Dynarr_reset (ef->begin_glyphs);
|
|
2758 Dynarr_reset (ef->end_glyphs);
|
|
2759
|
|
2760 ef->previously_invisible = ef->invisible;
|
|
2761 if (ef->invisible)
|
|
2762 {
|
|
2763 if (ef->invisible_ellipses)
|
|
2764 ef->invisible_ellipses_already_displayed = 1;
|
|
2765 }
|
|
2766 else
|
|
2767 ef->invisible_ellipses_already_displayed = 0;
|
|
2768 ef->invisible = 0;
|
|
2769 ef->invisible_ellipses = 0;
|
|
2770
|
|
2771 /* Set up the begin and end positions. */
|
|
2772 ef->pos = pos;
|
|
2773 ef->end = extent_find_end_of_run (ef->object, pos, 0);
|
|
2774
|
|
2775 /* Note that extent_find_end_of_run() already moved the SOE for us. */
|
|
2776 /* soe_move (ef->object, mempos); */
|
|
2777
|
|
2778 /* Determine the begin glyphs at POS. */
|
|
2779 for (i = 0; i < extent_list_num_els (sel); i++)
|
|
2780 {
|
|
2781 EXTENT e = extent_list_at (sel, i, 0);
|
|
2782 if (extent_start (e) == mempos && !NILP (extent_begin_glyph (e)))
|
|
2783 {
|
|
2784 Lisp_Object glyph = extent_begin_glyph (e);
|
|
2785 struct glyph_block gb;
|
173
|
2786
|
0
|
2787 gb.glyph = glyph;
|
|
2788 XSETEXTENT (gb.extent, e);
|
|
2789 Dynarr_add (ef->begin_glyphs, gb);
|
|
2790 }
|
|
2791 }
|
173
|
2792
|
0
|
2793 /* Determine the end glyphs at POS. */
|
|
2794 for (i = 0; i < extent_list_num_els (sel); i++)
|
|
2795 {
|
|
2796 EXTENT e = extent_list_at (sel, i, 1);
|
|
2797 if (extent_end (e) == mempos && !NILP (extent_end_glyph (e)))
|
|
2798 {
|
|
2799 Lisp_Object glyph = extent_end_glyph (e);
|
|
2800 struct glyph_block gb;
|
173
|
2801
|
0
|
2802 gb.glyph = glyph;
|
|
2803 XSETEXTENT (gb.extent, e);
|
|
2804 Dynarr_add (ef->end_glyphs, gb);
|
|
2805 }
|
|
2806 }
|
|
2807
|
|
2808 /* We tried determining all the charsets used in the run here,
|
|
2809 but that fails even if we only do the current line -- display
|
|
2810 tables or non-printable characters might cause other charsets
|
|
2811 to be used. */
|
|
2812
|
|
2813 /* Determine whether the last-highlighted-extent is present. */
|
|
2814 if (EXTENTP (Vlast_highlighted_extent))
|
|
2815 lhe = XEXTENT (Vlast_highlighted_extent);
|
|
2816
|
|
2817 /* Now add all extents that overlap the character after POS and
|
|
2818 have a non-nil face. Also check if the character is invisible. */
|
|
2819 for (i = 0; i < extent_list_num_els (sel); i++)
|
|
2820 {
|
|
2821 EXTENT e = extent_list_at (sel, i, 0);
|
|
2822 if (extent_end (e) > mempos)
|
|
2823 {
|
|
2824 Lisp_Object invis_prop = extent_invisible (e);
|
|
2825
|
|
2826 if (!NILP (invis_prop))
|
|
2827 {
|
|
2828 if (!BUFFERP (ef->object))
|
|
2829 /* #### no `string-invisibility-spec' */
|
|
2830 ef->invisible = 1;
|
|
2831 else
|
|
2832 {
|
|
2833 if (!ef->invisible_ellipses_already_displayed &&
|
|
2834 EXTENT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS
|
|
2835 (XBUFFER (ef->object), invis_prop))
|
|
2836 {
|
|
2837 ef->invisible = 1;
|
|
2838 ef->invisible_ellipses = 1;
|
|
2839 }
|
|
2840 else if (EXTENT_PROP_MEANS_INVISIBLE
|
|
2841 (XBUFFER (ef->object), invis_prop))
|
|
2842 ef->invisible = 1;
|
|
2843 }
|
|
2844 }
|
|
2845
|
|
2846 /* Remember that one of the extents in the list might be our
|
|
2847 dummy extent representing the highlighting that is
|
|
2848 attached to some other extent that is currently
|
|
2849 mouse-highlighted. When an extent is mouse-highlighted,
|
|
2850 it is as if there are two extents there, of potentially
|
|
2851 different priorities: the extent being highlighted, with
|
|
2852 whatever face and priority it has; and an ephemeral
|
|
2853 extent in the `mouse-face' face with
|
|
2854 `mouse-highlight-priority'.
|
|
2855 */
|
|
2856
|
|
2857 if (!NILP (extent_face (e)))
|
|
2858 Dynarr_add (ef->extents, e);
|
|
2859 if (e == lhe)
|
|
2860 {
|
253
|
2861 Lisp_Object f;
|
272
|
2862 /* zeroing isn't really necessary; we only deref `priority'
|
0
|
2863 and `face' */
|
272
|
2864 xzero (dummy_lhe_extent);
|
0
|
2865 set_extent_priority (&dummy_lhe_extent,
|
|
2866 mouse_highlight_priority);
|
253
|
2867 /* Need to break up thefollowing expression, due to an */
|
|
2868 /* error in the Digital UNIX 3.2g C compiler (Digital */
|
|
2869 /* UNIX Compiler Driver 3.11). */
|
|
2870 f = extent_mouse_face (lhe);
|
|
2871 extent_face (&dummy_lhe_extent) = f;
|
0
|
2872 Dynarr_add (ef->extents, &dummy_lhe_extent);
|
|
2873 }
|
189
|
2874 /* since we are looping anyway, we might as well do this here */
|
207
|
2875 if ((!NILP(extent_initial_redisplay_function (e))) &&
|
|
2876 !extent_in_red_event_p(e))
|
189
|
2877 {
|
207
|
2878 Lisp_Object function = extent_initial_redisplay_function (e);
|
189
|
2879 Lisp_Object obj;
|
|
2880
|
272
|
2881 /* printf ("initial redisplay function called!\n "); */
|
|
2882
|
|
2883 /* print_extent_2 (e);
|
|
2884 printf ("\n"); */
|
|
2885
|
207
|
2886 /* FIXME: One should probably inhibit the displaying of
|
189
|
2887 this extent to reduce flicker */
|
207
|
2888 extent_in_red_event_p(e) = 1;
|
272
|
2889
|
189
|
2890 /* call the function */
|
|
2891 XSETEXTENT(obj,e);
|
|
2892 if(!NILP(function))
|
|
2893 Fenqueue_eval_event(function,obj);
|
|
2894 }
|
0
|
2895 }
|
|
2896 }
|
|
2897
|
|
2898 extent_fragment_sort_by_priority (ef->extents);
|
|
2899
|
|
2900 /* Now merge the faces together into a single face. The code to
|
|
2901 do this is in faces.c because it involves manipulating faces. */
|
|
2902 return get_extent_fragment_face_cache_index (w, ef);
|
173
|
2903 }
|
0
|
2904
|
|
2905
|
|
2906 /************************************************************************/
|
|
2907 /* extent-object methods */
|
|
2908 /************************************************************************/
|
|
2909
|
|
2910 /* These are the basic helper functions for handling the allocation of
|
|
2911 extent objects. They are similar to the functions for other
|
|
2912 lrecord objects. allocate_extent() is in alloc.c, not here. */
|
|
2913
|
|
2914 static Lisp_Object mark_extent (Lisp_Object, void (*) (Lisp_Object));
|
|
2915 static int extent_equal (Lisp_Object, Lisp_Object, int depth);
|
|
2916 static unsigned long extent_hash (Lisp_Object obj, int depth);
|
|
2917 static void print_extent (Lisp_Object obj, Lisp_Object printcharfun,
|
|
2918 int escapeflag);
|
|
2919 static Lisp_Object extent_getprop (Lisp_Object obj, Lisp_Object prop);
|
|
2920 static int extent_putprop (Lisp_Object obj, Lisp_Object prop,
|
|
2921 Lisp_Object value);
|
|
2922 static int extent_remprop (Lisp_Object obj, Lisp_Object prop);
|
|
2923 static Lisp_Object extent_plist (Lisp_Object obj);
|
|
2924
|
|
2925 DEFINE_BASIC_LRECORD_IMPLEMENTATION_WITH_PROPS ("extent", extent,
|
|
2926 mark_extent,
|
|
2927 print_extent,
|
|
2928 /* NOTE: If you declare a
|
|
2929 finalization method here,
|
|
2930 it will NOT be called.
|
|
2931 Shaft city. */
|
|
2932 0,
|
|
2933 extent_equal, extent_hash,
|
|
2934 extent_getprop, extent_putprop,
|
|
2935 extent_remprop, extent_plist,
|
|
2936 struct extent);
|
|
2937
|
|
2938 static Lisp_Object
|
|
2939 mark_extent (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
2940 {
|
|
2941 struct extent *extent = XEXTENT (obj);
|
|
2942
|
|
2943 ((markobj) (extent_object (extent)));
|
|
2944 ((markobj) (extent_no_chase_normal_field (extent, face)));
|
173
|
2945 return extent->plist;
|
0
|
2946 }
|
|
2947
|
177
|
2948 static void
|
173
|
2949 print_extent_1 (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
2950 {
|
|
2951 EXTENT ext = XEXTENT (obj);
|
0
|
2952 EXTENT anc = extent_ancestor (ext);
|
|
2953 Lisp_Object tail;
|
173
|
2954 char buf[64], *bp = buf;
|
0
|
2955
|
|
2956 /* Retrieve the ancestor and use it, for faster retrieval of properties */
|
|
2957
|
|
2958 if (!NILP (extent_begin_glyph (anc))) *bp++ = '*';
|
|
2959 *bp++ = (extent_start_open_p (anc) ? '(': '[');
|
|
2960 if (extent_detached_p (ext))
|
272
|
2961 strcpy (bp, "detached");
|
0
|
2962 else
|
|
2963 {
|
173
|
2964 Bufpos from = XINT (Fextent_start_position (obj));
|
|
2965 Bufpos to = XINT (Fextent_end_position (obj));
|
0
|
2966 sprintf (bp, "%d, %d", from, to);
|
|
2967 }
|
|
2968 bp += strlen (bp);
|
|
2969 *bp++ = (extent_end_open_p (anc) ? ')': ']');
|
|
2970 if (!NILP (extent_end_glyph (anc))) *bp++ = '*';
|
|
2971 *bp++ = ' ';
|
|
2972
|
|
2973 if (!NILP (extent_read_only (anc))) *bp++ = '%';
|
|
2974 if (!NILP (extent_mouse_face (anc))) *bp++ = 'H';
|
|
2975 if (extent_unique_p (anc)) *bp++ = 'U';
|
|
2976 else if (extent_duplicable_p (anc)) *bp++ = 'D';
|
|
2977 if (!NILP (extent_invisible (anc))) *bp++ = 'I';
|
|
2978
|
|
2979 if (!NILP (extent_read_only (anc)) || !NILP (extent_mouse_face (anc)) ||
|
96
|
2980 extent_unique_p (anc) ||
|
0
|
2981 extent_duplicable_p (anc) || !NILP (extent_invisible (anc)))
|
|
2982 *bp++ = ' ';
|
173
|
2983 *bp = '\0';
|
|
2984 write_c_string (buf, printcharfun);
|
0
|
2985
|
|
2986 tail = extent_plist_slot (anc);
|
|
2987
|
|
2988 for (; !NILP (tail); tail = Fcdr (Fcdr (tail)))
|
|
2989 {
|
|
2990 Lisp_Object v = XCAR (XCDR (tail));
|
|
2991 if (NILP (v)) continue;
|
173
|
2992 print_internal (XCAR (tail), printcharfun, escapeflag);
|
|
2993 write_c_string (" ", printcharfun);
|
0
|
2994 }
|
|
2995
|
211
|
2996 sprintf (buf, "0x%lx", (unsigned long int) ext);
|
173
|
2997 write_c_string (buf, printcharfun);
|
0
|
2998 }
|
|
2999
|
|
3000 static void
|
|
3001 print_extent (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
3002 {
|
|
3003 if (escapeflag)
|
|
3004 {
|
|
3005 CONST char *title = "";
|
|
3006 CONST char *name = "";
|
|
3007 CONST char *posttitle = "";
|
|
3008 Lisp_Object obj2 = Qnil;
|
173
|
3009
|
0
|
3010 /* Destroyed extents have 't' in the object field, causing
|
|
3011 extent_object() to abort (maybe). */
|
|
3012 if (EXTENT_LIVE_P (XEXTENT (obj)))
|
|
3013 obj2 = extent_object (XEXTENT (obj));
|
173
|
3014
|
0
|
3015 if (NILP (obj2))
|
|
3016 title = "no buffer";
|
|
3017 else if (BUFFERP (obj2))
|
|
3018 {
|
|
3019 if (BUFFER_LIVE_P (XBUFFER (obj2)))
|
|
3020 {
|
|
3021 title = "buffer ";
|
16
|
3022 name = (char *) XSTRING_DATA (XBUFFER (obj2)->name);
|
0
|
3023 }
|
|
3024 else
|
|
3025 {
|
|
3026 title = "Killed Buffer";
|
|
3027 name = "";
|
|
3028 }
|
|
3029 }
|
|
3030 else
|
|
3031 {
|
|
3032 assert (STRINGP (obj2));
|
|
3033 title = "string \"";
|
|
3034 posttitle = "\"";
|
16
|
3035 name = (char *) XSTRING_DATA (obj2);
|
0
|
3036 }
|
173
|
3037
|
0
|
3038 if (print_readably)
|
|
3039 {
|
|
3040 if (!EXTENT_LIVE_P (XEXTENT (obj)))
|
|
3041 error ("printing unreadable object #<destroyed extent>");
|
|
3042 else
|
185
|
3043 error ("printing unreadable object #<extent 0x%p>",
|
|
3044 XEXTENT (obj));
|
0
|
3045 }
|
173
|
3046
|
0
|
3047 if (!EXTENT_LIVE_P (XEXTENT (obj)))
|
|
3048 write_c_string ("#<destroyed extent", printcharfun);
|
|
3049 else
|
|
3050 {
|
185
|
3051 char *buf = (char *)
|
|
3052 alloca (strlen (title) + strlen (name) + strlen (posttitle) + 1);
|
0
|
3053 write_c_string ("#<extent ", printcharfun);
|
173
|
3054 print_extent_1 (obj, printcharfun, escapeflag);
|
|
3055 write_c_string (extent_detached_p (XEXTENT (obj))
|
|
3056 ? " from " : " in ", printcharfun);
|
|
3057 sprintf (buf, "%s%s%s", title, name, posttitle);
|
0
|
3058 write_c_string (buf, printcharfun);
|
|
3059 }
|
|
3060 }
|
|
3061 else
|
|
3062 {
|
|
3063 if (print_readably)
|
|
3064 error ("printing unreadable object #<extent>");
|
|
3065 write_c_string ("#<extent", printcharfun);
|
|
3066 }
|
|
3067 write_c_string (">", printcharfun);
|
|
3068 }
|
|
3069
|
|
3070 static int
|
|
3071 properties_equal (EXTENT e1, EXTENT e2, int depth)
|
|
3072 {
|
|
3073 /* When this function is called, all indirections have been followed.
|
|
3074 Thus, the indirection checks in the various macros below will not
|
|
3075 amount to anything, and could be removed. However, the time
|
|
3076 savings would probably not be significant. */
|
|
3077 if (!(EQ (extent_face (e1), extent_face (e2)) &&
|
|
3078 extent_priority (e1) == extent_priority (e2) &&
|
|
3079 internal_equal (extent_begin_glyph (e1), extent_begin_glyph (e2),
|
|
3080 depth + 1) &&
|
|
3081 internal_equal (extent_end_glyph (e1), extent_end_glyph (e2),
|
|
3082 depth + 1)))
|
|
3083 return 0;
|
|
3084
|
|
3085 /* compare the bit flags. */
|
|
3086 {
|
|
3087 /* The has_aux field should not be relevant. */
|
|
3088 int e1_has_aux = e1->flags.has_aux;
|
|
3089 int e2_has_aux = e2->flags.has_aux;
|
|
3090 int value;
|
|
3091
|
|
3092 e1->flags.has_aux = e2->flags.has_aux = 0;
|
|
3093 value = memcmp (&e1->flags, &e2->flags, sizeof (e1->flags));
|
|
3094 e1->flags.has_aux = e1_has_aux;
|
|
3095 e2->flags.has_aux = e2_has_aux;
|
|
3096 if (value)
|
|
3097 return 0;
|
|
3098 }
|
|
3099
|
|
3100 /* compare the random elements of the plists. */
|
173
|
3101 return !plists_differ (extent_no_chase_plist (e1),
|
|
3102 extent_no_chase_plist (e2),
|
|
3103 0, 0, depth + 1);
|
0
|
3104 }
|
|
3105
|
|
3106 static int
|
|
3107 extent_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
3108 {
|
|
3109 struct extent *e1 = XEXTENT (o1);
|
|
3110 struct extent *e2 = XEXTENT (o2);
|
|
3111 return
|
|
3112 (extent_start (e1) == extent_start (e2) &&
|
|
3113 extent_end (e1) == extent_end (e2) &&
|
|
3114 internal_equal (extent_object (e1), extent_object (e2), depth + 1) &&
|
|
3115 properties_equal (extent_ancestor (e1), extent_ancestor (e2),
|
|
3116 depth));
|
|
3117 }
|
|
3118
|
|
3119 static unsigned long
|
|
3120 extent_hash (Lisp_Object obj, int depth)
|
|
3121 {
|
|
3122 struct extent *e = XEXTENT (obj);
|
|
3123 /* No need to hash all of the elements; that would take too long.
|
|
3124 Just hash the most common ones. */
|
|
3125 return HASH3 (extent_start (e), extent_end (e),
|
|
3126 internal_hash (extent_object (e), depth + 1));
|
|
3127 }
|
|
3128
|
|
3129 static Lisp_Object
|
|
3130 extent_getprop (Lisp_Object obj, Lisp_Object prop)
|
|
3131 {
|
|
3132 return Fextent_property (obj, prop, Qunbound);
|
|
3133 }
|
|
3134
|
|
3135 static int
|
|
3136 extent_putprop (Lisp_Object obj, Lisp_Object prop, Lisp_Object value)
|
|
3137 {
|
223
|
3138 Fset_extent_property (obj, prop, value);
|
|
3139 return 1;
|
0
|
3140 }
|
|
3141
|
|
3142 static int
|
|
3143 extent_remprop (Lisp_Object obj, Lisp_Object prop)
|
|
3144 {
|
223
|
3145 EXTENT ext = XEXTENT (obj);
|
|
3146
|
|
3147 /* This list is taken from Fset_extent_property, and should be kept
|
|
3148 in synch. */
|
|
3149 if (EQ (prop, Qread_only)
|
|
3150 || EQ (prop, Qunique)
|
|
3151 || EQ (prop, Qduplicable)
|
|
3152 || EQ (prop, Qinvisible)
|
|
3153 || EQ (prop, Qdetachable)
|
|
3154 || EQ (prop, Qdetached)
|
|
3155 || EQ (prop, Qdestroyed)
|
|
3156 || EQ (prop, Qpriority)
|
|
3157 || EQ (prop, Qface)
|
|
3158 || EQ (prop, Qinitial_redisplay_function)
|
|
3159 || EQ (prop, Qmouse_face)
|
|
3160 || EQ (prop, Qhighlight)
|
|
3161 || EQ (prop, Qbegin_glyph_layout)
|
|
3162 || EQ (prop, Qend_glyph_layout)
|
|
3163 || EQ (prop, Qglyph_layout)
|
|
3164 || EQ (prop, Qbegin_glyph)
|
|
3165 || EQ (prop, Qend_glyph)
|
|
3166 || EQ (prop, Qstart_open)
|
|
3167 || EQ (prop, Qend_open)
|
|
3168 || EQ (prop, Qstart_closed)
|
|
3169 || EQ (prop, Qend_closed)
|
|
3170 || EQ (prop, Qkeymap))
|
|
3171 {
|
|
3172 /* #### Is this correct, anyway? */
|
|
3173 return -1;
|
|
3174 }
|
|
3175
|
|
3176 return external_remprop (&ext->plist, prop, 0, ERROR_ME);
|
0
|
3177 }
|
|
3178
|
|
3179 static Lisp_Object
|
|
3180 extent_plist (Lisp_Object obj)
|
|
3181 {
|
|
3182 return Fextent_properties (obj);
|
|
3183 }
|
|
3184
|
|
3185
|
|
3186 /************************************************************************/
|
|
3187 /* basic extent accessors */
|
|
3188 /************************************************************************/
|
|
3189
|
|
3190 /* These functions are for checking externally-passed extent objects
|
|
3191 and returning an extent's basic properties, which include the
|
|
3192 buffer the extent is associated with, the endpoints of the extent's
|
|
3193 range, the open/closed-ness of those endpoints, and whether the
|
|
3194 extent is detached. Manipulating these properties requires
|
|
3195 manipulating the ordered lists that hold extents; thus, functions
|
|
3196 to do that are in a later section. */
|
|
3197
|
|
3198 /* Given a Lisp_Object that is supposed to be an extent, make sure it
|
|
3199 is OK and return an extent pointer. Extents can be in one of four
|
|
3200 states:
|
|
3201
|
|
3202 1) destroyed
|
|
3203 2) detached and not associated with a buffer
|
|
3204 3) detached and associated with a buffer
|
|
3205 4) attached to a buffer
|
|
3206
|
|
3207 If FLAGS is 0, types 2-4 are allowed. If FLAGS is DE_MUST_HAVE_BUFFER,
|
|
3208 types 3-4 are allowed. If FLAGS is DE_MUST_BE_ATTACHED, only type 4
|
|
3209 is allowed.
|
|
3210 */
|
|
3211
|
|
3212 static EXTENT
|
|
3213 decode_extent (Lisp_Object extent_obj, unsigned int flags)
|
|
3214 {
|
|
3215 EXTENT extent;
|
|
3216 Lisp_Object obj;
|
|
3217
|
|
3218 CHECK_LIVE_EXTENT (extent_obj);
|
|
3219 extent = XEXTENT (extent_obj);
|
|
3220 obj = extent_object (extent);
|
|
3221
|
|
3222 /* the following condition will fail if we're dealing with a freed extent */
|
|
3223 assert (NILP (obj) || BUFFERP (obj) || STRINGP (obj));
|
|
3224
|
|
3225 if (flags & DE_MUST_BE_ATTACHED)
|
|
3226 flags |= DE_MUST_HAVE_BUFFER;
|
|
3227
|
|
3228 /* if buffer is dead, then convert extent to have no buffer. */
|
|
3229 if (BUFFERP (obj) && !BUFFER_LIVE_P (XBUFFER (obj)))
|
|
3230 obj = extent_object (extent) = Qnil;
|
|
3231
|
|
3232 assert (!NILP (obj) || extent_detached_p (extent));
|
|
3233
|
276
|
3234 if ((NILP (obj) && (flags & DE_MUST_HAVE_BUFFER))
|
|
3235 || (extent_detached_p (extent) && (flags & DE_MUST_BE_ATTACHED)))
|
0
|
3236 {
|
|
3237 signal_simple_error ("extent doesn't belong to a buffer or string",
|
|
3238 extent_obj);
|
|
3239 }
|
173
|
3240
|
0
|
3241 return extent;
|
|
3242 }
|
|
3243
|
|
3244 /* Note that the returned value is a buffer position, not a byte index. */
|
|
3245
|
|
3246 static Lisp_Object
|
|
3247 extent_endpoint_external (Lisp_Object extent_obj, int endp)
|
|
3248 {
|
|
3249 EXTENT extent = decode_extent (extent_obj, 0);
|
|
3250
|
|
3251 if (extent_detached_p (extent))
|
|
3252 return Qnil;
|
|
3253 else
|
|
3254 return make_int (extent_endpoint_bufpos (extent, endp));
|
|
3255 }
|
|
3256
|
20
|
3257 DEFUN ("extentp", Fextentp, 1, 1, 0, /*
|
272
|
3258 Return t if OBJECT is an extent.
|
20
|
3259 */
|
|
3260 (object))
|
0
|
3261 {
|
272
|
3262 return EXTENTP (object) ? Qt : Qnil;
|
0
|
3263 }
|
173
|
3264
|
20
|
3265 DEFUN ("extent-live-p", Fextent_live_p, 1, 1, 0, /*
|
272
|
3266 Return t if OBJECT is an extent that has not been destroyed.
|
20
|
3267 */
|
|
3268 (object))
|
0
|
3269 {
|
272
|
3270 return EXTENTP (object) && EXTENT_LIVE_P (XEXTENT (object)) ? Qt : Qnil;
|
0
|
3271 }
|
|
3272
|
20
|
3273 DEFUN ("extent-detached-p", Fextent_detached_p, 1, 1, 0, /*
|
272
|
3274 Return t if EXTENT is detached.
|
20
|
3275 */
|
|
3276 (extent))
|
0
|
3277 {
|
272
|
3278 return extent_detached_p (decode_extent (extent, 0)) ? Qt : Qnil;
|
0
|
3279 }
|
|
3280
|
20
|
3281 DEFUN ("extent-object", Fextent_object, 1, 1, 0, /*
|
272
|
3282 Return object (buffer or string) that EXTENT refers to.
|
20
|
3283 */
|
|
3284 (extent))
|
0
|
3285 {
|
|
3286 return extent_object (decode_extent (extent, 0));
|
|
3287 }
|
|
3288
|
20
|
3289 DEFUN ("extent-start-position", Fextent_start_position, 1, 1, 0, /*
|
0
|
3290 Return start position of EXTENT, or nil if EXTENT is detached.
|
20
|
3291 */
|
|
3292 (extent))
|
0
|
3293 {
|
|
3294 return extent_endpoint_external (extent, 0);
|
|
3295 }
|
|
3296
|
20
|
3297 DEFUN ("extent-end-position", Fextent_end_position, 1, 1, 0, /*
|
0
|
3298 Return end position of EXTENT, or nil if EXTENT is detached.
|
20
|
3299 */
|
|
3300 (extent))
|
0
|
3301 {
|
|
3302 return extent_endpoint_external (extent, 1);
|
|
3303 }
|
|
3304
|
20
|
3305 DEFUN ("extent-length", Fextent_length, 1, 1, 0, /*
|
0
|
3306 Return length of EXTENT in characters.
|
20
|
3307 */
|
|
3308 (extent))
|
0
|
3309 {
|
|
3310 EXTENT e = decode_extent (extent, DE_MUST_BE_ATTACHED);
|
|
3311 return make_int (extent_endpoint_bufpos (e, 1)
|
|
3312 - extent_endpoint_bufpos (e, 0));
|
|
3313 }
|
|
3314
|
20
|
3315 DEFUN ("next-extent", Fnext_extent, 1, 1, 0, /*
|
0
|
3316 Find next extent after EXTENT.
|
|
3317 If EXTENT is a buffer return the first extent in the buffer; likewise
|
|
3318 for strings.
|
185
|
3319 Extents in a buffer are ordered in what is called the "display"
|
0
|
3320 order, which sorts by increasing start positions and then by *decreasing*
|
|
3321 end positions.
|
|
3322 If you want to perform an operation on a series of extents, use
|
|
3323 `map-extents' instead of this function; it is much more efficient.
|
|
3324 The primary use of this function should be to enumerate all the
|
|
3325 extents in a buffer.
|
|
3326 Note: The display order is not necessarily the order that `map-extents'
|
|
3327 processes extents in!
|
20
|
3328 */
|
|
3329 (extent))
|
0
|
3330 {
|
|
3331 Lisp_Object val;
|
|
3332 EXTENT next;
|
|
3333
|
|
3334 if (EXTENTP (extent))
|
|
3335 next = extent_next (decode_extent (extent, DE_MUST_BE_ATTACHED));
|
|
3336 else
|
|
3337 next = extent_first (decode_buffer_or_string (extent));
|
|
3338
|
|
3339 if (!next)
|
173
|
3340 return Qnil;
|
0
|
3341 XSETEXTENT (val, next);
|
173
|
3342 return val;
|
0
|
3343 }
|
|
3344
|
20
|
3345 DEFUN ("previous-extent", Fprevious_extent, 1, 1, 0, /*
|
0
|
3346 Find last extent before EXTENT.
|
|
3347 If EXTENT is a buffer return the last extent in the buffer; likewise
|
|
3348 for strings.
|
|
3349 This function is analogous to `next-extent'.
|
20
|
3350 */
|
|
3351 (extent))
|
0
|
3352 {
|
|
3353 Lisp_Object val;
|
|
3354 EXTENT prev;
|
|
3355
|
|
3356 if (EXTENTP (extent))
|
|
3357 prev = extent_previous (decode_extent (extent, DE_MUST_BE_ATTACHED));
|
|
3358 else
|
|
3359 prev = extent_last (decode_buffer_or_string (extent));
|
|
3360
|
|
3361 if (!prev)
|
173
|
3362 return Qnil;
|
0
|
3363 XSETEXTENT (val, prev);
|
173
|
3364 return val;
|
0
|
3365 }
|
|
3366
|
|
3367 #ifdef DEBUG_XEMACS
|
|
3368
|
20
|
3369 DEFUN ("next-e-extent", Fnext_e_extent, 1, 1, 0, /*
|
185
|
3370 Find next extent after EXTENT using the "e" order.
|
0
|
3371 If EXTENT is a buffer return the first extent in the buffer; likewise
|
|
3372 for strings.
|
20
|
3373 */
|
|
3374 (extent))
|
0
|
3375 {
|
|
3376 Lisp_Object val;
|
|
3377 EXTENT next;
|
|
3378
|
|
3379 if (EXTENTP (extent))
|
|
3380 next = extent_e_next (decode_extent (extent, DE_MUST_BE_ATTACHED));
|
|
3381 else
|
|
3382 next = extent_e_first (decode_buffer_or_string (extent));
|
|
3383
|
|
3384 if (!next)
|
173
|
3385 return Qnil;
|
0
|
3386 XSETEXTENT (val, next);
|
173
|
3387 return val;
|
0
|
3388 }
|
|
3389
|
20
|
3390 DEFUN ("previous-e-extent", Fprevious_e_extent, 1, 1, 0, /*
|
185
|
3391 Find last extent before EXTENT using the "e" order.
|
0
|
3392 If EXTENT is a buffer return the last extent in the buffer; likewise
|
|
3393 for strings.
|
|
3394 This function is analogous to `next-e-extent'.
|
20
|
3395 */
|
|
3396 (extent))
|
0
|
3397 {
|
|
3398 Lisp_Object val;
|
|
3399 EXTENT prev;
|
|
3400
|
|
3401 if (EXTENTP (extent))
|
|
3402 prev = extent_e_previous (decode_extent (extent, DE_MUST_BE_ATTACHED));
|
|
3403 else
|
|
3404 prev = extent_e_last (decode_buffer_or_string (extent));
|
|
3405
|
|
3406 if (!prev)
|
173
|
3407 return Qnil;
|
0
|
3408 XSETEXTENT (val, prev);
|
173
|
3409 return val;
|
0
|
3410 }
|
|
3411
|
|
3412 #endif
|
|
3413
|
20
|
3414 DEFUN ("next-extent-change", Fnext_extent_change, 1, 2, 0, /*
|
0
|
3415 Return the next position after POS where an extent begins or ends.
|
|
3416 If POS is at the end of the buffer or string, POS will be returned;
|
|
3417 otherwise a position greater than POS will always be returned.
|
|
3418 If BUFFER is nil, the current buffer is assumed.
|
20
|
3419 */
|
|
3420 (pos, object))
|
0
|
3421 {
|
|
3422 Lisp_Object obj = decode_buffer_or_string (object);
|
|
3423 Bytind bpos;
|
|
3424
|
|
3425 bpos = get_buffer_or_string_pos_byte (obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
|
|
3426 bpos = extent_find_end_of_run (obj, bpos, 1);
|
|
3427 return make_int (buffer_or_string_bytind_to_bufpos (obj, bpos));
|
|
3428 }
|
|
3429
|
20
|
3430 DEFUN ("previous-extent-change", Fprevious_extent_change, 1, 2, 0, /*
|
0
|
3431 Return the last position before POS where an extent begins or ends.
|
|
3432 If POS is at the beginning of the buffer or string, POS will be returned;
|
|
3433 otherwise a position less than POS will always be returned.
|
|
3434 If OBJECT is nil, the current buffer is assumed.
|
20
|
3435 */
|
|
3436 (pos, object))
|
0
|
3437 {
|
|
3438 Lisp_Object obj = decode_buffer_or_string (object);
|
|
3439 Bytind bpos;
|
|
3440
|
|
3441 bpos = get_buffer_or_string_pos_byte (obj, pos, GB_ALLOW_PAST_ACCESSIBLE);
|
|
3442 bpos = extent_find_beginning_of_run (obj, bpos, 1);
|
|
3443 return make_int (buffer_or_string_bytind_to_bufpos (obj, bpos));
|
|
3444 }
|
|
3445
|
|
3446
|
|
3447 /************************************************************************/
|
|
3448 /* parent and children stuff */
|
|
3449 /************************************************************************/
|
|
3450
|
20
|
3451 DEFUN ("extent-parent", Fextent_parent, 1, 1, 0, /*
|
0
|
3452 Return the parent (if any) of EXTENT.
|
|
3453 If an extent has a parent, it derives all its properties from that extent
|
185
|
3454 and has no properties of its own. (The only "properties" that the
|
0
|
3455 extent keeps are the buffer/string it refers to and the start and end
|
|
3456 points.) It is possible for an extent's parent to itself have a parent.
|
20
|
3457 */
|
|
3458 (extent))
|
0
|
3459 /* do I win the prize for the strangest split infinitive? */
|
|
3460 {
|
|
3461 EXTENT e = decode_extent (extent, 0);
|
|
3462 return extent_parent (e);
|
|
3463 }
|
|
3464
|
20
|
3465 DEFUN ("extent-children", Fextent_children, 1, 1, 0, /*
|
0
|
3466 Return a list of the children (if any) of EXTENT.
|
|
3467 The children of an extent are all those extents whose parent is that extent.
|
|
3468 This function does not recursively trace children of children.
|
|
3469 \(To do that, use `extent-descendants'.)
|
20
|
3470 */
|
|
3471 (extent))
|
0
|
3472 {
|
|
3473 EXTENT e = decode_extent (extent, 0);
|
|
3474 Lisp_Object children = extent_children (e);
|
|
3475
|
|
3476 if (!NILP (children))
|
|
3477 return Fcopy_sequence (XWEAK_LIST_LIST (children));
|
|
3478 else
|
|
3479 return Qnil;
|
|
3480 }
|
|
3481
|
|
3482 static void
|
|
3483 remove_extent_from_children_list (EXTENT e, Lisp_Object child)
|
|
3484 {
|
|
3485 Lisp_Object children = extent_children (e);
|
|
3486
|
|
3487 #ifdef ERROR_CHECK_EXTENTS
|
|
3488 assert (!NILP (memq_no_quit (child, XWEAK_LIST_LIST (children))));
|
|
3489 #endif
|
|
3490 XWEAK_LIST_LIST (children) =
|
|
3491 delq_no_quit (child, XWEAK_LIST_LIST (children));
|
|
3492 }
|
|
3493
|
|
3494 static void
|
|
3495 add_extent_to_children_list (EXTENT e, Lisp_Object child)
|
|
3496 {
|
|
3497 Lisp_Object children = extent_children (e);
|
|
3498
|
|
3499 if (NILP (children))
|
|
3500 {
|
|
3501 children = make_weak_list (WEAK_LIST_SIMPLE);
|
|
3502 set_extent_no_chase_aux_field (e, children, children);
|
|
3503 }
|
|
3504
|
|
3505 #ifdef ERROR_CHECK_EXTENTS
|
|
3506 assert (NILP (memq_no_quit (child, XWEAK_LIST_LIST (children))));
|
|
3507 #endif
|
|
3508 XWEAK_LIST_LIST (children) = Fcons (child, XWEAK_LIST_LIST (children));
|
|
3509 }
|
|
3510
|
20
|
3511 DEFUN ("set-extent-parent", Fset_extent_parent, 2, 2, 0, /*
|
0
|
3512 Set the parent of EXTENT to PARENT (may be nil).
|
|
3513 See `extent-parent'.
|
20
|
3514 */
|
|
3515 (extent, parent))
|
0
|
3516 {
|
|
3517 EXTENT e = decode_extent (extent, 0);
|
|
3518 Lisp_Object cur_parent = extent_parent (e);
|
|
3519 Lisp_Object rest;
|
|
3520
|
|
3521 XSETEXTENT (extent, e);
|
|
3522 if (!NILP (parent))
|
|
3523 CHECK_LIVE_EXTENT (parent);
|
|
3524 if (EQ (parent, cur_parent))
|
|
3525 return Qnil;
|
|
3526 for (rest = parent; !NILP (rest); rest = extent_parent (XEXTENT (rest)))
|
|
3527 if (EQ (rest, extent))
|
|
3528 signal_simple_error ("Circular parent chain would result", extent);
|
|
3529 if (NILP (parent))
|
|
3530 {
|
|
3531 remove_extent_from_children_list (XEXTENT (cur_parent), extent);
|
|
3532 set_extent_no_chase_aux_field (e, parent, Qnil);
|
|
3533 e->flags.has_parent = 0;
|
|
3534 }
|
|
3535 else
|
|
3536 {
|
|
3537 add_extent_to_children_list (XEXTENT (parent), extent);
|
|
3538 set_extent_no_chase_aux_field (e, parent, parent);
|
|
3539 e->flags.has_parent = 1;
|
|
3540 }
|
|
3541 /* changing the parent also changes the properties of all children. */
|
110
|
3542 {
|
|
3543 int old_invis = (!NILP (cur_parent) &&
|
|
3544 !NILP (extent_invisible (XEXTENT (cur_parent))));
|
|
3545 int new_invis = (!NILP (parent) &&
|
|
3546 !NILP (extent_invisible (XEXTENT (parent))));
|
|
3547
|
|
3548 extent_maybe_changed_for_redisplay (e, 1, new_invis != old_invis);
|
|
3549 }
|
|
3550
|
0
|
3551 return Qnil;
|
|
3552 }
|
|
3553
|
|
3554
|
|
3555 /************************************************************************/
|
|
3556 /* basic extent mutators */
|
|
3557 /************************************************************************/
|
|
3558
|
|
3559 /* Note: If you track non-duplicable extents by undo, you'll get bogus
|
|
3560 undo records for transient extents via update-extent.
|
|
3561 For example, query-replace will do this.
|
|
3562 */
|
|
3563
|
|
3564 static void
|
|
3565 set_extent_endpoints_1 (EXTENT extent, Memind start, Memind end)
|
|
3566 {
|
|
3567 #ifdef ERROR_CHECK_EXTENTS
|
|
3568 Lisp_Object obj = extent_object (extent);
|
|
3569
|
|
3570 assert (start <= end);
|
|
3571 if (BUFFERP (obj))
|
|
3572 {
|
|
3573 assert (valid_memind_p (XBUFFER (obj), start));
|
|
3574 assert (valid_memind_p (XBUFFER (obj), end));
|
|
3575 }
|
|
3576 #endif
|
|
3577
|
|
3578 /* Optimization: if the extent is already where we want it to be,
|
|
3579 do nothing. */
|
|
3580 if (!extent_detached_p (extent) && extent_start (extent) == start &&
|
|
3581 extent_end (extent) == end)
|
|
3582 return;
|
|
3583
|
|
3584 if (extent_detached_p (extent))
|
|
3585 {
|
|
3586 if (extent_duplicable_p (extent))
|
|
3587 {
|
|
3588 Lisp_Object extent_obj;
|
|
3589 XSETEXTENT (extent_obj, extent);
|
|
3590 record_extent (extent_obj, 1);
|
|
3591 }
|
|
3592 }
|
|
3593 else
|
|
3594 extent_detach (extent);
|
|
3595
|
|
3596 set_extent_start (extent, start);
|
|
3597 set_extent_end (extent, end);
|
|
3598 extent_attach (extent);
|
|
3599 }
|
|
3600
|
|
3601 /* Set extent's endpoints to S and E, and put extent in buffer or string
|
|
3602 OBJECT. (If OBJECT is nil, do not change the extent's object.) */
|
|
3603
|
|
3604 void
|
|
3605 set_extent_endpoints (EXTENT extent, Bytind s, Bytind e, Lisp_Object object)
|
|
3606 {
|
|
3607 Memind start, end;
|
|
3608
|
|
3609 if (NILP (object))
|
|
3610 {
|
|
3611 object = extent_object (extent);
|
|
3612 assert (!NILP (object));
|
|
3613 }
|
|
3614 else if (!EQ (object, extent_object (extent)))
|
|
3615 {
|
|
3616 extent_detach (extent);
|
|
3617 extent_object (extent) = object;
|
|
3618 }
|
|
3619
|
|
3620 start = s < 0 ? extent_start (extent) :
|
|
3621 buffer_or_string_bytind_to_memind (object, s);
|
|
3622 end = e < 0 ? extent_end (extent) :
|
|
3623 buffer_or_string_bytind_to_memind (object, e);
|
|
3624 set_extent_endpoints_1 (extent, start, end);
|
|
3625 }
|
|
3626
|
|
3627 static void
|
|
3628 set_extent_openness (EXTENT extent, int start_open, int end_open)
|
|
3629 {
|
272
|
3630 if (start_open != -1)
|
|
3631 extent_start_open_p (extent) = start_open;
|
|
3632 if (end_open != -1)
|
|
3633 extent_end_open_p (extent) = end_open;
|
0
|
3634 /* changing the open/closedness of an extent does not affect
|
|
3635 redisplay. */
|
|
3636 }
|
|
3637
|
|
3638 static EXTENT
|
|
3639 make_extent_internal (Lisp_Object object, Bytind from, Bytind to)
|
|
3640 {
|
|
3641 EXTENT extent;
|
173
|
3642
|
0
|
3643 extent = make_extent_detached (object);
|
|
3644 set_extent_endpoints (extent, from, to, Qnil);
|
|
3645 return extent;
|
|
3646 }
|
|
3647
|
|
3648 static EXTENT
|
|
3649 copy_extent (EXTENT original, Bytind from, Bytind to, Lisp_Object object)
|
|
3650 {
|
|
3651 EXTENT e;
|
|
3652
|
|
3653 e = make_extent_detached (object);
|
|
3654 if (from >= 0)
|
|
3655 set_extent_endpoints (e, from, to, Qnil);
|
|
3656
|
|
3657 e->plist = Fcopy_sequence (original->plist);
|
|
3658 memcpy (&e->flags, &original->flags, sizeof (e->flags));
|
|
3659 if (e->flags.has_aux)
|
|
3660 {
|
|
3661 /* also need to copy the aux struct. It won't work for
|
|
3662 this extent to share the same aux struct as the original
|
|
3663 one. */
|
|
3664 struct extent_auxiliary *data =
|
185
|
3665 alloc_lcrecord_type (struct extent_auxiliary,
|
|
3666 lrecord_extent_auxiliary);
|
0
|
3667
|
|
3668 copy_lcrecord (data, XEXTENT_AUXILIARY (XCAR (original->plist)));
|
|
3669 XSETEXTENT_AUXILIARY (XCAR (e->plist), data);
|
|
3670 }
|
|
3671
|
|
3672 {
|
|
3673 /* we may have just added another child to the parent extent. */
|
|
3674 Lisp_Object parent = extent_parent (e);
|
|
3675 if (!NILP (parent))
|
|
3676 {
|
|
3677 Lisp_Object extent;
|
|
3678 XSETEXTENT (extent, e);
|
|
3679 add_extent_to_children_list (XEXTENT (parent), extent);
|
|
3680 }
|
|
3681 }
|
173
|
3682
|
0
|
3683 return e;
|
|
3684 }
|
|
3685
|
173
|
3686 static void
|
|
3687 destroy_extent (EXTENT extent)
|
0
|
3688 {
|
|
3689 Lisp_Object rest, nextrest, children;
|
272
|
3690 Lisp_Object extent_obj;
|
0
|
3691
|
|
3692 if (!extent_detached_p (extent))
|
|
3693 extent_detach (extent);
|
|
3694 /* disassociate the extent from its children and parent */
|
|
3695 children = extent_children (extent);
|
|
3696 if (!NILP (children))
|
|
3697 {
|
|
3698 LIST_LOOP_DELETING (rest, nextrest, XWEAK_LIST_LIST (children))
|
|
3699 Fset_extent_parent (XCAR (rest), Qnil);
|
|
3700 }
|
|
3701 XSETEXTENT (extent_obj, extent);
|
|
3702 Fset_extent_parent (extent_obj, Qnil);
|
|
3703 /* mark the extent as destroyed */
|
|
3704 extent_object (extent) = Qt;
|
|
3705 }
|
|
3706
|
20
|
3707 DEFUN ("make-extent", Fmake_extent, 2, 3, 0, /*
|
0
|
3708 Make an extent for the range [FROM, TO) in BUFFER-OR-STRING.
|
|
3709 BUFFER-OR-STRING defaults to the current buffer. Insertions at point
|
|
3710 TO will be outside of the extent; insertions at FROM will be inside the
|
|
3711 extent, causing the extent to grow. (This is the same way that markers
|
|
3712 behave.) You can change the behavior of insertions at the endpoints
|
|
3713 using `set-extent-property'. The extent is initially detached if both
|
|
3714 FROM and TO are nil, and in this case BUFFER-OR-STRING defaults to nil,
|
|
3715 meaning the extent is in no buffer and no string.
|
20
|
3716 */
|
|
3717 (from, to, buffer_or_string))
|
0
|
3718 {
|
272
|
3719 Lisp_Object extent_obj;
|
0
|
3720 Lisp_Object obj;
|
|
3721
|
|
3722 obj = decode_buffer_or_string (buffer_or_string);
|
|
3723 if (NILP (from) && NILP (to))
|
|
3724 {
|
|
3725 if (NILP (buffer_or_string))
|
|
3726 obj = Qnil;
|
|
3727 XSETEXTENT (extent_obj, make_extent_detached (obj));
|
|
3728 }
|
|
3729 else
|
|
3730 {
|
|
3731 Bytind start, end;
|
|
3732
|
|
3733 get_buffer_or_string_range_byte (obj, from, to, &start, &end,
|
|
3734 GB_ALLOW_PAST_ACCESSIBLE);
|
|
3735 XSETEXTENT (extent_obj, make_extent_internal (obj, start, end));
|
|
3736 }
|
|
3737 return extent_obj;
|
|
3738 }
|
|
3739
|
20
|
3740 DEFUN ("copy-extent", Fcopy_extent, 1, 2, 0, /*
|
0
|
3741 Make a copy of EXTENT. It is initially detached.
|
|
3742 Optional argument BUFFER-OR-STRING defaults to EXTENT's buffer or string.
|
20
|
3743 */
|
|
3744 (extent, buffer_or_string))
|
0
|
3745 {
|
|
3746 EXTENT ext = decode_extent (extent, 0);
|
|
3747
|
|
3748 if (NILP (buffer_or_string))
|
|
3749 buffer_or_string = extent_object (ext);
|
|
3750 else
|
|
3751 buffer_or_string = decode_buffer_or_string (buffer_or_string);
|
|
3752
|
|
3753 XSETEXTENT (extent, copy_extent (ext, -1, -1, buffer_or_string));
|
|
3754 return extent;
|
|
3755 }
|
|
3756
|
20
|
3757 DEFUN ("delete-extent", Fdelete_extent, 1, 1, 0, /*
|
0
|
3758 Remove EXTENT from its buffer and destroy it.
|
|
3759 This does not modify the buffer's text, only its display properties.
|
|
3760 The extent cannot be used thereafter.
|
20
|
3761 */
|
|
3762 (extent))
|
0
|
3763 {
|
|
3764 EXTENT ext;
|
|
3765
|
|
3766 /* We do not call decode_extent() here because already-destroyed
|
|
3767 extents are OK. */
|
|
3768 CHECK_EXTENT (extent);
|
|
3769 ext = XEXTENT (extent);
|
|
3770
|
|
3771 if (!EXTENT_LIVE_P (ext))
|
|
3772 return Qnil;
|
|
3773 destroy_extent (ext);
|
|
3774 return Qnil;
|
|
3775 }
|
|
3776
|
20
|
3777 DEFUN ("detach-extent", Fdetach_extent, 1, 1, 0, /*
|
0
|
3778 Remove EXTENT from its buffer in such a way that it can be re-inserted.
|
|
3779 An extent is also detached when all of its characters are all killed by a
|
|
3780 deletion, unless its `detachable' property has been unset.
|
|
3781
|
|
3782 Extents which have the `duplicable' attribute are tracked by the undo
|
|
3783 mechanism. Detachment via `detach-extent' and string deletion is recorded,
|
|
3784 as is attachment via `insert-extent' and string insertion. Extent motion,
|
|
3785 face changes, and attachment via `make-extent' and `set-extent-endpoints'
|
|
3786 are not recorded. This means that extent changes which are to be undo-able
|
|
3787 must be performed by character editing, or by insertion and detachment of
|
|
3788 duplicable extents.
|
20
|
3789 */
|
|
3790 (extent))
|
0
|
3791 {
|
|
3792 EXTENT ext = decode_extent (extent, 0);
|
|
3793
|
|
3794 if (extent_detached_p (ext))
|
|
3795 return extent;
|
|
3796 if (extent_duplicable_p (ext))
|
|
3797 record_extent (extent, 0);
|
|
3798 extent_detach (ext);
|
|
3799
|
|
3800 return extent;
|
|
3801 }
|
|
3802
|
20
|
3803 DEFUN ("set-extent-endpoints", Fset_extent_endpoints, 3, 4, 0, /*
|
0
|
3804 Set the endpoints of EXTENT to START, END.
|
|
3805 If START and END are null, call detach-extent on EXTENT.
|
|
3806 BUFFER-OR-STRING specifies the new buffer or string that the extent should
|
|
3807 be in, and defaults to EXTENT's buffer or string. (If nil, and EXTENT
|
|
3808 is in no buffer and no string, it defaults to the current buffer.)
|
|
3809 See documentation on `detach-extent' for a discussion of undo recording.
|
20
|
3810 */
|
|
3811 (extent, start, end, buffer_or_string))
|
0
|
3812 {
|
|
3813 EXTENT ext;
|
|
3814 Bytind s, e;
|
|
3815
|
|
3816 ext = decode_extent (extent, 0);
|
|
3817
|
|
3818 if (NILP (buffer_or_string))
|
|
3819 {
|
|
3820 buffer_or_string = extent_object (ext);
|
|
3821 if (NILP (buffer_or_string))
|
|
3822 buffer_or_string = Fcurrent_buffer ();
|
|
3823 }
|
|
3824 else
|
|
3825 buffer_or_string = decode_buffer_or_string (buffer_or_string);
|
|
3826
|
|
3827 if (NILP (start) && NILP (end))
|
|
3828 return Fdetach_extent (extent);
|
173
|
3829
|
0
|
3830 get_buffer_or_string_range_byte (buffer_or_string, start, end, &s, &e,
|
|
3831 GB_ALLOW_PAST_ACCESSIBLE);
|
|
3832
|
|
3833 set_extent_endpoints (ext, s, e, buffer_or_string);
|
|
3834 return extent;
|
|
3835 }
|
|
3836
|
|
3837
|
|
3838 /************************************************************************/
|
|
3839 /* mapping over extents */
|
|
3840 /************************************************************************/
|
|
3841
|
|
3842 static unsigned int
|
|
3843 decode_map_extents_flags (Lisp_Object flags)
|
|
3844 {
|
|
3845 unsigned int retval = 0;
|
|
3846 unsigned int all_extents_specified = 0;
|
|
3847 unsigned int in_region_specified = 0;
|
|
3848
|
|
3849 if (EQ (flags, Qt)) /* obsoleteness compatibility */
|
|
3850 return ME_END_CLOSED;
|
|
3851 if (NILP (flags))
|
|
3852 return 0;
|
|
3853 if (SYMBOLP (flags))
|
|
3854 flags = Fcons (flags, Qnil);
|
|
3855 while (!NILP (flags))
|
|
3856 {
|
|
3857 Lisp_Object sym;
|
|
3858 CHECK_CONS (flags);
|
|
3859 sym = XCAR (flags);
|
|
3860 CHECK_SYMBOL (sym);
|
|
3861 if (EQ (sym, Qall_extents_closed) || EQ (sym, Qall_extents_open) ||
|
|
3862 EQ (sym, Qall_extents_closed_open) ||
|
|
3863 EQ (sym, Qall_extents_open_closed))
|
|
3864 {
|
|
3865 if (all_extents_specified)
|
|
3866 error ("Only one `all-extents-*' flag may be specified");
|
|
3867 all_extents_specified = 1;
|
|
3868 }
|
|
3869 if (EQ (sym, Qstart_in_region) || EQ (sym, Qend_in_region) ||
|
|
3870 EQ (sym, Qstart_and_end_in_region) ||
|
|
3871 EQ (sym, Qstart_or_end_in_region))
|
|
3872 {
|
|
3873 if (in_region_specified)
|
|
3874 error ("Only one `*-in-region' flag may be specified");
|
|
3875 in_region_specified = 1;
|
|
3876 }
|
|
3877
|
|
3878 /* I do so love that conditional operator ... */
|
|
3879 retval |=
|
272
|
3880 EQ (sym, Qend_closed) ? ME_END_CLOSED :
|
|
3881 EQ (sym, Qstart_open) ? ME_START_OPEN :
|
|
3882 EQ (sym, Qall_extents_closed) ? ME_ALL_EXTENTS_CLOSED :
|
|
3883 EQ (sym, Qall_extents_open) ? ME_ALL_EXTENTS_OPEN :
|
0
|
3884 EQ (sym, Qall_extents_closed_open) ? ME_ALL_EXTENTS_CLOSED_OPEN :
|
|
3885 EQ (sym, Qall_extents_open_closed) ? ME_ALL_EXTENTS_OPEN_CLOSED :
|
272
|
3886 EQ (sym, Qstart_in_region) ? ME_START_IN_REGION :
|
|
3887 EQ (sym, Qend_in_region) ? ME_END_IN_REGION :
|
0
|
3888 EQ (sym, Qstart_and_end_in_region) ? ME_START_AND_END_IN_REGION :
|
272
|
3889 EQ (sym, Qstart_or_end_in_region) ? ME_START_OR_END_IN_REGION :
|
|
3890 EQ (sym, Qnegate_in_region) ? ME_NEGATE_IN_REGION :
|
0
|
3891 (signal_simple_error ("Invalid `map-extents' flag", sym), 0);
|
|
3892
|
|
3893 flags = XCDR (flags);
|
|
3894 }
|
|
3895 return retval;
|
|
3896 }
|
|
3897
|
20
|
3898 DEFUN ("extent-in-region-p", Fextent_in_region_p, 1, 4, 0, /*
|
0
|
3899 Return whether EXTENT overlaps a specified region.
|
|
3900 This is equivalent to whether `map-extents' would visit EXTENT when called
|
|
3901 with these args.
|
20
|
3902 */
|
|
3903 (extent, from, to, flags))
|
0
|
3904 {
|
|
3905 Bytind start, end;
|
272
|
3906 EXTENT ext = decode_extent (extent, DE_MUST_BE_ATTACHED);
|
|
3907 Lisp_Object obj = extent_object (ext);
|
|
3908
|
0
|
3909 get_buffer_or_string_range_byte (obj, from, to, &start, &end, GB_ALLOW_NIL |
|
|
3910 GB_ALLOW_PAST_ACCESSIBLE);
|
|
3911
|
272
|
3912 return extent_in_region_p (ext, start, end, decode_map_extents_flags (flags)) ?
|
|
3913 Qt : Qnil;
|
0
|
3914 }
|
|
3915
|
|
3916 struct slow_map_extents_arg
|
|
3917 {
|
|
3918 Lisp_Object map_arg;
|
|
3919 Lisp_Object map_routine;
|
|
3920 Lisp_Object result;
|
|
3921 Lisp_Object property;
|
|
3922 Lisp_Object value;
|
|
3923 };
|
|
3924
|
|
3925 static int
|
|
3926 slow_map_extents_function (EXTENT extent, void *arg)
|
|
3927 {
|
|
3928 /* This function can GC */
|
|
3929 struct slow_map_extents_arg *closure = (struct slow_map_extents_arg *) arg;
|
|
3930 Lisp_Object extent_obj;
|
|
3931
|
|
3932 XSETEXTENT (extent_obj, extent);
|
|
3933
|
|
3934 /* make sure this extent qualifies according to the PROPERTY
|
|
3935 and VALUE args */
|
|
3936
|
|
3937 if (!NILP (closure->property))
|
|
3938 {
|
|
3939 Lisp_Object value = Fextent_property (extent_obj, closure->property,
|
|
3940 Qnil);
|
|
3941 if ((NILP (closure->value) && NILP (value)) ||
|
|
3942 (!NILP (closure->value) && !EQ (value, closure->value)))
|
|
3943 return 0;
|
|
3944 }
|
|
3945
|
|
3946 closure->result = call2 (closure->map_routine, extent_obj,
|
|
3947 closure->map_arg);
|
272
|
3948 return !NILP (closure->result);
|
0
|
3949 }
|
|
3950
|
20
|
3951 DEFUN ("map-extents", Fmap_extents, 1, 8, 0, /*
|
0
|
3952 Map FUNCTION over the extents which overlap a region in OBJECT.
|
|
3953 OBJECT is normally a buffer or string but could be an extent (see below).
|
|
3954 The region is normally bounded by [FROM, TO) (i.e. the beginning of the
|
|
3955 region is closed and the end of the region is open), but this can be
|
|
3956 changed with the FLAGS argument (see below for a complete discussion).
|
|
3957
|
|
3958 FUNCTION is called with the arguments (extent, MAPARG). The arguments
|
|
3959 OBJECT, FROM, TO, MAPARG, and FLAGS are all optional and default to
|
|
3960 the current buffer, the beginning of OBJECT, the end of OBJECT, nil,
|
|
3961 and nil, respectively. `map-extents' returns the first non-nil result
|
|
3962 produced by FUNCTION, and no more calls to FUNCTION are made after it
|
|
3963 returns non-nil.
|
|
3964
|
|
3965 If OBJECT is an extent, FROM and TO default to the extent's endpoints,
|
|
3966 and the mapping omits that extent and its predecessors. This feature
|
|
3967 supports restarting a loop based on `map-extents'. Note: OBJECT must
|
|
3968 be attached to a buffer or string, and the mapping is done over that
|
|
3969 buffer or string.
|
|
3970
|
|
3971 An extent overlaps the region if there is any point in the extent that is
|
|
3972 also in the region. (For the purpose of overlap, zero-length extents and
|
|
3973 regions are treated as closed on both ends regardless of their endpoints'
|
|
3974 specified open/closedness.) Note that the endpoints of an extent or region
|
|
3975 are considered to be in that extent or region if and only if the
|
|
3976 corresponding end is closed. For example, the extent [5,7] overlaps the
|
|
3977 region [2,5] because 5 is in both the extent and the region. However, (5,7]
|
|
3978 does not overlap [2,5] because 5 is not in the extent, and neither [5,7] nor
|
|
3979 \(5,7] overlaps the region [2,5) because 5 is not in the region.
|
|
3980
|
|
3981 The optional FLAGS can be a symbol or a list of one or more symbols,
|
|
3982 modifying the behavior of `map-extents'. Allowed symbols are:
|
|
3983
|
|
3984 end-closed The region's end is closed.
|
|
3985
|
|
3986 start-open The region's start is open.
|
|
3987
|
|
3988 all-extents-closed Treat all extents as closed on both ends for the
|
|
3989 purpose of determining whether they overlap the
|
|
3990 region, irrespective of their actual open- or
|
|
3991 closedness.
|
|
3992 all-extents-open Treat all extents as open on both ends.
|
|
3993 all-extents-closed-open Treat all extents as start-closed, end-open.
|
|
3994 all-extents-open-closed Treat all extents as start-open, end-closed.
|
|
3995
|
|
3996 start-in-region In addition to the above conditions for extent
|
|
3997 overlap, the extent's start position must lie within
|
|
3998 the specified region. Note that, for this
|
|
3999 condition, open start positions are treated as if
|
|
4000 0.5 was added to the endpoint's value, and open
|
|
4001 end positions are treated as if 0.5 was subtracted
|
|
4002 from the endpoint's value.
|
|
4003 end-in-region The extent's end position must lie within the
|
|
4004 region.
|
|
4005 start-and-end-in-region Both the extent's start and end positions must lie
|
|
4006 within the region.
|
|
4007 start-or-end-in-region Either the extent's start or end position must lie
|
|
4008 within the region.
|
|
4009
|
|
4010 negate-in-region The condition specified by a `*-in-region' flag
|
|
4011 must NOT hold for the extent to be considered.
|
|
4012
|
|
4013
|
|
4014 At most one of `all-extents-closed', `all-extents-open',
|
|
4015 `all-extents-closed-open', and `all-extents-open-closed' may be specified.
|
|
4016
|
|
4017 At most one of `start-in-region', `end-in-region',
|
|
4018 `start-and-end-in-region', and `start-or-end-in-region' may be specified.
|
|
4019
|
|
4020 If optional arg PROPERTY is non-nil, only extents with that property set
|
|
4021 on them will be visited. If optional arg VALUE is non-nil, only extents
|
|
4022 whose value for that property is `eq' to VALUE will be visited.
|
20
|
4023 */
|
70
|
4024 (function, object, from, to, maparg, flags, property, value))
|
0
|
4025 {
|
|
4026 /* This function can GC */
|
|
4027 struct slow_map_extents_arg closure;
|
|
4028 unsigned int me_flags;
|
|
4029 Bytind start, end;
|
|
4030 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
4031 EXTENT after = 0;
|
|
4032
|
|
4033 if (EXTENTP (object))
|
|
4034 {
|
|
4035 after = decode_extent (object, DE_MUST_BE_ATTACHED);
|
|
4036 if (NILP (from))
|
|
4037 from = Fextent_start_position (object);
|
|
4038 if (NILP (to))
|
|
4039 to = Fextent_end_position (object);
|
|
4040 object = extent_object (after);
|
|
4041 }
|
|
4042 else
|
|
4043 object = decode_buffer_or_string (object);
|
|
4044
|
|
4045 get_buffer_or_string_range_byte (object, from, to, &start, &end,
|
|
4046 GB_ALLOW_NIL | GB_ALLOW_PAST_ACCESSIBLE);
|
|
4047
|
|
4048 me_flags = decode_map_extents_flags (flags);
|
|
4049
|
|
4050 if (!NILP (property))
|
|
4051 {
|
|
4052 if (!NILP (value))
|
|
4053 value = canonicalize_extent_property (property, value);
|
|
4054 }
|
|
4055
|
|
4056 GCPRO5 (function, maparg, object, property, value);
|
|
4057
|
|
4058 closure.map_arg = maparg;
|
|
4059 closure.map_routine = function;
|
|
4060 closure.result = Qnil;
|
|
4061 closure.property = property;
|
|
4062 closure.value = value;
|
|
4063
|
|
4064 map_extents_bytind (start, end, slow_map_extents_function,
|
|
4065 (void *) &closure, object, after,
|
|
4066 /* You never know what the user might do ... */
|
|
4067 me_flags | ME_MIGHT_CALL_ELISP);
|
|
4068
|
|
4069 UNGCPRO;
|
|
4070 return closure.result;
|
|
4071 }
|
|
4072
|
|
4073
|
|
4074 /************************************************************************/
|
|
4075 /* mapping over extents -- other functions */
|
|
4076 /************************************************************************/
|
|
4077
|
|
4078 /* ------------------------------- */
|
|
4079 /* map-extent-children */
|
|
4080 /* ------------------------------- */
|
|
4081
|
|
4082 struct slow_map_extent_children_arg
|
|
4083 {
|
|
4084 Lisp_Object map_arg;
|
|
4085 Lisp_Object map_routine;
|
|
4086 Lisp_Object result;
|
|
4087 Lisp_Object property;
|
|
4088 Lisp_Object value;
|
|
4089 Bytind start_min;
|
|
4090 Bytind prev_start;
|
|
4091 Bytind prev_end;
|
|
4092 };
|
|
4093
|
|
4094 static int
|
|
4095 slow_map_extent_children_function (EXTENT extent, void *arg)
|
|
4096 {
|
|
4097 /* This function can GC */
|
|
4098 struct slow_map_extent_children_arg *closure =
|
|
4099 (struct slow_map_extent_children_arg *) arg;
|
|
4100 Lisp_Object extent_obj;
|
|
4101 Bytind start = extent_endpoint_bytind (extent, 0);
|
|
4102 Bytind end = extent_endpoint_bytind (extent, 1);
|
|
4103 /* Make sure the extent starts inside the region of interest,
|
|
4104 rather than just overlaps it.
|
|
4105 */
|
|
4106 if (start < closure->start_min)
|
|
4107 return 0;
|
|
4108 /* Make sure the extent is not a child of a previous visited one.
|
|
4109 We know already, because of extent ordering,
|
|
4110 that start >= prev_start, and that if
|
|
4111 start == prev_start, then end <= prev_end.
|
|
4112 */
|
|
4113 if (start == closure->prev_start)
|
|
4114 {
|
|
4115 if (end < closure->prev_end)
|
|
4116 return 0;
|
|
4117 }
|
|
4118 else /* start > prev_start */
|
|
4119 {
|
|
4120 if (start < closure->prev_end)
|
|
4121 return 0;
|
|
4122 /* corner case: prev_end can be -1 if there is no prev */
|
|
4123 }
|
|
4124 XSETEXTENT (extent_obj, extent);
|
|
4125
|
|
4126 /* make sure this extent qualifies according to the PROPERTY
|
|
4127 and VALUE args */
|
|
4128
|
|
4129 if (!NILP (closure->property))
|
|
4130 {
|
|
4131 Lisp_Object value = Fextent_property (extent_obj, closure->property,
|
|
4132 Qnil);
|
|
4133 if ((NILP (closure->value) && NILP (value)) ||
|
|
4134 (!NILP (closure->value) && !EQ (value, closure->value)))
|
|
4135 return 0;
|
|
4136 }
|
|
4137
|
|
4138 closure->result = call2 (closure->map_routine, extent_obj,
|
|
4139 closure->map_arg);
|
|
4140
|
|
4141 /* Since the callback may change the buffer, compute all stored
|
|
4142 buffer positions here.
|
|
4143 */
|
|
4144 closure->start_min = -1; /* no need for this any more */
|
|
4145 closure->prev_start = extent_endpoint_bytind (extent, 0);
|
|
4146 closure->prev_end = extent_endpoint_bytind (extent, 1);
|
|
4147
|
272
|
4148 return !NILP (closure->result);
|
0
|
4149 }
|
|
4150
|
20
|
4151 DEFUN ("map-extent-children", Fmap_extent_children, 1, 8, 0, /*
|
0
|
4152 Map FUNCTION over the extents in the region from FROM to TO.
|
|
4153 FUNCTION is called with arguments (extent, MAPARG). See `map-extents'
|
|
4154 for a full discussion of the arguments FROM, TO, and FLAGS.
|
|
4155
|
|
4156 The arguments are the same as for `map-extents', but this function differs
|
|
4157 in that it only visits extents which start in the given region, and also
|
|
4158 in that, after visiting an extent E, it skips all other extents which start
|
|
4159 inside E but end before E's end.
|
|
4160
|
|
4161 Thus, this function may be used to walk a tree of extents in a buffer:
|
|
4162 (defun walk-extents (buffer &optional ignore)
|
|
4163 (map-extent-children 'walk-extents buffer))
|
20
|
4164 */
|
|
4165 (function, object, from, to, maparg, flags, property, value))
|
0
|
4166 {
|
|
4167 /* This function can GC */
|
|
4168 struct slow_map_extent_children_arg closure;
|
|
4169 unsigned int me_flags;
|
|
4170 Bytind start, end;
|
|
4171 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
4172 EXTENT after = 0;
|
|
4173
|
|
4174 if (EXTENTP (object))
|
|
4175 {
|
|
4176 after = decode_extent (object, DE_MUST_BE_ATTACHED);
|
|
4177 if (NILP (from))
|
|
4178 from = Fextent_start_position (object);
|
|
4179 if (NILP (to))
|
|
4180 to = Fextent_end_position (object);
|
|
4181 object = extent_object (after);
|
|
4182 }
|
|
4183 else
|
|
4184 object = decode_buffer_or_string (object);
|
|
4185
|
|
4186 get_buffer_or_string_range_byte (object, from, to, &start, &end,
|
|
4187 GB_ALLOW_NIL | GB_ALLOW_PAST_ACCESSIBLE);
|
|
4188
|
|
4189 me_flags = decode_map_extents_flags (flags);
|
|
4190
|
|
4191 if (!NILP (property))
|
|
4192 {
|
|
4193 if (!NILP (value))
|
|
4194 value = canonicalize_extent_property (property, value);
|
|
4195 }
|
|
4196
|
|
4197 GCPRO5 (function, maparg, object, property, value);
|
|
4198
|
|
4199 closure.map_arg = maparg;
|
|
4200 closure.map_routine = function;
|
|
4201 closure.result = Qnil;
|
|
4202 closure.property = property;
|
|
4203 closure.value = value;
|
|
4204 closure.start_min = start;
|
|
4205 closure.prev_start = -1;
|
|
4206 closure.prev_end = -1;
|
|
4207 map_extents_bytind (start, end, slow_map_extent_children_function,
|
|
4208 (void *) &closure, object, after,
|
|
4209 /* You never know what the user might do ... */
|
|
4210 me_flags | ME_MIGHT_CALL_ELISP);
|
|
4211
|
|
4212 UNGCPRO;
|
|
4213 return closure.result;
|
|
4214 }
|
|
4215
|
|
4216 /* ------------------------------- */
|
|
4217 /* extent-at */
|
|
4218 /* ------------------------------- */
|
|
4219
|
173
|
4220 /* find "smallest" matching extent containing pos -- (flag == 0) means
|
0
|
4221 all extents match, else (EXTENT_FLAGS (extent) & flag) must be true;
|
|
4222 for more than one matching extent with precisely the same endpoints,
|
|
4223 we choose the last extent in the extents_list.
|
|
4224 The search stops just before "before", if that is non-null.
|
|
4225 */
|
|
4226
|
|
4227 struct extent_at_arg
|
|
4228 {
|
|
4229 EXTENT best_match;
|
|
4230 Memind best_start;
|
|
4231 Memind best_end;
|
|
4232 Lisp_Object prop;
|
|
4233 EXTENT before;
|
|
4234 };
|
|
4235
|
|
4236 enum extent_at_flag
|
|
4237 {
|
|
4238 EXTENT_AT_AFTER,
|
|
4239 EXTENT_AT_BEFORE,
|
|
4240 EXTENT_AT_AT
|
|
4241 };
|
|
4242
|
|
4243 static enum extent_at_flag
|
|
4244 decode_extent_at_flag (Lisp_Object at_flag)
|
|
4245 {
|
|
4246 if (NILP (at_flag))
|
272
|
4247 return EXTENT_AT_AFTER;
|
|
4248
|
|
4249 CHECK_SYMBOL (at_flag);
|
|
4250 if (EQ (at_flag, Qafter)) return EXTENT_AT_AFTER;
|
|
4251 if (EQ (at_flag, Qbefore)) return EXTENT_AT_BEFORE;
|
|
4252 if (EQ (at_flag, Qat)) return EXTENT_AT_AT;
|
|
4253
|
|
4254 signal_simple_error ("Invalid AT-FLAG in `extent-at'", at_flag);
|
|
4255 return EXTENT_AT_AFTER; /* unreached */
|
0
|
4256 }
|
|
4257
|
|
4258 static int
|
|
4259 extent_at_mapper (EXTENT e, void *arg)
|
|
4260 {
|
|
4261 struct extent_at_arg *closure = (struct extent_at_arg *) arg;
|
|
4262
|
|
4263 if (e == closure->before)
|
|
4264 return 1;
|
|
4265
|
|
4266 /* If closure->prop is non-nil, then the extent is only acceptable
|
|
4267 if it has a non-nil value for that property. */
|
|
4268 if (!NILP (closure->prop))
|
|
4269 {
|
|
4270 Lisp_Object extent;
|
|
4271 XSETEXTENT (extent, e);
|
|
4272 if (NILP (Fextent_property (extent, closure->prop, Qnil)))
|
|
4273 return 0;
|
|
4274 }
|
|
4275
|
|
4276 {
|
|
4277 EXTENT current = closure->best_match;
|
|
4278
|
|
4279 if (!current)
|
|
4280 goto accept;
|
|
4281 /* redundant but quick test */
|
|
4282 else if (extent_start (current) > extent_start (e))
|
|
4283 return 0;
|
|
4284
|
|
4285 /* we return the "last" best fit, instead of the first --
|
|
4286 this is because then the glyph closest to two equivalent
|
|
4287 extents corresponds to the "extent-at" the text just past
|
|
4288 that same glyph */
|
|
4289 else if (!EXTENT_LESS_VALS (e, closure->best_start,
|
|
4290 closure->best_end))
|
|
4291 goto accept;
|
|
4292 else
|
|
4293 return 0;
|
|
4294 accept:
|
|
4295 closure->best_match = e;
|
|
4296 closure->best_start = extent_start (e);
|
|
4297 closure->best_end = extent_end (e);
|
|
4298 }
|
|
4299
|
|
4300 return 0;
|
|
4301 }
|
|
4302
|
|
4303 static Lisp_Object
|
|
4304 extent_at_bytind (Bytind position, Lisp_Object object, Lisp_Object property,
|
|
4305 EXTENT before, enum extent_at_flag at_flag)
|
|
4306 {
|
|
4307 struct extent_at_arg closure;
|
272
|
4308 Lisp_Object extent_obj;
|
0
|
4309
|
|
4310 /* it might be argued that invalid positions should cause
|
|
4311 errors, but the principle of least surprise dictates that
|
|
4312 nil should be returned (extent-at is often used in
|
|
4313 response to a mouse event, and in many cases previous events
|
|
4314 have changed the buffer contents).
|
|
4315
|
|
4316 Also, the openness stuff in the text-property code currently
|
|
4317 does not check its limits and might go off the end. */
|
|
4318 if ((at_flag == EXTENT_AT_BEFORE
|
|
4319 ? position <= buffer_or_string_absolute_begin_byte (object)
|
|
4320 : position < buffer_or_string_absolute_begin_byte (object))
|
|
4321 || (at_flag == EXTENT_AT_AFTER
|
|
4322 ? position >= buffer_or_string_absolute_end_byte (object)
|
|
4323 : position > buffer_or_string_absolute_end_byte (object)))
|
|
4324 return Qnil;
|
|
4325
|
|
4326 closure.best_match = 0;
|
|
4327 closure.prop = property;
|
|
4328 closure.before = before;
|
173
|
4329
|
0
|
4330 map_extents_bytind (at_flag == EXTENT_AT_BEFORE ? position - 1 : position,
|
|
4331 at_flag == EXTENT_AT_AFTER ? position + 1 : position,
|
|
4332 extent_at_mapper, (void *) &closure, object, 0,
|
|
4333 ME_START_OPEN | ME_ALL_EXTENTS_CLOSED);
|
|
4334
|
|
4335 if (!closure.best_match)
|
|
4336 return Qnil;
|
|
4337
|
|
4338 XSETEXTENT (extent_obj, closure.best_match);
|
|
4339 return extent_obj;
|
|
4340 }
|
|
4341
|
20
|
4342 DEFUN ("extent-at", Fextent_at, 1, 5, 0, /*
|
185
|
4343 Find "smallest" extent at POS in OBJECT having PROPERTY set.
|
|
4344 Normally, an extent is "at" POS if it overlaps the region (POS, POS+1);
|
0
|
4345 i.e. if it covers the character after POS. (However, see the definition
|
185
|
4346 of AT-FLAG.) "Smallest" means the extent that comes last in the display
|
0
|
4347 order; this normally means the extent whose start position is closest to
|
|
4348 POS. See `next-extent' for more information.
|
|
4349 OBJECT specifies a buffer or string and defaults to the current buffer.
|
|
4350 PROPERTY defaults to nil, meaning that any extent will do.
|
|
4351 Properties are attached to extents with `set-extent-property', which see.
|
|
4352 Returns nil if POS is invalid or there is no matching extent at POS.
|
|
4353 If the fourth argument BEFORE is not nil, it must be an extent; any returned
|
|
4354 extent will precede that extent. This feature allows `extent-at' to be
|
|
4355 used by a loop over extents.
|
|
4356 AT-FLAG controls how end cases are handled, and should be one of:
|
|
4357
|
|
4358 nil or `after' An extent is at POS if it covers the character
|
|
4359 after POS. This is consistent with the way
|
|
4360 that text properties work.
|
|
4361 `before' An extent is at POS if it covers the character
|
|
4362 before POS.
|
|
4363 `at' An extent is at POS if it overlaps or abuts POS.
|
|
4364 This includes all zero-length extents at POS.
|
|
4365
|
|
4366 Note that in all cases, the start-openness and end-openness of the extents
|
|
4367 considered is ignored. If you want to pay attention to those properties,
|
|
4368 you should use `map-extents', which gives you more control.
|
20
|
4369 */
|
70
|
4370 (pos, object, property, before, at_flag))
|
0
|
4371 {
|
|
4372 Bytind position;
|
|
4373 EXTENT before_extent;
|
|
4374 enum extent_at_flag fl;
|
|
4375
|
|
4376 object = decode_buffer_or_string (object);
|
|
4377 position = get_buffer_or_string_pos_byte (object, pos, GB_NO_ERROR_IF_BAD);
|
|
4378 if (NILP (before))
|
|
4379 before_extent = 0;
|
|
4380 else
|
|
4381 before_extent = decode_extent (before, DE_MUST_BE_ATTACHED);
|
|
4382 if (before_extent && !EQ (object, extent_object (before_extent)))
|
|
4383 signal_simple_error ("extent not in specified buffer or string", object);
|
|
4384 fl = decode_extent_at_flag (at_flag);
|
|
4385
|
|
4386 return extent_at_bytind (position, object, property, before_extent, fl);
|
|
4387 }
|
|
4388
|
|
4389 /* ------------------------------- */
|
|
4390 /* verify_extent_modification() */
|
|
4391 /* ------------------------------- */
|
|
4392
|
|
4393 /* verify_extent_modification() is called when a buffer or string is
|
|
4394 modified to check whether the modification is occuring inside a
|
|
4395 read-only extent.
|
|
4396 */
|
|
4397
|
|
4398 struct verify_extents_arg
|
|
4399 {
|
|
4400 Lisp_Object object;
|
|
4401 Memind start;
|
|
4402 Memind end;
|
|
4403 Lisp_Object iro; /* value of inhibit-read-only */
|
|
4404 };
|
|
4405
|
|
4406 static int
|
|
4407 verify_extent_mapper (EXTENT extent, void *arg)
|
|
4408 {
|
|
4409 struct verify_extents_arg *closure = (struct verify_extents_arg *) arg;
|
|
4410 Lisp_Object prop = extent_read_only (extent);
|
|
4411
|
|
4412 if (NILP (prop))
|
|
4413 return 0;
|
|
4414
|
|
4415 if (CONSP (closure->iro) && !NILP (Fmemq (prop, closure->iro)))
|
|
4416 return 0;
|
|
4417
|
100
|
4418 #if 0 /* Nobody seems to care for this any more -sb */
|
0
|
4419 /* Allow deletion if the extent is completely contained in
|
|
4420 the region being deleted.
|
|
4421 This is important for supporting tokens which are internally
|
|
4422 write-protected, but which can be killed and yanked as a whole.
|
|
4423 Ignore open/closed distinctions at this point.
|
|
4424 -- Rose
|
|
4425 */
|
|
4426 if (closure->start != closure->end &&
|
|
4427 extent_start (extent) >= closure->start &&
|
|
4428 extent_end (extent) <= closure->end)
|
|
4429 return 0;
|
100
|
4430 #endif
|
0
|
4431
|
|
4432 while (1)
|
|
4433 Fsignal (Qbuffer_read_only, (list1 (closure->object)));
|
|
4434
|
|
4435 RETURN_NOT_REACHED(0)
|
|
4436 }
|
|
4437
|
|
4438 /* Value of Vinhibit_read_only is precomputed and passed in for
|
|
4439 efficiency */
|
|
4440
|
|
4441 void
|
|
4442 verify_extent_modification (Lisp_Object object, Bytind from, Bytind to,
|
|
4443 Lisp_Object inhibit_read_only_value)
|
|
4444 {
|
|
4445 int closed;
|
|
4446 struct verify_extents_arg closure;
|
|
4447
|
|
4448 /* If insertion, visit closed-endpoint extents touching the insertion
|
|
4449 point because the text would go inside those extents. If deletion,
|
|
4450 treat the range as open on both ends so that touching extents are not
|
|
4451 visited. Note that we assume that an insertion is occurring if the
|
|
4452 changed range has zero length, and a deletion otherwise. This
|
|
4453 fails if a change (i.e. non-insertion, non-deletion) is happening.
|
|
4454 As far as I know, this doesn't currently occur in XEmacs. --ben */
|
|
4455 closed = (from==to);
|
|
4456 closure.object = object;
|
|
4457 closure.start = buffer_or_string_bytind_to_memind (object, from);
|
|
4458 closure.end = buffer_or_string_bytind_to_memind (object, to);
|
|
4459 closure.iro = inhibit_read_only_value;
|
|
4460
|
|
4461 map_extents_bytind (from, to, verify_extent_mapper, (void *) &closure,
|
|
4462 object, 0, closed ? ME_END_CLOSED : ME_START_OPEN);
|
|
4463 }
|
|
4464
|
|
4465 /* ------------------------------------ */
|
|
4466 /* process_extents_for_insertion() */
|
|
4467 /* ------------------------------------ */
|
|
4468
|
|
4469 struct process_extents_for_insertion_arg
|
|
4470 {
|
|
4471 Bytind opoint;
|
|
4472 int length;
|
|
4473 Lisp_Object object;
|
|
4474 };
|
173
|
4475
|
0
|
4476 /* A region of length LENGTH was just inserted at OPOINT. Modify all
|
|
4477 of the extents as required for the insertion, based on their
|
|
4478 start-open/end-open properties.
|
|
4479 */
|
|
4480
|
|
4481 static int
|
|
4482 process_extents_for_insertion_mapper (EXTENT extent, void *arg)
|
|
4483 {
|
173
|
4484 struct process_extents_for_insertion_arg *closure =
|
0
|
4485 (struct process_extents_for_insertion_arg *) arg;
|
173
|
4486 Memind indice = buffer_or_string_bytind_to_memind (closure->object,
|
0
|
4487 closure->opoint);
|
|
4488
|
|
4489 /* When this function is called, one end of the newly-inserted text should
|
|
4490 be adjacent to some endpoint of the extent, or disjoint from it. If
|
|
4491 the insertion overlaps any existing extent, something is wrong.
|
|
4492 */
|
|
4493 #ifdef ERROR_CHECK_EXTENTS
|
173
|
4494 if (extent_start (extent) > indice &&
|
|
4495 extent_start (extent) < indice + closure->length)
|
0
|
4496 abort ();
|
173
|
4497 if (extent_end (extent) > indice &&
|
|
4498 extent_end (extent) < indice + closure->length)
|
0
|
4499 abort ();
|
|
4500 #endif
|
|
4501
|
|
4502 /* The extent-adjustment code adjusted the extent's endpoints as if
|
|
4503 they were markers -- endpoints at the gap (i.e. the insertion
|
|
4504 point) go to the left of the insertion point, which is correct
|
|
4505 for [) extents. We need to fix the other kinds of extents.
|
|
4506
|
|
4507 Note that both conditions below will hold for zero-length (]
|
|
4508 extents at the gap. Zero-length () extents would get adjusted
|
|
4509 such that their start is greater than their end; we treat them
|
|
4510 as [) extents. This is unfortunately an inelegant part of the
|
|
4511 extent model, but there is no way around it. */
|
|
4512
|
|
4513 {
|
|
4514 Memind new_start, new_end;
|
|
4515
|
|
4516 new_start = extent_start (extent);
|
|
4517 new_end = extent_end (extent);
|
173
|
4518 if (indice == extent_start (extent) && extent_start_open_p (extent) &&
|
0
|
4519 /* coerce zero-length () extents to [) */
|
|
4520 new_start != new_end)
|
|
4521 new_start += closure->length;
|
173
|
4522 if (indice == extent_end (extent) && !extent_end_open_p (extent))
|
0
|
4523 new_end += closure->length;
|
|
4524 set_extent_endpoints_1 (extent, new_start, new_end);
|
|
4525 }
|
|
4526
|
|
4527 return 0;
|
|
4528 }
|
|
4529
|
|
4530 void
|
|
4531 process_extents_for_insertion (Lisp_Object object, Bytind opoint,
|
|
4532 Bytecount length)
|
|
4533 {
|
|
4534 struct process_extents_for_insertion_arg closure;
|
|
4535
|
|
4536 closure.opoint = opoint;
|
|
4537 closure.length = length;
|
|
4538 closure.object = object;
|
173
|
4539
|
0
|
4540 map_extents_bytind (opoint, opoint + length,
|
|
4541 process_extents_for_insertion_mapper,
|
|
4542 (void *) &closure, object, 0,
|
|
4543 ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS |
|
|
4544 ME_INCLUDE_INTERNAL);
|
|
4545 }
|
|
4546
|
|
4547 /* ------------------------------------ */
|
|
4548 /* process_extents_for_deletion() */
|
|
4549 /* ------------------------------------ */
|
|
4550
|
|
4551 struct process_extents_for_deletion_arg
|
|
4552 {
|
|
4553 Memind start, end;
|
|
4554 int destroy_included_extents;
|
|
4555 };
|
|
4556
|
|
4557 /* This function is called when we're about to delete the range [from, to].
|
|
4558 Detach all of the extents that are completely inside the range [from, to],
|
|
4559 if they're detachable or open-open. */
|
|
4560
|
|
4561 static int
|
|
4562 process_extents_for_deletion_mapper (EXTENT extent, void *arg)
|
|
4563 {
|
173
|
4564 struct process_extents_for_deletion_arg *closure =
|
0
|
4565 (struct process_extents_for_deletion_arg *) arg;
|
|
4566
|
|
4567 /* If the extent lies completely within the range that
|
|
4568 is being deleted, then nuke the extent if it's detachable
|
|
4569 (otherwise, it will become a zero-length extent). */
|
|
4570
|
|
4571 if (closure->start <= extent_start (extent) &&
|
|
4572 extent_end (extent) <= closure->end)
|
|
4573 {
|
|
4574 if (extent_detachable_p (extent))
|
|
4575 {
|
|
4576 if (closure->destroy_included_extents)
|
|
4577 destroy_extent (extent);
|
|
4578 else
|
|
4579 extent_detach (extent);
|
|
4580 }
|
|
4581 }
|
|
4582
|
|
4583 return 0;
|
|
4584 }
|
|
4585
|
|
4586 /* DESTROY_THEM means destroy the extents instead of just deleting them.
|
|
4587 It is unused currently, but perhaps might be used (there used to
|
|
4588 be a function process_extents_for_destruction(), #if 0'd out,
|
|
4589 that did the equivalent). */
|
|
4590 void
|
|
4591 process_extents_for_deletion (Lisp_Object object, Bytind from,
|
|
4592 Bytind to, int destroy_them)
|
|
4593 {
|
|
4594 struct process_extents_for_deletion_arg closure;
|
|
4595
|
|
4596 closure.start = buffer_or_string_bytind_to_memind (object, from);
|
|
4597 closure.end = buffer_or_string_bytind_to_memind (object, to);
|
|
4598 closure.destroy_included_extents = destroy_them;
|
|
4599
|
|
4600 map_extents_bytind (from, to, process_extents_for_deletion_mapper,
|
|
4601 (void *) &closure, object, 0,
|
|
4602 ME_END_CLOSED | ME_MIGHT_MODIFY_EXTENTS);
|
|
4603 }
|
|
4604
|
|
4605
|
|
4606 /************************************************************************/
|
|
4607 /* extent properties */
|
|
4608 /************************************************************************/
|
|
4609
|
|
4610 static void
|
|
4611 set_extent_invisible (EXTENT extent, Lisp_Object value)
|
|
4612 {
|
|
4613 if (!EQ (extent_invisible (extent), value))
|
|
4614 {
|
|
4615 set_extent_invisible_1 (extent, value);
|
110
|
4616 extent_changed_for_redisplay (extent, 1, 1);
|
0
|
4617 }
|
|
4618 }
|
|
4619
|
|
4620 /* This function does "memoization" -- similar to the interning
|
|
4621 that happens with symbols. Given a list of faces, an equivalent
|
|
4622 list is returned such that if this function is called twice with
|
|
4623 input that is `equal', the resulting outputs will be `eq'.
|
|
4624
|
|
4625 Note that the inputs and outputs are in general *not* `equal' --
|
|
4626 faces in symbol form become actual face objects in the output.
|
|
4627 This is necessary so that temporary faces stay around. */
|
|
4628
|
|
4629 static Lisp_Object
|
|
4630 memoize_extent_face_internal (Lisp_Object list)
|
|
4631 {
|
|
4632 int len;
|
|
4633 int thelen;
|
|
4634 Lisp_Object cons, thecons;
|
|
4635 Lisp_Object oldtail, tail;
|
|
4636 struct gcpro gcpro1;
|
|
4637
|
|
4638 if (NILP (list))
|
|
4639 return Qnil;
|
|
4640 if (!CONSP (list))
|
|
4641 return Fget_face (list);
|
|
4642
|
|
4643 /* To do the memoization, we use a hash table mapping from
|
|
4644 external lists to internal lists. We do `equal' comparisons
|
|
4645 on the keys so the memoization works correctly.
|
|
4646
|
|
4647 Note that we canonicalize things so that the keys in the
|
|
4648 hashtable (the external lists) always contain symbols and
|
|
4649 the values (the internal lists) always contain face objects.
|
|
4650
|
|
4651 We also maintain a "reverse" table that maps from the internal
|
|
4652 lists to the external equivalents. The idea here is twofold:
|
|
4653
|
|
4654 1) `extent-face' wants to return a list containing face symbols
|
|
4655 rather than face objects.
|
|
4656 2) We don't want things to get quite so messed up if the user
|
|
4657 maliciously side-effects the returned lists.
|
|
4658 */
|
|
4659
|
|
4660 len = XINT (Flength (list));
|
|
4661 thelen = XINT (Flength (Vextent_face_reusable_list));
|
|
4662 oldtail = Qnil;
|
|
4663 tail = Qnil;
|
|
4664 GCPRO1 (oldtail);
|
|
4665
|
|
4666 /* We canonicalize the given list into another list.
|
|
4667 We try to avoid consing except when necessary, so we have
|
|
4668 a reusable list.
|
|
4669 */
|
173
|
4670
|
0
|
4671 if (thelen < len)
|
|
4672 {
|
|
4673 cons = Vextent_face_reusable_list;
|
|
4674 while (!NILP (XCDR (cons)))
|
|
4675 cons = XCDR (cons);
|
|
4676 XCDR (cons) = Fmake_list (make_int (len - thelen), Qnil);
|
|
4677 }
|
|
4678 else if (thelen > len)
|
|
4679 {
|
|
4680 int i;
|
|
4681
|
|
4682 /* Truncate the list temporarily so it's the right length;
|
|
4683 remember the old tail. */
|
|
4684 cons = Vextent_face_reusable_list;
|
|
4685 for (i = 0; i < len - 1; i++)
|
|
4686 cons = XCDR (cons);
|
|
4687 tail = cons;
|
|
4688 oldtail = XCDR (cons);
|
|
4689 XCDR (cons) = Qnil;
|
|
4690 }
|
|
4691
|
|
4692 thecons = Vextent_face_reusable_list;
|
|
4693 EXTERNAL_LIST_LOOP (cons, list)
|
|
4694 {
|
|
4695 Lisp_Object face = Fget_face (XCAR (cons));
|
|
4696
|
|
4697 XCAR (thecons) = Fface_name (face);
|
|
4698 thecons = XCDR (thecons);
|
|
4699 }
|
|
4700
|
|
4701 list = Fgethash (Vextent_face_reusable_list, Vextent_face_memoize_hash_table,
|
|
4702 Qnil);
|
|
4703 if (NILP (list))
|
|
4704 {
|
|
4705 Lisp_Object symlist = Fcopy_sequence (Vextent_face_reusable_list);
|
|
4706 Lisp_Object facelist = Fcopy_sequence (Vextent_face_reusable_list);
|
|
4707
|
|
4708 LIST_LOOP (cons, facelist)
|
|
4709 {
|
|
4710 XCAR (cons) = Fget_face (XCAR (cons));
|
|
4711 }
|
|
4712 Fputhash (symlist, facelist, Vextent_face_memoize_hash_table);
|
|
4713 Fputhash (facelist, symlist, Vextent_face_reverse_memoize_hash_table);
|
|
4714 list = facelist;
|
|
4715 }
|
|
4716
|
|
4717 /* Now restore the truncated tail of the reusable list, if necessary. */
|
|
4718 if (!NILP (tail))
|
|
4719 XCDR (tail) = oldtail;
|
|
4720
|
|
4721 UNGCPRO;
|
|
4722 return list;
|
|
4723 }
|
|
4724
|
|
4725 static Lisp_Object
|
|
4726 external_of_internal_memoized_face (Lisp_Object face)
|
|
4727 {
|
|
4728 if (NILP (face))
|
|
4729 return Qnil;
|
|
4730 else if (!CONSP (face))
|
|
4731 return XFACE (face)->name;
|
|
4732 else
|
|
4733 {
|
|
4734 face = Fgethash (face, Vextent_face_reverse_memoize_hash_table,
|
|
4735 Qunbound);
|
|
4736 assert (!UNBOUNDP (face));
|
|
4737 return face;
|
|
4738 }
|
|
4739 }
|
|
4740
|
|
4741 static Lisp_Object
|
|
4742 canonicalize_extent_property (Lisp_Object prop, Lisp_Object value)
|
|
4743 {
|
|
4744 if (EQ (prop, Qface) || EQ (prop, Qmouse_face))
|
|
4745 value = (external_of_internal_memoized_face
|
|
4746 (memoize_extent_face_internal (value)));
|
|
4747 return value;
|
|
4748 }
|
|
4749
|
189
|
4750 /* Do we need a lisp-level function ? */
|
280
|
4751 DEFUN ("set-extent-initial-redisplay-function", Fset_extent_initial_redisplay_function,
|
|
4752 2,2,0,/*
|
207
|
4753 Note: This feature is experimental!
|
272
|
4754
|
207
|
4755 Set initial-redisplay-function of EXTENT to the function
|
|
4756 FUNCTION.
|
|
4757
|
|
4758 The first time the EXTENT is (re)displayed, an eval event will be
|
272
|
4759 dispatched calling FUNCTION with EXTENT as its only argument.
|
189
|
4760 */
|
272
|
4761 (extent, function))
|
189
|
4762 {
|
|
4763 EXTENT e = decode_extent(extent, DE_MUST_BE_ATTACHED);
|
|
4764
|
|
4765 e = extent_ancestor (e); /* Is this needed? Macro also does chasing!*/
|
207
|
4766 set_extent_initial_redisplay_function(e,function);
|
|
4767 extent_in_red_event_p(e) = 0; /* If the function changed we can spawn
|
272
|
4768 new events */
|
189
|
4769 extent_changed_for_redisplay(e,1,0); /* Do we need to mark children too ?*/
|
272
|
4770
|
189
|
4771 return function;
|
|
4772 }
|
|
4773
|
20
|
4774 DEFUN ("extent-face", Fextent_face, 1, 1, 0, /*
|
0
|
4775 Return the name of the face in which EXTENT is displayed, or nil
|
|
4776 if the extent's face is unspecified. This might also return a list
|
272
|
4777 of face names.
|
20
|
4778 */
|
|
4779 (extent))
|
0
|
4780 {
|
|
4781 Lisp_Object face;
|
|
4782
|
|
4783 CHECK_EXTENT (extent);
|
|
4784 face = extent_face (XEXTENT (extent));
|
|
4785
|
|
4786 return external_of_internal_memoized_face (face);
|
|
4787 }
|
|
4788
|
20
|
4789 DEFUN ("set-extent-face", Fset_extent_face, 2, 2, 0, /*
|
0
|
4790 Make the given EXTENT have the graphic attributes specified by FACE.
|
|
4791 FACE can also be a list of faces, and all faces listed will apply,
|
|
4792 with faces earlier in the list taking priority over those later in the
|
|
4793 list.
|
20
|
4794 */
|
|
4795 (extent, face))
|
0
|
4796 {
|
110
|
4797 EXTENT e = decode_extent(extent, 0);
|
0
|
4798 Lisp_Object orig_face = face;
|
|
4799
|
|
4800 /* retrieve the ancestor for efficiency and proper redisplay noting. */
|
|
4801 e = extent_ancestor (e);
|
|
4802
|
|
4803 face = memoize_extent_face_internal (face);
|
|
4804
|
|
4805 extent_face (e) = face;
|
110
|
4806 extent_changed_for_redisplay (e, 1, 0);
|
0
|
4807
|
|
4808 return orig_face;
|
|
4809 }
|
|
4810
|
|
4811
|
20
|
4812 DEFUN ("extent-mouse-face", Fextent_mouse_face, 1, 1, 0, /*
|
0
|
4813 Return the face used to highlight EXTENT when the mouse passes over it.
|
|
4814 The return value will be a face name, a list of face names, or nil
|
|
4815 if the extent's mouse face is unspecified.
|
20
|
4816 */
|
|
4817 (extent))
|
0
|
4818 {
|
|
4819 Lisp_Object face;
|
|
4820
|
|
4821 CHECK_EXTENT (extent);
|
|
4822 face = extent_mouse_face (XEXTENT (extent));
|
|
4823
|
|
4824 return external_of_internal_memoized_face (face);
|
|
4825 }
|
|
4826
|
20
|
4827 DEFUN ("set-extent-mouse-face", Fset_extent_mouse_face, 2, 2, 0, /*
|
0
|
4828 Set the face used to highlight EXTENT when the mouse passes over it.
|
|
4829 FACE can also be a list of faces, and all faces listed will apply,
|
|
4830 with faces earlier in the list taking priority over those later in the
|
|
4831 list.
|
20
|
4832 */
|
|
4833 (extent, face))
|
0
|
4834 {
|
|
4835 EXTENT e;
|
|
4836 Lisp_Object orig_face = face;
|
|
4837
|
|
4838 CHECK_EXTENT (extent);
|
|
4839 e = XEXTENT (extent);
|
|
4840 /* retrieve the ancestor for efficiency and proper redisplay noting. */
|
|
4841 e = extent_ancestor (e);
|
|
4842
|
|
4843 face = memoize_extent_face_internal (face);
|
|
4844
|
|
4845 set_extent_mouse_face (e, face);
|
110
|
4846 extent_changed_for_redisplay (e, 1, 0);
|
0
|
4847
|
|
4848 return orig_face;
|
|
4849 }
|
|
4850
|
|
4851 void
|
|
4852 set_extent_glyph (EXTENT extent, Lisp_Object glyph, int endp,
|
272
|
4853 glyph_layout layout)
|
0
|
4854 {
|
|
4855 extent = extent_ancestor (extent);
|
|
4856
|
|
4857 if (!endp)
|
|
4858 {
|
|
4859 set_extent_begin_glyph (extent, glyph);
|
|
4860 extent_begin_glyph_layout (extent) = layout;
|
|
4861 }
|
|
4862 else
|
|
4863 {
|
|
4864 set_extent_end_glyph (extent, glyph);
|
|
4865 extent_end_glyph_layout (extent) = layout;
|
|
4866 }
|
|
4867
|
110
|
4868 extent_changed_for_redisplay (extent, 1, 0);
|
0
|
4869 }
|
|
4870
|
|
4871 static Lisp_Object
|
272
|
4872 glyph_layout_to_symbol (glyph_layout layout)
|
0
|
4873 {
|
|
4874 switch (layout)
|
|
4875 {
|
272
|
4876 case GL_TEXT: return Qtext;
|
0
|
4877 case GL_OUTSIDE_MARGIN: return Qoutside_margin;
|
272
|
4878 case GL_INSIDE_MARGIN: return Qinside_margin;
|
|
4879 case GL_WHITESPACE: return Qwhitespace;
|
|
4880 default:
|
|
4881 abort ();
|
|
4882 return Qnil; /* unreached */
|
0
|
4883 }
|
272
|
4884 }
|
|
4885
|
|
4886 static glyph_layout
|
0
|
4887 symbol_to_glyph_layout (Lisp_Object layout_obj)
|
|
4888 {
|
|
4889 if (NILP (layout_obj))
|
272
|
4890 return GL_TEXT;
|
|
4891
|
|
4892 CHECK_SYMBOL (layout_obj);
|
|
4893 if (EQ (layout_obj, Qoutside_margin)) return GL_OUTSIDE_MARGIN;
|
|
4894 if (EQ (layout_obj, Qinside_margin)) return GL_INSIDE_MARGIN;
|
|
4895 if (EQ (layout_obj, Qwhitespace)) return GL_WHITESPACE;
|
|
4896 if (EQ (layout_obj, Qtext)) return GL_TEXT;
|
|
4897
|
|
4898 signal_simple_error ("unknown glyph layout type", layout_obj);
|
|
4899 return GL_TEXT; /* unreached */
|
0
|
4900 }
|
|
4901
|
|
4902 static Lisp_Object
|
|
4903 set_extent_glyph_1 (Lisp_Object extent_obj, Lisp_Object glyph, int endp,
|
|
4904 Lisp_Object layout_obj)
|
|
4905 {
|
|
4906 EXTENT extent = decode_extent (extent_obj, DE_MUST_HAVE_BUFFER);
|
272
|
4907 glyph_layout layout = symbol_to_glyph_layout (layout_obj);
|
0
|
4908
|
|
4909 /* Make sure we've actually been given a glyph or it's nil (meaning
|
|
4910 we're deleting a glyph from an extent). */
|
|
4911 if (!NILP (glyph))
|
|
4912 CHECK_GLYPH (glyph);
|
|
4913
|
|
4914 set_extent_glyph (extent, glyph, endp, layout);
|
|
4915 return glyph;
|
|
4916 }
|
|
4917
|
20
|
4918 DEFUN ("set-extent-begin-glyph", Fset_extent_begin_glyph, 2, 3, 0, /*
|
0
|
4919 Display a bitmap, subwindow or string at the beginning of EXTENT.
|
|
4920 BEGIN-GLYPH must be a glyph object. The layout policy defaults to `text'.
|
20
|
4921 */
|
|
4922 (extent, begin_glyph, layout))
|
0
|
4923 {
|
|
4924 return set_extent_glyph_1 (extent, begin_glyph, 0, layout);
|
|
4925 }
|
|
4926
|
20
|
4927 DEFUN ("set-extent-end-glyph", Fset_extent_end_glyph, 2, 3, 0, /*
|
284
|
4928 Display a bitmap, subwindow or string at the end of EXTENT.
|
0
|
4929 END-GLYPH must be a glyph object. The layout policy defaults to `text'.
|
20
|
4930 */
|
|
4931 (extent, end_glyph, layout))
|
0
|
4932 {
|
|
4933 return set_extent_glyph_1 (extent, end_glyph, 1, layout);
|
|
4934 }
|
|
4935
|
20
|
4936 DEFUN ("extent-begin-glyph", Fextent_begin_glyph, 1, 1, 0, /*
|
0
|
4937 Return the glyph object displayed at the beginning of EXTENT.
|
|
4938 If there is none, nil is returned.
|
20
|
4939 */
|
284
|
4940 (extent))
|
|
4941 {
|
|
4942 return extent_begin_glyph (decode_extent (extent, 0));
|
0
|
4943 }
|
|
4944
|
20
|
4945 DEFUN ("extent-end-glyph", Fextent_end_glyph, 1, 1, 0, /*
|
0
|
4946 Return the glyph object displayed at the end of EXTENT.
|
|
4947 If there is none, nil is returned.
|
20
|
4948 */
|
284
|
4949 (extent))
|
|
4950 {
|
|
4951 return extent_end_glyph (decode_extent (extent, 0));
|
0
|
4952 }
|
|
4953
|
20
|
4954 DEFUN ("set-extent-begin-glyph-layout", Fset_extent_begin_glyph_layout, 2, 2, 0, /*
|
284
|
4955 Set the layout policy of EXTENT's begin glyph.
|
0
|
4956 Access this using the `extent-begin-glyph-layout' function.
|
20
|
4957 */
|
|
4958 (extent, layout))
|
0
|
4959 {
|
|
4960 EXTENT e = decode_extent (extent, 0);
|
|
4961 e = extent_ancestor (e);
|
|
4962 extent_begin_glyph_layout (e) = symbol_to_glyph_layout (layout);
|
110
|
4963 extent_maybe_changed_for_redisplay (e, 1, 0);
|
0
|
4964 return layout;
|
|
4965 }
|
|
4966
|
20
|
4967 DEFUN ("set-extent-end-glyph-layout", Fset_extent_end_glyph_layout, 2, 2, 0, /*
|
284
|
4968 Set the layout policy of EXTENT's end glyph.
|
0
|
4969 Access this using the `extent-end-glyph-layout' function.
|
20
|
4970 */
|
|
4971 (extent, layout))
|
0
|
4972 {
|
|
4973 EXTENT e = decode_extent (extent, 0);
|
|
4974 e = extent_ancestor (e);
|
|
4975 extent_end_glyph_layout (e) = symbol_to_glyph_layout (layout);
|
110
|
4976 extent_maybe_changed_for_redisplay (e, 1, 0);
|
0
|
4977 return layout;
|
|
4978 }
|
|
4979
|
20
|
4980 DEFUN ("extent-begin-glyph-layout", Fextent_begin_glyph_layout, 1, 1, 0, /*
|
284
|
4981 Return the layout policy associated with EXTENT's begin glyph.
|
0
|
4982 Set this using the `set-extent-begin-glyph-layout' function.
|
20
|
4983 */
|
|
4984 (extent))
|
0
|
4985 {
|
|
4986 EXTENT e = decode_extent (extent, 0);
|
280
|
4987 return glyph_layout_to_symbol ((glyph_layout) extent_begin_glyph_layout (e));
|
0
|
4988 }
|
|
4989
|
20
|
4990 DEFUN ("extent-end-glyph-layout", Fextent_end_glyph_layout, 1, 1, 0, /*
|
284
|
4991 Return the layout policy associated with EXTENT's end glyph.
|
0
|
4992 Set this using the `set-extent-end-glyph-layout' function.
|
20
|
4993 */
|
|
4994 (extent))
|
0
|
4995 {
|
|
4996 EXTENT e = decode_extent (extent, 0);
|
280
|
4997 return glyph_layout_to_symbol ((glyph_layout) extent_end_glyph_layout (e));
|
0
|
4998 }
|
|
4999
|
20
|
5000 DEFUN ("set-extent-priority", Fset_extent_priority, 2, 2, 0, /*
|
272
|
5001 Set the display priority of EXTENT to PRIORITY (an integer).
|
0
|
5002 When the extent attributes are being merged for display, the priority
|
|
5003 is used to determine which extent takes precedence in the event of a
|
|
5004 conflict (two extents whose faces both specify font, for example: the
|
|
5005 font of the extent with the higher priority will be used).
|
|
5006 Extents are created with priority 0; priorities may be negative.
|
20
|
5007 */
|
272
|
5008 (extent, priority))
|
0
|
5009 {
|
|
5010 EXTENT e = decode_extent (extent, 0);
|
|
5011
|
272
|
5012 CHECK_INT (priority);
|
0
|
5013 e = extent_ancestor (e);
|
272
|
5014 set_extent_priority (e, XINT (priority));
|
110
|
5015 extent_maybe_changed_for_redisplay (e, 1, 0);
|
272
|
5016 return priority;
|
0
|
5017 }
|
|
5018
|
20
|
5019 DEFUN ("extent-priority", Fextent_priority, 1, 1, 0, /*
|
0
|
5020 Return the display priority of EXTENT; see `set-extent-priority'.
|
20
|
5021 */
|
|
5022 (extent))
|
0
|
5023 {
|
|
5024 EXTENT e = decode_extent (extent, 0);
|
|
5025 return make_int (extent_priority (e));
|
|
5026 }
|
|
5027
|
20
|
5028 DEFUN ("set-extent-property", Fset_extent_property, 3, 3, 0, /*
|
0
|
5029 Change a property of an extent.
|
|
5030 PROPERTY may be any symbol; the value stored may be accessed with
|
|
5031 the `extent-property' function.
|
|
5032 The following symbols have predefined meanings:
|
|
5033
|
|
5034 detached Removes the extent from its buffer; setting this is
|
|
5035 the same as calling `detach-extent'.
|
173
|
5036
|
0
|
5037 destroyed Removes the extent from its buffer, and makes it
|
|
5038 unusable in the future; this is the same calling
|
|
5039 `delete-extent'.
|
173
|
5040
|
0
|
5041 priority Change redisplay priority; same as `set-extent-priority'.
|
173
|
5042
|
0
|
5043 start-open Whether the set of characters within the extent is
|
|
5044 treated being open on the left, that is, whether
|
|
5045 the start position is an exclusive, rather than
|
|
5046 inclusive, boundary. If true, then characters
|
|
5047 inserted exactly at the beginning of the extent
|
|
5048 will remain outside of the extent; otherwise they
|
|
5049 will go into the extent, extending it.
|
173
|
5050
|
0
|
5051 end-open Whether the set of characters within the extent is
|
|
5052 treated being open on the right, that is, whether
|
|
5053 the end position is an exclusive, rather than
|
|
5054 inclusive, boundary. If true, then characters
|
|
5055 inserted exactly at the end of the extent will
|
|
5056 remain outside of the extent; otherwise they will
|
|
5057 go into the extent, extending it.
|
173
|
5058
|
0
|
5059 By default, extents have the `end-open' but not the
|
|
5060 `start-open' property set.
|
173
|
5061
|
0
|
5062 read-only Text within this extent will be unmodifiable.
|
173
|
5063
|
207
|
5064 initial-redisplay-function (EXPERIMENTAL)
|
|
5065 function to be called the first time (part of) the extent
|
189
|
5066 is redisplayed. It will be called with the extent as its
|
207
|
5067 first argument.
|
|
5068 Note: The function will not be called immediately
|
|
5069 during redisplay, an eval event will be dispatched.
|
189
|
5070
|
0
|
5071 detachable Whether the extent gets detached (as with
|
|
5072 `detach-extent') when all the text within the
|
|
5073 extent is deleted. This is true by default. If
|
|
5074 this property is not set, the extent becomes a
|
|
5075 zero-length extent when its text is deleted. (In
|
|
5076 such a case, the `start-open' property is
|
|
5077 automatically removed if both the `start-open' and
|
|
5078 `end-open' properties are set, since zero-length
|
|
5079 extents open on both ends are not allowed.)
|
173
|
5080
|
0
|
5081 face The face in which to display the text. Setting
|
|
5082 this is the same as calling `set-extent-face'.
|
|
5083
|
|
5084 mouse-face If non-nil, the extent will be highlighted in this
|
|
5085 face when the mouse moves over it.
|
|
5086
|
|
5087 pointer If non-nil, and a valid pointer glyph, this specifies
|
|
5088 the shape of the mouse pointer while over the extent.
|
|
5089
|
|
5090 highlight Obsolete: Setting this property is equivalent to
|
|
5091 setting a `mouse-face' property of `highlight'.
|
|
5092 Reading this property returns non-nil if
|
|
5093 the extent has a non-nil `mouse-face' property.
|
173
|
5094
|
0
|
5095 duplicable Whether this extent should be copied into strings,
|
|
5096 so that kill, yank, and undo commands will restore
|
|
5097 or copy it. `duplicable' extents are copied from
|
|
5098 an extent into a string when `buffer-substring' or
|
|
5099 a similar function creates a string. The extents
|
|
5100 in a string are copied into other strings created
|
|
5101 from the string using `concat' or `substring'.
|
|
5102 When `insert' or a similar function inserts the
|
|
5103 string into a buffer, the extents are copied back
|
|
5104 into the buffer.
|
173
|
5105
|
96
|
5106 unique Meaningful only in conjunction with `duplicable'.
|
|
5107 When this is set, there may be only one instance
|
|
5108 of this extent attached at a time: if it is copied
|
|
5109 to the kill ring and then yanked, the extent is
|
|
5110 not copied. If, however, it is killed (removed
|
|
5111 from the buffer) and then yanked, it will be
|
|
5112 re-attached at the new position.
|
173
|
5113
|
0
|
5114 invisible If the value is non-nil, text under this extent
|
|
5115 may be treated as not present for the purpose of
|
|
5116 redisplay, or may be displayed using an ellipsis
|
|
5117 or other marker; see `buffer-invisibility-spec'
|
|
5118 and `invisible-text-glyph'. In all cases,
|
|
5119 however, the text is still visible to other
|
|
5120 functions that examine a buffer's text.
|
173
|
5121
|
0
|
5122 keymap This keymap is consulted for mouse clicks on this
|
|
5123 extent, or keypresses made while point is within the
|
|
5124 extent.
|
173
|
5125
|
0
|
5126 copy-function This is a hook that is run when a duplicable extent
|
|
5127 is about to be copied from a buffer to a string (or
|
|
5128 the kill ring). It is called with three arguments,
|
|
5129 the extent, and the buffer-positions within it
|
|
5130 which are being copied. If this function returns
|
|
5131 nil, then the extent will not be copied; otherwise
|
|
5132 it will.
|
173
|
5133
|
0
|
5134 paste-function This is a hook that is run when a duplicable extent is
|
|
5135 about to be copied from a string (or the kill ring)
|
|
5136 into a buffer. It is called with three arguments,
|
|
5137 the original extent, and the buffer positions which
|
|
5138 the copied extent will occupy. (This hook is run
|
|
5139 after the corresponding text has already been
|
|
5140 inserted into the buffer.) Note that the extent
|
|
5141 argument may be detached when this function is run.
|
|
5142 If this function returns nil, no extent will be
|
|
5143 inserted. Otherwise, there will be an extent
|
|
5144 covering the range in question.
|
173
|
5145
|
0
|
5146 If the original extent is not attached to a buffer,
|
|
5147 then it will be re-attached at this range.
|
|
5148 Otherwise, a copy will be made, and that copy
|
|
5149 attached here.
|
173
|
5150
|
0
|
5151 The copy-function and paste-function are meaningful
|
|
5152 only for extents with the `duplicable' flag set,
|
|
5153 and if they are not specified, behave as if `t' was
|
|
5154 the returned value. When these hooks are invoked,
|
|
5155 the current buffer is the buffer which the extent
|
|
5156 is being copied from/to, respectively.
|
173
|
5157
|
0
|
5158 begin-glyph A glyph to be displayed at the beginning of the extent,
|
|
5159 or nil.
|
173
|
5160
|
0
|
5161 end-glyph A glyph to be displayed at the end of the extent,
|
|
5162 or nil.
|
|
5163
|
|
5164 begin-glyph-layout The layout policy (one of `text', `whitespace',
|
|
5165 `inside-margin', or `outside-margin') of the extent's
|
|
5166 begin glyph.
|
|
5167
|
98
|
5168 end-glyph-layout The layout policy of the extent's end glyph.
|
|
5169 */
|
20
|
5170 (extent, property, value))
|
0
|
5171 {
|
|
5172 /* This function can GC if property is `keymap' */
|
|
5173 EXTENT e = decode_extent (extent, 0);
|
|
5174
|
|
5175 if (EQ (property, Qread_only))
|
|
5176 set_extent_read_only (e, value);
|
|
5177 else if (EQ (property, Qunique))
|
|
5178 extent_unique_p (e) = !NILP (value);
|
|
5179 else if (EQ (property, Qduplicable))
|
|
5180 extent_duplicable_p (e) = !NILP (value);
|
|
5181 else if (EQ (property, Qinvisible))
|
|
5182 set_extent_invisible (e, value);
|
|
5183 else if (EQ (property, Qdetachable))
|
|
5184 extent_detachable_p (e) = !NILP (value);
|
|
5185
|
|
5186 else if (EQ (property, Qdetached))
|
|
5187 {
|
|
5188 if (NILP (value))
|
|
5189 error ("can only set `detached' to t");
|
|
5190 Fdetach_extent (extent);
|
|
5191 }
|
|
5192 else if (EQ (property, Qdestroyed))
|
|
5193 {
|
|
5194 if (NILP (value))
|
|
5195 error ("can only set `destroyed' to t");
|
|
5196 Fdelete_extent (extent);
|
|
5197 }
|
|
5198 else if (EQ (property, Qpriority))
|
|
5199 Fset_extent_priority (extent, value);
|
|
5200 else if (EQ (property, Qface))
|
|
5201 Fset_extent_face (extent, value);
|
207
|
5202 else if (EQ (property, Qinitial_redisplay_function))
|
|
5203 Fset_extent_initial_redisplay_function (extent, value);
|
0
|
5204 else if (EQ (property, Qmouse_face))
|
|
5205 Fset_extent_mouse_face (extent, value);
|
|
5206 /* Obsolete: */
|
|
5207 else if (EQ (property, Qhighlight))
|
173
|
5208 Fset_extent_mouse_face (extent, Qhighlight);
|
0
|
5209 else if (EQ (property, Qbegin_glyph_layout))
|
|
5210 Fset_extent_begin_glyph_layout (extent, value);
|
|
5211 else if (EQ (property, Qend_glyph_layout))
|
|
5212 Fset_extent_end_glyph_layout (extent, value);
|
|
5213 /* For backwards compatibility. We use begin glyph because it is by
|
|
5214 far the more used of the two. */
|
|
5215 else if (EQ (property, Qglyph_layout))
|
|
5216 Fset_extent_begin_glyph_layout (extent, value);
|
|
5217 else if (EQ (property, Qbegin_glyph))
|
|
5218 Fset_extent_begin_glyph (extent, value, Qnil);
|
|
5219 else if (EQ (property, Qend_glyph))
|
|
5220 Fset_extent_end_glyph (extent, value, Qnil);
|
|
5221 else if (EQ (property, Qstart_open) ||
|
|
5222 EQ (property, Qend_open) ||
|
|
5223 EQ (property, Qstart_closed) ||
|
|
5224 EQ (property, Qend_closed))
|
|
5225 {
|
|
5226 int start_open = -1, end_open = -1;
|
|
5227 if (EQ (property, Qstart_open))
|
|
5228 start_open = !NILP (value);
|
|
5229 else if (EQ (property, Qend_open))
|
|
5230 end_open = !NILP (value);
|
|
5231 /* Support (but don't document...) the obvious antonyms. */
|
|
5232 else if (EQ (property, Qstart_closed))
|
|
5233 start_open = NILP (value);
|
|
5234 else
|
|
5235 end_open = NILP (value);
|
|
5236 set_extent_openness (e, start_open, end_open);
|
|
5237 }
|
|
5238 else
|
|
5239 {
|
|
5240 if (EQ (property, Qkeymap))
|
207
|
5241 while (!NILP (value) && NILP (Fkeymapp (value)))
|
0
|
5242 value = wrong_type_argument (Qkeymapp, value);
|
|
5243
|
|
5244 external_plist_put (extent_plist_addr (e), property, value, 0, ERROR_ME);
|
|
5245 }
|
|
5246
|
|
5247 return value;
|
|
5248 }
|
|
5249
|
195
|
5250 DEFUN ("set-extent-properties", Fset_extent_properties, 2, 2, 0, /*
|
|
5251 Change some properties of EXTENT.
|
|
5252 PLIST is a property list.
|
|
5253 For a list of built-in properties, see `set-extent-property'.
|
|
5254 */
|
|
5255 (extent, plist))
|
|
5256 {
|
|
5257 /* This function can GC, if one of the properties is `keymap' */
|
|
5258 Lisp_Object property, value;
|
|
5259 struct gcpro gcpro1;
|
|
5260 GCPRO1 (plist);
|
|
5261
|
|
5262 plist = Fcopy_sequence (plist);
|
|
5263 Fcanonicalize_plist (plist, Qnil);
|
|
5264
|
|
5265 while (!NILP (plist))
|
|
5266 {
|
272
|
5267 property = Fcar (plist); plist = Fcdr (plist);
|
|
5268 value = Fcar (plist); plist = Fcdr (plist);
|
195
|
5269 Fset_extent_property (extent, property, value);
|
|
5270 }
|
|
5271 UNGCPRO;
|
|
5272 return Qnil;
|
|
5273 }
|
|
5274
|
20
|
5275 DEFUN ("extent-property", Fextent_property, 2, 3, 0, /*
|
0
|
5276 Return EXTENT's value for property PROPERTY.
|
|
5277 See `set-extent-property' for the built-in property names.
|
20
|
5278 */
|
173
|
5279 (extent, property, default_))
|
0
|
5280 {
|
|
5281 EXTENT e = decode_extent (extent, 0);
|
|
5282
|
|
5283 if (EQ (property, Qdetached))
|
173
|
5284 return extent_detached_p (e) ? Qt : Qnil;
|
0
|
5285 else if (EQ (property, Qdestroyed))
|
173
|
5286 return !EXTENT_LIVE_P (e) ? Qt : Qnil;
|
|
5287 #define RETURN_FLAG(flag) return extent_normal_field (e, flag) ? Qt : Qnil
|
0
|
5288 else if (EQ (property, Qstart_open)) RETURN_FLAG (start_open);
|
|
5289 else if (EQ (property, Qend_open)) RETURN_FLAG (end_open);
|
|
5290 else if (EQ (property, Qunique)) RETURN_FLAG (unique);
|
|
5291 else if (EQ (property, Qduplicable)) RETURN_FLAG (duplicable);
|
|
5292 else if (EQ (property, Qdetachable)) RETURN_FLAG (detachable);
|
|
5293 #undef RETURN_FLAG
|
|
5294 /* Support (but don't document...) the obvious antonyms. */
|
|
5295 else if (EQ (property, Qstart_closed))
|
173
|
5296 return extent_start_open_p (e) ? Qnil : Qt;
|
0
|
5297 else if (EQ (property, Qend_closed))
|
173
|
5298 return extent_end_open_p (e) ? Qnil : Qt;
|
0
|
5299 else if (EQ (property, Qpriority))
|
|
5300 return make_int (extent_priority (e));
|
|
5301 else if (EQ (property, Qread_only))
|
|
5302 return extent_read_only (e);
|
|
5303 else if (EQ (property, Qinvisible))
|
|
5304 return extent_invisible (e);
|
|
5305 else if (EQ (property, Qface))
|
|
5306 return Fextent_face (extent);
|
207
|
5307 else if (EQ (property, Qinitial_redisplay_function))
|
|
5308 return extent_initial_redisplay_function (e);
|
0
|
5309 else if (EQ (property, Qmouse_face))
|
|
5310 return Fextent_mouse_face (extent);
|
|
5311 /* Obsolete: */
|
|
5312 else if (EQ (property, Qhighlight))
|
|
5313 return !NILP (Fextent_mouse_face (extent)) ? Qt : Qnil;
|
|
5314 else if (EQ (property, Qbegin_glyph_layout))
|
|
5315 return Fextent_begin_glyph_layout (extent);
|
|
5316 else if (EQ (property, Qend_glyph_layout))
|
|
5317 return Fextent_end_glyph_layout (extent);
|
|
5318 /* For backwards compatibility. We use begin glyph because it is by
|
|
5319 far the more used of the two. */
|
|
5320 else if (EQ (property, Qglyph_layout))
|
|
5321 return Fextent_begin_glyph_layout (extent);
|
|
5322 else if (EQ (property, Qbegin_glyph))
|
|
5323 return extent_begin_glyph (e);
|
|
5324 else if (EQ (property, Qend_glyph))
|
|
5325 return extent_end_glyph (e);
|
|
5326 else
|
|
5327 {
|
272
|
5328 Lisp_Object value = external_plist_get (extent_plist_addr (e),
|
|
5329 property, 0, ERROR_ME);
|
|
5330 return UNBOUNDP (value) ? default_ : value;
|
0
|
5331 }
|
|
5332 }
|
|
5333
|
20
|
5334 DEFUN ("extent-properties", Fextent_properties, 1, 1, 0, /*
|
284
|
5335 Return a property list of the attributes of EXTENT.
|
0
|
5336 Do not modify this list; use `set-extent-property' instead.
|
20
|
5337 */
|
|
5338 (extent))
|
0
|
5339 {
|
|
5340 EXTENT e, anc;
|
272
|
5341 Lisp_Object result, face, anc_obj;
|
280
|
5342 glyph_layout layout;
|
0
|
5343
|
|
5344 CHECK_EXTENT (extent);
|
|
5345 e = XEXTENT (extent);
|
|
5346 if (!EXTENT_LIVE_P (e))
|
272
|
5347 return cons3 (Qdestroyed, Qt, Qnil);
|
0
|
5348
|
|
5349 anc = extent_ancestor (e);
|
|
5350 XSETEXTENT (anc_obj, anc);
|
|
5351
|
|
5352 /* For efficiency, use the ancestor for all properties except detached */
|
|
5353
|
|
5354 result = extent_plist_slot (anc);
|
272
|
5355
|
|
5356 if (!NILP (face = Fextent_face (anc_obj)))
|
|
5357 result = cons3 (Qface, face, result);
|
|
5358
|
|
5359 if (!NILP (face = Fextent_mouse_face (anc_obj)))
|
|
5360 result = cons3 (Qmouse_face, face, result);
|
|
5361
|
280
|
5362 if ((layout = (glyph_layout) extent_begin_glyph_layout (anc)) != GL_TEXT)
|
272
|
5363 {
|
|
5364 Lisp_Object sym = glyph_layout_to_symbol (layout);
|
|
5365 result = cons3 (Qglyph_layout, sym, result); /* compatibility */
|
|
5366 result = cons3 (Qbegin_glyph_layout, sym, result);
|
|
5367 }
|
|
5368
|
280
|
5369 if ((layout = (glyph_layout) extent_end_glyph_layout (anc)) != GL_TEXT)
|
272
|
5370 result = cons3 (Qend_glyph_layout, glyph_layout_to_symbol (layout), result);
|
0
|
5371
|
|
5372 if (!NILP (extent_end_glyph (anc)))
|
272
|
5373 result = cons3 (Qend_glyph, extent_end_glyph (anc), result);
|
|
5374
|
0
|
5375 if (!NILP (extent_begin_glyph (anc)))
|
272
|
5376 result = cons3 (Qbegin_glyph, extent_begin_glyph (anc), result);
|
0
|
5377
|
|
5378 if (extent_priority (anc) != 0)
|
272
|
5379 result = cons3 (Qpriority, make_int (extent_priority (anc)), result);
|
0
|
5380
|
207
|
5381 if (!NILP (extent_initial_redisplay_function (anc)))
|
272
|
5382 result = cons3 (Qinitial_redisplay_function,
|
|
5383 extent_initial_redisplay_function (anc), result);
|
189
|
5384
|
0
|
5385 if (!NILP (extent_invisible (anc)))
|
272
|
5386 result = cons3 (Qinvisible, extent_invisible (anc), result);
|
0
|
5387
|
|
5388 if (!NILP (extent_read_only (anc)))
|
272
|
5389 result = cons3 (Qread_only, extent_read_only (anc), result);
|
|
5390
|
|
5391 if (extent_normal_field (anc, end_open))
|
|
5392 result = cons3 (Qend_open, Qt, result);
|
|
5393
|
|
5394 if (extent_normal_field (anc, start_open))
|
|
5395 result = cons3 (Qstart_open, Qt, result);
|
|
5396
|
|
5397 if (extent_normal_field (anc, detachable))
|
|
5398 result = cons3 (Qdetachable, Qt, result);
|
|
5399
|
|
5400 if (extent_normal_field (anc, duplicable))
|
|
5401 result = cons3 (Qduplicable, Qt, result);
|
|
5402
|
|
5403 if (extent_normal_field (anc, unique))
|
|
5404 result = cons3 (Qunique, Qt, result);
|
0
|
5405
|
|
5406 /* detached is not an inherited property */
|
|
5407 if (extent_detached_p (e))
|
272
|
5408 result = cons3 (Qdetached, Qt, result);
|
0
|
5409
|
|
5410 return result;
|
|
5411 }
|
|
5412
|
|
5413
|
|
5414 /************************************************************************/
|
|
5415 /* highlighting */
|
|
5416 /************************************************************************/
|
|
5417
|
173
|
5418 /* The display code looks into the Vlast_highlighted_extent variable to
|
0
|
5419 correctly display highlighted extents. This updates that variable,
|
|
5420 and marks the appropriate buffers as needing some redisplay.
|
|
5421 */
|
|
5422 static void
|
|
5423 do_highlight (Lisp_Object extent_obj, int highlight_p)
|
|
5424 {
|
|
5425 if (( highlight_p && (EQ (Vlast_highlighted_extent, extent_obj))) ||
|
|
5426 (!highlight_p && (EQ (Vlast_highlighted_extent, Qnil))))
|
|
5427 return;
|
|
5428 if (EXTENTP (Vlast_highlighted_extent) &&
|
|
5429 EXTENT_LIVE_P (XEXTENT (Vlast_highlighted_extent)))
|
|
5430 {
|
|
5431 /* do not recurse on descendants. Only one extent is highlighted
|
|
5432 at a time. */
|
110
|
5433 extent_changed_for_redisplay (XEXTENT (Vlast_highlighted_extent), 0, 0);
|
0
|
5434 }
|
|
5435 Vlast_highlighted_extent = Qnil;
|
|
5436 if (!NILP (extent_obj)
|
|
5437 && BUFFERP (extent_object (XEXTENT (extent_obj)))
|
|
5438 && highlight_p)
|
|
5439 {
|
110
|
5440 extent_changed_for_redisplay (XEXTENT (extent_obj), 0, 0);
|
0
|
5441 Vlast_highlighted_extent = extent_obj;
|
|
5442 }
|
|
5443 }
|
|
5444
|
20
|
5445 DEFUN ("force-highlight-extent", Fforce_highlight_extent, 1, 2, 0, /*
|
0
|
5446 Highlight or unhighlight the given extent.
|
|
5447 If the second arg is non-nil, it will be highlighted, else dehighlighted.
|
|
5448 This is the same as `highlight-extent', except that it will work even
|
|
5449 on extents without the `mouse-face' property.
|
20
|
5450 */
|
284
|
5451 (extent, highlight_p))
|
|
5452 {
|
|
5453 if (NILP (extent))
|
0
|
5454 highlight_p = Qnil;
|
|
5455 else
|
284
|
5456 XSETEXTENT (extent, decode_extent (extent, DE_MUST_BE_ATTACHED));
|
|
5457 do_highlight (extent, !NILP (highlight_p));
|
0
|
5458 return Qnil;
|
|
5459 }
|
|
5460
|
20
|
5461 DEFUN ("highlight-extent", Fhighlight_extent, 1, 2, 0, /*
|
284
|
5462 Highlight EXTENT, if it is highlightable.
|
0
|
5463 \(that is, if it has the `mouse-face' property).
|
|
5464 If the second arg is non-nil, it will be highlighted, else dehighlighted.
|
|
5465 Highlighted extents are displayed as if they were merged with the face
|
|
5466 or faces specified by the `mouse-face' property.
|
20
|
5467 */
|
284
|
5468 (extent, highlight_p))
|
|
5469 {
|
|
5470 if (EXTENTP (extent) && NILP (extent_mouse_face (XEXTENT (extent))))
|
0
|
5471 return Qnil;
|
|
5472 else
|
284
|
5473 return Fforce_highlight_extent (extent, highlight_p);
|
0
|
5474 }
|
|
5475
|
|
5476
|
|
5477 /************************************************************************/
|
|
5478 /* strings and extents */
|
|
5479 /************************************************************************/
|
|
5480
|
|
5481 /* copy/paste hooks */
|
|
5482
|
|
5483 static int
|
|
5484 run_extent_copy_paste_internal (EXTENT e, Bufpos from, Bufpos to,
|
|
5485 Lisp_Object object,
|
|
5486 Lisp_Object prop)
|
|
5487 {
|
|
5488 /* This function can GC */
|
|
5489 Lisp_Object extent;
|
|
5490 Lisp_Object copy_fn;
|
|
5491 XSETEXTENT (extent, e);
|
|
5492 copy_fn = Fextent_property (extent, prop, Qnil);
|
|
5493 if (!NILP (copy_fn))
|
|
5494 {
|
|
5495 Lisp_Object flag;
|
|
5496 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
5497 GCPRO3 (extent, copy_fn, object);
|
|
5498 if (BUFFERP (object))
|
|
5499 flag = call3_in_buffer (XBUFFER (object), copy_fn, extent,
|
|
5500 make_int (from), make_int (to));
|
|
5501 else
|
|
5502 flag = call3 (copy_fn, extent, make_int (from), make_int (to));
|
|
5503 UNGCPRO;
|
|
5504 if (NILP (flag) || !EXTENT_LIVE_P (XEXTENT (extent)))
|
|
5505 return 0;
|
|
5506 }
|
|
5507 return 1;
|
|
5508 }
|
|
5509
|
|
5510 static int
|
|
5511 run_extent_copy_function (EXTENT e, Bytind from, Bytind to)
|
|
5512 {
|
|
5513 Lisp_Object object = extent_object (e);
|
|
5514 /* This function can GC */
|
|
5515 return run_extent_copy_paste_internal
|
|
5516 (e, buffer_or_string_bytind_to_bufpos (object, from),
|
|
5517 buffer_or_string_bytind_to_bufpos (object, to), object,
|
|
5518 Qcopy_function);
|
|
5519 }
|
|
5520
|
|
5521 static int
|
|
5522 run_extent_paste_function (EXTENT e, Bytind from, Bytind to,
|
|
5523 Lisp_Object object)
|
|
5524 {
|
|
5525 /* This function can GC */
|
|
5526 return run_extent_copy_paste_internal
|
|
5527 (e, buffer_or_string_bytind_to_bufpos (object, from),
|
|
5528 buffer_or_string_bytind_to_bufpos (object, to), object,
|
|
5529 Qpaste_function);
|
|
5530 }
|
|
5531
|
173
|
5532 static void
|
0
|
5533 update_extent (EXTENT extent, Bytind from, Bytind to)
|
|
5534 {
|
|
5535 set_extent_endpoints (extent, from, to, Qnil);
|
|
5536 }
|
|
5537
|
|
5538 /* Insert an extent, usually from the dup_list of a string which
|
|
5539 has just been inserted.
|
|
5540 This code does not handle the case of undo.
|
|
5541 */
|
|
5542 static Lisp_Object
|
|
5543 insert_extent (EXTENT extent, Bytind new_start, Bytind new_end,
|
|
5544 Lisp_Object object, int run_hooks)
|
|
5545 {
|
|
5546 /* This function can GC */
|
|
5547 Lisp_Object tmp;
|
|
5548
|
|
5549 if (!EQ (extent_object (extent), object))
|
|
5550 goto copy_it;
|
|
5551
|
|
5552 if (extent_detached_p (extent))
|
|
5553 {
|
|
5554 if (run_hooks &&
|
|
5555 !run_extent_paste_function (extent, new_start, new_end, object))
|
|
5556 /* The paste-function said don't re-attach this extent here. */
|
|
5557 return Qnil;
|
|
5558 else
|
|
5559 update_extent (extent, new_start, new_end);
|
|
5560 }
|
|
5561 else
|
|
5562 {
|
|
5563 Bytind exstart = extent_endpoint_bytind (extent, 0);
|
|
5564 Bytind exend = extent_endpoint_bytind (extent, 1);
|
173
|
5565
|
0
|
5566 if (exend < new_start || exstart > new_end)
|
|
5567 goto copy_it;
|
|
5568 else
|
|
5569 {
|
|
5570 new_start = min (exstart, new_start);
|
|
5571 new_end = max (exend, new_end);
|
|
5572 if (exstart != new_start || exend != new_end)
|
|
5573 update_extent (extent, new_start, new_end);
|
|
5574 }
|
|
5575 }
|
|
5576
|
|
5577 XSETEXTENT (tmp, extent);
|
|
5578 return tmp;
|
|
5579
|
|
5580 copy_it:
|
|
5581 if (run_hooks &&
|
|
5582 !run_extent_paste_function (extent, new_start, new_end, object))
|
|
5583 /* The paste-function said don't attach a copy of the extent here. */
|
|
5584 return Qnil;
|
|
5585 else
|
|
5586 {
|
|
5587 XSETEXTENT (tmp, copy_extent (extent, new_start, new_end, object));
|
|
5588 return tmp;
|
|
5589 }
|
|
5590 }
|
|
5591
|
20
|
5592 DEFUN ("insert-extent", Finsert_extent, 1, 5, 0, /*
|
0
|
5593 Insert EXTENT from START to END in BUFFER-OR-STRING.
|
|
5594 BUFFER-OR-STRING defaults to the current buffer if omitted.
|
|
5595 This operation does not insert any characters,
|
|
5596 but otherwise acts as if there were a replicating extent whose
|
|
5597 parent is EXTENT in some string that was just inserted.
|
|
5598 Returns the newly-inserted extent.
|
|
5599 The fourth arg, NO-HOOKS, can be used to inhibit the running of the
|
|
5600 extent's `paste-function' property if it has one.
|
|
5601 See documentation on `detach-extent' for a discussion of undo recording.
|
20
|
5602 */
|
|
5603 (extent, start, end, no_hooks, buffer_or_string))
|
0
|
5604 {
|
|
5605 EXTENT ext = decode_extent (extent, 0);
|
|
5606 Lisp_Object copy;
|
|
5607 Bytind s, e;
|
|
5608
|
|
5609 buffer_or_string = decode_buffer_or_string (buffer_or_string);
|
|
5610 get_buffer_or_string_range_byte (buffer_or_string, start, end, &s, &e,
|
|
5611 GB_ALLOW_PAST_ACCESSIBLE);
|
|
5612
|
|
5613 copy = insert_extent (ext, s, e, buffer_or_string, NILP (no_hooks));
|
|
5614 if (EXTENTP (copy))
|
|
5615 {
|
|
5616 if (extent_duplicable_p (XEXTENT (copy)))
|
|
5617 record_extent (copy, 1);
|
|
5618 }
|
|
5619 return copy;
|
|
5620 }
|
|
5621
|
|
5622
|
|
5623 /* adding buffer extents to a string */
|
|
5624
|
|
5625 struct add_string_extents_arg
|
|
5626 {
|
|
5627 Bytind from;
|
|
5628 Bytecount length;
|
|
5629 Lisp_Object string;
|
|
5630 };
|
|
5631
|
|
5632 static int
|
|
5633 add_string_extents_mapper (EXTENT extent, void *arg)
|
|
5634 {
|
|
5635 /* This function can GC */
|
173
|
5636 struct add_string_extents_arg *closure =
|
0
|
5637 (struct add_string_extents_arg *) arg;
|
|
5638 Bytecount start = extent_endpoint_bytind (extent, 0) - closure->from;
|
|
5639 Bytecount end = extent_endpoint_bytind (extent, 1) - closure->from;
|
173
|
5640
|
0
|
5641 if (extent_duplicable_p (extent))
|
|
5642 {
|
|
5643 EXTENT e;
|
|
5644
|
|
5645 start = max (start, 0);
|
|
5646 end = min (end, closure->length);
|
|
5647
|
|
5648 /* Run the copy-function to give an extent the option of
|
|
5649 not being copied into the string (or kill ring).
|
|
5650 */
|
|
5651 if (extent_duplicable_p (extent) &&
|
|
5652 !run_extent_copy_function (extent, start + closure->from,
|
|
5653 end + closure->from))
|
|
5654 return 0;
|
|
5655 e = copy_extent (extent, start, end, closure->string);
|
|
5656 }
|
|
5657
|
|
5658 return 0;
|
|
5659 }
|
|
5660
|
|
5661 /* Add the extents in buffer BUF from OPOINT to OPOINT+LENGTH to
|
|
5662 the string STRING. */
|
173
|
5663 void
|
0
|
5664 add_string_extents (Lisp_Object string, struct buffer *buf, Bytind opoint,
|
|
5665 Bytecount length)
|
|
5666 {
|
|
5667 /* This function can GC */
|
|
5668 struct add_string_extents_arg closure;
|
|
5669 struct gcpro gcpro1, gcpro2;
|
|
5670 Lisp_Object buffer;
|
|
5671
|
|
5672 closure.from = opoint;
|
|
5673 closure.length = length;
|
|
5674 closure.string = string;
|
|
5675 buffer = make_buffer (buf);
|
|
5676 GCPRO2 (buffer, string);
|
173
|
5677 map_extents_bytind (opoint, opoint + length, add_string_extents_mapper,
|
0
|
5678 (void *) &closure, buffer, 0,
|
|
5679 /* ignore extents that just abut the region */
|
|
5680 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
|
|
5681 /* we are calling E-Lisp (the extent's copy function)
|
|
5682 so anything might happen */
|
|
5683 ME_MIGHT_CALL_ELISP);
|
|
5684 UNGCPRO;
|
|
5685 }
|
|
5686
|
|
5687 struct splice_in_string_extents_arg
|
|
5688 {
|
|
5689 Bytecount pos;
|
|
5690 Bytecount length;
|
|
5691 Bytind opoint;
|
|
5692 Lisp_Object buffer;
|
|
5693 };
|
|
5694
|
|
5695 static int
|
|
5696 splice_in_string_extents_mapper (EXTENT extent, void *arg)
|
|
5697 {
|
|
5698 /* This function can GC */
|
173
|
5699 struct splice_in_string_extents_arg *closure =
|
0
|
5700 (struct splice_in_string_extents_arg *) arg;
|
|
5701 /* BASE_START and BASE_END are the limits in the buffer of the string
|
|
5702 that was just inserted.
|
|
5703
|
|
5704 NEW_START and NEW_END are the prospective buffer positions of the
|
|
5705 extent that is going into the buffer. */
|
|
5706 Bytind base_start = closure->opoint;
|
|
5707 Bytind base_end = base_start + closure->length;
|
|
5708 Bytind new_start = (base_start + extent_endpoint_bytind (extent, 0) -
|
|
5709 closure->pos);
|
|
5710 Bytind new_end = (base_start + extent_endpoint_bytind (extent, 1) -
|
|
5711 closure->pos);
|
|
5712
|
|
5713 if (new_start < base_start)
|
|
5714 new_start = base_start;
|
|
5715 if (new_end > base_end)
|
|
5716 new_end = base_end;
|
|
5717 if (new_end <= new_start)
|
|
5718 return 0;
|
|
5719
|
|
5720 if (!extent_duplicable_p (extent))
|
|
5721 return 0;
|
|
5722
|
96
|
5723 if (!inside_undo &&
|
|
5724 !run_extent_paste_function (extent, new_start, new_end,
|
|
5725 closure->buffer))
|
|
5726 return 0;
|
|
5727 copy_extent (extent, new_start, new_end, closure->buffer);
|
|
5728
|
0
|
5729 return 0;
|
|
5730 }
|
|
5731
|
|
5732 /* We have just inserted a section of STRING (starting at POS, of
|
|
5733 length LENGTH) into buffer BUF at OPOINT. Do whatever is necessary
|
|
5734 to get the string's extents into the buffer. */
|
|
5735
|
173
|
5736 void
|
0
|
5737 splice_in_string_extents (Lisp_Object string, struct buffer *buf,
|
|
5738 Bytind opoint, Bytecount length, Bytecount pos)
|
|
5739 {
|
|
5740 struct splice_in_string_extents_arg closure;
|
|
5741 struct gcpro gcpro1, gcpro2;
|
|
5742 Lisp_Object buffer;
|
|
5743
|
|
5744 buffer = make_buffer (buf);
|
|
5745 closure.opoint = opoint;
|
|
5746 closure.pos = pos;
|
|
5747 closure.length = length;
|
|
5748 closure.buffer = buffer;
|
|
5749 GCPRO2 (buffer, string);
|
|
5750 map_extents_bytind (pos, pos + length,
|
173
|
5751 splice_in_string_extents_mapper,
|
0
|
5752 (void *) &closure, string, 0,
|
|
5753 /* ignore extents that just abut the region */
|
|
5754 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
|
|
5755 /* we are calling E-Lisp (the extent's copy function)
|
|
5756 so anything might happen */
|
|
5757 ME_MIGHT_CALL_ELISP);
|
|
5758 UNGCPRO;
|
|
5759 }
|
|
5760
|
|
5761 struct copy_string_extents_arg
|
|
5762 {
|
|
5763 Bytecount new_pos;
|
|
5764 Bytecount old_pos;
|
|
5765 Bytecount length;
|
|
5766 Lisp_Object new_string;
|
|
5767 };
|
|
5768
|
|
5769 struct copy_string_extents_1_arg
|
|
5770 {
|
|
5771 Lisp_Object parent_in_question;
|
|
5772 EXTENT found_extent;
|
|
5773 };
|
173
|
5774
|
0
|
5775 static int
|
|
5776 copy_string_extents_mapper (EXTENT extent, void *arg)
|
|
5777 {
|
173
|
5778 struct copy_string_extents_arg *closure =
|
0
|
5779 (struct copy_string_extents_arg *) arg;
|
|
5780 Bytecount old_start, old_end;
|
|
5781 Bytecount new_start, new_end;
|
|
5782
|
|
5783 old_start = extent_endpoint_bytind (extent, 0);
|
|
5784 old_end = extent_endpoint_bytind (extent, 1);
|
|
5785
|
|
5786 old_start = max (closure->old_pos, old_start);
|
|
5787 old_end = min (closure->old_pos + closure->length, old_end);
|
|
5788
|
|
5789 if (old_start >= old_end)
|
|
5790 return 0;
|
|
5791
|
|
5792 new_start = old_start + closure->new_pos - closure->old_pos;
|
|
5793 new_end = old_end + closure->new_pos - closure->old_pos;
|
|
5794
|
|
5795 copy_extent (extent,
|
|
5796 old_start + closure->new_pos - closure->old_pos,
|
|
5797 old_end + closure->new_pos - closure->old_pos,
|
|
5798 closure->new_string);
|
|
5799 return 0;
|
|
5800 }
|
|
5801
|
|
5802 /* The string NEW_STRING was partially constructed from OLD_STRING.
|
|
5803 In particular, the section of length LEN starting at NEW_POS in
|
|
5804 NEW_STRING came from the section of the same length starting at
|
|
5805 OLD_POS in OLD_STRING. Copy the extents as appropriate. */
|
|
5806
|
173
|
5807 void
|
0
|
5808 copy_string_extents (Lisp_Object new_string, Lisp_Object old_string,
|
|
5809 Bytecount new_pos, Bytecount old_pos,
|
|
5810 Bytecount length)
|
|
5811 {
|
|
5812 struct copy_string_extents_arg closure;
|
|
5813 struct gcpro gcpro1, gcpro2;
|
|
5814
|
|
5815 closure.new_pos = new_pos;
|
|
5816 closure.old_pos = old_pos;
|
|
5817 closure.new_string = new_string;
|
|
5818 closure.length = length;
|
|
5819 GCPRO2 (new_string, old_string);
|
|
5820 map_extents_bytind (old_pos, old_pos + length,
|
|
5821 copy_string_extents_mapper,
|
|
5822 (void *) &closure, old_string, 0,
|
|
5823 /* ignore extents that just abut the region */
|
|
5824 ME_END_CLOSED | ME_ALL_EXTENTS_OPEN |
|
|
5825 /* we are calling E-Lisp (the extent's copy function)
|
|
5826 so anything might happen */
|
|
5827 ME_MIGHT_CALL_ELISP);
|
|
5828 UNGCPRO;
|
|
5829 }
|
|
5830
|
|
5831 /* Checklist for sanity checking:
|
|
5832 - {kill, yank, copy} at {open, closed} {start, end} of {writable, read-only} extent
|
|
5833 - {kill, copy} & yank {once, repeatedly} duplicable extent in {same, different} buffer
|
|
5834 */
|
|
5835
|
|
5836
|
|
5837 /************************************************************************/
|
|
5838 /* text properties */
|
|
5839 /************************************************************************/
|
|
5840
|
|
5841 /* Text properties
|
|
5842 Originally this stuff was implemented in lisp (all of the functionality
|
|
5843 exists to make that possible) but speed was a problem.
|
|
5844 */
|
|
5845
|
|
5846 Lisp_Object Qtext_prop;
|
|
5847 Lisp_Object Qtext_prop_extent_paste_function;
|
|
5848
|
|
5849 static Lisp_Object
|
|
5850 get_text_property_bytind (Bytind position, Lisp_Object prop,
|
|
5851 Lisp_Object object, enum extent_at_flag fl,
|
|
5852 int text_props_only)
|
|
5853 {
|
|
5854 Lisp_Object extent;
|
|
5855
|
|
5856 /* text_props_only specifies whether we only consider text-property
|
|
5857 extents (those with the 'text-prop property set) or all extents. */
|
|
5858 if (!text_props_only)
|
|
5859 extent = extent_at_bytind (position, object, prop, 0, fl);
|
|
5860 else
|
|
5861 {
|
|
5862 EXTENT prior = 0;
|
|
5863 while (1)
|
|
5864 {
|
|
5865 extent = extent_at_bytind (position, object, Qtext_prop, prior,
|
|
5866 fl);
|
|
5867 if (NILP (extent))
|
|
5868 return Qnil;
|
|
5869 if (EQ (prop, Fextent_property (extent, Qtext_prop, Qnil)))
|
|
5870 break;
|
|
5871 prior = XEXTENT (extent);
|
|
5872 }
|
|
5873 }
|
|
5874
|
|
5875 if (!NILP (extent))
|
|
5876 return Fextent_property (extent, prop, Qnil);
|
|
5877 if (!NILP (Vdefault_text_properties))
|
|
5878 return Fplist_get (Vdefault_text_properties, prop, Qnil);
|
|
5879 return Qnil;
|
|
5880 }
|
|
5881
|
|
5882 static Lisp_Object
|
|
5883 get_text_property_1 (Lisp_Object pos, Lisp_Object prop, Lisp_Object object,
|
|
5884 Lisp_Object at_flag, int text_props_only)
|
|
5885 {
|
|
5886 Bytind position;
|
|
5887 int invert = 0;
|
|
5888
|
|
5889 object = decode_buffer_or_string (object);
|
|
5890 position = get_buffer_or_string_pos_byte (object, pos, GB_NO_ERROR_IF_BAD);
|
|
5891
|
|
5892 /* We canonicalize the start/end-open/closed properties to the
|
|
5893 non-default version -- "adding" the default property really
|
|
5894 needs to remove the non-default one. See below for more
|
|
5895 on this. */
|
|
5896 if (EQ (prop, Qstart_closed))
|
|
5897 {
|
|
5898 prop = Qstart_open;
|
|
5899 invert = 1;
|
|
5900 }
|
|
5901
|
|
5902 if (EQ (prop, Qend_open))
|
|
5903 {
|
|
5904 prop = Qend_closed;
|
|
5905 invert = 1;
|
|
5906 }
|
|
5907
|
|
5908 {
|
|
5909 Lisp_Object val =
|
|
5910 get_text_property_bytind (position, prop, object,
|
|
5911 decode_extent_at_flag (at_flag),
|
|
5912 text_props_only);
|
|
5913 if (invert)
|
|
5914 val = NILP (val) ? Qt : Qnil;
|
|
5915 return val;
|
|
5916 }
|
|
5917 }
|
|
5918
|
20
|
5919 DEFUN ("get-text-property", Fget_text_property, 2, 4, 0, /*
|
272
|
5920 Return the value of the PROP property at the given position.
|
0
|
5921 Optional arg OBJECT specifies the buffer or string to look in, and
|
|
5922 defaults to the current buffer.
|
185
|
5923 Optional arg AT-FLAG controls what it means for a property to be "at"
|
0
|
5924 a position, and has the same meaning as in `extent-at'.
|
|
5925 This examines only those properties added with `put-text-property'.
|
|
5926 See also `get-char-property'.
|
20
|
5927 */
|
|
5928 (pos, prop, object, at_flag))
|
0
|
5929 {
|
|
5930 return get_text_property_1 (pos, prop, object, at_flag, 1);
|
|
5931 }
|
|
5932
|
20
|
5933 DEFUN ("get-char-property", Fget_char_property, 2, 4, 0, /*
|
272
|
5934 Return the value of the PROP property at the given position.
|
0
|
5935 Optional arg OBJECT specifies the buffer or string to look in, and
|
|
5936 defaults to the current buffer.
|
185
|
5937 Optional arg AT-FLAG controls what it means for a property to be "at"
|
0
|
5938 a position, and has the same meaning as in `extent-at'.
|
|
5939 This examines properties on all extents.
|
|
5940 See also `get-text-property'.
|
20
|
5941 */
|
|
5942 (pos, prop, object, at_flag))
|
0
|
5943 {
|
|
5944 return get_text_property_1 (pos, prop, object, at_flag, 0);
|
|
5945 }
|
|
5946
|
|
5947 /* About start/end-open/closed:
|
|
5948
|
|
5949 These properties have to be handled specially because of their
|
|
5950 strange behavior. If I put the "start-open" property on a region,
|
|
5951 then *all* text-property extents in the region have to have their
|
|
5952 start be open. This is unlike all other properties, which don't
|
|
5953 affect the extents of text properties other than their own.
|
|
5954
|
|
5955 So:
|
|
5956
|
|
5957 1) We have to map start-closed to (not start-open) and end-open
|
|
5958 to (not end-closed) -- i.e. adding the default is really the
|
|
5959 same as remove the non-default property. It won't work, for
|
|
5960 example, to have both "start-open" and "start-closed" on
|
|
5961 the same region.
|
|
5962 2) Whenever we add one of these properties, we go through all
|
|
5963 text-property extents in the region and set the appropriate
|
|
5964 open/closedness on them.
|
|
5965 3) Whenever we change a text-property extent for a property,
|
|
5966 we have to make sure we set the open/closedness properly.
|
|
5967
|
|
5968 (2) and (3) together rely on, and maintain, the invariant
|
|
5969 that the open/closedness of text-property extents is correct
|
|
5970 at the beginning and end of each operation.
|
|
5971 */
|
|
5972
|
|
5973 struct put_text_prop_arg
|
|
5974 {
|
|
5975 Lisp_Object prop, value; /* The property and value we are storing */
|
|
5976 Bytind start, end; /* The region into which we are storing it */
|
|
5977 Lisp_Object object;
|
|
5978 Lisp_Object the_extent; /* Our chosen extent; this is used for
|
|
5979 communication between subsequent passes. */
|
|
5980 int changed_p; /* Output: whether we have modified anything */
|
|
5981 };
|
|
5982
|
|
5983 static int
|
|
5984 put_text_prop_mapper (EXTENT e, void *arg)
|
|
5985 {
|
|
5986 struct put_text_prop_arg *closure = (struct put_text_prop_arg *) arg;
|
|
5987
|
|
5988 Lisp_Object object = closure->object;
|
|
5989 Lisp_Object value = closure->value;
|
173
|
5990 Bytind e_start, e_end;
|
0
|
5991 Bytind start = closure->start;
|
|
5992 Bytind end = closure->end;
|
|
5993 Lisp_Object extent, e_val;
|
|
5994 int is_eq;
|
|
5995
|
|
5996 XSETEXTENT (extent, e);
|
|
5997
|
|
5998 /* Note: in some cases when the property itself is 'start-open
|
|
5999 or 'end-closed, the checks to set the openness may do a bit
|
|
6000 of extra work; but it won't hurt because we then fix up the
|
2
|
6001 openness later on in put_text_prop_openness_mapper(). */
|
0
|
6002 if (!EQ (Fextent_property (extent, Qtext_prop, Qnil), closure->prop))
|
|
6003 /* It's not for this property; do nothing. */
|
|
6004 return 0;
|
|
6005
|
|
6006 e_start = extent_endpoint_bytind (e, 0);
|
|
6007 e_end = extent_endpoint_bytind (e, 1);
|
|
6008 e_val = Fextent_property (extent, closure->prop, Qnil);
|
|
6009 is_eq = EQ (value, e_val);
|
|
6010
|
|
6011 if (!NILP (value) && NILP (closure->the_extent) && is_eq)
|
|
6012 {
|
|
6013 /* We want there to be an extent here at the end, and we haven't picked
|
|
6014 one yet, so use this one. Extend it as necessary. We only reuse an
|
|
6015 extent which has an EQ value for the prop in question to avoid
|
|
6016 side-effecting the kill ring (that is, we never change the property
|
|
6017 on an extent after it has been created.)
|
|
6018 */
|
|
6019 if (e_start != start || e_end != end)
|
|
6020 {
|
|
6021 Bytind new_start = min (e_start, start);
|
|
6022 Bytind new_end = max (e_end, end);
|
|
6023 set_extent_endpoints (e, new_start, new_end, Qnil);
|
|
6024 /* If we changed the endpoint, then we need to set its
|
|
6025 openness. */
|
|
6026 set_extent_openness (e, new_start != e_start
|
|
6027 ? !NILP (get_text_property_bytind
|
|
6028 (start, Qstart_open, object,
|
|
6029 EXTENT_AT_AFTER, 1)) : -1,
|
|
6030 new_end != e_end
|
|
6031 ? NILP (get_text_property_bytind
|
|
6032 (end - 1, Qend_closed, object,
|
|
6033 EXTENT_AT_AFTER, 1))
|
|
6034 : -1);
|
|
6035 closure->changed_p = 1;
|
|
6036 }
|
|
6037 closure->the_extent = extent;
|
|
6038 }
|
|
6039
|
|
6040 /* Even if we're adding a prop, at this point, we want all other extents of
|
|
6041 this prop to go away (as now they overlap). So the theory here is that,
|
|
6042 when we are adding a prop to a region that has multiple (disjoint)
|
2
|
6043 occurrences of that prop in it already, we pick one of those and extend
|
0
|
6044 it, and remove the others.
|
|
6045 */
|
|
6046
|
|
6047 else if (EQ (extent, closure->the_extent))
|
|
6048 {
|
|
6049 /* just in case map-extents hits it again (does that happen?) */
|
|
6050 ;
|
|
6051 }
|
|
6052 else if (e_start >= start && e_end <= end)
|
|
6053 {
|
|
6054 /* Extent is contained in region; remove it. Don't destroy or modify
|
|
6055 it, because we don't want to change the attributes pointed to by the
|
|
6056 duplicates in the kill ring.
|
|
6057 */
|
|
6058 extent_detach (e);
|
|
6059 closure->changed_p = 1;
|
|
6060 }
|
|
6061 else if (!NILP (closure->the_extent) &&
|
|
6062 is_eq &&
|
|
6063 e_start <= end &&
|
|
6064 e_end >= start)
|
|
6065 {
|
|
6066 EXTENT te = XEXTENT (closure->the_extent);
|
|
6067 /* This extent overlaps, and has the same prop/value as the extent we've
|
|
6068 decided to reuse, so we can remove this existing extent as well (the
|
|
6069 whole thing, even the part outside of the region) and extend
|
|
6070 the-extent to cover it, resulting in the minimum number of extents in
|
|
6071 the buffer.
|
|
6072 */
|
|
6073 Bytind the_start = extent_endpoint_bytind (te, 0);
|
|
6074 Bytind the_end = extent_endpoint_bytind (te, 1);
|
|
6075 if (e_start != the_start && /* note AND not OR -- hmm, why is this
|
|
6076 the case? I think it's because the
|
|
6077 assumption that the text-property
|
|
6078 extents don't overlap makes it
|
|
6079 OK; changing it to an OR would
|
|
6080 result in changed_p sometimes getting
|
|
6081 falsely marked. Is this bad? */
|
|
6082 e_end != the_end)
|
|
6083 {
|
|
6084 Bytind new_start = min (e_start, the_start);
|
|
6085 Bytind new_end = max (e_end, the_end);
|
|
6086 set_extent_endpoints (te, new_start, new_end, Qnil);
|
|
6087 /* If we changed the endpoint, then we need to set its
|
|
6088 openness. We are setting the endpoint to be the same as
|
|
6089 that of the extent we're about to remove, and we assume
|
|
6090 (the invariant mentioned above) that extent has the
|
|
6091 proper endpoint setting, so we just use it. */
|
|
6092 set_extent_openness (te, new_start != e_start ?
|
272
|
6093 (int) extent_start_open_p (e) : -1,
|
0
|
6094 new_end != e_end ?
|
272
|
6095 (int) extent_end_open_p (e) : -1);
|
0
|
6096 closure->changed_p = 1;
|
|
6097 }
|
|
6098 extent_detach (e);
|
|
6099 }
|
|
6100 else if (e_end <= end)
|
|
6101 {
|
|
6102 /* Extent begins before start but ends before end, so we can just
|
|
6103 decrease its end position.
|
|
6104 */
|
|
6105 if (e_end != start)
|
|
6106 {
|
|
6107 set_extent_endpoints (e, e_start, start, Qnil);
|
|
6108 set_extent_openness (e, -1, NILP (get_text_property_bytind
|
|
6109 (start - 1, Qend_closed, object,
|
|
6110 EXTENT_AT_AFTER, 1)));
|
|
6111 closure->changed_p = 1;
|
|
6112 }
|
|
6113 }
|
|
6114 else if (e_start >= start)
|
|
6115 {
|
|
6116 /* Extent ends after end but begins after start, so we can just
|
|
6117 increase its start position.
|
|
6118 */
|
|
6119 if (e_start != end)
|
|
6120 {
|
|
6121 set_extent_endpoints (e, end, e_end, Qnil);
|
|
6122 set_extent_openness (e, !NILP (get_text_property_bytind
|
|
6123 (end, Qstart_open, object,
|
|
6124 EXTENT_AT_AFTER, 1)), -1);
|
|
6125 closure->changed_p = 1;
|
|
6126 }
|
|
6127 }
|
|
6128 else
|
|
6129 {
|
|
6130 /* Otherwise, `extent' straddles the region. We need to split it.
|
|
6131 */
|
|
6132 set_extent_endpoints (e, e_start, start, Qnil);
|
|
6133 set_extent_openness (e, -1, NILP (get_text_property_bytind
|
|
6134 (start - 1, Qend_closed, object,
|
|
6135 EXTENT_AT_AFTER, 1)));
|
|
6136 set_extent_openness (copy_extent (e, end, e_end, extent_object (e)),
|
|
6137 !NILP (get_text_property_bytind
|
|
6138 (end, Qstart_open, object,
|
|
6139 EXTENT_AT_AFTER, 1)), -1);
|
|
6140 closure->changed_p = 1;
|
|
6141 }
|
|
6142
|
|
6143 return 0; /* to continue mapping. */
|
|
6144 }
|
|
6145
|
|
6146 static int
|
|
6147 put_text_prop_openness_mapper (EXTENT e, void *arg)
|
|
6148 {
|
|
6149 struct put_text_prop_arg *closure = (struct put_text_prop_arg *) arg;
|
173
|
6150 Bytind e_start, e_end;
|
0
|
6151 Bytind start = closure->start;
|
|
6152 Bytind end = closure->end;
|
|
6153 Lisp_Object extent;
|
|
6154 XSETEXTENT (extent, e);
|
|
6155 e_start = extent_endpoint_bytind (e, 0);
|
|
6156 e_end = extent_endpoint_bytind (e, 1);
|
|
6157
|
|
6158 if (NILP (Fextent_property (extent, Qtext_prop, Qnil)))
|
|
6159 {
|
|
6160 /* It's not a text-property extent; do nothing. */
|
|
6161 ;
|
|
6162 }
|
|
6163 /* Note end conditions and NILP/!NILP's carefully. */
|
|
6164 else if (EQ (closure->prop, Qstart_open)
|
|
6165 && e_start >= start && e_start < end)
|
|
6166 set_extent_openness (e, !NILP (closure->value), -1);
|
|
6167 else if (EQ (closure->prop, Qend_closed)
|
|
6168 && e_end > start && e_end <= end)
|
|
6169 set_extent_openness (e, -1, NILP (closure->value));
|
|
6170
|
|
6171 return 0; /* to continue mapping. */
|
|
6172 }
|
|
6173
|
|
6174 static int
|
|
6175 put_text_prop (Bytind start, Bytind end, Lisp_Object object,
|
|
6176 Lisp_Object prop, Lisp_Object value,
|
|
6177 int duplicable_p)
|
|
6178 {
|
|
6179 /* This function can GC */
|
|
6180 struct put_text_prop_arg closure;
|
|
6181
|
|
6182 if (start == end) /* There are no characters in the region. */
|
|
6183 return 0;
|
|
6184
|
|
6185 /* convert to the non-default versions, since a nil property is
|
|
6186 the same as it not being present. */
|
|
6187 if (EQ (prop, Qstart_closed))
|
|
6188 {
|
|
6189 prop = Qstart_open;
|
|
6190 value = NILP (value) ? Qt : Qnil;
|
|
6191 }
|
|
6192 else if (EQ (prop, Qend_open))
|
|
6193 {
|
|
6194 prop = Qend_closed;
|
|
6195 value = NILP (value) ? Qt : Qnil;
|
|
6196 }
|
|
6197
|
|
6198 value = canonicalize_extent_property (prop, value);
|
|
6199
|
|
6200 closure.prop = prop;
|
|
6201 closure.value = value;
|
|
6202 closure.start = start;
|
|
6203 closure.end = end;
|
|
6204 closure.object = object;
|
|
6205 closure.changed_p = 0;
|
|
6206 closure.the_extent = Qnil;
|
|
6207
|
|
6208 map_extents_bytind (start, end,
|
|
6209 put_text_prop_mapper,
|
|
6210 (void *) &closure, object, 0,
|
|
6211 /* get all extents that abut the region */
|
|
6212 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
|
|
6213 /* it might QUIT or error if the user has
|
|
6214 fucked with the extent plist. */
|
120
|
6215 /* #### dmoore - I think this should include
|
|
6216 ME_MIGHT_MOVE_SOE, since the callback function
|
|
6217 might recurse back into map_extents_bytind. */
|
0
|
6218 ME_MIGHT_THROW |
|
|
6219 ME_MIGHT_MODIFY_EXTENTS);
|
|
6220
|
|
6221 /* If we made it through the loop without reusing an extent
|
|
6222 (and we want there to be one) make it now.
|
|
6223 */
|
|
6224 if (!NILP (value) && NILP (closure.the_extent))
|
|
6225 {
|
272
|
6226 Lisp_Object extent;
|
0
|
6227
|
|
6228 XSETEXTENT (extent, make_extent_internal (object, start, end));
|
|
6229 closure.changed_p = 1;
|
|
6230 Fset_extent_property (extent, Qtext_prop, prop);
|
|
6231 Fset_extent_property (extent, prop, value);
|
|
6232 if (duplicable_p)
|
|
6233 {
|
|
6234 extent_duplicable_p (XEXTENT (extent)) = 1;
|
|
6235 Fset_extent_property (extent, Qpaste_function,
|
|
6236 Qtext_prop_extent_paste_function);
|
|
6237 }
|
|
6238 set_extent_openness (XEXTENT (extent),
|
|
6239 !NILP (get_text_property_bytind
|
|
6240 (start, Qstart_open, object,
|
|
6241 EXTENT_AT_AFTER, 1)),
|
|
6242 NILP (get_text_property_bytind
|
|
6243 (end - 1, Qend_closed, object,
|
|
6244 EXTENT_AT_AFTER, 1)));
|
|
6245 }
|
|
6246
|
|
6247 if (EQ (prop, Qstart_open) || EQ (prop, Qend_closed))
|
|
6248 {
|
|
6249 map_extents_bytind (start, end,
|
|
6250 put_text_prop_openness_mapper,
|
|
6251 (void *) &closure, object, 0,
|
|
6252 /* get all extents that abut the region */
|
|
6253 ME_ALL_EXTENTS_CLOSED | ME_END_CLOSED |
|
|
6254 ME_MIGHT_MODIFY_EXTENTS);
|
|
6255 }
|
|
6256
|
|
6257 return closure.changed_p;
|
|
6258 }
|
|
6259
|
20
|
6260 DEFUN ("put-text-property", Fput_text_property, 4, 5, 0, /*
|
0
|
6261 Adds the given property/value to all characters in the specified region.
|
|
6262 The property is conceptually attached to the characters rather than the
|
|
6263 region. The properties are copied when the characters are copied/pasted.
|
|
6264 Fifth argument OBJECT is the buffer or string containing the text, and
|
|
6265 defaults to the current buffer.
|
20
|
6266 */
|
|
6267 (start, end, prop, value, object))
|
0
|
6268 {
|
|
6269 /* This function can GC */
|
|
6270 Bytind s, e;
|
|
6271
|
|
6272 object = decode_buffer_or_string (object);
|
|
6273 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
|
|
6274 put_text_prop (s, e, object, prop, value, 1);
|
|
6275 return prop;
|
|
6276 }
|
|
6277
|
280
|
6278 DEFUN ("put-nonduplicable-text-property", Fput_nonduplicable_text_property,
|
|
6279 4, 5, 0, /*
|
0
|
6280 Adds the given property/value to all characters in the specified region.
|
|
6281 The property is conceptually attached to the characters rather than the
|
|
6282 region, however the properties will not be copied when the characters
|
|
6283 are copied.
|
|
6284 Fifth argument OBJECT is the buffer or string containing the text, and
|
|
6285 defaults to the current buffer.
|
20
|
6286 */
|
|
6287 (start, end, prop, value, object))
|
0
|
6288 {
|
|
6289 /* This function can GC */
|
|
6290 Bytind s, e;
|
|
6291
|
|
6292 object = decode_buffer_or_string (object);
|
|
6293 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
|
|
6294 put_text_prop (s, e, object, prop, value, 0);
|
|
6295 return prop;
|
|
6296 }
|
|
6297
|
20
|
6298 DEFUN ("add-text-properties", Fadd_text_properties, 3, 4, 0, /*
|
0
|
6299 Add properties to the characters from START to END.
|
|
6300 The third argument PROPS is a property list specifying the property values
|
|
6301 to add. The optional fourth argument, OBJECT, is the buffer or string
|
|
6302 containing the text and defaults to the current buffer. Returns t if
|
|
6303 any property was changed, nil otherwise.
|
20
|
6304 */
|
|
6305 (start, end, props, object))
|
0
|
6306 {
|
|
6307 /* This function can GC */
|
|
6308 int changed = 0;
|
|
6309 Bytind s, e;
|
|
6310
|
|
6311 object = decode_buffer_or_string (object);
|
|
6312 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
|
|
6313 CHECK_LIST (props);
|
|
6314 for (; !NILP (props); props = Fcdr (Fcdr (props)))
|
|
6315 {
|
|
6316 Lisp_Object prop = XCAR (props);
|
|
6317 Lisp_Object value = Fcar (XCDR (props));
|
|
6318 changed |= put_text_prop (s, e, object, prop, value, 1);
|
|
6319 }
|
173
|
6320 return changed ? Qt : Qnil;
|
0
|
6321 }
|
|
6322
|
|
6323
|
280
|
6324 DEFUN ("add-nonduplicable-text-properties", Fadd_nonduplicable_text_properties,
|
|
6325 3, 4, 0, /*
|
0
|
6326 Add nonduplicable properties to the characters from START to END.
|
272
|
6327 \(The properties will not be copied when the characters are copied.)
|
0
|
6328 The third argument PROPS is a property list specifying the property values
|
|
6329 to add. The optional fourth argument, OBJECT, is the buffer or string
|
|
6330 containing the text and defaults to the current buffer. Returns t if
|
|
6331 any property was changed, nil otherwise.
|
20
|
6332 */
|
|
6333 (start, end, props, object))
|
0
|
6334 {
|
|
6335 /* This function can GC */
|
|
6336 int changed = 0;
|
|
6337 Bytind s, e;
|
|
6338
|
|
6339 object = decode_buffer_or_string (object);
|
|
6340 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
|
|
6341 CHECK_LIST (props);
|
|
6342 for (; !NILP (props); props = Fcdr (Fcdr (props)))
|
|
6343 {
|
|
6344 Lisp_Object prop = XCAR (props);
|
|
6345 Lisp_Object value = Fcar (XCDR (props));
|
|
6346 changed |= put_text_prop (s, e, object, prop, value, 0);
|
|
6347 }
|
173
|
6348 return changed ? Qt : Qnil;
|
0
|
6349 }
|
|
6350
|
20
|
6351 DEFUN ("remove-text-properties", Fremove_text_properties, 3, 4, 0, /*
|
0
|
6352 Remove the given properties from all characters in the specified region.
|
|
6353 PROPS should be a plist, but the values in that plist are ignored (treated
|
|
6354 as nil). Returns t if any property was changed, nil otherwise.
|
|
6355 Fourth argument OBJECT is the buffer or string containing the text, and
|
|
6356 defaults to the current buffer.
|
20
|
6357 */
|
|
6358 (start, end, props, object))
|
0
|
6359 {
|
|
6360 /* This function can GC */
|
|
6361 int changed = 0;
|
|
6362 Bytind s, e;
|
|
6363
|
|
6364 object = decode_buffer_or_string (object);
|
|
6365 get_buffer_or_string_range_byte (object, start, end, &s, &e, 0);
|
|
6366 CHECK_LIST (props);
|
|
6367 for (; !NILP (props); props = Fcdr (Fcdr (props)))
|
|
6368 {
|
|
6369 Lisp_Object prop = XCAR (props);
|
|
6370 changed |= put_text_prop (s, e, object, prop, Qnil, 1);
|
|
6371 }
|
173
|
6372 return changed ? Qt : Qnil;
|
0
|
6373 }
|
|
6374
|
|
6375 /* Whenever a text-prop extent is pasted into a buffer (via `yank' or `insert'
|
|
6376 or whatever) we attach the properties to the buffer by calling
|
|
6377 `put-text-property' instead of by simply allowing the extent to be copied or
|
|
6378 re-attached. Then we return nil, telling the extents code not to attach it
|
|
6379 again. By handing the insertion hackery in this way, we make kill/yank
|
|
6380 behave consistently with put-text-property and not fragment the extents
|
|
6381 (since text-prop extents must partition, not overlap).
|
|
6382
|
|
6383 The lisp implementation of this was probably fast enough, but since I moved
|
173
|
6384 the rest of the put-text-prop code here, I moved this as well for
|
|
6385 completeness.
|
0
|
6386 */
|
280
|
6387 DEFUN ("text-prop-extent-paste-function", Ftext_prop_extent_paste_function,
|
|
6388 3, 3, 0, /*
|
0
|
6389 Used as the `paste-function' property of `text-prop' extents.
|
20
|
6390 */
|
|
6391 (extent, from, to))
|
0
|
6392 {
|
|
6393 /* This function can GC */
|
|
6394 Lisp_Object prop, val;
|
|
6395
|
|
6396 prop = Fextent_property (extent, Qtext_prop, Qnil);
|
|
6397 if (NILP (prop))
|
|
6398 signal_simple_error ("internal error: no text-prop", extent);
|
|
6399 val = Fextent_property (extent, prop, Qnil);
|
98
|
6400 #if 0
|
|
6401 /* removed by bill perry, 2/9/97
|
|
6402 ** This little bit of code would not allow you to have a text property
|
|
6403 ** with a value of Qnil. This is bad bad bad.
|
|
6404 */
|
0
|
6405 if (NILP (val))
|
|
6406 signal_simple_error_2 ("internal error: no text-prop",
|
|
6407 extent, prop);
|
98
|
6408 #endif
|
0
|
6409 Fput_text_property (from, to, prop, val, Qnil);
|
|
6410 return Qnil; /* important! */
|
|
6411 }
|
|
6412
|
|
6413 /* This function could easily be written in Lisp but the C code wants
|
|
6414 to use it in connection with invisible extents (at least currently).
|
|
6415 If this changes, consider moving this back into Lisp. */
|
|
6416
|
280
|
6417 DEFUN ("next-single-property-change", Fnext_single_property_change,
|
|
6418 2, 4, 0, /*
|
0
|
6419 Return the position of next property change for a specific property.
|
|
6420 Scans characters forward from POS till it finds a change in the PROP
|
|
6421 property, then returns the position of the change. The optional third
|
|
6422 argument OBJECT is the buffer or string to scan (defaults to the current
|
|
6423 buffer).
|
|
6424 The property values are compared with `eq'.
|
|
6425 Return nil if the property is constant all the way to the end of BUFFER.
|
|
6426 If the value is non-nil, it is a position greater than POS, never equal.
|
|
6427
|
|
6428 If the optional fourth argument LIMIT is non-nil, don't search
|
|
6429 past position LIMIT; return LIMIT if nothing is found before LIMIT.
|
|
6430 If two or more extents with conflicting non-nil values for PROP overlap
|
|
6431 a particular character, it is undefined which value is considered to be
|
|
6432 the value of PROP. (Note that this situation will not happen if you always
|
|
6433 use the text-property primitives.)
|
20
|
6434 */
|
|
6435 (pos, prop, object, limit))
|
0
|
6436 {
|
|
6437 Bufpos bpos;
|
|
6438 Bufpos blim;
|
|
6439 Lisp_Object extent, value;
|
|
6440 int limit_was_nil;
|
|
6441
|
|
6442 object = decode_buffer_or_string (object);
|
|
6443 bpos = get_buffer_or_string_pos_char (object, pos, 0);
|
|
6444 if (NILP (limit))
|
|
6445 {
|
|
6446 blim = buffer_or_string_accessible_end_char (object);
|
|
6447 limit_was_nil = 1;
|
|
6448 }
|
|
6449 else
|
|
6450 {
|
|
6451 blim = get_buffer_or_string_pos_char (object, limit, 0);
|
|
6452 limit_was_nil = 0;
|
|
6453 }
|
|
6454
|
|
6455 extent = Fextent_at (make_int (bpos), object, prop, Qnil, Qnil);
|
|
6456 if (!NILP (extent))
|
|
6457 value = Fextent_property (extent, prop, Qnil);
|
|
6458 else
|
|
6459 value = Qnil;
|
|
6460
|
|
6461 while (1)
|
|
6462 {
|
|
6463 bpos = XINT (Fnext_extent_change (make_int (bpos), object));
|
|
6464 if (bpos >= blim)
|
|
6465 break; /* property is the same all the way to the end */
|
|
6466 extent = Fextent_at (make_int (bpos), object, prop, Qnil, Qnil);
|
|
6467 if ((NILP (extent) && !NILP (value)) ||
|
|
6468 (!NILP (extent) && !EQ (value,
|
|
6469 Fextent_property (extent, prop, Qnil))))
|
|
6470 return make_int (bpos);
|
|
6471 }
|
|
6472
|
|
6473 /* I think it's more sensible for this function to return nil always
|
|
6474 in this situation and it used to do it this way, but it's been changed
|
|
6475 for FSF compatibility. */
|
|
6476 if (limit_was_nil)
|
|
6477 return Qnil;
|
|
6478 else
|
|
6479 return make_int (blim);
|
|
6480 }
|
|
6481
|
|
6482 /* See comment on previous function about why this is written in C. */
|
|
6483
|
280
|
6484 DEFUN ("previous-single-property-change", Fprevious_single_property_change,
|
|
6485 2, 4, 0, /*
|
0
|
6486 Return the position of next property change for a specific property.
|
|
6487 Scans characters backward from POS till it finds a change in the PROP
|
|
6488 property, then returns the position of the change. The optional third
|
|
6489 argument OBJECT is the buffer or string to scan (defaults to the current
|
|
6490 buffer).
|
|
6491 The property values are compared with `eq'.
|
|
6492 Return nil if the property is constant all the way to the start of BUFFER.
|
|
6493 If the value is non-nil, it is a position less than POS, never equal.
|
|
6494
|
|
6495 If the optional fourth argument LIMIT is non-nil, don't search back
|
|
6496 past position LIMIT; return LIMIT if nothing is found until LIMIT.
|
|
6497 If two or more extents with conflicting non-nil values for PROP overlap
|
|
6498 a particular character, it is undefined which value is considered to be
|
|
6499 the value of PROP. (Note that this situation will not happen if you always
|
|
6500 use the text-property primitives.)
|
20
|
6501 */
|
|
6502 (pos, prop, object, limit))
|
0
|
6503 {
|
|
6504 Bufpos bpos;
|
|
6505 Bufpos blim;
|
|
6506 Lisp_Object extent, value;
|
|
6507 int limit_was_nil;
|
|
6508
|
|
6509 object = decode_buffer_or_string (object);
|
|
6510 bpos = get_buffer_or_string_pos_char (object, pos, 0);
|
|
6511 if (NILP (limit))
|
|
6512 {
|
|
6513 blim = buffer_or_string_accessible_begin_char (object);
|
|
6514 limit_was_nil = 1;
|
|
6515 }
|
|
6516 else
|
|
6517 {
|
|
6518 blim = get_buffer_or_string_pos_char (object, limit, 0);
|
|
6519 limit_was_nil = 0;
|
|
6520 }
|
|
6521
|
|
6522 /* extent-at refers to the character AFTER bpos, but we want the
|
|
6523 character before bpos. Thus the - 1. extent-at simply
|
|
6524 returns nil on bogus positions, so not to worry. */
|
|
6525 extent = Fextent_at (make_int (bpos - 1), object, prop, Qnil, Qnil);
|
|
6526 if (!NILP (extent))
|
|
6527 value = Fextent_property (extent, prop, Qnil);
|
|
6528 else
|
|
6529 value = Qnil;
|
|
6530
|
|
6531 while (1)
|
|
6532 {
|
|
6533 bpos = XINT (Fprevious_extent_change (make_int (bpos), object));
|
|
6534 if (bpos <= blim)
|
|
6535 break; /* property is the same all the way to the beginning */
|
|
6536 extent = Fextent_at (make_int (bpos - 1), object, prop, Qnil, Qnil);
|
|
6537 if ((NILP (extent) && !NILP (value)) ||
|
|
6538 (!NILP (extent) && !EQ (value,
|
|
6539 Fextent_property (extent, prop, Qnil))))
|
|
6540 return make_int (bpos);
|
|
6541 }
|
173
|
6542
|
0
|
6543 /* I think it's more sensible for this function to return nil always
|
|
6544 in this situation and it used to do it this way, but it's been changed
|
|
6545 for FSF compatibility. */
|
|
6546 if (limit_was_nil)
|
|
6547 return Qnil;
|
|
6548 else
|
|
6549 return make_int (blim);
|
|
6550 }
|
|
6551
|
|
6552 #ifdef MEMORY_USAGE_STATS
|
|
6553
|
|
6554 int
|
|
6555 compute_buffer_extent_usage (struct buffer *b, struct overhead_stats *ovstats)
|
|
6556 {
|
|
6557 /* #### not yet written */
|
|
6558 return 0;
|
|
6559 }
|
|
6560
|
|
6561 #endif /* MEMORY_USAGE_STATS */
|
|
6562
|
|
6563
|
|
6564 /************************************************************************/
|
|
6565 /* initialization */
|
|
6566 /************************************************************************/
|
|
6567
|
|
6568 void
|
|
6569 syms_of_extents (void)
|
|
6570 {
|
|
6571 defsymbol (&Qextentp, "extentp");
|
|
6572 defsymbol (&Qextent_live_p, "extent-live-p");
|
|
6573
|
|
6574 defsymbol (&Qall_extents_closed, "all-extents-closed");
|
|
6575 defsymbol (&Qall_extents_open, "all-extents-open");
|
|
6576 defsymbol (&Qall_extents_closed_open, "all-extents-closed-open");
|
|
6577 defsymbol (&Qall_extents_open_closed, "all-extents-open-closed");
|
|
6578 defsymbol (&Qstart_in_region, "start-in-region");
|
|
6579 defsymbol (&Qend_in_region, "end-in-region");
|
|
6580 defsymbol (&Qstart_and_end_in_region, "start-and-end-in-region");
|
|
6581 defsymbol (&Qstart_or_end_in_region, "start-or-end-in-region");
|
|
6582 defsymbol (&Qnegate_in_region, "negate-in-region");
|
|
6583
|
|
6584 defsymbol (&Qdetached, "detached");
|
|
6585 defsymbol (&Qdestroyed, "destroyed");
|
|
6586 defsymbol (&Qbegin_glyph, "begin-glyph");
|
|
6587 defsymbol (&Qend_glyph, "end-glyph");
|
|
6588 defsymbol (&Qstart_open, "start-open");
|
|
6589 defsymbol (&Qend_open, "end-open");
|
|
6590 defsymbol (&Qstart_closed, "start-closed");
|
|
6591 defsymbol (&Qend_closed, "end-closed");
|
|
6592 defsymbol (&Qread_only, "read-only");
|
|
6593 /* defsymbol (&Qhighlight, "highlight"); in faces.c */
|
|
6594 defsymbol (&Qunique, "unique");
|
|
6595 defsymbol (&Qduplicable, "duplicable");
|
|
6596 defsymbol (&Qdetachable, "detachable");
|
|
6597 defsymbol (&Qpriority, "priority");
|
|
6598 defsymbol (&Qmouse_face, "mouse-face");
|
207
|
6599 defsymbol (&Qinitial_redisplay_function,"initial-redisplay-function");
|
272
|
6600
|
0
|
6601
|
|
6602 defsymbol (&Qglyph_layout, "glyph-layout"); /* backwards compatibility */
|
|
6603 defsymbol (&Qbegin_glyph_layout, "begin-glyph-layout");
|
272
|
6604 defsymbol (&Qend_glyph_layout, "end-glyph-layout");
|
0
|
6605 defsymbol (&Qoutside_margin, "outside-margin");
|
|
6606 defsymbol (&Qinside_margin, "inside-margin");
|
|
6607 defsymbol (&Qwhitespace, "whitespace");
|
|
6608 /* Qtext defined in general.c */
|
|
6609
|
|
6610 defsymbol (&Qglyph_invisible, "glyph-invisible");
|
|
6611
|
|
6612 defsymbol (&Qpaste_function, "paste-function");
|
|
6613 defsymbol (&Qcopy_function, "copy-function");
|
|
6614
|
|
6615 defsymbol (&Qtext_prop, "text-prop");
|
|
6616 defsymbol (&Qtext_prop_extent_paste_function,
|
|
6617 "text-prop-extent-paste-function");
|
|
6618
|
20
|
6619 DEFSUBR (Fextentp);
|
|
6620 DEFSUBR (Fextent_live_p);
|
|
6621 DEFSUBR (Fextent_detached_p);
|
|
6622 DEFSUBR (Fextent_start_position);
|
|
6623 DEFSUBR (Fextent_end_position);
|
|
6624 DEFSUBR (Fextent_object);
|
|
6625 DEFSUBR (Fextent_length);
|
0
|
6626
|
20
|
6627 DEFSUBR (Fmake_extent);
|
|
6628 DEFSUBR (Fcopy_extent);
|
|
6629 DEFSUBR (Fdelete_extent);
|
|
6630 DEFSUBR (Fdetach_extent);
|
|
6631 DEFSUBR (Fset_extent_endpoints);
|
|
6632 DEFSUBR (Fnext_extent);
|
|
6633 DEFSUBR (Fprevious_extent);
|
0
|
6634 #if DEBUG_XEMACS
|
20
|
6635 DEFSUBR (Fnext_e_extent);
|
|
6636 DEFSUBR (Fprevious_e_extent);
|
0
|
6637 #endif
|
20
|
6638 DEFSUBR (Fnext_extent_change);
|
|
6639 DEFSUBR (Fprevious_extent_change);
|
|
6640
|
|
6641 DEFSUBR (Fextent_parent);
|
|
6642 DEFSUBR (Fextent_children);
|
|
6643 DEFSUBR (Fset_extent_parent);
|
|
6644
|
|
6645 DEFSUBR (Fextent_in_region_p);
|
|
6646 DEFSUBR (Fmap_extents);
|
|
6647 DEFSUBR (Fmap_extent_children);
|
|
6648 DEFSUBR (Fextent_at);
|
|
6649
|
207
|
6650 DEFSUBR (Fset_extent_initial_redisplay_function);
|
20
|
6651 DEFSUBR (Fextent_face);
|
|
6652 DEFSUBR (Fset_extent_face);
|
|
6653 DEFSUBR (Fextent_mouse_face);
|
|
6654 DEFSUBR (Fset_extent_mouse_face);
|
|
6655 DEFSUBR (Fset_extent_begin_glyph);
|
|
6656 DEFSUBR (Fset_extent_end_glyph);
|
|
6657 DEFSUBR (Fextent_begin_glyph);
|
|
6658 DEFSUBR (Fextent_end_glyph);
|
|
6659 DEFSUBR (Fset_extent_begin_glyph_layout);
|
|
6660 DEFSUBR (Fset_extent_end_glyph_layout);
|
|
6661 DEFSUBR (Fextent_begin_glyph_layout);
|
|
6662 DEFSUBR (Fextent_end_glyph_layout);
|
|
6663 DEFSUBR (Fset_extent_priority);
|
|
6664 DEFSUBR (Fextent_priority);
|
|
6665 DEFSUBR (Fset_extent_property);
|
195
|
6666 DEFSUBR (Fset_extent_properties);
|
20
|
6667 DEFSUBR (Fextent_property);
|
|
6668 DEFSUBR (Fextent_properties);
|
|
6669
|
|
6670 DEFSUBR (Fhighlight_extent);
|
|
6671 DEFSUBR (Fforce_highlight_extent);
|
|
6672
|
|
6673 DEFSUBR (Finsert_extent);
|
|
6674
|
|
6675 DEFSUBR (Fget_text_property);
|
|
6676 DEFSUBR (Fget_char_property);
|
|
6677 DEFSUBR (Fput_text_property);
|
|
6678 DEFSUBR (Fput_nonduplicable_text_property);
|
|
6679 DEFSUBR (Fadd_text_properties);
|
|
6680 DEFSUBR (Fadd_nonduplicable_text_properties);
|
|
6681 DEFSUBR (Fremove_text_properties);
|
|
6682 DEFSUBR (Ftext_prop_extent_paste_function);
|
|
6683 DEFSUBR (Fnext_single_property_change);
|
|
6684 DEFSUBR (Fprevious_single_property_change);
|
0
|
6685 }
|
|
6686
|
|
6687 void
|
|
6688 vars_of_extents (void)
|
|
6689 {
|
|
6690 DEFVAR_INT ("mouse-highlight-priority", &mouse_highlight_priority /*
|
|
6691 The priority to use for the mouse-highlighting pseudo-extent
|
|
6692 that is used to highlight extents with the `mouse-face' attribute set.
|
|
6693 See `set-extent-priority'.
|
|
6694 */ );
|
|
6695 /* Set mouse-highlight-priority (which ends up being used both for the
|
|
6696 mouse-highlighting pseudo-extent and the primary selection extent)
|
|
6697 to a very high value because very few extents should override it.
|
|
6698 1000 gives lots of room below it for different-prioritied extents.
|
|
6699 10 doesn't. ediff, for example, likes to use priorities around 100.
|
|
6700 --ben */
|
|
6701 mouse_highlight_priority = /* 10 */ 1000;
|
|
6702
|
|
6703 DEFVAR_LISP ("default-text-properties", &Vdefault_text_properties /*
|
|
6704 Property list giving default values for text properties.
|
|
6705 Whenever a character does not specify a value for a property, the value
|
|
6706 stored in this list is used instead. This only applies when the
|
|
6707 functions `get-text-property' or `get-char-property' are called.
|
|
6708 */ );
|
|
6709 Vdefault_text_properties = Qnil;
|
|
6710
|
|
6711 staticpro (&Vlast_highlighted_extent);
|
|
6712 Vlast_highlighted_extent = Qnil;
|
|
6713
|
|
6714 Vextent_face_reusable_list = Fcons (Qnil, Qnil);
|
|
6715 staticpro (&Vextent_face_reusable_list);
|
|
6716
|
|
6717 extent_auxiliary_defaults.begin_glyph = Qnil;
|
|
6718 extent_auxiliary_defaults.end_glyph = Qnil;
|
|
6719 extent_auxiliary_defaults.parent = Qnil;
|
|
6720 extent_auxiliary_defaults.children = Qnil;
|
|
6721 extent_auxiliary_defaults.priority = 0;
|
|
6722 extent_auxiliary_defaults.invisible = Qnil;
|
|
6723 extent_auxiliary_defaults.read_only = Qnil;
|
|
6724 extent_auxiliary_defaults.mouse_face = Qnil;
|
207
|
6725 extent_auxiliary_defaults.initial_redisplay_function = Qnil;
|
0
|
6726 }
|
|
6727
|
|
6728 void
|
|
6729 complex_vars_of_extents (void)
|
|
6730 {
|
|
6731 staticpro (&Vextent_face_memoize_hash_table);
|
|
6732 /* The memoize hash-table maps from lists of symbols to lists of
|
|
6733 faces. It needs to be `equal' to implement the memoization.
|
|
6734 The reverse table maps in the other direction and just needs
|
|
6735 to do `eq' comparison because the lists of faces are already
|
|
6736 memoized. */
|
|
6737 Vextent_face_memoize_hash_table =
|
|
6738 make_lisp_hashtable (100, HASHTABLE_VALUE_WEAK, HASHTABLE_EQUAL);
|
|
6739 staticpro (&Vextent_face_reverse_memoize_hash_table);
|
|
6740 Vextent_face_reverse_memoize_hash_table =
|
|
6741 make_lisp_hashtable (100, HASHTABLE_KEY_WEAK, HASHTABLE_EQ);
|
|
6742 }
|