1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00
emacs/lisp/map-ynp.el

211 lines
7.2 KiB
EmacsLisp
Raw Normal View History

1992-05-30 22:12:04 +00:00
;;; map-ynp.el --- General-purpose boolean question-asker.
1992-07-22 02:58:21 +00:00
;;; Copyright (C) 1991, 1992 Free Software Foundation, Inc.
1992-07-16 21:47:34 +00:00
;; Author: Roland McGrath <roland@gnu.ai.mit.edu>
1992-07-17 08:15:29 +00:00
;; Keywords: lisp, extensions
1992-07-16 21:47:34 +00:00
1991-06-29 20:04:01 +00:00
;;; This program 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-16 21:47:34 +00:00
;;; the Free Software Foundation; either version 2, or (at your option)
1991-06-29 20:04:01 +00:00
;;; any later version.
;;;
;;; This program 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.
;;;
;;; A copy of the GNU General Public License can be obtained from this
;;; program's author (send electronic mail to roland@ai.mit.edu) or from
;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA
;;; 02139, USA.
1992-07-16 21:47:34 +00:00
;;; Commentary:
1991-06-29 20:04:01 +00:00
;;; map-y-or-n-p is a general-purpose question-asking function.
;;; It asks a series of y/n questions (a la y-or-n-p), and decides to
;;; applies an action to each element of a list based on the answer.
;;; The nice thing is that you also get some other possible answers
;;; to use, reminiscent of query-replace: ! to answer y to all remaining
;;; questions; ESC or q to answer n to all remaining questions; . to answer
;;; y once and then n for the remainder; and you can get help with C-h.
1992-07-16 21:47:34 +00:00
;;; Code:
1991-06-29 20:04:01 +00:00
;;;###autoload
1992-07-28 23:26:57 +00:00
(defun map-y-or-n-p (prompter actor list &optional help action-alist)
1991-06-29 20:04:01 +00:00
"Ask a series of boolean questions.
1992-07-28 23:26:57 +00:00
Takes args PROMPTER ACTOR LIST, and optional args HELP and ACTION-ALIST.
1991-06-29 20:04:01 +00:00
LIST is a list of objects, or a function of no arguments to return the next
object or nil.
1992-03-15 03:47:41 +00:00
If PROMPTER is a string, the prompt is \(format PROMPTER OBJECT\). If not
1992-03-10 22:16:10 +00:00
a string, PROMPTER is a function of one arg (an object from LIST), which
returns a string to be used as the prompt for that object. If the return
value is not a string, it is eval'd to get the answer; it may be nil to
ignore the object, t to act on the object without asking the user, or a
form to do a more complex prompt.
1991-06-29 20:04:01 +00:00
ACTOR is a function of one arg (an object from LIST),
which gets called with each object that the user answers `yes' for.
If HELP is given, it is a list (OBJECT OBJECTS ACTION),
where OBJECT is a string giving the singular noun for an elt of LIST;
OBJECTS is the plural noun for elts of LIST, and ACTION is a transitive
verb describing ACTOR. The default is \(\"object\" \"objects\" \"act on\"\).
At the prompts, the user may enter y, Y, or SPC to act on that object;
n, N, or DEL to skip that object; ! to act on all following objects;
ESC or q to exit (skip all following objects); . (period) to act on the
current object and then exit; or \\[help-command] to get help.
1992-07-28 23:26:57 +00:00
If ACTION-ALIST is given, it is an alist (KEY FUNCTION HELP) of extra keys
that will be accepted. KEY is a character; FUNCTION is a function of one
arg (an object from LIST); HELP is a string. When the user hits KEY,
FUNCTION is called. If it returns non-nil, the object is considered
\"acted upon\", and the next object from LIST is processed. If it returns
nil, the prompt is repeated for the same object.
1993-03-09 19:53:06 +00:00
This function uses `query-replace-map' to define the standard responses,
but not all of the responses which `query-replace' understands
are meaningful here.
1991-06-29 20:04:01 +00:00
Returns the number of actions taken."
1993-03-09 19:53:06 +00:00
(let* ((user-keys (if action-alist
(concat (mapconcat (function
(lambda (elt)
(key-description
(char-to-string (car elt)))))
1992-07-28 23:26:57 +00:00
action-alist ", ")
" ")
""))
;; Make a map that defines each user key as a vector containing
;; its definition.
1993-03-09 19:53:06 +00:00
(map (cons 'keymap
(append (mapcar (lambda (elt)
(cons (car elt) (vector (nth 1 elt))))
1993-03-09 19:53:06 +00:00
action-alist)
query-replace-map)))
1991-12-21 09:14:03 +00:00
(actions 0)
1993-03-09 19:53:06 +00:00
prompt char elt tail def
1991-12-21 09:14:03 +00:00
(next (if (or (symbolp list)
(subrp list)
1993-01-26 01:58:16 +00:00
(byte-code-function-p list)
1991-12-21 09:14:03 +00:00
(and (consp list)
(eq (car list) 'lambda)))
(function (lambda ()
(setq elt (funcall list))))
(function (lambda ()
(if list
(progn
(setq elt (car list)
list (cdr list))
t)
nil))))))
1993-03-09 19:53:06 +00:00
1991-06-29 20:04:01 +00:00
(if (stringp prompter)
(setq prompter (` (lambda (object)
(format (, prompter) object)))))
1991-09-26 06:39:56 +00:00
(while (funcall next)
1991-06-29 20:04:01 +00:00
(setq prompt (funcall prompter elt))
(if (stringp prompt)
(progn
(setq quit-flag nil)
1991-06-29 20:04:01 +00:00
;; Prompt the user about this object.
(let ((cursor-in-echo-area t))
1992-08-03 02:02:37 +00:00
(message "%s(y, n, !, ., q, %sor %s) "
1992-07-28 23:26:57 +00:00
prompt user-keys
(key-description (char-to-string help-char)))
1993-03-09 19:53:06 +00:00
(setq char (read-event)))
;; Show the answer to the question.
(message "%s(y, n, !, ., q, %sor %s) %s"
prompt user-keys
(key-description (char-to-string help-char))
(single-key-description char))
1993-03-09 19:53:06 +00:00
(setq def (lookup-key map (vector char)))
(cond ((eq def 'exit)
1991-06-29 20:04:01 +00:00
(setq next (function (lambda () nil))))
1993-03-09 19:53:06 +00:00
((eq def 'act)
1991-06-29 20:04:01 +00:00
;; Act on the object.
1993-03-09 19:53:06 +00:00
(funcall actor elt)
1991-06-29 20:04:01 +00:00
(setq actions (1+ actions)))
1993-03-09 19:53:06 +00:00
((eq def 'skip)
1991-06-29 20:04:01 +00:00
;; Skip the object.
)
1993-03-09 19:53:06 +00:00
((eq def 'act-and-exit)
1991-06-29 20:04:01 +00:00
;; Act on the object and then exit.
(funcall actor elt)
(setq actions (1+ actions)
next (function (lambda () nil))))
((eq def 'quit)
(setq quit-flag t)
(setq next (` (lambda ()
(setq next '(, next))
'(, elt)))))
1993-03-09 19:53:06 +00:00
((eq def 'automatic)
1991-07-09 16:28:08 +00:00
;; Act on this and all following objects.
(if (eval (funcall prompter elt))
(progn
(funcall actor elt)
(setq actions (1+ actions))))
1991-12-21 09:14:03 +00:00
(while (funcall next)
1991-07-09 16:28:08 +00:00
(if (eval (funcall prompter elt))
1991-06-29 20:04:01 +00:00
(progn
(funcall actor elt)
1991-07-01 20:59:52 +00:00
(setq actions (1+ actions))))))
1993-03-09 19:53:06 +00:00
((eq def 'help)
(with-output-to-temp-buffer "*Help*"
(princ
(let ((object (if help (nth 0 help) "object"))
(objects (if help (nth 1 help) "objects"))
(action (if help (nth 2 help) "act on")))
(concat (format "Type SPC or `y' to %s the current %s;
DEL or `n' to skip the current %s;
! to %s all remaining %s;
ESC or `q' to exit;\n"
action object object action objects)
(mapconcat (function
(lambda (elt)
(format "%c to %s"
(nth 0 elt)
(nth 2 elt))))
action-alist
";\n")
(if action-alist ";\n")
(format "or . (period) to %s \
the current %s and exit."
action object)))))
1991-07-09 16:28:08 +00:00
(setq next (` (lambda ()
(setq next '(, next))
'(, elt)))))
((vectorp def)
1992-07-28 23:26:57 +00:00
;; A user-defined key.
(if (funcall (aref def 0) elt) ;Call its function.
1992-07-28 23:26:57 +00:00
;; The function has eaten this object.
(setq actions (1+ actions))
;; Regurgitated; try again.
(setq next (` (lambda ()
1993-03-09 19:53:06 +00:00
(setq next '(, next))
'(, elt))))))
1991-06-29 20:04:01 +00:00
(t
;; Random char.
(message "Type %s for help."
(key-description (char-to-string help-char)))
(beep)
(sit-for 1)
1991-07-09 16:28:08 +00:00
(setq next (` (lambda ()
(setq next '(, next))
'(, elt)))))))
1991-06-29 20:04:01 +00:00
(if (eval prompt)
(progn
1991-07-09 16:28:08 +00:00
(funcall actor elt)
(setq actions (1+ actions))))))
1991-06-29 20:04:01 +00:00
;; Clear the last prompt from the minibuffer.
(message "")
;; Return the number of actions that were taken.
actions))
1992-05-30 22:12:04 +00:00
;;; map-ynp.el ends here