Mercurial > emacs
annotate lisp/emacs-lisp/ring.el @ 2580:a66f7ed76416
(vc-diff): Get proper error message when you run this with no prefix
arg on an empty buffer.
(vc-directory): Better directory format --- replace the user and group IDs
with locking-user (if any).
(vc-finish-logentry, vc-next-comment, vc-previous-comment): Replace
*VC-comment-buffer* with a ring vector.
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Sun, 25 Apr 1993 22:26:40 +0000 |
parents | c782b69b60a4 |
children | e01048f32511 |
rev | line source |
---|---|
2424
dbdccee84df3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
905
diff
changeset
|
1 ;;; ring.el --- handle rings of items |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Maintainer: FSF |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
6 ;; Keywords: extensions |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
7 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
9 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
13 ;; any later version. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
14 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
18 ;; GNU General Public License for more details. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
19 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
23 |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
24 ;;; Commentary: |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
25 |
124 | 26 ;;; This code defines a ring data structure. A ring is a |
27 ;;; (hd-index tl-index . vector) | |
28 ;;; list. You can insert to, remove from, and rotate a ring. When the ring | |
29 ;;; fills up, insertions cause the oldest elts to be quietly dropped. | |
30 ;;; | |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
31 ;;; In ring-ref, 0 is the index of the newest element. Higher indexes |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
32 ;;; correspond to older elements until they wrap. |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
33 ;;; |
124 | 34 ;;; HEAD = index of the newest item on the ring. |
35 ;;; TAIL = index of the oldest item on the ring. | |
36 ;;; | |
37 ;;; These functions are used by the input history mechanism, but they can | |
38 ;;; be used for other purposes as well. | |
39 | |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
40 ;;; Code: |
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
41 |
905 | 42 ;;;###autoload |
124 | 43 (defun ring-p (x) |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
44 "Returns t if X is a ring; nil otherwise." |
124 | 45 (and (consp x) (integerp (car x)) |
46 (consp (cdr x)) (integerp (car (cdr x))) | |
47 (vectorp (cdr (cdr x))))) | |
48 | |
905 | 49 ;;;###autoload |
124 | 50 (defun make-ring (size) |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
51 "Make a ring that can contain SIZE elements." |
124 | 52 (cons 1 (cons 0 (make-vector (+ size 1) nil)))) |
53 | |
54 (defun ring-plus1 (index veclen) | |
55 "INDEX+1, with wraparound" | |
56 (let ((new-index (+ index 1))) | |
57 (if (= new-index veclen) 0 new-index))) | |
58 | |
59 (defun ring-minus1 (index veclen) | |
60 "INDEX-1, with wraparound" | |
61 (- (if (= 0 index) veclen index) 1)) | |
62 | |
63 (defun ring-length (ring) | |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
64 "Number of elements in the ring." |
124 | 65 (let ((hd (car ring)) (tl (car (cdr ring))) (siz (length (cdr (cdr ring))))) |
66 (let ((len (if (<= hd tl) (+ 1 (- tl hd)) (+ 1 tl (- siz hd))))) | |
67 (if (= len siz) 0 len)))) | |
68 | |
69 (defun ring-empty-p (ring) | |
70 (= 0 (ring-length ring))) | |
71 | |
72 (defun ring-insert (ring item) | |
73 "Insert a new item onto the ring. If the ring is full, dump the oldest | |
74 item to make room." | |
75 (let* ((vec (cdr (cdr ring))) (len (length vec)) | |
76 (new-hd (ring-minus1 (car ring) len))) | |
77 (setcar ring new-hd) | |
78 (aset vec new-hd item) | |
79 (if (ring-empty-p ring) ;overflow -- dump one off the tail. | |
80 (setcar (cdr ring) (ring-minus1 (car (cdr ring)) len))))) | |
81 | |
82 (defun ring-remove (ring) | |
83 "Remove the oldest item retained on the ring." | |
84 (if (ring-empty-p ring) (error "Ring empty") | |
85 (let ((tl (car (cdr ring))) (vec (cdr (cdr ring)))) | |
905 | 86 (setcar (cdr ring) (ring-minus1 tl (length vec))) |
124 | 87 (aref vec tl)))) |
88 | |
905 | 89 (defun ring-mod (n m) |
245 | 90 "Returns N mod M. M is positive. |
91 Answer is guaranteed to be non-negative, and less than m." | |
124 | 92 (let ((n (% n m))) |
93 (if (>= n 0) n | |
94 (+ n | |
95 (if (>= m 0) m (- m)))))) ; (abs m) | |
96 | |
97 (defun ring-ref (ring index) | |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
98 "Returns RING's INDEX element. |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
99 INDEX need not be <= the ring length, the appropriate modulo operation |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
100 will be performed. Element 0 is the most recently inserted; higher indices |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
101 correspond to older elements until they wrap." |
124 | 102 (let ((numelts (ring-length ring))) |
103 (if (= numelts 0) (error "indexed empty ring") | |
104 (let* ((hd (car ring)) (tl (car (cdr ring))) (vec (cdr (cdr ring))) | |
905 | 105 (index (ring-mod index numelts)) |
106 (vec-index (ring-mod (+ index hd) (length vec)))) | |
124 | 107 (aref vec vec-index))))) |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
108 |
2574
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
109 (provide 'ring) |
c782b69b60a4
Added and fixed documentation.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2424
diff
changeset
|
110 |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
245
diff
changeset
|
111 ;;; ring.el ends here |