1 /* Markers: examining, setting and deleting.
2 Copyright (C) 1985, 1997, 1998, 2002, 2003, 2004,
3 2005 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
28 /* Record one cached position found recently by
29 buf_charpos_to_bytepos or buf_bytepos_to_charpos. */
31 static int cached_charpos
;
32 static int cached_bytepos
;
33 static struct buffer
*cached_buffer
;
34 static int cached_modiff
;
36 static void byte_char_debug_check
P_ ((struct buffer
*, int, int));
38 /* Nonzero means enable debugging checks on byte/char correspondences. */
40 static int byte_debug_flag
;
43 clear_charpos_cache (b
)
46 if (cached_buffer
== b
)
50 /* Converting between character positions and byte positions. */
52 /* There are several places in the buffer where we know
53 the correspondence: BEG, BEGV, PT, GPT, ZV and Z,
54 and everywhere there is a marker. So we find the one of these places
55 that is closest to the specified position, and scan from there. */
57 /* charpos_to_bytepos returns the byte position corresponding to CHARPOS. */
59 /* This macro is a subroutine of charpos_to_bytepos.
60 Note that it is desirable that BYTEPOS is not evaluated
61 except when we really want its value. */
63 #define CONSIDER(CHARPOS, BYTEPOS) \
65 int this_charpos = (CHARPOS); \
68 if (this_charpos == charpos) \
70 int value = (BYTEPOS); \
71 if (byte_debug_flag) \
72 byte_char_debug_check (b, charpos, value); \
75 else if (this_charpos > charpos) \
77 if (this_charpos < best_above) \
79 best_above = this_charpos; \
80 best_above_byte = (BYTEPOS); \
84 else if (this_charpos > best_below) \
86 best_below = this_charpos; \
87 best_below_byte = (BYTEPOS); \
93 if (best_above - best_below == best_above_byte - best_below_byte) \
95 int value = best_below_byte + (charpos - best_below); \
96 if (byte_debug_flag) \
97 byte_char_debug_check (b, charpos, value); \
104 byte_char_debug_check (b
, charpos
, bytepos
)
106 int charpos
, bytepos
;
110 if (bytepos
> BUF_GPT_BYTE (b
))
112 nchars
= multibyte_chars_in_text (BUF_BEG_ADDR (b
),
113 BUF_GPT_BYTE (b
) - BUF_BEG_BYTE (b
));
114 nchars
+= multibyte_chars_in_text (BUF_GAP_END_ADDR (b
),
115 bytepos
- BUF_GPT_BYTE (b
));
118 nchars
= multibyte_chars_in_text (BUF_BEG_ADDR (b
),
119 bytepos
- BUF_BEG_BYTE (b
));
121 if (charpos
- 1 != nchars
)
126 charpos_to_bytepos (charpos
)
129 return buf_charpos_to_bytepos (current_buffer
, charpos
);
133 buf_charpos_to_bytepos (b
, charpos
)
137 struct Lisp_Marker
*tail
;
138 int best_above
, best_above_byte
;
139 int best_below
, best_below_byte
;
141 if (charpos
< BUF_BEG (b
) || charpos
> BUF_Z (b
))
144 best_above
= BUF_Z (b
);
145 best_above_byte
= BUF_Z_BYTE (b
);
147 /* If this buffer has as many characters as bytes,
148 each character must be one byte.
149 This takes care of the case where enable-multibyte-characters is nil. */
150 if (best_above
== best_above_byte
)
154 best_below_byte
= BEG_BYTE
;
156 /* We find in best_above and best_above_byte
157 the closest known point above CHARPOS,
158 and in best_below and best_below_byte
159 the closest known point below CHARPOS,
161 If at any point we can tell that the space between those
162 two best approximations is all single-byte,
163 we interpolate the result immediately. */
165 CONSIDER (BUF_PT (b
), BUF_PT_BYTE (b
));
166 CONSIDER (BUF_GPT (b
), BUF_GPT_BYTE (b
));
167 CONSIDER (BUF_BEGV (b
), BUF_BEGV_BYTE (b
));
168 CONSIDER (BUF_ZV (b
), BUF_ZV_BYTE (b
));
170 if (b
== cached_buffer
&& BUF_MODIFF (b
) == cached_modiff
)
171 CONSIDER (cached_charpos
, cached_bytepos
);
173 for (tail
= BUF_MARKERS (b
); tail
; tail
= tail
->next
)
175 CONSIDER (tail
->charpos
, tail
->bytepos
);
177 /* If we are down to a range of 50 chars,
178 don't bother checking any other markers;
179 scan the intervening chars directly now. */
180 if (best_above
- best_below
< 50)
184 /* We get here if we did not exactly hit one of the known places.
185 We have one known above and one known below.
186 Scan, counting characters, from whichever one is closer. */
188 if (charpos
- best_below
< best_above
- charpos
)
190 int record
= charpos
- best_below
> 5000;
192 while (best_below
!= charpos
)
195 BUF_INC_POS (b
, best_below_byte
);
198 /* If this position is quite far from the nearest known position,
199 cache the correspondence by creating a marker here.
200 It will last until the next GC. */
203 Lisp_Object marker
, buffer
;
204 marker
= Fmake_marker ();
205 XSETBUFFER (buffer
, b
);
206 set_marker_both (marker
, buffer
, best_below
, best_below_byte
);
210 byte_char_debug_check (b
, charpos
, best_below_byte
);
213 cached_modiff
= BUF_MODIFF (b
);
214 cached_charpos
= best_below
;
215 cached_bytepos
= best_below_byte
;
217 return best_below_byte
;
221 int record
= best_above
- charpos
> 5000;
223 while (best_above
!= charpos
)
226 BUF_DEC_POS (b
, best_above_byte
);
229 /* If this position is quite far from the nearest known position,
230 cache the correspondence by creating a marker here.
231 It will last until the next GC. */
234 Lisp_Object marker
, buffer
;
235 marker
= Fmake_marker ();
236 XSETBUFFER (buffer
, b
);
237 set_marker_both (marker
, buffer
, best_above
, best_above_byte
);
241 byte_char_debug_check (b
, charpos
, best_above_byte
);
244 cached_modiff
= BUF_MODIFF (b
);
245 cached_charpos
= best_above
;
246 cached_bytepos
= best_above_byte
;
248 return best_above_byte
;
254 /* Used for debugging: recompute the bytepos corresponding to CHARPOS
255 in the simplest, most reliable way. */
258 verify_bytepos (charpos
)
264 while (below
!= charpos
)
267 BUF_INC_POS (current_buffer
, below_byte
);
273 /* bytepos_to_charpos returns the char position corresponding to BYTEPOS. */
275 /* This macro is a subroutine of bytepos_to_charpos.
276 It is used when BYTEPOS is actually the byte position. */
278 #define CONSIDER(BYTEPOS, CHARPOS) \
280 int this_bytepos = (BYTEPOS); \
283 if (this_bytepos == bytepos) \
285 int value = (CHARPOS); \
286 if (byte_debug_flag) \
287 byte_char_debug_check (b, value, bytepos); \
290 else if (this_bytepos > bytepos) \
292 if (this_bytepos < best_above_byte) \
294 best_above = (CHARPOS); \
295 best_above_byte = this_bytepos; \
299 else if (this_bytepos > best_below_byte) \
301 best_below = (CHARPOS); \
302 best_below_byte = this_bytepos; \
308 if (best_above - best_below == best_above_byte - best_below_byte) \
310 int value = best_below + (bytepos - best_below_byte); \
311 if (byte_debug_flag) \
312 byte_char_debug_check (b, value, bytepos); \
319 bytepos_to_charpos (bytepos
)
322 return buf_bytepos_to_charpos (current_buffer
, bytepos
);
326 buf_bytepos_to_charpos (b
, bytepos
)
330 struct Lisp_Marker
*tail
;
331 int best_above
, best_above_byte
;
332 int best_below
, best_below_byte
;
334 if (bytepos
< BUF_BEG_BYTE (b
) || bytepos
> BUF_Z_BYTE (b
))
337 best_above
= BUF_Z (b
);
338 best_above_byte
= BUF_Z_BYTE (b
);
340 /* If this buffer has as many characters as bytes,
341 each character must be one byte.
342 This takes care of the case where enable-multibyte-characters is nil. */
343 if (best_above
== best_above_byte
)
347 best_below_byte
= BEG_BYTE
;
349 CONSIDER (BUF_PT_BYTE (b
), BUF_PT (b
));
350 CONSIDER (BUF_GPT_BYTE (b
), BUF_GPT (b
));
351 CONSIDER (BUF_BEGV_BYTE (b
), BUF_BEGV (b
));
352 CONSIDER (BUF_ZV_BYTE (b
), BUF_ZV (b
));
354 if (b
== cached_buffer
&& BUF_MODIFF (b
) == cached_modiff
)
355 CONSIDER (cached_bytepos
, cached_charpos
);
357 for (tail
= BUF_MARKERS (b
); tail
; tail
= tail
->next
)
359 CONSIDER (tail
->bytepos
, tail
->charpos
);
361 /* If we are down to a range of 50 chars,
362 don't bother checking any other markers;
363 scan the intervening chars directly now. */
364 if (best_above
- best_below
< 50)
368 /* We get here if we did not exactly hit one of the known places.
369 We have one known above and one known below.
370 Scan, counting characters, from whichever one is closer. */
372 if (bytepos
- best_below_byte
< best_above_byte
- bytepos
)
374 int record
= bytepos
- best_below_byte
> 5000;
376 while (best_below_byte
< bytepos
)
379 BUF_INC_POS (b
, best_below_byte
);
382 /* If this position is quite far from the nearest known position,
383 cache the correspondence by creating a marker here.
384 It will last until the next GC.
385 But don't do it if BUF_MARKERS is nil;
386 that is a signal from Fset_buffer_multibyte. */
387 if (record
&& BUF_MARKERS (b
))
389 Lisp_Object marker
, buffer
;
390 marker
= Fmake_marker ();
391 XSETBUFFER (buffer
, b
);
392 set_marker_both (marker
, buffer
, best_below
, best_below_byte
);
396 byte_char_debug_check (b
, best_below
, bytepos
);
399 cached_modiff
= BUF_MODIFF (b
);
400 cached_charpos
= best_below
;
401 cached_bytepos
= best_below_byte
;
407 int record
= best_above_byte
- bytepos
> 5000;
409 while (best_above_byte
> bytepos
)
412 BUF_DEC_POS (b
, best_above_byte
);
415 /* If this position is quite far from the nearest known position,
416 cache the correspondence by creating a marker here.
417 It will last until the next GC.
418 But don't do it if BUF_MARKERS is nil;
419 that is a signal from Fset_buffer_multibyte. */
420 if (record
&& BUF_MARKERS (b
))
422 Lisp_Object marker
, buffer
;
423 marker
= Fmake_marker ();
424 XSETBUFFER (buffer
, b
);
425 set_marker_both (marker
, buffer
, best_above
, best_above_byte
);
429 byte_char_debug_check (b
, best_above
, bytepos
);
432 cached_modiff
= BUF_MODIFF (b
);
433 cached_charpos
= best_above
;
434 cached_bytepos
= best_above_byte
;
442 /* Operations on markers. */
444 DEFUN ("marker-buffer", Fmarker_buffer
, Smarker_buffer
, 1, 1, 0,
445 doc
: /* Return the buffer that MARKER points into, or nil if none.
446 Returns nil if MARKER points into a dead buffer. */)
448 register Lisp_Object marker
;
450 register Lisp_Object buf
;
451 CHECK_MARKER (marker
);
452 if (XMARKER (marker
)->buffer
)
454 XSETBUFFER (buf
, XMARKER (marker
)->buffer
);
455 /* Return marker's buffer only if it is not dead. */
456 if (!NILP (XBUFFER (buf
)->name
))
462 DEFUN ("marker-position", Fmarker_position
, Smarker_position
, 1, 1, 0,
463 doc
: /* Return the position MARKER points at, as a character number. */)
467 CHECK_MARKER (marker
);
468 if (XMARKER (marker
)->buffer
)
469 return make_number (XMARKER (marker
)->charpos
);
474 DEFUN ("set-marker", Fset_marker
, Sset_marker
, 2, 3, 0,
475 doc
: /* Position MARKER before character number POSITION in BUFFER.
476 BUFFER defaults to the current buffer.
477 If POSITION is nil, makes marker point nowhere.
478 Then it no longer slows down editing in any buffer.
480 (marker
, position
, buffer
)
481 Lisp_Object marker
, position
, buffer
;
483 register int charno
, bytepos
;
484 register struct buffer
*b
;
485 register struct Lisp_Marker
*m
;
487 CHECK_MARKER (marker
);
488 m
= XMARKER (marker
);
490 /* If position is nil or a marker that points nowhere,
491 make this marker point nowhere. */
493 || (MARKERP (position
) && !XMARKER (position
)->buffer
))
503 CHECK_BUFFER (buffer
);
504 b
= XBUFFER (buffer
);
505 /* If buffer is dead, set marker to point nowhere. */
506 if (EQ (b
->name
, Qnil
))
513 /* Optimize the special case where we are copying the position
514 of an existing marker, and MARKER is already in the same buffer. */
515 if (MARKERP (position
) && b
== XMARKER (position
)->buffer
518 m
->bytepos
= XMARKER (position
)->bytepos
;
519 m
->charpos
= XMARKER (position
)->charpos
;
523 CHECK_NUMBER_COERCE_MARKER (position
);
525 charno
= XINT (position
);
527 if (charno
< BUF_BEG (b
))
528 charno
= BUF_BEG (b
);
529 if (charno
> BUF_Z (b
))
532 bytepos
= buf_charpos_to_bytepos (b
, charno
);
534 /* Every character is at least one byte. */
535 if (charno
> bytepos
)
538 m
->bytepos
= bytepos
;
545 m
->next
= BUF_MARKERS (b
);
552 /* This version of Fset_marker won't let the position
553 be outside the visible part. */
556 set_marker_restricted (marker
, pos
, buffer
)
557 Lisp_Object marker
, pos
, buffer
;
559 register int charno
, bytepos
;
560 register struct buffer
*b
;
561 register struct Lisp_Marker
*m
;
563 CHECK_MARKER (marker
);
564 m
= XMARKER (marker
);
566 /* If position is nil or a marker that points nowhere,
567 make this marker point nowhere. */
569 || (MARKERP (pos
) && !XMARKER (pos
)->buffer
))
579 CHECK_BUFFER (buffer
);
580 b
= XBUFFER (buffer
);
581 /* If buffer is dead, set marker to point nowhere. */
582 if (EQ (b
->name
, Qnil
))
589 /* Optimize the special case where we are copying the position
590 of an existing marker, and MARKER is already in the same buffer. */
591 if (MARKERP (pos
) && b
== XMARKER (pos
)->buffer
594 m
->bytepos
= XMARKER (pos
)->bytepos
;
595 m
->charpos
= XMARKER (pos
)->charpos
;
599 CHECK_NUMBER_COERCE_MARKER (pos
);
603 if (charno
< BUF_BEGV (b
))
604 charno
= BUF_BEGV (b
);
605 if (charno
> BUF_ZV (b
))
608 bytepos
= buf_charpos_to_bytepos (b
, charno
);
610 /* Every character is at least one byte. */
611 if (charno
> bytepos
)
614 m
->bytepos
= bytepos
;
621 m
->next
= BUF_MARKERS (b
);
628 /* Set the position of MARKER, specifying both the
629 character position and the corresponding byte position. */
632 set_marker_both (marker
, buffer
, charpos
, bytepos
)
633 Lisp_Object marker
, buffer
;
634 int charpos
, bytepos
;
636 register struct buffer
*b
;
637 register struct Lisp_Marker
*m
;
639 CHECK_MARKER (marker
);
640 m
= XMARKER (marker
);
646 CHECK_BUFFER (buffer
);
647 b
= XBUFFER (buffer
);
648 /* If buffer is dead, set marker to point nowhere. */
649 if (EQ (b
->name
, Qnil
))
656 /* In a single-byte buffer, the two positions must be equal. */
657 if (BUF_Z (b
) == BUF_Z_BYTE (b
)
658 && charpos
!= bytepos
)
660 /* Every character is at least one byte. */
661 if (charpos
> bytepos
)
664 m
->bytepos
= bytepos
;
665 m
->charpos
= charpos
;
671 m
->next
= BUF_MARKERS (b
);
678 /* This version of set_marker_both won't let the position
679 be outside the visible part. */
682 set_marker_restricted_both (marker
, buffer
, charpos
, bytepos
)
683 Lisp_Object marker
, buffer
;
684 int charpos
, bytepos
;
686 register struct buffer
*b
;
687 register struct Lisp_Marker
*m
;
689 CHECK_MARKER (marker
);
690 m
= XMARKER (marker
);
696 CHECK_BUFFER (buffer
);
697 b
= XBUFFER (buffer
);
698 /* If buffer is dead, set marker to point nowhere. */
699 if (EQ (b
->name
, Qnil
))
706 if (charpos
< BUF_BEGV (b
))
707 charpos
= BUF_BEGV (b
);
708 if (charpos
> BUF_ZV (b
))
709 charpos
= BUF_ZV (b
);
710 if (bytepos
< BUF_BEGV_BYTE (b
))
711 bytepos
= BUF_BEGV_BYTE (b
);
712 if (bytepos
> BUF_ZV_BYTE (b
))
713 bytepos
= BUF_ZV_BYTE (b
);
715 /* In a single-byte buffer, the two positions must be equal. */
716 if (BUF_Z (b
) == BUF_Z_BYTE (b
)
717 && charpos
!= bytepos
)
719 /* Every character is at least one byte. */
720 if (charpos
> bytepos
)
723 m
->bytepos
= bytepos
;
724 m
->charpos
= charpos
;
730 m
->next
= BUF_MARKERS (b
);
737 /* Remove MARKER from the chain of whatever buffer it is in.
738 Leave it "in no buffer".
740 This is called during garbage collection,
741 so we must be careful to ignore and preserve mark bits,
742 including those in chain fields of markers. */
745 unchain_marker (marker
)
746 register struct Lisp_Marker
*marker
;
748 register struct Lisp_Marker
*tail
, *prev
, *next
;
749 register struct buffer
*b
;
755 if (EQ (b
->name
, Qnil
))
760 tail
= BUF_MARKERS (b
);
770 BUF_MARKERS (b
) = next
;
771 /* Deleting first marker from the buffer's chain. Crash
772 if new first marker in chain does not say it belongs
773 to the same buffer, or at least that they have the same
775 if (next
&& b
->text
!= next
->buffer
->text
)
780 /* We have removed the marker from the chain;
781 no need to scan the rest of the chain. */
789 /* Marker was not in its chain. */
793 /* Return the char position of marker MARKER, as a C integer. */
796 marker_position (marker
)
799 register struct Lisp_Marker
*m
= XMARKER (marker
);
800 register struct buffer
*buf
= m
->buffer
;
803 error ("Marker does not point anywhere");
808 /* Return the byte position of marker MARKER, as a C integer. */
811 marker_byte_position (marker
)
814 register struct Lisp_Marker
*m
= XMARKER (marker
);
815 register struct buffer
*buf
= m
->buffer
;
816 register int i
= m
->bytepos
;
819 error ("Marker does not point anywhere");
821 if (i
< BUF_BEG_BYTE (buf
) || i
> BUF_Z_BYTE (buf
))
827 DEFUN ("copy-marker", Fcopy_marker
, Scopy_marker
, 1, 2, 0,
828 doc
: /* Return a new marker pointing at the same place as MARKER.
829 If argument is a number, makes a new marker pointing
830 at that position in the current buffer.
831 The optional argument TYPE specifies the insertion type of the new marker;
832 see `marker-insertion-type'. */)
834 register Lisp_Object marker
, type
;
836 register Lisp_Object
new;
838 if (! (INTEGERP (marker
) || MARKERP (marker
)))
839 marker
= wrong_type_argument (Qinteger_or_marker_p
, marker
);
841 new = Fmake_marker ();
842 Fset_marker (new, marker
,
843 (MARKERP (marker
) ? Fmarker_buffer (marker
) : Qnil
));
844 XMARKER (new)->insertion_type
= !NILP (type
);
848 DEFUN ("marker-insertion-type", Fmarker_insertion_type
,
849 Smarker_insertion_type
, 1, 1, 0,
850 doc
: /* Return insertion type of MARKER: t if it stays after inserted text.
851 nil means the marker stays before text inserted there. */)
853 register Lisp_Object marker
;
855 CHECK_MARKER (marker
);
856 return XMARKER (marker
)->insertion_type
? Qt
: Qnil
;
859 DEFUN ("set-marker-insertion-type", Fset_marker_insertion_type
,
860 Sset_marker_insertion_type
, 2, 2, 0,
861 doc
: /* Set the insertion-type of MARKER to TYPE.
862 If TYPE is t, it means the marker advances when you insert text at it.
863 If TYPE is nil, it means the marker stays behind when you insert text at it. */)
865 Lisp_Object marker
, type
;
867 CHECK_MARKER (marker
);
869 XMARKER (marker
)->insertion_type
= ! NILP (type
);
873 DEFUN ("buffer-has-markers-at", Fbuffer_has_markers_at
, Sbuffer_has_markers_at
,
875 doc
: /* Return t if there are markers pointing at POSITION in the current buffer. */)
877 Lisp_Object position
;
879 register struct Lisp_Marker
*tail
;
882 charno
= XINT (position
);
889 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
890 if (tail
->charpos
== charno
)
896 /* For debugging -- count the markers in buffer BUF. */
903 struct Lisp_Marker
*tail
;
905 for (tail
= BUF_MARKERS (buf
); tail
; tail
= tail
->next
)
914 defsubr (&Smarker_position
);
915 defsubr (&Smarker_buffer
);
916 defsubr (&Sset_marker
);
917 defsubr (&Scopy_marker
);
918 defsubr (&Smarker_insertion_type
);
919 defsubr (&Sset_marker_insertion_type
);
920 defsubr (&Sbuffer_has_markers_at
);
922 DEFVAR_BOOL ("byte-debug-flag", &byte_debug_flag
,
923 doc
: /* Non-nil enables debugging checks in byte/char position conversions. */);
927 /* arch-tag: 50aa418f-cdd0-4838-b64b-94aa4b2a3b74
928 (do not change this comment) */