1 ;;; erc-track.el --- Track modified channel buffers -*- lexical-binding:t -*-
3 ;; Copyright (C) 2002-2015 Free Software Foundation, Inc.
5 ;; Author: Mario Lang <mlang@delysid.org>
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: comm, faces
8 ;; URL: http://www.emacswiki.org/cgi-bin/wiki.pl?ErcChannelTracking
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Highlights keywords and pals (friends), and hides or highlights fools
28 ;; (using a dark color). Add to your init file:
30 ;; (require 'erc-track)
34 ;; * Add extensibility so that custom functions can track
35 ;; custom modification types.
37 (eval-when-compile (require 'cl-lib
))
44 (defgroup erc-track nil
45 "Track active buffers and show activity in the mode line."
48 (defcustom erc-track-enable-keybindings
'ask
49 "Whether to enable the ERC track keybindings, namely:
50 `C-c C-SPC' and `C-c C-@', which both do the same thing.
52 The default is to check to see whether these keys are used
53 already: if not, then enable the ERC track minor mode, which
54 provides these keys. Otherwise, do not touch the keys.
56 This can alternatively be set to either t or nil, which indicate
57 respectively always to enable ERC track minor mode or never to
58 enable ERC track minor mode.
60 The reason for using this default value is to both (1) adhere to
61 the Emacs development guidelines which say not to touch keys of
62 the form C-c C-<something> and also (2) to meet the expectations
63 of long-time ERC users, many of whom rely on these keybindings."
65 :type
'(choice (const :tag
"Ask, if used already" ask
)
66 (const :tag
"Enable" t
)
67 (const :tag
"Disable" nil
)))
69 (defcustom erc-track-visibility t
70 "Where do we look for buffers to determine their visibility?
71 The value of this variable determines, when a buffer is considered
72 visible or invisible. New messages in invisible buffers are tracked,
73 while switching to visible buffers when they are tracked removes them
74 from the list. See also `erc-track-when-inactive'.
79 visible - all visible frames
80 nil - only the selected frame
81 selected-visible - only the selected frame if it is visible
83 Activity means that there was no user input in the last 10 seconds."
85 :type
'(choice (const :tag
"All frames" t
)
86 (const :tag
"All visible frames" visible
)
87 (const :tag
"Only the selected frame" nil
)
88 (const :tag
"Only the selected frame if it is visible"
91 (defcustom erc-track-exclude nil
92 "A list targets (channel names or query targets) which should not be tracked."
94 :type
'(repeat string
))
96 (defcustom erc-track-remove-disconnected-buffers nil
97 "If true, remove buffers associated with a server that is
98 disconnected from `erc-modified-channels-alist'."
102 (defcustom erc-track-exclude-types
'("NICK" "333" "353")
103 "List of message types to be ignored.
104 This list could look like '(\"JOIN\" \"PART\").
106 By default, exclude changes of nicknames (NICK), display of who
107 set the channel topic (333), and listing of users on the current
110 :type
'erc-message-type
)
112 (defcustom erc-track-exclude-server-buffer nil
113 "If true, don't perform tracking on the server buffer; this is
114 useful for excluding all the things like MOTDs from the server and
115 other miscellaneous functions."
119 (defcustom erc-track-shorten-start
1
120 "This number specifies the minimum number of characters a channel name in
121 the mode-line should be reduced to."
125 (defcustom erc-track-shorten-cutoff
4
126 "All channel names longer than this value will be shortened."
130 (defcustom erc-track-shorten-aggressively nil
131 "If non-nil, channel names will be shortened more aggressively.
132 Usually, names are not shortened if this will save only one character.
133 Example: If there are two channels, #linux-de and #linux-fr, then
134 normally these will not be shortened. When shortening aggressively,
135 however, these will be shortened to #linux-d and #linux-f.
137 If this variable is set to `max', then channel names will be shortened
138 to the max. Usually, shortened channel names will remain unique for a
139 given set of existing channels. When shortening to the max, the shortened
140 channel names will be unique for the set of active channels only.
141 Example: If there are two active channels #emacs and #vi, and two inactive
142 channels #electronica and #folk, then usually the active channels are
143 shortened to #em and #v. When shortening to the max, however, #emacs is
144 not compared to #electronica -- only to #vi, therefore it can be shortened
145 even more and the result is #e and #v.
147 This setting is used by `erc-track-shorten-names'."
149 :type
'(choice (const :tag
"No" nil
)
151 (const :tag
"Max" max
)))
153 (defcustom erc-track-shorten-function
'erc-track-shorten-names
154 "This function will be used to reduce the channel names before display.
155 It takes one argument, CHANNEL-NAMES which is a list of strings.
156 It should return a list of strings of the same number of elements.
157 If nil instead of a function, shortening is disabled."
159 :type
'(choice (const :tag
"Disabled")
162 (defcustom erc-track-list-changed-hook nil
163 "Hook that is run whenever the contents of
164 `erc-modified-channels-alist' changes.
166 This is useful for people that don't use the default mode-line
167 notification but instead use a separate mechanism to provide
168 notification of channel activity."
172 (defcustom erc-track-use-faces t
173 "Use faces in the mode-line.
174 The faces used are the same as used for text in the buffers.
175 \(e.g. `erc-pal-face' is used if a pal sent a message to that channel.)"
179 (defcustom erc-track-faces-priority-list
181 (erc-nick-default-face erc-current-nick-face
)
182 erc-current-nick-face
184 (erc-nick-default-face erc-pal-face
)
188 (erc-button erc-default-face
)
189 (erc-nick-default-face erc-dangerous-host-face
)
190 erc-dangerous-host-face
191 erc-nick-default-face
192 (erc-nick-default-face erc-default-face
)
195 (erc-nick-default-face erc-fool-face
)
200 "A list of faces used to highlight active buffer names in the mode line.
201 If a message contains one of the faces in this list, the buffer name will
202 be highlighted using that face. The first matching face is used."
204 :type
'(repeat (choice face
205 (repeat :tag
"Combination" face
))))
207 (defcustom erc-track-priority-faces-only nil
208 "Only track text highlighted with a priority face.
209 If you would like to ignore changes in certain channels where there
210 are no faces corresponding to your `erc-track-faces-priority-list', set
211 this variable. You can set a list of channel name strings, so those
212 will be ignored while all other channels will be tracked as normal.
213 Other options are 'all, to apply this to all channels or nil, to disable
216 Note: If you have a lot of faces listed in `erc-track-faces-priority-list',
217 setting this variable might not be very useful."
219 :type
'(choice (const nil
)
223 (defcustom erc-track-faces-normal-list
224 '((erc-button erc-default-face
)
225 (erc-nick-default-face erc-dangerous-host-face
)
226 erc-dangerous-host-face
227 erc-nick-default-face
228 (erc-nick-default-face erc-default-face
)
231 "A list of faces considered to be part of normal conversations.
232 This list is used to highlight active buffer names in the mode line.
234 If a message contains one of the faces in this list, and the
235 previous mode line face for this buffer is also in this list, then
236 the buffer name will be highlighted using the face from the
237 message. This gives a rough indication that active conversations
238 are occurring in these channels.
240 The effect may be disabled by setting this variable to nil."
242 :type
'(repeat (choice face
243 (repeat :tag
"Combination" face
))))
245 (defcustom erc-track-position-in-mode-line
'before-modes
246 "Where to show modified channel information in the mode-line.
248 Setting this variable only has effects in GNU Emacs versions above 21.3.
251 'before-modes - add to the beginning of `mode-line-modes',
252 'after-modes - add to the end of `mode-line-modes',
253 t - add to the end of `global-mode-string',
254 nil - don't add to mode line."
256 :type
'(choice (const :tag
"Just before mode information" before-modes
)
257 (const :tag
"Just after mode information" after-modes
)
258 (const :tag
"After all other information" t
)
259 (const :tag
"Don't display in mode line" nil
))
260 :set
(lambda (sym val
)
262 (when (and (boundp 'erc-track-mode
)
264 (erc-track-remove-from-mode-line)
265 (erc-track-add-to-mode-line val
))))
267 (defun erc-modified-channels-object (strings)
268 "Generate a new `erc-modified-channels-object' based on STRINGS."
270 (if (featurep 'xemacs
)
271 (let ((e-m-c-s '("[")))
272 (push (cons (extent-at 0 (car strings
)) (car strings
))
274 (dolist (string (cdr strings
))
276 (push (cons (extent-at 0 string
) string
)
280 (concat (if (eq erc-track-position-in-mode-line
'after-modes
)
282 (mapconcat 'identity
(nreverse strings
) ",")
283 (if (eq erc-track-position-in-mode-line
'before-modes
)
285 (if (featurep 'xemacs
) '() "")))
287 (defvar erc-modified-channels-object
(erc-modified-channels-object nil
)
288 "Internal object used for displaying modified channels in the mode line.")
290 (put 'erc-modified-channels-object
'risky-local-variable t
); allow properties
292 (defvar erc-modified-channels-alist nil
293 "An ALIST used for tracking channel modification activity.
294 Each element looks like (BUFFER COUNT FACE) where BUFFER is a buffer
295 object of the channel the entry corresponds to, COUNT is a number
296 indicating how often activity was noticed, and FACE is the face to use
297 when displaying the buffer's name. See `erc-track-faces-priority-list',
298 and `erc-track-showcount'.
300 Entries in this list should only happen for buffers where activity occurred
301 while the buffer was not visible.")
303 (defcustom erc-track-showcount nil
304 "If non-nil, count of unseen messages will be shown for each channel."
308 (defcustom erc-track-showcount-string
":"
309 "The string to display between buffer name and the count in the mode line.
310 The default is a colon, resulting in \"#emacs:9\"."
314 (defcustom erc-track-switch-from-erc t
315 "If non-nil, `erc-track-switch-buffer' will return to the last non-erc buffer
316 when there are no more active channels."
320 (defcustom erc-track-switch-direction
'oldest
321 "Direction `erc-track-switch-buffer' should switch.
323 importance - find buffer with the most important message
324 oldest - find oldest active buffer
325 newest - find newest active buffer
326 leastactive - find buffer with least unseen messages
327 mostactive - find buffer with most unseen messages.
329 If set to 'importance, the importance is determined by position
330 in `erc-track-faces-priority-list', where first is most
333 :type
'(choice (const importance
)
340 (defun erc-track-remove-from-mode-line ()
341 "Remove `erc-track-modified-channels' from the mode-line"
342 (when (boundp 'mode-line-modes
)
343 (setq mode-line-modes
344 (remove '(t erc-modified-channels-object
) mode-line-modes
)))
345 (when (consp global-mode-string
)
346 (setq global-mode-string
347 (delq 'erc-modified-channels-object global-mode-string
))))
349 (defun erc-track-add-to-mode-line (position)
350 "Add `erc-track-modified-channels' to POSITION in the mode-line.
351 See `erc-track-position-in-mode-line' for possible values."
352 ;; CVS Emacs has a new format string, and global-mode-string
353 ;; is very far to the right.
354 (cond ((and (eq position
'before-modes
)
355 (boundp 'mode-line-modes
))
356 (add-to-list 'mode-line-modes
357 '(t erc-modified-channels-object
)))
358 ((and (eq position
'after-modes
)
359 (boundp 'mode-line-modes
))
360 (add-to-list 'mode-line-modes
361 '(t erc-modified-channels-object
) t
))
363 (when (not global-mode-string
)
364 (setq global-mode-string
'(""))) ; Padding for mode-line wart
365 (add-to-list 'global-mode-string
366 'erc-modified-channels-object
369 ;;; Shortening of names
371 (defun erc-track-shorten-names (channel-names)
372 "Call `erc-unique-channel-names' with the correct parameters.
373 This function is a good value for `erc-track-shorten-function'.
374 The list of all channels is returned by `erc-all-buffer-names'.
375 CHANNEL-NAMES is the list of active channel names.
376 Only channel names longer than `erc-track-shorten-cutoff' are
377 actually shortened, and they are only shortened to a minimum
378 of `erc-track-shorten-start' characters."
379 (erc-unique-channel-names
380 (erc-all-buffer-names)
383 (> (length s
) erc-track-shorten-cutoff
))
384 erc-track-shorten-start
))
386 (defvar erc-default-recipients
)
388 (defun erc-all-buffer-names ()
389 "Return all channel or query buffer names.
390 Note that we cannot use `erc-channel-list' with a nil argument,
391 because that does not return query buffers."
394 (dolist (buf (buffer-list))
396 (when (or (eq major-mode
'erc-mode
) (eq major-mode
'erc-dcc-chat-mode
))
397 (setq result
(cons (buffer-name) result
))))
400 (defun erc-unique-channel-names (all active
&optional predicate start
)
401 "Return a list of unique channel names.
402 ALL is the list of all channel and query buffer names.
403 ACTIVE is the list of active buffer names.
404 PREDICATE is a predicate that should return non-nil if a name needs
406 START is the minimum length of the name used."
407 (if (eq 'max erc-track-shorten-aggressively
)
408 ;; Return the unique substrings of all active channels.
409 (erc-unique-substrings active predicate start
)
410 ;; Otherwise, determine the unique substrings of all channels, and
411 ;; for every active channel, return the corresponding substring.
412 ;; Given the names of the active channels, we now need to find the
413 ;; corresponding short name from the list of all substrings. To
414 ;; avoid problems when there are two channels and one is a
415 ;; substring of the other (notorious examples are #hurd and
416 ;; #hurd-bunny), every candidate gets the longest possible
418 (let ((all-substrings (sort
419 (erc-unique-substrings all predicate start
)
420 (lambda (a b
) (> (length a
) (length b
)))))
422 (dolist (channel active
)
423 (let ((substrings all-substrings
)
426 (while (and substrings
(not winner
))
427 (setq candidate
(car substrings
)
428 substrings
(cdr substrings
))
429 (when (and (string= candidate
432 (min (length candidate
)
434 (not (member candidate result
)))
435 (setq winner candidate
)))
436 (setq result
(cons winner result
))))
439 (defun erc-unique-substrings (strings &optional predicate start
)
440 "Return a list of unique substrings of STRINGS."
441 (if (or (not (numberp start
))
446 (let* ((others (delete str
(copy-sequence strings
)))
447 (maxlen (length str
))
452 (if (and (functionp predicate
) (not (funcall predicate str
)))
453 ;; do not shorten if a predicate exists and it returns nil
455 ;; Start with smallest substring candidate, ie. length 1.
456 ;; Then check all the others and see whether any of them starts
457 ;; with the same substring. While there is such another
458 ;; element in the list, increase the length of the candidate.
462 (setq candidate
(substring str
0 i
)
463 done
(not (erc-unique-substring-1 candidate others
))))
465 (if (and (= (length candidate
) (1- maxlen
))
466 (not erc-track-shorten-aggressively
))
471 (defun erc-unique-substring-1 (candidate others
)
472 "Return non-nil when any string in OTHERS starts with CANDIDATE."
473 (let (result other
(maxlen (length candidate
)))
476 (setq other
(car others
)
478 (when (and (>= (length other
) maxlen
)
479 (string= candidate
(substring other
0 maxlen
)))
480 (setq result other
)))
487 ;; verify examples from the doc strings
488 (equal (let ((erc-track-shorten-aggressively nil
))
489 (erc-unique-channel-names
490 '("#emacs" "#vi" "#electronica" "#folk")
492 '("#em" "#vi")) ; emacs is different from electronica
493 (equal (let ((erc-track-shorten-aggressively t
))
494 (erc-unique-channel-names
495 '("#emacs" "#vi" "#electronica" "#folk")
497 '("#em" "#v")) ; vi is shortened by one letter
498 (equal (let ((erc-track-shorten-aggressively 'max
))
499 (erc-unique-channel-names
500 '("#emacs" "#vi" "#electronica" "#folk")
502 '("#e" "#v")) ; emacs need not be different from electronica
503 (equal (let ((erc-track-shorten-aggressively nil
))
504 (erc-unique-channel-names
505 '("#linux-de" "#linux-fr")
506 '("#linux-de" "#linux-fr")))
507 '("#linux-de" "#linux-fr")) ; shortening by one letter is too aggressive
508 (equal (let ((erc-track-shorten-aggressively t
))
509 (erc-unique-channel-names
510 '("#linux-de" "#linux-fr")
511 '("#linux-de" "#linux-fr")))
512 '("#linux-d" "#linux-f")); now we want to be aggressive
514 (equal (let ((erc-track-shorten-aggressively nil
))
515 (erc-unique-channel-names
516 '("#dunnet" "#lisp" "#sawfish" "#fsf" "#guile"
517 "#testgnome" "#gnu" "#fsbot" "#hurd" "#hurd-bunny"
519 '("#hurd-bunny" "#hurd" "#sawfish" "#lisp")))
520 '("#hurd-" "#hurd" "#s" "#l"))
521 (equal (let ((erc-track-shorten-aggressively nil
))
522 (erc-unique-substrings
523 '("#emacs" "#vi" "#electronica" "#folk")))
524 '("#em" "#vi" "#el" "#f"))
525 (equal (let ((erc-track-shorten-aggressively t
))
526 (erc-unique-substrings
527 '("#emacs" "#vi" "#electronica" "#folk")))
528 '("#em" "#v" "#el" "#f"))
529 (equal (let ((erc-track-shorten-aggressively nil
))
530 (erc-unique-channel-names
531 '("#emacs" "#burse" "+linux.de" "#starwars"
532 "#bitlbee" "+burse" "#ratpoison")
533 '("+linux.de" "#starwars" "#burse")))
535 (equal (let ((erc-track-shorten-aggressively nil
))
536 (erc-unique-channel-names
537 '("fsbot" "#emacs" "deego")
540 (equal (let ((erc-track-shorten-aggressively nil
))
541 (erc-unique-channel-names
542 '("fsbot" "#emacs" "deego")
548 (equal (let ((erc-track-shorten-aggressively nil
))
549 (erc-unique-channel-names
550 '("fsbot" "#emacs" "deego")
556 (let ((erc-track-shorten-aggressively nil
))
557 (equal (erc-unique-channel-names '("deego" "#hurd" "#hurd-bunny" "#emacs")
558 '("#hurd" "#hurd-bunny"))
559 '("#hurd" "#hurd-")))
561 (let ((erc-track-shorten-aggressively t
))
562 (and (equal (erc-unique-substring-1 "abc" '("ab" "abcd")) "abcd")
563 (not (erc-unique-substring-1 "a" '("xyz" "xab")))
564 (equal (erc-unique-substrings '("abc" "xyz" "xab"))
566 (equal (erc-unique-substrings '("abc" "abcdefg"))
568 (let ((erc-track-shorten-aggressively nil
))
569 (and (equal (erc-unique-substring-1 "abc" '("ab" "abcd")) "abcd")
570 (not (erc-unique-substring-1 "a" '("xyz" "xab")))
571 (equal (erc-unique-substrings '("abc" "xyz" "xab"))
572 '("abc" "xyz" "xab"))
573 (equal (erc-unique-substrings '("abc" "abcdefg"))
578 ;; Play nice with other IRC clients (and Emacs development rules) by
579 ;; making this a minor mode
581 (defvar erc-track-minor-mode-map
(make-sparse-keymap)
582 "Keymap for rcirc track minor mode.")
584 (define-key erc-track-minor-mode-map
(kbd "C-c C-@") 'erc-track-switch-buffer
)
585 (define-key erc-track-minor-mode-map
(kbd "C-c C-SPC")
586 'erc-track-switch-buffer
)
589 (define-minor-mode erc-track-minor-mode
590 "Toggle mode line display of ERC activity (ERC Track minor mode).
591 With a prefix argument ARG, enable ERC Track minor mode if ARG is
592 positive, and disable it otherwise. If called from Lisp, enable
593 the mode if ARG is omitted or nil.
595 ERC Track minor mode is a global minor mode. It exists for the
596 sole purpose of providing the C-c C-SPC and C-c C-@ keybindings.
597 Make sure that you have enabled the track module, otherwise the
598 keybindings will not do anything useful."
601 :keymap erc-track-minor-mode-map
605 (defun erc-track-minor-mode-maybe (&optional buffer
)
606 "Enable `erc-track-minor-mode', depending on `erc-track-enable-keybindings'."
607 (when (and (not erc-track-minor-mode
)
608 ;; don't start the minor mode until we have an ERC
609 ;; process running, because we don't want to prompt the
610 ;; user while starting Emacs
611 (or (and (buffer-live-p buffer
)
612 (with-current-buffer buffer
(eq major-mode
'erc-mode
)))
614 (cond ((eq erc-track-enable-keybindings
'ask
)
615 (let ((key (or (and (key-binding (kbd "C-c C-SPC")) "C-SPC")
616 (and (key-binding (kbd "C-c C-@")) "C-@"))))
619 (concat "The C-c " key
" binding is in use;"
620 " override it for tracking? "))
622 (message (concat "Will change it; set"
623 " `erc-track-enable-keybindings'"
624 " to disable this message"))
626 (erc-track-minor-mode 1))
627 (message (concat "Not changing it; set"
628 " `erc-track-enable-keybindings'"
629 " to disable this message"))
631 (erc-track-minor-mode 1))))
632 ((eq erc-track-enable-keybindings t
)
633 (erc-track-minor-mode 1))
638 ;;;###autoload (autoload 'erc-track-mode "erc-track" nil t)
639 (define-erc-module track nil
640 "This mode tracks ERC channel buffers with activity."
642 ((when (boundp 'erc-track-when-inactive
)
643 (if erc-track-when-inactive
645 (if (featurep 'xemacs
)
646 (defadvice switch-to-buffer
(after erc-update-when-inactive
647 (&rest args
) activate
)
648 (erc-user-is-active))
649 (add-hook 'window-configuration-change-hook
'erc-user-is-active
))
650 (add-hook 'erc-send-completed-hook
'erc-user-is-active
)
651 (add-hook 'erc-server-001-functions
'erc-user-is-active
))
652 (erc-track-add-to-mode-line erc-track-position-in-mode-line
)
653 (erc-update-mode-line)
654 (if (featurep 'xemacs
)
655 (defadvice switch-to-buffer
(after erc-update
(&rest args
) activate
)
656 (erc-modified-channels-update))
657 (add-hook 'window-configuration-change-hook
658 'erc-window-configuration-change
))
659 (add-hook 'erc-insert-post-hook
'erc-track-modified-channels
)
660 (add-hook 'erc-disconnected-hook
'erc-modified-channels-update
))
661 ;; enable the tracking keybindings
662 (add-hook 'erc-connect-pre-hook
'erc-track-minor-mode-maybe
)
663 (erc-track-minor-mode-maybe)))
665 ((when (boundp 'erc-track-when-inactive
)
666 (erc-track-remove-from-mode-line)
667 (if erc-track-when-inactive
669 (if (featurep 'xemacs
)
670 (ad-disable-advice 'switch-to-buffer
'after
671 'erc-update-when-inactive
)
672 (remove-hook 'window-configuration-change-hook
673 'erc-user-is-active
))
674 (remove-hook 'erc-send-completed-hook
'erc-user-is-active
)
675 (remove-hook 'erc-server-001-functions
'erc-user-is-active
)
676 (remove-hook 'erc-timer-hook
'erc-user-is-active
))
677 (if (featurep 'xemacs
)
678 (ad-disable-advice 'switch-to-buffer
'after
'erc-update
)
679 (remove-hook 'window-configuration-change-hook
680 'erc-window-configuration-change
))
681 (remove-hook 'erc-disconnected-hook
'erc-modified-channels-update
)
682 (remove-hook 'erc-insert-post-hook
'erc-track-modified-channels
))
683 ;; disable the tracking keybindings
684 (remove-hook 'erc-connect-pre-hook
'erc-track-minor-mode-maybe
)
685 (when erc-track-minor-mode
686 (erc-track-minor-mode -
1)))))
688 (defcustom erc-track-when-inactive nil
689 "Enable channel tracking even for visible buffers, if you are
693 :set
(lambda (sym val
)
703 (defvar erc-buffer-activity nil
704 "Last time the user sent something.")
706 (defvar erc-buffer-activity-timeout
10
707 "How many seconds of inactivity by the user
708 to consider when `erc-track-visibility' is set to
709 only consider active buffers visible.")
711 (defun erc-user-is-active (&rest _ignore
)
712 "Set `erc-buffer-activity'."
713 (when erc-server-connected
714 (setq erc-buffer-activity
(erc-current-time))
715 (erc-track-modified-channels)))
717 (defun erc-track-get-buffer-window (buffer frame-param
)
718 (if (eq frame-param
'selected-visible
)
719 (if (eq (frame-visible-p (selected-frame)) t
)
720 (get-buffer-window buffer nil
)
722 (get-buffer-window buffer frame-param
)))
724 (defun erc-buffer-visible (buffer)
725 "Return non-nil when the buffer is visible."
726 (if erc-track-when-inactive
727 (when erc-buffer-activity
; could be nil
728 (and (erc-track-get-buffer-window buffer erc-track-visibility
)
729 (<= (erc-time-diff erc-buffer-activity
(erc-current-time))
730 erc-buffer-activity-timeout
)))
731 (erc-track-get-buffer-window buffer erc-track-visibility
)))
733 ;;; Tracking the channel modifications
735 (defun erc-window-configuration-change ()
736 (unless (minibuffer-window-active-p (minibuffer-window))
737 ;; delay this until command has finished to make sure window is
738 ;; actually visible before clearing activity
739 (add-hook 'post-command-hook
'erc-modified-channels-update
)))
741 (defvar erc-modified-channels-update-inside nil
742 "Variable to prevent running `erc-modified-channels-update' multiple
743 times. Without it, you cannot debug `erc-modified-channels-display',
744 because the debugger also causes changes to the window-configuration.")
746 (defun erc-modified-channels-update (&rest _args
)
747 "This function updates the information in `erc-modified-channels-alist'
748 according to buffer visibility. It calls
749 `erc-modified-channels-display' at the end. This should usually be
750 called via `window-configuration-change-hook'.
753 (unless erc-modified-channels-update-inside
754 (let ((erc-modified-channels-update-inside t
)
755 (removed-channel nil
))
757 (let ((buffer (car elt
)))
758 (when (or (not (bufferp buffer
))
759 (not (buffer-live-p buffer
))
760 (erc-buffer-visible buffer
)
761 (and erc-track-remove-disconnected-buffers
762 (not (with-current-buffer buffer
763 erc-server-connected
))))
764 (setq removed-channel t
)
765 (erc-modified-channels-remove-buffer buffer
))))
766 erc-modified-channels-alist
)
767 (when removed-channel
768 (erc-modified-channels-display)))
769 (remove-hook 'post-command-hook
'erc-modified-channels-update
)))
771 (defvar erc-track-mouse-face
(if (featurep 'xemacs
)
773 'mode-line-highlight
)
774 "The face to use when mouse is over channel names in the mode line.")
776 (defun erc-make-mode-line-buffer-name (string buffer
&optional faces count
)
777 "Return STRING as a button that switches to BUFFER when clicked.
778 If FACES are provided, color STRING with them."
779 ;; We define a new sparse keymap every time, because 1. this data
780 ;; structure is very small, the alternative would require us to
781 ;; defvar a keymap, 2. the user is not interested in customizing it
782 ;; (really?), 3. the defun needs to switch to BUFFER, so we would
783 ;; need to save that value somewhere.
784 (let ((map (make-sparse-keymap))
785 (name (if erc-track-showcount
787 erc-track-showcount-string
788 (int-to-string count
))
789 (copy-sequence string
))))
790 (define-key map
(vector 'mode-line
'mouse-2
)
793 (save-selected-window
795 (posn-window (event-start e
)))
796 (switch-to-buffer buffer
))))
797 (define-key map
(vector 'mode-line
'mouse-3
)
800 (save-selected-window
802 (posn-window (event-start e
)))
803 (switch-to-buffer-other-window buffer
))))
804 (put-text-property 0 (length name
) 'local-map map name
)
807 'help-echo
(concat "mouse-2: switch to buffer, "
808 "mouse-3: switch to buffer in other window")
810 (put-text-property 0 (length name
) 'mouse-face erc-track-mouse-face name
)
811 (when (and faces erc-track-use-faces
)
812 (put-text-property 0 (length name
) 'face faces name
))
815 (defun erc-modified-channels-display ()
816 "Set `erc-modified-channels-object'
817 according to `erc-modified-channels-alist'.
818 Use `erc-make-mode-line-buffer-name' to create buttons."
819 (cond ((or (eq 'mostactive erc-track-switch-direction
)
820 (eq 'leastactive erc-track-switch-direction
))
821 (erc-track-sort-by-activest))
822 ((eq 'importance erc-track-switch-direction
)
823 (erc-track-sort-by-importance)))
824 (run-hooks 'erc-track-list-changed-hook
)
825 (when erc-track-position-in-mode-line
826 (let* ((oldobject erc-modified-channels-object
)
828 (when erc-modified-channels-alist
829 ;; erc-modified-channels-alist contains all the data we need. To
830 ;; better understand what is going on, we split things up into
831 ;; four lists: BUFFERS, COUNTS, SHORT-NAMES, and FACES. These
832 ;; four lists we use to create a new
833 ;; `erc-modified-channels-object' using
834 ;; `erc-make-mode-line-buffer-name'.
835 (let* ((buffers (mapcar 'car erc-modified-channels-alist
))
836 (counts (mapcar 'cadr erc-modified-channels-alist
))
837 (faces (mapcar 'cddr erc-modified-channels-alist
))
838 (long-names (mapcar #'(lambda (buf)
839 (or (buffer-name buf
)
842 (short-names (if (functionp erc-track-shorten-function
)
843 (funcall erc-track-shorten-function
848 (when (car short-names
)
849 (setq strings
(cons (erc-make-mode-line-buffer-name
855 (setq short-names
(cdr short-names
)
856 buffers
(cdr buffers
)
860 (newobject (erc-modified-channels-object strings
)))
861 (unless (equal-including-properties oldobject newobject
)
862 (setq erc-modified-channels-object newobject
)
863 (force-mode-line-update t
)))))
865 (defun erc-modified-channels-remove-buffer (buffer)
866 "Remove BUFFER from `erc-modified-channels-alist'."
867 (interactive "bBuffer: ")
868 (setq erc-modified-channels-alist
869 (delete (assq buffer erc-modified-channels-alist
)
870 erc-modified-channels-alist
))
871 (when (called-interactively-p 'interactive
)
872 (erc-modified-channels-display)))
874 (defun erc-track-find-face (faces)
875 "Return the face to use in the mode line from the faces in FACES.
876 If `erc-track-faces-priority-list' is set, the one from FACES who
877 is first in that list will be used. If nothing matches or if
878 `erc-track-faces-priority-list' is not set, the default mode-line
881 If `erc-track-faces-normal-list' is non-nil, use it to produce a
882 blinking effect that indicates channel activity when the first
883 element in FACES and the highest-ranking face among the rest of
884 FACES are both members of `erc-track-faces-normal-list'.
886 If one of the faces is a list, then it will be ranked according
887 to its highest-tanking face member. A list of faces including
888 that member will take priority over just the single member
890 (let ((choice (catch 'face
891 (dolist (candidate erc-track-faces-priority-list
)
892 (when (member candidate faces
)
893 (throw 'face candidate
)))))
894 (no-first (and erc-track-faces-normal-list
896 (dolist (candidate erc-track-faces-priority-list
)
897 (when (member candidate
(cdr faces
))
898 (throw 'face candidate
)))))))
901 ((and (member choice erc-track-faces-normal-list
)
902 (member no-first erc-track-faces-normal-list
))
907 (defun erc-track-modified-channels ()
908 "Hook function for `erc-insert-post-hook' to check if the current
909 buffer should be added to the mode line as a hidden, modified
910 channel. Assumes it will only be called when current-buffer
912 (let ((this-channel (or (erc-default-target)
913 (buffer-name (current-buffer)))))
914 (if (and (not (erc-buffer-visible (current-buffer)))
915 (not (member this-channel erc-track-exclude
))
916 (not (and erc-track-exclude-server-buffer
917 (erc-server-buffer-p)))
918 (not (erc-message-type-member
919 (or (erc-find-parsed-property)
921 erc-track-exclude-types
)))
922 ;; If the active buffer is not visible (not shown in a
923 ;; window), and not to be excluded, determine the kinds of
924 ;; faces used in the current message, and unless the user
925 ;; wants to ignore changes in certain channels where there
926 ;; are no faces corresponding to `erc-track-faces-priority-list',
927 ;; and the faces in the current message are found in said
928 ;; priority list, add the buffer to the erc-modified-channels-alist,
929 ;; if it is not already there. If the buffer is already on the list
930 ;; (in the car), change its face attribute (in the cddr) if
931 ;; necessary. See `erc-modified-channels-alist' for the
932 ;; exact data structure used.
933 (let ((faces (erc-faces-in (buffer-string))))
935 (or (eq erc-track-priority-faces-only
'all
)
936 (member this-channel erc-track-priority-faces-only
))
939 (when (member f erc-track-faces-priority-list
)
940 (throw 'found t
))))))
941 (if (not (assq (current-buffer) erc-modified-channels-alist
))
942 ;; Add buffer, faces and counts
943 (setq erc-modified-channels-alist
944 (cons (cons (current-buffer)
945 (cons 1 (erc-track-find-face faces
)))
946 erc-modified-channels-alist
))
947 ;; Else modify the face for the buffer, if necessary.
949 (let* ((cell (assq (current-buffer)
950 erc-modified-channels-alist
))
951 (old-face (cddr cell
))
952 (new-face (erc-track-find-face
954 (cons old-face faces
)
956 (setcdr cell
(cons (1+ (cadr cell
)) new-face
)))))
958 (erc-modified-channels-display)))
959 ;; Else if the active buffer is the current buffer, remove it
961 (when (and (or (erc-buffer-visible (current-buffer))
963 (member this-channel erc-track-exclude
)))
964 (assq (current-buffer) erc-modified-channels-alist
))
965 ;; Remove it from mode-line if buffer is visible or
966 ;; channel was added to erc-track-exclude recently.
967 (erc-modified-channels-remove-buffer (current-buffer))
968 (erc-modified-channels-display)))))
970 (defun erc-faces-in (str)
971 "Return a list of all faces used in STR."
974 (faces (erc-list (get-text-property 0 'face str
)))
976 (while (and (setq i
(next-single-property-change i
'face str m
))
978 (and (setq cur
(get-text-property i
'face str
))
979 (not (member cur faces
))
984 (let ((str "is bold"))
985 (put-text-property 3 (length str
)
986 'face
'(bold erc-current-nick-face
)
992 (defvar erc-track-last-non-erc-buffer nil
993 "Stores the name of the last buffer you were in before activating
994 `erc-track-switch-buffers'")
996 (defun erc-track-sort-by-activest ()
997 "Sort erc-modified-channels-alist by activity.
998 That means the number of unseen messages in a channel."
999 (setq erc-modified-channels-alist
1000 (sort erc-modified-channels-alist
1001 (lambda (a b
) (> (nth 1 a
) (nth 1 b
))))))
1003 (defun erc-track-face-priority (face)
1004 "Return a number indicating the priority of FACE in
1005 `erc-track-faces-priority-list'. Lower number means higher
1008 If face is not in `erc-track-faces-priority-list', it will have a
1009 higher number than any other face in that list."
1012 (dolist (item erc-track-faces-priority-list
)
1013 (if (equal item face
)
1015 (setq count
(1+ count
)))))
1018 (defun erc-track-sort-by-importance ()
1019 "Sort erc-modified-channels-alist by importance.
1020 That means the position of the face in `erc-track-faces-priority-list'."
1021 (setq erc-modified-channels-alist
1022 (sort erc-modified-channels-alist
1023 (lambda (a b
) (< (erc-track-face-priority (cddr a
))
1024 (erc-track-face-priority (cddr b
)))))))
1026 (defun erc-track-get-active-buffer (arg)
1027 "Return the buffer name of ARG in `erc-modified-channels-alist'.
1028 Negative arguments index in the opposite direction. This direction is
1029 relative to `erc-track-switch-direction'"
1030 (let ((dir erc-track-switch-direction
)
1033 (setq dir
(pcase dir
1036 (`mostactive
'leastactive
)
1037 (`leastactive
'mostactive
)
1038 (`importance
'oldest
)))
1040 (setq offset
(pcase dir
1041 ((or `oldest
`leastactive
)
1042 (- (length erc-modified-channels-alist
) arg
))
1044 ;; normalize out of range user input
1045 (cond ((>= offset
(length erc-modified-channels-alist
))
1046 (setq offset
(1- (length erc-modified-channels-alist
))))
1049 (car (nth offset erc-modified-channels-alist
))))
1051 (defun erc-track-switch-buffer (arg)
1052 "Switch to the next active ERC buffer, or if there are no active buffers,
1053 switch back to the last non-ERC buffer visited. Next is defined by
1054 `erc-track-switch-direction', a negative argument will reverse this."
1056 (if (not erc-track-mode
)
1057 (message (concat "Enable the ERC track module if you want to use the"
1058 " tracking minor mode"))
1059 (cond (erc-modified-channels-alist
1060 ;; if we're not in erc-mode, set this buffer to return to
1061 (unless (eq major-mode
'erc-mode
)
1062 (setq erc-track-last-non-erc-buffer
(current-buffer)))
1063 ;; and jump to the next active channel
1064 (switch-to-buffer (erc-track-get-active-buffer arg
)))
1065 ;; if no active channels, switch back to what we were doing before
1066 ((and erc-track-last-non-erc-buffer
1067 erc-track-switch-from-erc
1068 (buffer-live-p erc-track-last-non-erc-buffer
))
1069 (switch-to-buffer erc-track-last-non-erc-buffer
)))))
1071 (provide 'erc-track
)
1073 ;;; erc-track.el ends here
1076 ;; indent-tabs-mode: t