1 ;;; ibuf-macs.el --- macros for ibuffer
3 ;; Copyright (C) 2000, 2001, 2002, 2003 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'.
98 \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)"
99 (let* ((sym (intern (concat "ibuffer-make-column-"
100 (symbol-name symbol
))))
101 (bod-1 `(with-current-buffer buffer
110 `(push '(,sym
,bod
) ibuffer-inline-columns
)
111 `(defun ,sym
(buffer mark
)
113 (put (quote ,sym
) 'ibuffer-column-name
116 (capitalize (symbol-name symbol
))))
118 ;; Store the name of the summarizing function.
119 `(put (quote ,sym
) 'ibuffer-column-summarizer
120 (quote ,summarizer
)))
122 ;; This will store the actual values of the column
124 `(put (quote ,sym
) 'ibuffer-column-summary nil
))
126 ;; (put 'define-ibuffer-column 'lisp-indent-function 'defun)
129 (defmacro* define-ibuffer-sorter
(name documentation
133 "Define a method of sorting named NAME.
134 DOCUMENTATION is the documentation of the function, which will be called
135 `ibuffer-do-sort-by-NAME'.
136 DESCRIPTION is a short string describing the sorting method.
138 For sorting, the forms in BODY will be evaluated with `a' bound to one
139 buffer object, and `b' bound to another. BODY should return a non-nil
140 value if and only if `a' is \"less than\" `b'.
142 \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)"
144 (defun ,(intern (concat "ibuffer-do-sort-by-" (symbol-name name
))) ()
145 ,(or documentation
"No :documentation specified for this sorting method.")
147 (setq ibuffer-sorting-mode
',name
)
148 (ibuffer-redisplay t
))
149 (push (list ',name
,description
152 ibuffer-sorting-functions-alist
)
154 ;; (put 'define-ibuffer-sorter 'lisp-indent-function 1)
157 (defmacro* define-ibuffer-op
(op args
164 (opstring "operated on")
165 (active-opstring "Operate on")
168 "Generate a function which operates on a buffer.
169 OP becomes the name of the function; if it doesn't begin with
170 `ibuffer-do-', then that is prepended to it.
171 When an operation is performed, this function will be called once for
172 each marked buffer, with that buffer current.
174 ARGS becomes the formal parameters of the function.
175 DOCUMENTATION becomes the docstring of the function.
176 INTERACTIVE becomes the interactive specification of the function.
177 MARK describes which type of mark (:deletion, or nil) this operation
178 uses. :deletion means the function operates on buffers marked for
179 deletion, otherwise it acts on normally marked buffers.
180 MODIFIER-P describes how the function modifies buffers. This is used
181 to set the modification flag of the Ibuffer buffer itself. Valid
183 nil - the function never modifiers buffers
184 t - the function it always modifies buffers
185 :maybe - attempt to discover this information by comparing the
186 buffer's modification flag.
187 DANGEROUS is a boolean which should be set if the user should be
188 prompted before performing this operation.
189 OPSTRING is a string which will be displayed to the user after the
190 operation is complete, in the form:
191 \"Operation complete; OPSTRING x buffers\"
192 ACTIVE-OPSTRING is a string which will be displayed to the user in a
193 confirmation message, in the form:
194 \"Really ACTIVE-OPSTRING x buffers?\"
195 COMPLEX means this function is special; see the source code of this
196 macro for exactly what it does.
198 \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)"
200 (defun ,(intern (concat (if (string-match "^ibuffer-do" (symbol-name op
))
201 "" "ibuffer-do-") (symbol-name op
)))
203 ,(if (stringp documentation
)
205 (format "%s marked buffers." active-opstring
))
206 ,(if (not (null interactive
))
207 `(interactive ,interactive
)
209 (assert (eq major-mode
'ibuffer-mode
))
210 (setq ibuffer-did-modification nil
)
211 (let ((marked-names (,(case mark
213 'ibuffer-deletion-marked-buffer-names
)
215 'ibuffer-marked-buffer-names
)))))
216 (when (null marked-names
)
217 (setq marked-names
(list (buffer-name (ibuffer-current-buffer))))
218 (ibuffer-set-mark ,(case mark
220 'ibuffer-deletion-char
)
222 'ibuffer-marked-char
))))
223 ,(let* ((finish (append
225 (if (eq modifier-p t
)
226 '((setq ibuffer-did-modification t
))
228 `((ibuffer-redisplay t
)
229 (message ,(concat "Operation finished; " opstring
" %s buffers") count
))))
230 (inner-body (if complex
233 (with-current-buffer buf
240 'ibuffer-map-deletion-lines
)
242 'ibuffer-map-marked-lines
))
244 ,(if (eq modifier-p
:maybe
)
245 `(let ((ibuffer-tmp-previous-buffer-modification
246 (buffer-modified-p buf
)))
248 (when (not (eq ibuffer-tmp-previous-buffer-modification
249 (buffer-modified-p buf
)))
250 (setq ibuffer-did-modification t
))))
254 `(when (ibuffer-confirm-operation-on ,active-opstring marked-names
)
258 ;; (put 'define-ibuffer-op 'lisp-indent-function 2)
261 (defmacro* define-ibuffer-filter
(name documentation
266 "Define a filter named NAME.
267 DOCUMENTATION is the documentation of the function.
268 READER is a form which should read a qualifier from the user.
269 DESCRIPTION is a short string describing the filter.
271 BODY should contain forms which will be evaluated to test whether or
272 not a particular buffer should be displayed or not. The forms in BODY
273 will be evaluated with BUF bound to the buffer object, and QUALIFIER
274 bound to the current value of the filter.
276 \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)"
277 (let ((fn-name (intern (concat "ibuffer-filter-by-" (symbol-name name
)))))
279 (defun ,fn-name
(qualifier)
280 ,(concat (or documentation
"This filter is not documented."))
281 (interactive (list ,reader
))
282 (ibuffer-push-filter (cons ',name qualifier
))
284 (format ,(concat (format "Filter by %s added: " description
)
287 (ibuffer-update nil t
))
288 (push (list ',name
,description
289 #'(lambda (buf qualifier
)
291 ibuffer-filtering-alist
)
293 ;; (put 'define-ibuffer-filter 'lisp-indent-function 2)
297 ;;; arch-tag: 2748edce-82c9-4cd9-9d9d-bd73e43c20c5
298 ;;; ibuf-macs.el ends here