1993-03-30 16:22:39 +00:00
|
|
|
;;; ring.el --- handle rings of items
|
1992-05-30 21:11:25 +00:00
|
|
|
|
2006-12-07 05:06:17 +00:00
|
|
|
;; Copyright (C) 1992, 2001, 2002, 2003, 2004, 2005,
|
2007-01-21 02:48:43 +00:00
|
|
|
;; 2006, 2007 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
1992-07-17 08:15:29 +00:00
|
|
|
;; Maintainer: FSF
|
|
|
|
;; Keywords: extensions
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-07-17 08:15:29 +00:00
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1992-05-30 21:11:25 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-14 07:34:30 +00:00
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 17:55:18 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
1992-05-30 21:11:25 +00:00
|
|
|
|
1992-07-17 08:15:29 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
2003-07-11 21:53:43 +00:00
|
|
|
;; This code defines a ring data structure. A ring is a
|
1999-08-30 23:57:22 +00:00
|
|
|
;; (hd-index length . vector)
|
1997-03-22 03:52:36 +00:00
|
|
|
;; list. You can insert to, remove from, and rotate a ring. When the ring
|
1996-01-14 07:34:30 +00:00
|
|
|
;; fills up, insertions cause the oldest elts to be quietly dropped.
|
|
|
|
;;
|
|
|
|
;; In ring-ref, 0 is the index of the newest element. Higher indexes
|
1997-03-22 03:52:36 +00:00
|
|
|
;; correspond to older elements; when the index equals the ring length,
|
|
|
|
;; it wraps to the newest element again.
|
1996-01-14 07:34:30 +00:00
|
|
|
;;
|
1997-03-22 03:52:36 +00:00
|
|
|
;; hd-index = vector index of the oldest ring item.
|
|
|
|
;; Newer items follow this item; at the end of the vector,
|
1999-08-30 23:57:22 +00:00
|
|
|
;; they wrap around to the start of the vector.
|
1997-03-22 03:52:36 +00:00
|
|
|
;; length = number of items currently in the ring.
|
1999-08-30 23:57:22 +00:00
|
|
|
;; This never exceeds the length of the vector itself.
|
1996-01-14 07:34:30 +00:00
|
|
|
;;
|
|
|
|
;; These functions are used by the input history mechanism, but they can
|
|
|
|
;; be used for other purposes as well.
|
1990-11-21 20:01:35 +00:00
|
|
|
|
1992-07-17 08:15:29 +00:00
|
|
|
;;; Code:
|
|
|
|
|
1999-08-30 23:57:22 +00:00
|
|
|
;;; User Functions:
|
|
|
|
|
1992-08-02 02:34:06 +00:00
|
|
|
;;;###autoload
|
1999-08-30 23:57:22 +00:00
|
|
|
(defun ring-p (x)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return t if X is a ring; nil otherwise."
|
1990-11-21 20:01:35 +00:00
|
|
|
(and (consp x) (integerp (car x))
|
|
|
|
(consp (cdr x)) (integerp (car (cdr x)))
|
|
|
|
(vectorp (cdr (cdr x)))))
|
|
|
|
|
1992-08-02 02:34:06 +00:00
|
|
|
;;;###autoload
|
1990-11-21 20:01:35 +00:00
|
|
|
(defun make-ring (size)
|
1993-04-25 06:14:03 +00:00
|
|
|
"Make a ring that can contain SIZE elements."
|
1993-04-25 22:26:48 +00:00
|
|
|
(cons 0 (cons 0 (make-vector size nil))))
|
1990-11-21 20:01:35 +00:00
|
|
|
|
1994-06-23 23:11:02 +00:00
|
|
|
(defun ring-insert-at-beginning (ring item)
|
1997-03-22 03:52:36 +00:00
|
|
|
"Add to RING the item ITEM. Add it at the front, as the oldest item."
|
1999-08-30 23:57:22 +00:00
|
|
|
(let* ((vec (cdr (cdr ring)))
|
|
|
|
(veclen (length vec))
|
|
|
|
(hd (car ring))
|
|
|
|
(ln (car (cdr ring))))
|
1994-06-23 23:11:02 +00:00
|
|
|
(setq ln (min veclen (1+ ln))
|
1999-08-30 23:57:22 +00:00
|
|
|
hd (ring-minus1 hd veclen))
|
1994-06-23 23:11:02 +00:00
|
|
|
(aset vec hd item)
|
|
|
|
(setcar ring hd)
|
|
|
|
(setcar (cdr ring) ln)))
|
|
|
|
|
1990-11-21 20:01:35 +00:00
|
|
|
(defun ring-plus1 (index veclen)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return INDEX+1, with wraparound."
|
1990-11-21 20:01:35 +00:00
|
|
|
(let ((new-index (+ index 1)))
|
|
|
|
(if (= new-index veclen) 0 new-index)))
|
|
|
|
|
|
|
|
(defun ring-minus1 (index veclen)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return INDEX-1, with wraparound."
|
1990-11-21 20:01:35 +00:00
|
|
|
(- (if (= 0 index) veclen index) 1))
|
|
|
|
|
|
|
|
(defun ring-length (ring)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return the number of elements in the RING."
|
1993-04-25 22:26:48 +00:00
|
|
|
(car (cdr ring)))
|
1990-11-21 20:01:35 +00:00
|
|
|
|
1993-04-25 22:26:48 +00:00
|
|
|
(defun ring-index (index head ringlen veclen)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Convert nominal ring index INDEX to an internal index.
|
1999-08-30 23:57:22 +00:00
|
|
|
The internal index refers to the items ordered from newest to oldest.
|
|
|
|
HEAD is the index of the oldest element in the ring.
|
|
|
|
RINGLEN is the number of elements currently in the ring.
|
|
|
|
VECLEN is the size of the vector in the ring."
|
1993-08-10 04:14:17 +00:00
|
|
|
(setq index (mod index ringlen))
|
|
|
|
(mod (1- (+ head (- ringlen index))) veclen))
|
1990-11-21 20:01:35 +00:00
|
|
|
|
1999-08-30 23:57:22 +00:00
|
|
|
(defun ring-empty-p (ring)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return t if RING is empty; nil otherwise."
|
|
|
|
(zerop (car (cdr ring))))
|
1999-08-30 23:57:22 +00:00
|
|
|
|
|
|
|
(defun ring-size (ring)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return the size of RING, the maximum number of elements it can contain."
|
1999-08-30 23:57:22 +00:00
|
|
|
(length (cdr (cdr ring))))
|
|
|
|
|
|
|
|
(defun ring-copy (ring)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return a copy of RING."
|
1999-08-30 23:58:18 +00:00
|
|
|
(let* ((vec (cdr (cdr ring)))
|
|
|
|
(hd (car ring))
|
|
|
|
(ln (car (cdr ring))))
|
1999-08-30 23:57:22 +00:00
|
|
|
(cons hd (cons ln (copy-sequence vec)))))
|
|
|
|
|
1990-11-21 20:01:35 +00:00
|
|
|
(defun ring-insert (ring item)
|
1994-06-23 23:11:02 +00:00
|
|
|
"Insert onto ring RING the item ITEM, as the newest (last) item.
|
1999-08-30 23:57:22 +00:00
|
|
|
If the ring is full, dump the oldest item to make room."
|
|
|
|
(let* ((vec (cdr (cdr ring)))
|
|
|
|
(veclen (length vec))
|
|
|
|
(hd (car ring))
|
|
|
|
(ln (car (cdr ring))))
|
1993-04-25 22:26:48 +00:00
|
|
|
(prog1
|
1999-08-30 23:57:22 +00:00
|
|
|
(aset vec (mod (+ hd ln) veclen) item)
|
1993-04-25 22:26:48 +00:00
|
|
|
(if (= ln veclen)
|
1999-08-30 23:57:22 +00:00
|
|
|
(setcar ring (ring-plus1 hd veclen))
|
|
|
|
(setcar (cdr ring) (1+ ln))))))
|
1993-04-25 22:26:48 +00:00
|
|
|
|
|
|
|
(defun ring-remove (ring &optional index)
|
|
|
|
"Remove an item from the RING. Return the removed item.
|
|
|
|
If optional INDEX is nil, remove the oldest item. If it's
|
|
|
|
numeric, remove the element indexed."
|
|
|
|
(if (ring-empty-p ring)
|
|
|
|
(error "Ring empty")
|
|
|
|
(let* ((hd (car ring))
|
1999-08-30 23:57:22 +00:00
|
|
|
(ln (car (cdr ring)))
|
|
|
|
(vec (cdr (cdr ring)))
|
|
|
|
(veclen (length vec))
|
|
|
|
(tl (mod (1- (+ hd ln)) veclen))
|
|
|
|
oldelt)
|
1993-04-25 22:26:48 +00:00
|
|
|
(if (null index)
|
1999-08-30 23:57:22 +00:00
|
|
|
(setq index (1- ln)))
|
1993-04-25 22:26:48 +00:00
|
|
|
(setq index (ring-index index hd ln veclen))
|
|
|
|
(setq oldelt (aref vec index))
|
|
|
|
(while (/= index tl)
|
1999-08-30 23:57:22 +00:00
|
|
|
(aset vec index (aref vec (ring-plus1 index veclen)))
|
|
|
|
(setq index (ring-plus1 index veclen)))
|
1993-04-25 22:26:48 +00:00
|
|
|
(aset vec tl nil)
|
|
|
|
(setcar (cdr ring) (1- ln))
|
|
|
|
oldelt)))
|
1990-11-21 20:01:35 +00:00
|
|
|
|
|
|
|
(defun ring-ref (ring index)
|
2003-07-11 21:53:43 +00:00
|
|
|
"Return RING's INDEX element.
|
1997-03-22 03:52:36 +00:00
|
|
|
INDEX = 0 is the most recently inserted; higher indices
|
|
|
|
correspond to older elements.
|
1999-08-30 23:58:18 +00:00
|
|
|
INDEX need not be <= the ring length; the appropriate modulo operation
|
1997-03-22 03:52:36 +00:00
|
|
|
will be performed."
|
1993-04-25 22:26:48 +00:00
|
|
|
(if (ring-empty-p ring)
|
1997-03-22 03:52:36 +00:00
|
|
|
(error "Accessing an empty ring")
|
1993-04-25 22:26:48 +00:00
|
|
|
(let* ((hd (car ring)) (ln (car (cdr ring))) (vec (cdr (cdr ring))))
|
|
|
|
(aref vec (ring-index index hd ln (length vec))))))
|
1992-05-30 21:11:25 +00:00
|
|
|
|
2000-05-21 17:29:50 +00:00
|
|
|
(defun ring-elements (ring)
|
2005-06-24 01:20:14 +00:00
|
|
|
"Return a list of the elements of RING, in order, newest first."
|
|
|
|
(let ((start (car ring))
|
|
|
|
(size (ring-size ring))
|
|
|
|
(vect (cddr ring))
|
|
|
|
lst)
|
|
|
|
(dotimes (var (cadr ring) lst)
|
|
|
|
(push (aref vect (mod (+ start var) size)) lst))))
|
2000-05-21 17:29:50 +00:00
|
|
|
|
1999-08-30 23:57:22 +00:00
|
|
|
;;; provide ourself:
|
|
|
|
|
1993-04-25 06:14:03 +00:00
|
|
|
(provide 'ring)
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
;;; arch-tag: e707682b-ed69-47c9-b20f-cf2c68cc92d2
|
1992-05-30 21:11:25 +00:00
|
|
|
;;; ring.el ends here
|