1 ;;; ibuf-macs.el --- macros for ibuffer
3 ;; Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
5 ;; Author: Colin Walters <walters@verbum.org>
6 ;; Maintainer: John Paul Wallington <jpw@gnu.org>
8 ;; Keywords: buffer, convenience
10 ;; This file is part of GNU Emacs.
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 ;; General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with this program ; see the file COPYING. If not, write to
24 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
34 ;; From Paul Graham's "ANSI Common Lisp", adapted for Emacs Lisp here.
35 (defmacro ibuffer-aif
(test true-body
&rest false-body
)
36 "Evaluate TRUE-BODY or FALSE-BODY depending on value of TEST.
37 If TEST returns non-nil, bind `it' to the value, and evaluate
38 TRUE-BODY. Otherwise, evaluate forms in FALSE-BODY as if in `progn'.
40 (let ((sym (make-symbol "ibuffer-aif-sym")))
47 ;; (put 'ibuffer-aif 'lisp-indent-function 2)
49 (defmacro ibuffer-awhen
(test &rest body
)
50 "Evaluate BODY if TEST returns non-nil.
51 During evaluation of body, bind `it' to the value returned by TEST."
55 ;; (put 'ibuffer-awhen 'lisp-indent-function 1)
57 (defmacro ibuffer-save-marks
(&rest body
)
58 "Save the marked status of the buffers and execute BODY; restore marks."
59 (let ((bufsym (make-symbol "bufsym")))
60 `(let ((,bufsym
(current-buffer))
61 (ibuffer-save-marks-tmp-mark-list (ibuffer-current-state-list)))
66 (with-current-buffer ,bufsym
67 (ibuffer-redisplay-engine
68 ;; Get rid of dead buffers
70 (mapcar #'(lambda (e) (when (buffer-live-p (car e
))
72 ibuffer-save-marks-tmp-mark-list
)))
73 (ibuffer-redisplay t
))))))
74 ;; (put 'ibuffer-save-marks 'lisp-indent-function 0)
77 (defmacro* define-ibuffer-column
(symbol (&key name inline props
78 summarizer
) &rest body
)
79 "Define a column SYMBOL for use with `ibuffer-formats'.
81 BODY will be called with `buffer' bound to the buffer object, and
82 `mark' bound to the current mark on the buffer. The original ibuffer
83 buffer will be bound to `ibuffer-buf'.
85 If NAME is given, it will be used as a title for the column.
86 Otherwise, the title will default to a capitalized version of the
87 SYMBOL's name. PROPS is a plist of additional properties to add to
88 the text, such as `mouse-face'. And SUMMARIZER, if given, is a
89 function which will be passed a list of all the strings in its column;
90 it should return a string to display at the bottom.
92 Note that this macro expands into a `defun' for a function named
93 ibuffer-make-column-NAME. If INLINE is non-nil, then the form will be
94 inlined into the compiled format versions. This means that if you
95 change its definition, you should explicitly call
96 `ibuffer-recompile-formats'."
97 (let* ((sym (intern (concat "ibuffer-make-column-"
98 (symbol-name symbol
))))
99 (bod-1 `(with-current-buffer buffer
108 `(push '(,sym
,bod
) ibuffer-inline-columns
)
109 `(defun ,sym
(buffer mark
)
111 (put (quote ,sym
) 'ibuffer-column-name
114 (capitalize (symbol-name symbol
))))
116 ;; Store the name of the summarizing function.
117 `(put (quote ,sym
) 'ibuffer-column-summarizer
118 (quote ,summarizer
)))
120 ;; This will store the actual values of the column
122 `(put (quote ,sym
) 'ibuffer-column-summary nil
))
124 ;; (put 'define-ibuffer-column 'lisp-indent-function 'defun)
127 (defmacro* define-ibuffer-sorter
(name documentation
131 "Define a method of sorting named NAME.
132 DOCUMENTATION is the documentation of the function, which will be called
133 `ibuffer-do-sort-by-NAME'.
134 DESCRIPTION is a short string describing the sorting method.
136 For sorting, the forms in BODY will be evaluated with `a' bound to one
137 buffer object, and `b' bound to another. BODY should return a non-nil
138 value if and only if `a' is \"less than\" `b'."
140 (defun ,(intern (concat "ibuffer-do-sort-by-" (symbol-name name
))) ()
141 ,(or documentation
"No :documentation specified for this sorting method.")
143 (setq ibuffer-sorting-mode
',name
)
144 (ibuffer-redisplay t
))
145 (push (list ',name
,description
148 ibuffer-sorting-functions-alist
)
150 ;; (put 'define-ibuffer-sorter 'lisp-indent-function 1)
153 (defmacro* define-ibuffer-op
(op args
160 (opstring "operated on")
161 (active-opstring "Operate on")
164 "Generate a function which operates on a buffer.
165 OP becomes the name of the function; if it doesn't begin with
166 `ibuffer-do-', then that is prepended to it.
167 When an operation is performed, this function will be called once for
168 each marked buffer, with that buffer current.
170 ARGS becomes the formal parameters of the function.
171 DOCUMENTATION becomes the docstring of the function.
172 INTERACTIVE becomes the interactive specification of the function.
173 MARK describes which type of mark (:deletion, or nil) this operation
174 uses. :deletion means the function operates on buffers marked for
175 deletion, otherwise it acts on normally marked buffers.
176 MODIFIER-P describes how the function modifies buffers. This is used
177 to set the modification flag of the Ibuffer buffer itself. Valid
179 nil - the function never modifiers buffers
180 t - the function it always modifies buffers
181 :maybe - attempt to discover this information by comparing the
182 buffer's modification flag.
183 DANGEROUS is a boolean which should be set if the user should be
184 prompted before performing this operation.
185 OPSTRING is a string which will be displayed to the user after the
186 operation is complete, in the form:
187 \"Operation complete; OPSTRING x buffers\"
188 ACTIVE-OPSTRING is a string which will be displayed to the user in a
189 confirmation message, in the form:
190 \"Really ACTIVE-OPSTRING x buffers?\"
191 COMPLEX means this function is special; see the source code of this
192 macro for exactly what it does."
194 (defun ,(intern (concat (if (string-match "^ibuffer-do" (symbol-name op
))
195 "" "ibuffer-do-") (symbol-name op
)))
197 ,(if (stringp documentation
)
199 (format "%s marked buffers." active-opstring
))
200 ,(if (not (null interactive
))
201 `(interactive ,interactive
)
203 (assert (eq major-mode
'ibuffer-mode
))
204 (setq ibuffer-did-modification nil
)
205 (let ((marked-names (,(case mark
207 'ibuffer-deletion-marked-buffer-names
)
209 'ibuffer-marked-buffer-names
)))))
210 (when (null marked-names
)
211 (setq marked-names
(list (buffer-name (ibuffer-current-buffer))))
212 (ibuffer-set-mark ,(case mark
214 'ibuffer-deletion-char
)
216 'ibuffer-marked-char
))))
217 ,(let* ((finish (append
219 (if (eq modifier-p t
)
220 '((setq ibuffer-did-modification t
))
222 `((ibuffer-redisplay t
)
223 (message ,(concat "Operation finished; " opstring
" %s buffers") count
))))
224 (inner-body (if complex
227 (with-current-buffer buf
234 'ibuffer-map-deletion-lines
)
236 'ibuffer-map-marked-lines
))
238 ,(if (eq modifier-p
:maybe
)
239 `(let ((ibuffer-tmp-previous-buffer-modification
240 (buffer-modified-p buf
)))
242 (when (not (eq ibuffer-tmp-previous-buffer-modification
243 (buffer-modified-p buf
)))
244 (setq ibuffer-did-modification t
))))
248 `(when (ibuffer-confirm-operation-on ,active-opstring marked-names
)
252 ;; (put 'define-ibuffer-op 'lisp-indent-function 2)
255 (defmacro* define-ibuffer-filter
(name documentation
260 "Define a filter named NAME.
261 DOCUMENTATION is the documentation of the function.
262 READER is a form which should read a qualifier from the user.
263 DESCRIPTION is a short string describing the filter.
265 BODY should contain forms which will be evaluated to test whether or
266 not a particular buffer should be displayed or not. The forms in BODY
267 will be evaluated with BUF bound to the buffer object, and QUALIFIER
268 bound to the current value of the filter."
269 (let ((fn-name (intern (concat "ibuffer-filter-by-" (symbol-name name
)))))
271 (defun ,fn-name
(qualifier)
272 ,(concat (or documentation
"This filter is not documented."))
273 (interactive (list ,reader
))
274 (ibuffer-push-filter (cons ',name qualifier
))
276 (format ,(concat (format "Filter by %s added: " description
)
279 (ibuffer-update nil t
))
280 (push (list ',name
,description
281 #'(lambda (buf qualifier
)
283 ibuffer-filtering-alist
)
285 ;; (put 'define-ibuffer-filter 'lisp-indent-function 2)
289 ;;; ibuf-macs.el ends here