New function `locate-user-emacs-file'.
[emacs.git] / lisp / proced.el
blob77247eef34cdd04ca10dab2c525098f18c225eaa
1 ;;; proced.el --- operate on system processes like dired
3 ;; Copyright (C) 2008 Free Software Foundation, Inc.
5 ;; Author: Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6 ;; Keywords: Processes, Unix
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Proced makes an Emacs buffer containing a listing of the current
26 ;; system processes. You can use the normal Emacs commands to move around
27 ;; in this buffer, and special Proced commands to operate on the processes
28 ;; listed. See `proced-mode' for getting started.
30 ;; To do:
31 ;; - interactive temporary customizability of flags in `proced-grammar-alist'
32 ;; - allow "sudo kill PID", "renice PID"
34 ;; Wishlist
35 ;; - tree view like pstree(1)
37 ;;; Code:
39 (require 'time-date) ; for `with-decoded-time-value'
41 (defgroup proced nil
42 "Proced mode."
43 :group 'processes
44 :group 'unix
45 :prefix "proced-")
47 (defcustom proced-signal-function 'signal-process
48 "Name of signal function.
49 It can be an elisp function (usually `signal-process') or a string specifying
50 the external command (usually \"kill\")."
51 :group 'proced
52 :type '(choice (function :tag "function")
53 (string :tag "command")))
55 (defcustom proced-signal-list
56 '( ;; signals supported on all POSIX compliant systems
57 ("HUP (1. Hangup)")
58 ("INT (2. Terminal interrupt)")
59 ("QUIT (3. Terminal quit)")
60 ("ABRT (6. Process abort)")
61 ("KILL (9. Kill - cannot be caught or ignored)")
62 ("ALRM (14. Alarm Clock)")
63 ("TERM (15. Termination)")
64 ;; POSIX 1003.1-2001
65 ;; Which systems do not support these signals so that we can
66 ;; exclude them from `proced-signal-list'?
67 ("CONT (Continue executing)")
68 ("STOP (Stop executing / pause - cannot be caught or ignored)")
69 ("TSTP (Terminal stop / pause)"))
70 "List of signals, used for minibuffer completion."
71 :group 'proced
72 :type '(repeat (string :tag "signal")))
74 ;; For which attributes can we use a fixed width of the output field?
75 ;; A fixed width speeds up formatting, yet it can make
76 ;; `proced-grammar-alist' system-dependent.
77 ;; (If proced runs like top(1) we want it to be fast.)
79 ;; If it is impossible / unlikely that an attribute has the same value
80 ;; for two processes, then sorting can be based on one ordinary (fast)
81 ;; predicate like `<'. Otherwise, a list of proced predicates can be used
82 ;; to refine the sort.
84 ;; It would be neat if one could temporarily override the following
85 ;; predefined rules.
86 (defcustom proced-grammar-alist
87 '( ;; attributes defined in `system-process-attributes'
88 (euid "EUID" "%d" right proced-< nil (euid pid) (nil t nil))
89 (user "USER" nil left proced-string-lessp nil (user pid) (nil t nil))
90 (egid "EGID" "%d" right proced-< nil (egid euid pid) (nil t nil))
91 (group "GROUP" nil left proced-string-lessp nil (group user pid) (nil t nil))
92 (comm "COMMAND" nil left proced-string-lessp nil (comm pid) (nil t nil))
93 (state "STAT" nil left proced-string-lessp nil (state pid) (nil t nil))
94 (ppid "PPID" "%d" right proced-< nil (ppid pid) (nil t nil))
95 (pgrp "PGRP" "%d" right proced-< nil (pgrp euid pid) (nil t nil))
96 (sess "SESS" "%d" right proced-< nil (sess pid) (nil t nil))
97 (ttname "TTY" proced-format-ttname left proced-string-lessp nil (ttname pid) (nil t nil))
98 (tpgid "TPGID" "%d" right proced-< nil (tpgid pid) (nil t nil))
99 (minflt "MINFLT" "%d" right proced-< nil (minflt pid) (nil t t))
100 (majflt "MAJFLT" "%d" right proced-< nil (majflt pid) (nil t t))
101 (cminflt "CMINFLT" "%d" right proced-< nil (cminflt pid) (nil t t))
102 (cmajflt "CMAJFLT" "%d" right proced-< nil (cmajflt pid) (nil t t))
103 (utime "UTIME" proced-format-time right proced-time-lessp t (utime pid) (nil t t))
104 (stime "STIME" proced-format-time right proced-time-lessp t (stime pid) (nil t t))
105 (cutime "CUTIME" proced-format-time right proced-time-lessp t (cutime pid) (nil t t))
106 (cstime "CSTIME" proced-format-time right proced-time-lessp t (cstime pid) (nil t t))
107 (pri "PR" "%d" right proced-< t (pri pid) (nil t t))
108 (nice "NI" "%3d" 3 proced-< t (nice pid) (t t nil))
109 (thcount "THCOUNT" "%d" right proced-< t (thcount pid) (nil t t))
110 (start "START" proced-format-start 6 proced-time-lessp nil (start pid) (t t nil))
111 (vsize "VSIZE" "%d" right proced-< t (vsize pid) (nil t t))
112 (rss "RSS" "%d" right proced-< t (rss pid) (nil t t))
113 (etime "ETIME" proced-format-time right proced-time-lessp t (etime pid) (nil t t))
114 (pcpu "%CPU" "%.1f" right proced-< t (pcpu pid) (nil t t))
115 (pmem "%MEM" "%.1f" right proced-< t (pmem pid) (nil t t))
116 (args "ARGS" proced-format-args left proced-string-lessp nil (args pid) (nil t nil))
118 ;; attributes defined by proced (see `proced-process-attributes')
119 (pid "PID" "%d" right proced-< nil (pid) (t t nil))
120 ;; time: sum of utime and stime
121 (time "TIME" proced-format-time right proced-time-lessp t (time pid) (nil t t))
122 ;; ctime: sum of cutime and cstime
123 (ctime "CTIME" proced-format-time right proced-time-lessp t (ctime pid) (nil t t)))
124 "Alist of rules for handling Proced attributes.
126 Each element has the form
128 (KEY NAME FORMAT JUSTIFY PREDICATE REVERSE SORT-SCHEME REFINE-FLAGS).
130 Symbol KEY is the car of a process attribute.
132 String NAME appears in the header line.
134 FORMAT specifies the format for displaying the attribute values.
135 It can be a string passed to `format'. It can be a function called
136 with one argument, the value of the attribute. Nil means take as is.
138 If JUSTIFY is an integer, its modulus gives the width of the attribute
139 values formatted with FORMAT. If JUSTIFY is positive, NAME appears
140 right-justified, otherwise it appears left-justified. If JUSTIFY is 'left
141 or 'right, the field width is calculated from all field values in the listing.
142 If JUSTIFY is 'left, the field values are formatted left-justified and
143 right-justified otherwise.
145 PREDICATE is the predicate for sorting and filtering the process listing
146 based on attribute KEY. PREDICATE takes two arguments P1 and P2,
147 the corresponding attribute values of two processes. PREDICATE should
148 return 'equal if P1 has same rank like P2. Any other non-nil value says
149 that P1 is \"less than\" P2, or nil if not.
151 REVERSE is non-nil if the sort order is opposite to the order defined
152 by PREDICATE.
154 SORT-SCHEME is a list (KEY1 KEY2 ...) defining a hierarchy of rules
155 for sorting the process listing. KEY1, KEY2, ... are KEYs appearing as cars
156 of `proced-grammar-alist'. First the PREDICATE of KEY1 is evaluated.
157 If it yields non-equal, it defines the sort order for the corresponding
158 processes. If it evaluates to 'equal the PREDICATE of KEY2 is evaluated, etc.
160 REFINE-FLAGS is a list (LESS-B EQUAL-B LARGER-B) used by the command
161 `proced-refine' (see there) to refine the listing based on attribute KEY.
162 This command compares the value of attribute KEY of every process with
163 the value of attribute KEY of the process at the position of point
164 using PREDICATE.
165 If PREDICATE yields non-nil, the process is accepted if LESS-B is non-nil.
166 If PREDICATE yields 'equal, the process is accepted if EQUAL-B is non-nil.
167 If PREDICATE yields nil, the process is accepted if LARGER-B is non-nil."
168 :group 'proced
169 :type '(repeat (list :tag "Attribute"
170 (symbol :tag "Key")
171 (string :tag "Header")
172 (choice :tag "Format"
173 (const :tag "None" nil)
174 (string :tag "Format String")
175 (function :tag "Formatting Function"))
176 (choice :tag "Justification"
177 (const :tag "left" left)
178 (const :tag "right" right)
179 (integer :tag "width"))
180 (function :tag "Predicate")
181 (boolean :tag "Reverse Sort Order")
182 (repeat :tag "Sort Scheme" (symbol :tag "Key"))
183 (list :tag "Refine Flags"
184 (boolean :tag "Less")
185 (boolean :tag "Equal")
186 (boolean :tag "Larger")))))
188 (defcustom proced-custom-attributes nil
189 "List of functions defining custom attributes.
190 This variable extends the functionality of `proced-process-attributes'.
191 Each function is called with one argument, the list of attributes
192 of a system process. It returns a cons cell of the form (KEY . VALUE)
193 like `system-process-attributes'. This cons cell is appended to the list
194 returned by `proced-process-attributes'.
195 If the function returns nil, the value is ignored."
196 :group 'proced
197 :type '(repeat (function :tag "Attribute")))
199 ;; Formatting and sorting rules are defined "per attribute". If formatting
200 ;; and / or sorting should use more than one attribute, it appears more
201 ;; transparent to define a new derived attribute, so that formatting and
202 ;; sorting can use them consistently. (Are there exceptions to this rule?
203 ;; Would it be advantageous to have yet more general methods available?)
204 ;; Sorting can also be based on attributes that are invisible in the listing.
206 (defcustom proced-format-alist
207 '((short user pid pcpu pmem start time args)
208 (medium user pid pcpu pmem vsize rss ttname state start time args)
209 (long user euid group pid pri nice pcpu pmem vsize rss ttname state
210 start time args)
211 (verbose user euid group egid pid ppid pgrp sess comm pri nice pcpu pmem
212 state thcount vsize rss ttname tpgid minflt majflt cminflt cmajflt
213 start time utime stime ctime cutime cstime etime args))
214 "Alist of formats of listing.
215 The car of each element is a symbol, the name of the format.
216 The cdr is a list of keys appearing in `proced-grammar-alist'."
217 :group 'proced
218 :type '(alist :key-type (symbol :tag "Format Name")
219 :value-type (repeat :tag "Keys" (symbol :tag ""))))
221 (defcustom proced-format 'short
222 "Current format of Proced listing.
223 It can be the car of an element of `proced-format-alist'.
224 It can also be a list of keys appearing in `proced-grammar-alist'."
225 :group 'proced
226 :type '(choice (symbol :tag "Format Name")
227 (repeat :tag "Keys" (symbol :tag ""))))
228 (make-variable-buffer-local 'proced-format)
230 ;; FIXME: is there a better name for filter `user' that does not coincide
231 ;; with an attribute key?
232 (defcustom proced-filter-alist
233 `((user (user . ,(concat "\\`" (user-real-login-name) "\\'")))
234 (user-running (user . ,(concat "\\`" (user-real-login-name) "\\'"))
235 (state . "\\`[Rr]\\'"))
236 (all)
237 (all-running (state . "\\`[Rr]\\'"))
238 (emacs (fun-all . (lambda (list)
239 (proced-filter-children list ,(emacs-pid))))))
240 "Alist of process filters.
241 The car of each element is a symbol, the name of the filter.
242 The cdr is a list of elementary filters that are applied to every process.
243 A process is displayed if it passes all elementary filters of a selected
244 filter.
246 An elementary filter can be one of the following:
247 \(KEY . REGEXP) If value of attribute KEY matches REGEXP,
248 accept this process.
249 \(KEY . FUN) Apply function FUN to attribute KEY. Accept this process,
250 if FUN returns non-nil.
251 \(function . FUN) For each process, apply function FUN to list of attributes
252 of each. Accept the process if FUN returns non-nil.
253 \(fun-all . FUN) Apply function FUN to entire process list.
254 FUN must return the filtered list."
255 :group 'proced
256 :type '(repeat (cons :tag "Filter"
257 (symbol :tag "Filter Name")
258 (repeat :tag "Filters"
259 (choice (cons :tag "Key . Regexp" (symbol :tag "Key") regexp)
260 (cons :tag "Key . Function" (symbol :tag "Key") function)
261 (cons :tag "Function" (const :tag "Key: function" function) function)
262 (cons :tag "Fun-all" (const :tag "Key: fun-all" fun-all) function))))))
264 (defcustom proced-filter 'user
265 "Current filter of proced listing.
266 It can be the car of an element of `proced-filter-alist'.
267 It can also be a list of elementary filters as in the cdrs of the elements
268 of `proced-filter-alist'."
269 :group 'proced
270 :type '(choice (symbol :tag "Filter Name")
271 (repeat :tag "Filters"
272 (choice (cons :tag "Key . Regexp" (symbol :tag "Key") regexp)
273 (cons :tag "Key . Function" (symbol :tag "Key") function)
274 (cons :tag "Function" (const :tag "Key: function" function) function)
275 (cons :tag "Fun-all" (const :tag "Key: fun-all" fun-all) function)))))
276 (make-variable-buffer-local 'proced-filter)
278 (defcustom proced-sort 'pcpu
279 "Current sort scheme for proced listing.
280 It must be the KEY of an element of `proced-grammar-alist'.
281 It can also be a list of KEYs as in the SORT-SCHEMEs of the elements
282 of `proced-grammar-alist'."
283 :group 'proced
284 :type '(choice (symbol :tag "Sort Scheme")
285 (repeat :tag "Key List" (symbol :tag "Key"))))
286 (make-variable-buffer-local 'proced-format)
288 (defcustom proced-goal-attribute 'args
289 "If non-nil, key of the attribute that defines the `goal-column'."
290 :group 'proced
291 :type '(choice (const :tag "none" nil)
292 (symbol :tag "key")))
294 (defcustom proced-timer-interval 5
295 "Time interval in seconds for auto updating Proced buffers."
296 :group 'proced
297 :type 'integer)
299 (defcustom proced-timer-flag nil
300 "Non-nil for auto update of a Proced buffer.
301 Can be changed interactively via `proced-toggle-timer-flag'."
302 :group 'proced
303 :type 'boolean)
304 (make-variable-buffer-local 'proced-timer-flag)
306 ;; Internal variables
308 (defvar proced-process-alist nil
309 "Alist of processes displayed by Proced.
310 The car of each element is the PID, and the cdr is a list of
311 cons pairs, see `proced-process-attributes'.")
312 (make-variable-buffer-local 'proced-process-alist)
314 (defvar proced-sort-internal nil
315 "Sort scheme for listing (internal format).")
317 (defvar proced-marker-char ?* ; the answer is 42
318 "In proced, the current mark character.")
320 ;; Faces and font-lock code taken from dired,
321 ;; but face variables are deprecated for new code.
322 (defgroup proced-faces nil
323 "Faces used by Proced."
324 :group 'proced
325 :group 'faces)
327 (defface proced-mark
328 '((t (:inherit font-lock-constant-face)))
329 "Face used for proced marks."
330 :group 'proced-faces)
332 (defface proced-marked
333 '((t (:inherit font-lock-warning-face)))
334 "Face used for marked processes."
335 :group 'proced-faces)
337 (defface proced-sort-header
338 '((t (:inherit font-lock-keyword-face)))
339 "Face used for header of attribute used for sorting."
340 :group 'proced-faces)
342 (defvar proced-re-mark "^[^ \n]"
343 "Regexp matching a marked line.
344 Important: the match ends just after the marker.")
346 (defvar proced-header-line nil
347 "Headers in Proced buffer as a string.")
348 (make-variable-buffer-local 'proced-header-line)
350 (defvar proced-process-tree nil
351 "Process tree of listing (internal variable).")
353 (defvar proced-timer nil
354 "Stores if Proced timer is already installed.")
356 (defvar proced-log-buffer "*Proced log*"
357 "Name of Proced Log buffer.")
359 (defconst proced-help-string
360 "(n)ext, (p)revious, (m)ark, (u)nmark, (k)ill, (q)uit (type ? for more help)"
361 "Help string for proced.")
363 (defconst proced-header-help-echo
364 "mouse-1, mouse-2: sort by attribute %s%s (%s)"
365 "Help string shown when mouse is over a sortable header.")
367 (defconst proced-field-help-echo
368 "mouse-2, RET: refine by attribute %s %s"
369 "Help string shown when mouse is over a refinable field.")
371 (defvar proced-font-lock-keywords
372 `(;; (Any) proced marks.
373 (,proced-re-mark . 'proced-mark)
374 ;; Processes marked with `proced-marker-char'
375 ;; Should we make sure that only certain attributes are font-locked?
376 (,(concat "^[" (char-to-string proced-marker-char) "]")
377 ".+" (proced-move-to-goal-column) nil (0 'proced-marked))))
379 (defvar proced-mode-map
380 (let ((km (make-sparse-keymap)))
381 ;; moving
382 (define-key km " " 'proced-next-line)
383 (define-key km "n" 'next-line)
384 (define-key km "p" 'previous-line)
385 (define-key km "\C-n" 'next-line)
386 (define-key km "\C-p" 'previous-line)
387 (define-key km "\C-?" 'previous-line)
388 (define-key km [down] 'next-line)
389 (define-key km [up] 'previous-line)
390 ;; marking
391 (define-key km "d" 'proced-mark) ; Dired compatibility ("delete")
392 (define-key km "m" 'proced-mark)
393 (define-key km "u" 'proced-unmark)
394 (define-key km "\177" 'proced-unmark-backward)
395 (define-key km "M" 'proced-mark-all)
396 (define-key km "U" 'proced-unmark-all)
397 (define-key km "t" 'proced-toggle-marks)
398 (define-key km "C" 'proced-mark-children)
399 (define-key km "P" 'proced-mark-parents)
400 ;; filtering
401 (define-key km "f" 'proced-filter-interactive)
402 (define-key km [mouse-2] 'proced-refine)
403 (define-key km "\C-m" 'proced-refine)
404 ;; sorting
405 (define-key km "sc" 'proced-sort-pcpu)
406 (define-key km "sm" 'proced-sort-pmem)
407 (define-key km "sp" 'proced-sort-pid)
408 (define-key km "ss" 'proced-sort-start)
409 (define-key km "sS" 'proced-sort-interactive)
410 (define-key km "st" 'proced-sort-time)
411 (define-key km "su" 'proced-sort-user)
412 ;; similar to `Buffer-menu-sort-by-column'
413 (define-key km [header-line mouse-1] 'proced-sort-header)
414 (define-key km [header-line mouse-2] 'proced-sort-header)
415 ;; formatting
416 (define-key km "F" 'proced-format-interactive)
417 ;; operate
418 (define-key km "o" 'proced-omit-processes)
419 (define-key km "x" 'proced-send-signal) ; Dired compatibility
420 (define-key km "k" 'proced-send-signal) ; kill processes
421 ;; misc
422 (define-key km "g" 'revert-buffer) ; Dired compatibility
423 (define-key km "h" 'describe-mode)
424 (define-key km "?" 'proced-help)
425 (define-key km "q" 'quit-window)
426 (define-key km [remap undo] 'proced-undo)
427 (define-key km [remap advertised-undo] 'proced-undo)
429 "Keymap for proced commands.")
431 (easy-menu-define
432 proced-menu proced-mode-map "Proced Menu"
433 `("Proced"
434 ["Mark" proced-mark
435 :help "Mark Current Process"]
436 ["Unmark" proced-unmark
437 :help "Unmark Current Process"]
438 ["Mark All" proced-mark-all
439 :help "Mark All Processes"]
440 ["Unmark All" proced-unmark-all
441 :help "Unmark All Process"]
442 ["Toggle Marks" proced-toggle-marks
443 :help "Marked Processes Become Unmarked, and Vice Versa"]
444 ["Mark Children" proced-mark-children
445 :help "Mark Current Process and its Children"]
446 ["Mark Parents" proced-mark-parents
447 :help "Mark Current Process and its Parents"]
448 "--"
449 ("Filters"
450 :help "Select Filter for Process Listing"
451 ,@(mapcar (lambda (el)
452 (let ((filter (car el)))
453 `[,(symbol-name filter)
454 (proced-filter-interactive ',filter)
455 :style radio
456 :selected (eq proced-filter ',filter)]))
457 proced-filter-alist))
458 ("Sorting"
459 :help "Select Sort Scheme"
460 ["Sort..." proced-sort-interactive
461 :help "Sort Process List"]
462 "--"
463 ["Sort by %CPU" proced-sort-pcpu]
464 ["Sort by %MEM" proced-sort-pmem]
465 ["Sort by PID" proced-sort-pid]
466 ["Sort by START" proced-sort-start]
467 ["Sort by TIME" proced-sort-time]
468 ["Sort by USER" proced-sort-user])
469 ("Formats"
470 :help "Select Format for Process Listing"
471 ,@(mapcar (lambda (el)
472 (let ((format (car el)))
473 `[,(symbol-name format)
474 (proced-format-interactive ',format)
475 :style radio
476 :selected (eq proced-format ',format)]))
477 proced-format-alist))
478 "--"
479 ["Omit Marked Processes" proced-omit-processes
480 :help "Omit Marked Processes in Process Listing."]
481 "--"
482 ["Revert" revert-buffer
483 :help "Revert Process Listing"]
484 ["Auto Update" proced-toggle-timer-flag
485 :style radio
486 :selected (eval proced-timer-flag)
487 :help "Auto Update of Proced Buffer"]
488 ["Send signal" proced-send-signal
489 :help "Send Signal to Marked Processes"]))
491 ;; helper functions
492 (defun proced-marker-regexp ()
493 "Return regexp matching `proced-marker-char'."
494 ;; `proced-marker-char' must appear in column zero
495 (concat "^" (regexp-quote (char-to-string proced-marker-char))))
497 (defun proced-success-message (action count)
498 "Display success message for ACTION performed for COUNT processes."
499 (message "%s %s process%s" action count (if (= 1 count) "" "es")))
501 ;; Unlike dired, we do not define our own commands for vertical motion.
502 ;; If `goal-column' is set, `next-line' and `previous-line' are fancy
503 ;; commands to satisfy our modest needs. If `proced-goal-attribute'
504 ;; and/or `goal-column' are not set, `next-line' and `previous-line'
505 ;; are really what we need to preserve the column of point.
506 ;; We use `proced-move-to-goal-column' for "non-interactive" cases only
507 ;; to get a well-defined position of point.
509 (defun proced-move-to-goal-column ()
510 "Move to `goal-column' if non-nil. Return position of point."
511 (beginning-of-line)
512 (unless (eobp)
513 (if goal-column
514 (forward-char goal-column)
515 (forward-char 2)))
516 (point))
518 (defun proced-header-line ()
519 "Return header line for Proced buffer."
520 (list (propertize " " 'display '(space :align-to 0))
521 (replace-regexp-in-string ;; preserve text properties
522 "\\(%\\)" "\\1\\1" (substring proced-header-line (window-hscroll)))))
524 (defun proced-pid-at-point ()
525 "Return pid of system process at point.
526 Return nil if point is not on a process line."
527 (save-excursion
528 (beginning-of-line)
529 (if (looking-at "^. .")
530 (get-text-property (match-end 0) 'proced-pid))))
532 ;; proced mode
534 (define-derived-mode proced-mode nil "Proced"
535 "Mode for displaying UNIX system processes and sending signals to them.
536 Type \\[proced] to start a Proced session. In a Proced buffer
537 type \\<proced-mode-map>\\[proced-mark] to mark a process for later commands.
538 Type \\[proced-send-signal] to send signals to marked processes.
540 The initial content of a listing is defined by the variable `proced-filter'
541 and the variable `proced-format'.
542 The variable `proced-filter' specifies which system processes are displayed.
543 The variable `proced-format' specifies which attributes are displayed for
544 each process. Type \\[proced-filter-interactive] and \\[proced-format-interactive]
545 to change the values of `proced-filter' and `proced-format'.
546 The current value of the variable `proced-filter' is indicated in the
547 mode line.
549 The sort order of Proced listings is defined by the variable `proced-sort'.
550 Type \\[proced-sort-interactive] or click on a header in the header line
551 to change the sort scheme. The current sort scheme is indicated in the
552 mode line, using \"+\" or \"-\" for ascending or descending sort order.
554 An existing Proced listing can be refined by typing \\[proced-refine]
555 with point on the attribute of a process. If point is on the attribute ATTR,
556 this compares the value of ATTR of every process with the value of ATTR
557 of the process at the position of point. See `proced-refine' for details.
558 Refining an existing listing does not update the variable `proced-filter'.
560 The attribute-specific rules for formatting, filtering, sorting, and refining
561 are defined in `proced-grammar-alist'.
563 \\{proced-mode-map}"
564 (abbrev-mode 0)
565 (auto-fill-mode 0)
566 (setq buffer-read-only t
567 truncate-lines t
568 header-line-format '(:eval (proced-header-line)))
569 (add-hook 'post-command-hook 'force-mode-line-update nil t)
570 (set (make-local-variable 'revert-buffer-function) 'proced-revert)
571 (set (make-local-variable 'font-lock-defaults)
572 '(proced-font-lock-keywords t nil nil beginning-of-line))
573 (if (and (not proced-timer) proced-timer-interval)
574 (setq proced-timer
575 (run-at-time t proced-timer-interval 'proced-timer))))
577 ;; Proced mode is suitable only for specially formatted data.
578 (put 'proced-mode 'mode-class 'special)
580 ;;;###autoload
581 (defun proced (&optional arg)
582 "Generate a listing of UNIX system processes.
583 If invoked with optional ARG the window displaying the process
584 information will be displayed but not selected.
586 See `proced-mode' for a descreption of features available in Proced buffers."
587 (interactive "P")
588 (let ((buffer (get-buffer-create "*Proced*")) new)
589 (set-buffer buffer)
590 (setq new (zerop (buffer-size)))
591 (if new (proced-mode))
592 (if (or new arg)
593 (proced-update t))
594 (if arg
595 (display-buffer buffer)
596 (pop-to-buffer buffer)
597 (message
598 (substitute-command-keys
599 "Type \\<proced-mode-map>\\[quit-window] to quit, \\[proced-help] for help")))))
601 (defun proced-timer ()
602 "Auto-update Proced buffers using `run-at-time'."
603 (dolist (buf (buffer-list))
604 (with-current-buffer buf
605 (if (and (eq major-mode 'proced-mode)
606 proced-timer-flag)
607 (proced-update t t)))))
609 (defun proced-toggle-timer-flag (arg)
610 "Change whether this Proced buffer is updated automatically.
611 With prefix ARG, update this buffer automatically if ARG is positive,
612 otherwise do not update. Sets the variable `proced-timer-flag'.
613 The time interval for updates is specified via `proced-timer-interval'."
614 (interactive (list (or current-prefix-arg 'toggle)))
615 (setq proced-timer-flag
616 (cond ((eq arg 'toggle) (not proced-timer-flag))
617 (arg (> (prefix-numeric-value arg) 0))
618 (t (not proced-timer-flag))))
619 (message "`proced-timer-flag' set to %s" proced-timer-flag))
621 (defun proced-mark (&optional count)
622 "Mark the current (or next COUNT) processes."
623 (interactive "p")
624 (proced-do-mark t count))
626 (defun proced-unmark (&optional count)
627 "Unmark the current (or next COUNT) processes."
628 (interactive "p")
629 (proced-do-mark nil count))
631 (defun proced-unmark-backward (&optional count)
632 "Unmark the previous (or COUNT previous) processes."
633 ;; Analogous to `dired-unmark-backward',
634 ;; but `ibuffer-unmark-backward' behaves different.
635 (interactive "p")
636 (proced-do-mark nil (- (or count 1))))
638 (defun proced-do-mark (mark &optional count)
639 "Mark the current (or next COUNT) processes using MARK."
640 (or count (setq count 1))
641 (let ((backward (< count 0))
642 buffer-read-only)
643 (setq count (1+ (if (<= 0 count) count
644 (min (1- (line-number-at-pos)) (abs count)))))
645 (beginning-of-line)
646 (while (not (or (zerop (setq count (1- count))) (eobp)))
647 (proced-insert-mark mark backward))
648 (proced-move-to-goal-column)))
650 (defun proced-mark-all ()
651 "Mark all processes.
652 If `transient-mark-mode' is turned on and the region is active,
653 mark the region."
654 (interactive)
655 (proced-do-mark-all t))
657 (defun proced-unmark-all ()
658 "Unmark all processes.
659 If `transient-mark-mode' is turned on and the region is active,
660 unmark the region."
661 (interactive)
662 (proced-do-mark-all nil))
664 (defun proced-do-mark-all (mark)
665 "Mark all processes using MARK.
666 If `transient-mark-mode' is turned on and the region is active,
667 mark the region."
668 (let ((count 0) end buffer-read-only)
669 (save-excursion
670 (if (use-region-p)
671 ;; Operate even on those lines that are only partially a part
672 ;; of region. This appears most consistent with
673 ;; `proced-move-to-goal-column'.
674 (progn (setq end (save-excursion
675 (goto-char (region-end))
676 (unless (looking-at "^") (forward-line))
677 (point)))
678 (goto-char (region-beginning))
679 (unless (looking-at "^") (beginning-of-line)))
680 (goto-char (point-min))
681 (setq end (point-max)))
682 (while (< (point) end)
683 (setq count (1+ count))
684 (proced-insert-mark mark))
685 (proced-success-message "Marked" count))))
687 (defun proced-toggle-marks ()
688 "Toggle marks: marked processes become unmarked, and vice versa."
689 (interactive)
690 (let ((mark-re (proced-marker-regexp))
691 buffer-read-only)
692 (save-excursion
693 (goto-char (point-min))
694 (while (not (eobp))
695 (cond ((looking-at mark-re)
696 (proced-insert-mark nil))
697 ((looking-at " ")
698 (proced-insert-mark t))
700 (forward-line 1)))))))
702 (defun proced-insert-mark (mark &optional backward)
703 "If MARK is non-nil, insert `proced-marker-char'.
704 If BACKWARD is non-nil, move one line backwards before inserting the mark.
705 Otherwise move one line forward after inserting the mark."
706 (if backward (forward-line -1))
707 (insert (if mark proced-marker-char ?\s))
708 (delete-char 1)
709 (unless backward (forward-line)))
711 (defun proced-mark-children (ppid &optional omit-ppid)
712 "Mark child processes of process PPID.
713 Also mark process PPID unless prefix OMIT-PPID is non-nil."
714 (interactive (list (proced-pid-at-point) current-prefix-arg))
715 (proced-mark-process-alist
716 (proced-filter-children proced-process-alist ppid omit-ppid)))
718 (defun proced-mark-parents (cpid &optional omit-cpid)
719 "Mark parent processes of process CPID.
720 Also mark CPID unless prefix OMIT-CPID is non-nil."
721 (interactive (list (proced-pid-at-point) current-prefix-arg))
722 (proced-mark-process-alist
723 (proced-filter-parents proced-process-alist cpid omit-cpid)))
725 (defun proced-mark-process-alist (process-alist &optional quiet)
726 (let ((count 0))
727 (if process-alist
728 (let (buffer-read-only)
729 (save-excursion
730 (goto-char (point-min))
731 (while (not (eobp))
732 (when (assq (proced-pid-at-point) process-alist)
733 (insert proced-marker-char)
734 (delete-char 1)
735 (setq count (1+ count)))
736 (forward-line)))))
737 (unless quiet
738 (proced-success-message "Marked" count))))
740 ;; Mostly analog of `dired-do-kill-lines'.
741 ;; However, for negative args the target lines of `dired-do-kill-lines'
742 ;; include the current line, whereas `dired-mark' for negative args operates
743 ;; on the preceding lines. Here we are consistent with `dired-mark'.
744 (defun proced-omit-processes (&optional arg quiet)
745 "Omit marked processes.
746 With prefix ARG, omit that many lines starting with the current line.
747 \(A negative argument omits backward.)
748 If `transient-mark-mode' is turned on and the region is active,
749 omit the processes in region.
750 If QUIET is non-nil suppress status message.
751 Returns count of omitted lines."
752 (interactive "P")
753 (let ((mark-re (proced-marker-regexp))
754 (count 0)
755 buffer-read-only)
756 (cond ((use-region-p) ;; Omit active region
757 (let ((lines (count-lines (region-beginning) (region-end))))
758 (save-excursion
759 (goto-char (region-beginning))
760 (while (< count lines)
761 (proced-omit-process)
762 (setq count (1+ count))))))
763 ((not arg) ;; Omit marked lines
764 (save-excursion
765 (goto-char (point-min))
766 (while (and (not (eobp))
767 (re-search-forward mark-re nil t))
768 (proced-omit-process)
769 (setq count (1+ count)))))
770 ((< 0 arg) ;; Omit forward
771 (while (and (not (eobp)) (< count arg))
772 (proced-omit-process)
773 (setq count (1+ count))))
774 ((< arg 0) ;; Omit backward
775 (while (and (not (bobp)) (< count (- arg)))
776 (forward-line -1)
777 (proced-omit-process)
778 (setq count (1+ count)))))
779 (unless (zerop count) (proced-move-to-goal-column))
780 (unless quiet (proced-success-message "Omitted" count))
781 count))
783 (defun proced-omit-process ()
784 "Omit process from listing point is on.
785 Update `proced-process-alist' accordingly."
786 (setq proced-process-alist
787 (assq-delete-all (proced-pid-at-point) proced-process-alist))
788 (delete-region (line-beginning-position)
789 (save-excursion (forward-line) (point))))
791 ;;; Filtering
793 (defun proced-filter (process-alist filter-list)
794 "Apply FILTER-LIST to PROCESS-ALIST.
795 Return the filtered process list."
796 (if (symbolp filter-list)
797 (setq filter-list (cdr (assq filter-list proced-filter-alist))))
798 (dolist (filter filter-list)
799 (let (new-alist)
800 (cond ( ;; apply function to entire process list
801 (eq (car filter) 'fun-all)
802 (setq new-alist (funcall (cdr filter) process-alist)))
803 ( ;; apply predicate to each list of attributes
804 (eq (car filter) 'function)
805 (dolist (process process-alist)
806 (if (funcall (car filter) (cdr process))
807 (push process new-alist))))
808 (t ;; apply predicate to specified attribute
809 (let ((fun (if (stringp (cdr filter))
810 `(lambda (val)
811 (string-match ,(cdr filter) val))
812 (cdr filter)))
813 value)
814 (dolist (process process-alist)
815 (setq value (cdr (assq (car filter) (cdr process))))
816 (if (and value (funcall fun value))
817 (push process new-alist))))))
818 (setq process-alist new-alist)))
819 process-alist)
821 (defun proced-filter-interactive (scheme)
822 "Filter Proced buffer using SCHEME.
823 When called interactively, an empty string means nil, i.e., no filtering.
824 Set variable `proced-filter' to SCHEME. Revert listing."
825 (interactive
826 (let ((scheme (completing-read "Filter: "
827 proced-filter-alist nil t)))
828 (list (if (string= "" scheme) nil (intern scheme)))))
829 ;; only update if necessary
830 (unless (eq proced-filter scheme)
831 (setq proced-filter scheme)
832 (proced-update t)))
834 (defun proced-process-tree (process-alist)
835 "Return process tree for PROCESS-ALIST.
836 The process tree is an alist with elements (PPID PID1 PID2 ...).
837 PPID is a parent PID. PID1, PID2, ... are the child processes of PPID.
838 The list of children does not include grandchildren."
839 (let (children-list ppid cpids)
840 (dolist (process process-alist children-list)
841 (setq ppid (cdr (assq 'ppid (cdr process))))
842 (if ppid
843 (setq children-list
844 (if (setq cpids (assq ppid children-list))
845 (cons (cons ppid (cons (car process) (cdr cpids)))
846 (assq-delete-all ppid children-list))
847 (cons (list ppid (car process))
848 children-list)))))))
850 (defun proced-filter-children (process-alist ppid &optional omit-ppid)
851 "For PROCESS-ALIST return list of child processes of PPID.
852 This list includes PPID unless OMIT-PPID is non-nil."
853 (let ((proced-process-tree (proced-process-tree process-alist))
854 new-alist)
855 (dolist (pid (proced-children-pids ppid))
856 (push (assq pid process-alist) new-alist))
857 (if omit-ppid
858 (assq-delete-all ppid new-alist)
859 new-alist)))
861 ;; helper function
862 (defun proced-children-pids (ppid)
863 "Return list of children PIDs of PPID (including PPID)."
864 (let ((cpids (cdr (assq ppid proced-process-tree))))
865 (if cpids
866 (cons ppid (apply 'append (mapcar 'proced-children-pids cpids)))
867 (list ppid))))
869 (defun proced-filter-parents (process-alist pid &optional omit-pid)
870 "For PROCESS-ALIST return list of parent processes of PID.
871 This list includes CPID unless OMIT-CPID is non-nil."
872 (let ((parent-list (unless omit-pid (list (assq pid process-alist)))))
873 (while (setq pid (cdr (assq 'ppid (cdr (assq pid process-alist)))))
874 (push (assq pid process-alist) parent-list))
875 parent-list))
877 ;; Refining
879 ;; Filters are used to select the processes in a new listing.
880 ;; Refiners are used to narrow down further (interactively) the processes
881 ;; in an existing listing.
883 (defun proced-refine (&optional event)
884 "Refine Proced listing by comparing with the attribute value at point.
885 Optional EVENT is the location of the Proced field.
887 If point is on the attribute ATTR, this command compares the value of ATTR
888 of every process with the value of ATTR of the process at the position
889 of point. One can select processes for which the value of ATTR is
890 \"less than\", \"equal\", and / or \"larger\" than ATTR of the process
891 point is on.
893 The predicate for the comparison of two ATTR values is defined
894 in `proced-grammar-alist'. For each return value of the predicate
895 a refine flag is defined in `proced-grammar-alist'. A process is included
896 in the new listing if the refine flag for the return value of the predicate
897 is non-nil.
898 The help-echo string for `proced-refine' uses \"+\" or \"-\" to indicate
899 the current values of the refine flags.
901 This command refines an already existing process listing based initially
902 on the variable `proced-filter'. It does not change this variable.
903 It does not revert the listing. If you frequently need a certain refinement,
904 consider defining a new filter in `proced-filter-alist'."
905 (interactive (list last-input-event))
906 (if event (posn-set-point (event-end event)))
907 (let ((key (get-text-property (point) 'proced-key))
908 (pid (get-text-property (point) 'proced-pid)))
909 (if (and key pid)
910 (let* ((grammar (assq key proced-grammar-alist))
911 (predicate (nth 4 grammar))
912 (refiner (nth 7 grammar))
913 (ref (cdr (assq key (cdr (assq pid proced-process-alist)))))
914 val new-alist)
915 (when ref
916 (dolist (process proced-process-alist)
917 (setq val (funcall predicate (cdr (assq key (cdr process))) ref))
918 (if (cond ((not val) (nth 2 refiner))
919 ((eq val 'equal) (nth 1 refiner))
920 (val (car refiner)))
921 (push process new-alist)))
922 (setq proced-process-alist new-alist)
923 ;; Do not revert listing.
924 (proced-update)))
925 (message "No refiner defined here."))))
927 ;; Proced predicates for sorting and filtering are based on a three-valued
928 ;; logic:
929 ;; Predicates take two arguments P1 and P2, the corresponding attribute
930 ;; values of two processes. Predicates should return 'equal if P1 has
931 ;; same rank like P2. Any other non-nil value says that P1 is "less than" P2,
932 ;; or nil if not.
934 (defun proced-< (num1 num2)
935 "Return t if NUM1 less than NUM2.
936 Return `equal' if NUM1 equals NUM2. Return nil if NUM1 greater than NUM2."
937 (if (= num1 num2)
938 'equal
939 (< num1 num2)))
941 (defun proced-string-lessp (s1 s2)
942 "Return t if string S1 is less than S2 in lexicographic order.
943 Return `equal' if S1 and S2 have identical contents.
944 Return nil otherwise."
945 (if (string= s1 s2)
946 'equal
947 (string-lessp s1 s2)))
949 (defun proced-time-lessp (t1 t2)
950 "Return t if time value T1 is less than time value T2.
951 Return `equal' if T1 equals T2. Return nil otherwise."
952 (with-decoded-time-value ((high1 low1 micro1 t1)
953 (high2 low2 micro2 t2))
954 (cond ((< high1 high2))
955 ((< high2 high1) nil)
956 ((< low1 low2))
957 ((< low2 low1) nil)
958 ((< micro1 micro2))
959 ((< micro2 micro1) nil)
960 (t 'equal))))
962 ;;; Sorting
964 (defsubst proced-xor (b1 b2)
965 "Return the logical exclusive or of args B1 and B2."
966 (and (or b1 b2)
967 (not (and b1 b2))))
969 (defun proced-sort-p (p1 p2)
970 "Predicate for sorting processes P1 and P2."
971 (if (not (cdr proced-sort-internal))
972 ;; only one predicate: fast scheme
973 (let* ((sorter (car proced-sort-internal))
974 (k1 (cdr (assq (car sorter) (cdr p1))))
975 (k2 (cdr (assq (car sorter) (cdr p2)))))
976 ;; if the attributes are undefined, we should really abort sorting
977 (if (and k1 k2)
978 (proced-xor (funcall (nth 1 sorter) k1 k2)
979 (nth 2 sorter))))
980 (let ((sort-list proced-sort-internal) sorter predicate k1 k2)
981 (catch 'done
982 (while (setq sorter (pop sort-list))
983 (setq k1 (cdr (assq (car sorter) (cdr p1)))
984 k2 (cdr (assq (car sorter) (cdr p2)))
985 predicate
986 (if (and k1 k2)
987 (funcall (nth 1 sorter) k1 k2)))
988 (if (not (eq predicate 'equal))
989 (throw 'done (proced-xor predicate (nth 2 sorter)))))
990 (eq t predicate)))))
992 (defun proced-sort (process-alist sorter)
993 "Sort PROCESS-ALIST using scheme SORTER.
994 Return the sorted process list."
995 ;; translate SORTER into a list of lists (KEY PREDICATE REVERSE)
996 (setq proced-sort-internal
997 (mapcar (lambda (arg)
998 (let ((grammar (assq arg proced-grammar-alist)))
999 (list arg (nth 4 grammar) (nth 5 grammar))))
1000 (cond ((listp sorter) sorter)
1001 ((and (symbolp sorter)
1002 (nth 6 (assq sorter proced-grammar-alist))))
1003 ((symbolp sorter) (list sorter))
1004 (t (error "Sorter undefined %s" sorter)))))
1005 (if proced-sort-internal
1006 (sort process-alist 'proced-sort-p)
1007 process-alist))
1009 (defun proced-sort-interactive (scheme &optional revert)
1010 "Sort Proced buffer using SCHEME.
1011 When called interactively, an empty string means nil, i.e., no sorting.
1012 With prefix REVERT non-nil revert listing.
1014 Set variable `proced-sort' to SCHEME. The current sort scheme is displayed
1015 in the mode line, using \"+\" or \"-\" for ascending or descending order."
1016 (interactive
1017 (let ((scheme (completing-read "Sort attribute: "
1018 proced-grammar-alist nil t)))
1019 (list (if (string= "" scheme) nil (intern scheme))
1020 current-prefix-arg)))
1021 ;; only update if necessary
1022 (when (or (not (eq proced-sort scheme)) revert)
1023 (setq proced-sort scheme)
1024 (proced-update revert)))
1026 (defun proced-sort-pcpu (&optional revert)
1027 "Sort Proced buffer by percentage CPU time (%CPU)."
1028 (interactive "P")
1029 (proced-sort-interactive 'pcpu revert))
1031 (defun proced-sort-pmem (&optional revert)
1032 "Sort Proced buffer by percentage memory usage (%MEM)."
1033 (interactive "P")
1034 (proced-sort-interactive 'pmem))
1036 (defun proced-sort-pid (&optional revert)
1037 "Sort Proced buffer by PID."
1038 (interactive "P")
1039 (proced-sort-interactive 'pid revert))
1041 (defun proced-sort-start (&optional revert)
1042 "Sort Proced buffer by time the command started (START)."
1043 (interactive "P")
1044 (proced-sort-interactive 'start revert))
1046 (defun proced-sort-time (&optional revert)
1047 "Sort Proced buffer by CPU time (TIME)."
1048 (interactive "P")
1049 (proced-sort-interactive 'time revert))
1051 (defun proced-sort-user (&optional revert)
1052 "Sort Proced buffer by USER."
1053 (interactive "P")
1054 (proced-sort-interactive 'user revert))
1056 (defun proced-sort-header (event &optional revert)
1057 "Sort Proced listing based on an attribute.
1058 EVENT is a mouse event with starting position in the header line.
1059 It is converted in the corresponding attribute key.
1060 This command updates the variable `proced-sort'."
1061 (interactive "e\nP")
1062 (let ((start (event-start event))
1063 col key)
1064 (save-selected-window
1065 (select-window (posn-window start))
1066 (setq col (+ (1- (car (posn-actual-col-row start)))
1067 (window-hscroll)))
1068 (when (and (<= 0 col) (< col (length proced-header-line)))
1069 (setq key (get-text-property col 'proced-key proced-header-line))
1070 (if key
1071 (proced-sort-interactive key revert)
1072 (message "No sorter defined here."))))))
1074 ;;; Formating
1076 (defun proced-format-time (time)
1077 "Format time intervall TIME."
1078 (let* ((ftime (float-time time))
1079 (days (truncate ftime 86400))
1080 (ftime (mod ftime 86400))
1081 (hours (truncate ftime 3600))
1082 (ftime (mod ftime 3600))
1083 (minutes (truncate ftime 60))
1084 (seconds (mod ftime 60)))
1085 (cond ((< 0 days)
1086 (format "%d-%02d:%02d:%02d" days hours minutes seconds))
1087 ((< 0 hours)
1088 (format "%02d:%02d:%02d" hours minutes seconds))
1090 (format "%02d:%02d" minutes seconds)))))
1092 (defun proced-format-start (start)
1093 "Format time START.
1094 The return string is always 6 characters wide."
1095 (let ((d-start (decode-time start))
1096 (d-current (decode-time)))
1097 (cond ( ;; process started in previous years
1098 (< (nth 5 d-start) (nth 5 d-current))
1099 (format-time-string " %Y" start))
1100 ;; process started today
1101 ((and (= (nth 3 d-start) (nth 3 d-current))
1102 (= (nth 4 d-start) (nth 4 d-current)))
1103 (format-time-string " %H:%M" start))
1104 (t ;; process started this year
1105 (format-time-string "%b %e" start)))))
1107 (defun proced-format-ttname (ttname)
1108 "Format attribute TTNAME, omitting path \"/dev/\"."
1109 ;; Does this work for all systems?
1110 (substring ttname (if (string-match "\\`/dev/" ttname)
1111 (match-end 0) 0)))
1113 (defun proced-format-args (args)
1114 "Format attribute ARGS.
1115 Replace newline characters by \"^J\" (two characters)."
1116 (replace-regexp-in-string "\n" "^J" args))
1118 (defun proced-format (process-alist format)
1119 "Display PROCESS-ALIST using FORMAT."
1120 (if (symbolp format)
1121 (setq format (cdr (assq format proced-format-alist))))
1122 (insert (make-string (length process-alist) ?\n))
1123 (let ((whitespace " ") header-list grammar)
1124 ;; Loop over all attributes
1125 (while (setq grammar (pop format))
1126 (if (symbolp grammar)
1127 (setq grammar (assq grammar proced-grammar-alist)))
1128 (let* ((key (car grammar))
1129 (fun (cond ((stringp (nth 2 grammar))
1130 `(lambda (arg) (format ,(nth 2 grammar) arg)))
1131 ((not (nth 2 grammar)) 'identity)
1132 ( t (nth 2 grammar))))
1133 (whitespace (if format whitespace ""))
1134 ;; Text properties:
1135 ;; We use the text property `proced-key' to store in each
1136 ;; field the corresponding key.
1137 ;; Of course, the sort predicate appearing in help-echo
1138 ;; is only part of the story. But it gives the main idea.
1139 (hprops `(proced-key ,key mouse-face highlight
1140 help-echo ,(format proced-header-help-echo
1141 (if (nth 5 grammar) "-" "+")
1142 (nth 1 grammar)
1143 (if (nth 5 grammar) "descending" "ascending"))))
1144 (fprops `(proced-key ,key mouse-face highlight
1145 help-echo ,(format proced-field-help-echo
1146 (nth 1 grammar)
1147 (mapconcat (lambda (s)
1148 (if s "+" "-"))
1149 (nth 7 grammar) ""))))
1150 value)
1152 ;; highlight the header of the sort column
1153 (if (eq key proced-sort)
1154 (setq hprops (append '(face proced-sort-header) hprops)))
1155 (goto-char (point-min))
1156 (cond ( ;; fixed width of output field
1157 (numberp (nth 3 grammar))
1158 (dolist (process process-alist)
1159 (end-of-line)
1160 (setq value (cdr (assq key (cdr process))))
1161 (insert (if value
1162 (apply 'propertize (funcall fun value) fprops)
1163 (make-string (abs (nth 3 grammar)) ?\s))
1164 whitespace)
1165 (forward-line))
1166 (push (format (concat "%" (number-to-string (nth 3 grammar)) "s")
1167 (apply 'propertize (nth 1 grammar) hprops))
1168 header-list))
1170 ( ;; last field left-justified
1171 (and (not format) (eq 'left (nth 3 grammar)))
1172 (dolist (process process-alist)
1173 (end-of-line)
1174 (setq value (cdr (assq key (cdr process))))
1175 (if value (insert (apply 'propertize (funcall fun value) fprops)))
1176 (forward-line))
1177 (push (apply 'propertize (nth 1 grammar) hprops) header-list))
1179 (t ;; calculated field width
1180 (let ((width (length (nth 1 grammar)))
1181 field-list value)
1182 (dolist (process process-alist)
1183 (setq value (cdr (assq key (cdr process))))
1184 (if value
1185 (setq value (apply 'propertize (funcall fun value) fprops)
1186 width (max width (length value))
1187 field-list (cons value field-list))
1188 (push "" field-list)))
1189 (let ((afmt (concat "%" (if (eq 'left (nth 3 grammar)) "-" "")
1190 (number-to-string width) "s")))
1191 (push (format afmt (apply 'propertize (nth 1 grammar) hprops))
1192 header-list)
1193 (dolist (value (nreverse field-list))
1194 (end-of-line)
1195 (insert (format afmt value) whitespace)
1196 (forward-line))))))))
1198 ;; final cleanup
1199 (goto-char (point-min))
1200 (dolist (process process-alist)
1201 ;; We use the text property `proced-pid' to store in each line
1202 ;; the corresponding pid
1203 (put-text-property (point) (line-end-position) 'proced-pid (car process))
1204 (forward-line))
1205 ;; Set header line
1206 (setq proced-header-line
1207 (mapconcat 'identity (nreverse header-list) whitespace))
1208 (if (string-match "[ \t]+$" proced-header-line)
1209 (setq proced-header-line (substring proced-header-line 0
1210 (match-beginning 0))))
1211 ;; (delete-trailing-whitespace)
1212 (goto-char (point-min))
1213 (while (re-search-forward "[ \t\r]+$" nil t)
1214 (delete-region (match-beginning 0) (match-end 0)))))
1216 (defun proced-format-interactive (scheme &optional revert)
1217 "Format Proced buffer using SCHEME.
1218 When called interactively, an empty string means nil, i.e., no formatting.
1219 Set variable `proced-format' to SCHEME.
1220 With prefix REVERT non-nil revert listing."
1221 (interactive
1222 (let ((scheme (completing-read "Format: "
1223 proced-format-alist nil t)))
1224 (list (if (string= "" scheme) nil (intern scheme))
1225 current-prefix-arg)))
1226 ;; only update if necessary
1227 (when (or (not (eq proced-format scheme)) revert)
1228 (setq proced-format scheme)
1229 (proced-update revert)))
1231 ;; generate listing
1233 (defun proced-process-attributes ()
1234 "Return alist of attributes for each system process.
1235 This alist can be customized via `proced-custom-attributes'."
1236 (mapcar (lambda (pid)
1237 (let* ((attributes (system-process-attributes pid))
1238 (utime (cdr (assq 'utime attributes)))
1239 (stime (cdr (assq 'stime attributes)))
1240 (cutime (cdr (assq 'cutime attributes)))
1241 (cstime (cdr (assq 'cstime attributes)))
1242 attr)
1243 (setq attributes
1244 (append (list (cons 'pid pid))
1245 (if (and utime stime)
1246 (list (cons 'time (time-add utime stime))))
1247 (if (and cutime cstime)
1248 (list (cons 'ctime (time-add cutime cstime))))
1249 attributes))
1250 (dolist (fun proced-custom-attributes)
1251 (if (setq attr (funcall fun attributes))
1252 (push attr attributes)))
1253 (cons pid attributes)))
1254 (list-system-processes)))
1256 (defun proced-update (&optional revert quiet)
1257 "Update the `proced' process information. Preserves point and marks.
1258 With prefix REVERT non-nil, revert listing.
1259 Suppress status information if QUIET is nil."
1260 ;; This is the main function that generates and updates the process listing.
1261 (interactive "P")
1262 (setq revert (or revert (not proced-process-alist)))
1263 (or quiet (message (if revert "Updating process information..."
1264 "Updating process display...")))
1265 (if revert ;; evaluate all processes
1266 (setq proced-process-alist (proced-process-attributes)))
1267 ;; filtering and sorting
1268 (setq proced-process-alist
1269 (proced-sort (proced-filter proced-process-alist
1270 proced-filter) proced-sort))
1272 ;; It is useless to keep undo information if we revert, filter, or
1273 ;; refine the listing so that `proced-process-alist' has changed.
1274 ;; We could keep the undo information if we only re-sort the buffer.
1275 ;; Would that be useful? Re-re-sorting is easy, too.
1276 (if (consp buffer-undo-list)
1277 (setq buffer-undo-list nil))
1278 (let ((buffer-undo-list t)
1279 ;; If point is on a field, we try to return point to that field.
1280 ;; Otherwise we try to return to the same column
1281 (old-pos (let ((pid (proced-pid-at-point))
1282 (key (get-text-property (point) 'proced-key)))
1283 (list pid key ; can both be nil
1284 (if key
1285 (if (get-text-property (1- (point)) 'proced-key)
1286 (- (point) (previous-single-property-change
1287 (point) 'proced-key))
1289 (current-column)))))
1290 buffer-read-only mp-list)
1291 ;; remember marked processes (whatever the mark was)
1292 (goto-char (point-min))
1293 (while (re-search-forward "^\\(\\S-\\)" nil t)
1294 (push (cons (save-match-data (proced-pid-at-point))
1295 (match-string-no-properties 1)) mp-list))
1297 ;; generate listing
1298 (erase-buffer)
1299 (proced-format proced-process-alist proced-format)
1300 (goto-char (point-min))
1301 (while (not (eobp))
1302 (insert " ")
1303 (forward-line))
1304 (setq proced-header-line (concat " " proced-header-line))
1305 (if revert (set-buffer-modified-p nil))
1307 ;; set `goal-column'
1308 (let ((grammar (assq proced-goal-attribute proced-grammar-alist)))
1309 (setq goal-column ;; set to nil if no match
1310 (if (and grammar
1311 (not (zerop (buffer-size)))
1312 (string-match (regexp-quote (nth 1 grammar))
1313 proced-header-line))
1314 (if (nth 3 grammar)
1315 (match-beginning 0)
1316 (match-end 0)))))
1318 ;; Restore process marks and buffer position (if possible).
1319 ;; Sometimes this puts point in the middle of the proced buffer
1320 ;; where it is not interesting. Is there a better / more flexible solution?
1321 (goto-char (point-min))
1322 (let (pid mark new-pos)
1323 (if (or mp-list (car old-pos))
1324 (while (not (eobp))
1325 (setq pid (proced-pid-at-point))
1326 (when (setq mark (assq pid mp-list))
1327 (insert (cdr mark))
1328 (delete-char 1)
1329 (beginning-of-line))
1330 (when (eq (car old-pos) pid)
1331 (if (nth 1 old-pos)
1332 (let ((limit (line-end-position)) pos)
1333 (while (and (not new-pos)
1334 (setq pos (next-property-change (point) nil limit)))
1335 (goto-char pos)
1336 (when (eq (nth 1 old-pos)
1337 (get-text-property (point) 'proced-key))
1338 (forward-char (min (nth 2 old-pos)
1339 (- (next-property-change (point))
1340 (point))))
1341 (setq new-pos (point))))
1342 (unless new-pos
1343 ;; we found the process, but the field of point
1344 ;; is not listed anymore
1345 (setq new-pos (proced-move-to-goal-column))))
1346 (setq new-pos (min (+ (line-beginning-position) (nth 2 old-pos))
1347 (line-end-position)))))
1348 (forward-line)))
1349 (if new-pos
1350 (goto-char new-pos)
1351 (goto-char (point-min))
1352 (proced-move-to-goal-column)))
1353 ;; update modeline
1354 ;; Does the long `mode-name' clutter the modeline? It would be nice
1355 ;; to have some other location for displaying the values of the various
1356 ;; flags that affect the behavior of proced (flags one might want
1357 ;; to change on the fly). Where??
1358 (setq mode-name
1359 (concat "Proced"
1360 (if proced-filter
1361 (concat ": " (symbol-name proced-filter))
1363 (if proced-sort
1364 (let* ((key (if (listp proced-sort) (car proced-sort)
1365 proced-sort))
1366 (grammar (assq key proced-grammar-alist)))
1367 (concat " by " (if (nth 5 grammar) "-" "+")
1368 (nth 1 grammar)))
1369 "")))
1370 (force-mode-line-update)
1371 ;; done
1372 (or quiet (input-pending-p)
1373 (message (if revert "Updating process information...done."
1374 "Updating process display...done.")))))
1376 (defun proced-revert (&rest args)
1377 "Analog of `revert-buffer'."
1378 (proced-update t))
1380 ;; I do not want to reinvent the wheel. Should we rename `dired-pop-to-buffer'
1381 ;; and move it to window.el so that proced and ibuffer can easily use it, too?
1382 ;; What about functions like `appt-disp-window' that use
1383 ;; `shrink-window-if-larger-than-buffer'?
1384 (autoload 'dired-pop-to-buffer "dired")
1386 (defun proced-send-signal (&optional signal)
1387 "Send a SIGNAL to the marked processes.
1388 If no process is marked, operate on current process.
1389 SIGNAL may be a string (HUP, INT, TERM, etc.) or a number.
1390 If SIGNAL is nil display marked processes and query interactively for SIGNAL."
1391 (interactive)
1392 (let ((regexp (proced-marker-regexp))
1393 process-alist)
1394 ;; collect marked processes
1395 (save-excursion
1396 (goto-char (point-min))
1397 (while (re-search-forward regexp nil t)
1398 (push (cons (proced-pid-at-point)
1399 ;; How much info should we collect here?
1400 (substring (match-string-no-properties 0) 2))
1401 process-alist)))
1402 (setq process-alist
1403 (if process-alist
1404 (nreverse process-alist)
1405 ;; take current process
1406 (list (cons (proced-pid-at-point)
1407 (buffer-substring-no-properties
1408 (+ 2 (line-beginning-position))
1409 (line-end-position))))))
1410 (unless signal
1411 ;; Display marked processes (code taken from `dired-mark-pop-up').
1412 (let ((bufname " *Marked Processes*")
1413 (header-line (substring-no-properties proced-header-line)))
1414 (with-current-buffer (get-buffer-create bufname)
1415 (setq truncate-lines t
1416 proced-header-line header-line ; inherit header line
1417 header-line-format '(:eval (proced-header-line)))
1418 (add-hook 'post-command-hook 'force-mode-line-update nil t)
1419 (erase-buffer)
1420 (dolist (process process-alist)
1421 (insert " " (cdr process) "\n"))
1422 (save-window-excursion
1423 (dired-pop-to-buffer bufname) ; all we need
1424 (let* ((completion-ignore-case t)
1425 (pnum (if (= 1 (length process-alist))
1426 "1 process"
1427 (format "%d processes" (length process-alist))))
1428 ;; The following is an ugly hack. Is there a better way
1429 ;; to help people like me to remember the signals and
1430 ;; their meanings?
1431 (tmp (completing-read (concat "Send signal [" pnum
1432 "] (default TERM): ")
1433 proced-signal-list
1434 nil nil nil nil "TERM")))
1435 (setq signal (if (string-match "^\\(\\S-+\\)\\s-" tmp)
1436 (match-string 1 tmp) tmp))))))
1437 ;; send signal
1438 (let ((count 0)
1439 failures)
1440 ;; Why not always use `signal-process'? See
1441 ;; http://lists.gnu.org/archive/html/emacs-devel/2008-03/msg02955.html
1442 (if (functionp proced-signal-function)
1443 ;; use built-in `signal-process'
1444 (let ((signal (if (stringp signal)
1445 (if (string-match "\\`[0-9]+\\'" signal)
1446 (string-to-number signal)
1447 (make-symbol signal))
1448 signal))) ; number
1449 (dolist (process process-alist)
1450 (condition-case err
1451 (if (zerop (funcall
1452 proced-signal-function (car process) signal))
1453 (setq count (1+ count))
1454 (proced-log "%s\n" (cdr process))
1455 (push (cdr process) failures))
1456 (error ;; catch errors from failed signals
1457 (proced-log "%s\n" err)
1458 (proced-log "%s\n" (cdr process))
1459 (push (cdr process) failures)))))
1460 ;; use external system call
1461 (let ((signal (concat "-" (if (numberp signal)
1462 (number-to-string signal) signal))))
1463 (dolist (process process-alist)
1464 (with-temp-buffer
1465 (condition-case err
1466 (if (zerop (call-process
1467 proced-signal-function nil t nil
1468 signal (number-to-string (car process))))
1469 (setq count (1+ count))
1470 (proced-log (current-buffer))
1471 (proced-log "%s\n" (cdr process))
1472 (push (cdr process) failures))
1473 (error ;; catch errors from failed signals
1474 (proced-log (current-buffer))
1475 (proced-log "%s\n" (cdr process))
1476 (push (cdr process) failures)))))))
1477 (if failures
1478 ;; Proced error message are not always very precise.
1479 ;; Can we issue a useful one-line summary in the
1480 ;; message area (using FAILURES) if only one signal failed?
1481 (proced-log-summary
1482 signal
1483 (format "%d of %d signal%s failed"
1484 (length failures) (length process-alist)
1485 (if (= 1 (length process-alist)) "" "s")))
1486 (proced-success-message "Sent signal to" count)))
1487 ;; final clean-up
1488 (run-hooks 'proced-after-send-signal-hook))))
1490 ;; similar to `dired-why'
1491 (defun proced-why ()
1492 "Pop up a buffer with error log output from Proced.
1493 A group of errors from a single command ends with a formfeed.
1494 Thus, use \\[backward-page] to find the beginning of a group of errors."
1495 (interactive)
1496 (if (get-buffer proced-log-buffer)
1497 (save-selected-window
1498 ;; move `proced-log-buffer' to the front of the buffer list
1499 (select-window (display-buffer (get-buffer proced-log-buffer)))
1500 (setq truncate-lines t)
1501 (set-buffer-modified-p nil)
1502 (setq buffer-read-only t)
1503 (goto-char (point-max))
1504 (forward-line -1)
1505 (backward-page 1)
1506 (recenter 0))))
1508 ;; similar to `dired-log'
1509 (defun proced-log (log &rest args)
1510 "Log a message or the contents of a buffer.
1511 If LOG is a string and there are more args, it is formatted with
1512 those ARGS. Usually the LOG string ends with a \\n.
1513 End each bunch of errors with (proced-log t signal):
1514 this inserts the current time, buffer and signal at the start of the page,
1515 and \f (formfeed) at the end."
1516 (let ((obuf (current-buffer)))
1517 (with-current-buffer (get-buffer-create proced-log-buffer)
1518 (goto-char (point-max))
1519 (let (buffer-read-only)
1520 (cond ((stringp log)
1521 (insert (if args
1522 (apply 'format log args)
1523 log)))
1524 ((bufferp log)
1525 (insert-buffer-substring log))
1526 ((eq t log)
1527 (backward-page 1)
1528 (unless (bolp)
1529 (insert "\n"))
1530 (insert (current-time-string)
1531 "\tBuffer `" (buffer-name obuf) "', "
1532 (format "signal `%s'\n" (car args)))
1533 (goto-char (point-max))
1534 (insert "\f\n")))))))
1536 ;; similar to `dired-log-summary'
1537 (defun proced-log-summary (signal string)
1538 "State a summary of SIGNAL's failures, in echo area and log buffer.
1539 STRING is an overall summary of the failures."
1540 (message "Signal %s: %s--type ? for details" signal string)
1541 ;; Log a summary describing a bunch of errors.
1542 (proced-log (concat "\n" string "\n"))
1543 (proced-log t signal))
1545 (defun proced-help ()
1546 "Provide help for the `proced' user."
1547 (interactive)
1548 (proced-why)
1549 (if (eq last-command 'proced-help)
1550 (describe-mode)
1551 (message proced-help-string)))
1553 (defun proced-undo ()
1554 "Undo in a proced buffer.
1555 This doesn't recover killed processes, it just undoes changes in the proced
1556 buffer. You can use it to recover marks."
1557 (interactive)
1558 (let (buffer-read-only)
1559 (undo))
1560 (message "Change in Proced buffer undone.
1561 Killed processes cannot be recovered by Emacs."))
1563 (provide 'proced)
1565 ;; arch-tag: a6e312ad-9032-45aa-972d-31a8cfc545af
1566 ;;; proced.el ends here