1 ;;; erc-track.el --- Track modified channel buffers
3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Mario Lang <mlang@delysid.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 ~/.emacs:
30 ;; (require 'erc-track)
34 ;; * Add extensibility so that custom functions can track
35 ;; custom modification types.
37 (eval-when-compile (require 'cl
))
44 (defgroup erc-track nil
45 "Track active buffers and show activity in the modeline."
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 was active"
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 modeline.
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 modeline.
234 If a message contains one of the faces in this list, and the
235 previous modeline 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.
269 If STRINGS is nil, we initialize `erc-modified-channels-object' to
270 an appropriate initial value for this flavor of Emacs."
272 (if (featurep 'xemacs
)
273 (let ((e-m-c-s '("[")))
274 (push (cons (extent-at 0 (car strings
)) (car strings
))
276 (dolist (string (cdr strings
))
278 (push (cons (extent-at 0 string
) string
)
282 (concat (if (eq erc-track-position-in-mode-line
'after-modes
)
284 (mapconcat 'identity
(nreverse strings
) ",")
285 (if (eq erc-track-position-in-mode-line
'before-modes
)
287 (if (featurep 'xemacs
) '() "")))
289 (defvar erc-modified-channels-object
(erc-modified-channels-object nil
)
290 "Internal object used for displaying modified channels in the mode line.")
292 (put 'erc-modified-channels-object
'risky-local-variable t
); allow properties
294 (defvar erc-modified-channels-alist nil
295 "An ALIST used for tracking channel modification activity.
296 Each element looks like (BUFFER COUNT FACE) where BUFFER is a buffer
297 object of the channel the entry corresponds to, COUNT is a number
298 indicating how often activity was noticed, and FACE is the face to use
299 when displaying the buffer's name. See `erc-track-faces-priority-list',
300 and `erc-track-showcount'.
302 Entries in this list should only happen for buffers where activity occurred
303 while the buffer was not visible.")
305 (defcustom erc-track-showcount nil
306 "If non-nil, count of unseen messages will be shown for each channel."
310 (defcustom erc-track-showcount-string
":"
311 "The string to display between buffer name and the count in the mode line.
312 The default is a colon, resulting in \"#emacs:9\"."
316 (defcustom erc-track-switch-from-erc t
317 "If non-nil, `erc-track-switch-buffer' will return to the last non-erc buffer
318 when there are no more active channels."
322 (defcustom erc-track-switch-direction
'oldest
323 "Direction `erc-track-switch-buffer' should switch.
325 importance - find buffer with the most important message
326 oldest - find oldest active buffer
327 newest - find newest active buffer
328 leastactive - find buffer with least unseen messages
329 mostactive - find buffer with most unseen messages.
331 If set to 'importance, the importance is determined by position
332 in `erc-track-faces-priority-list', where first is most
335 :type
'(choice (const importance
)
342 (defun erc-track-remove-from-mode-line ()
343 "Remove `erc-track-modified-channels' from the mode-line"
344 (when (boundp 'mode-line-modes
)
345 (setq mode-line-modes
346 (remove '(t erc-modified-channels-object
) mode-line-modes
)))
347 (when (consp global-mode-string
)
348 (setq global-mode-string
349 (delq 'erc-modified-channels-object global-mode-string
))))
351 (defun erc-track-add-to-mode-line (position)
352 "Add `erc-track-modified-channels' to POSITION in the mode-line.
353 See `erc-track-position-in-mode-line' for possible values."
354 ;; CVS Emacs has a new format string, and global-mode-string
355 ;; is very far to the right.
356 (cond ((and (eq position
'before-modes
)
357 (boundp 'mode-line-modes
))
358 (add-to-list 'mode-line-modes
359 '(t erc-modified-channels-object
)))
360 ((and (eq position
'after-modes
)
361 (boundp 'mode-line-modes
))
362 (add-to-list 'mode-line-modes
363 '(t erc-modified-channels-object
) t
))
365 (when (not global-mode-string
)
366 (setq global-mode-string
'(""))) ; Padding for mode-line wart
367 (add-to-list 'global-mode-string
368 'erc-modified-channels-object
371 ;;; Shortening of names
373 (defun erc-track-shorten-names (channel-names)
374 "Call `erc-unique-channel-names' with the correct parameters.
375 This function is a good value for `erc-track-shorten-function'.
376 The list of all channels is returned by `erc-all-buffer-names'.
377 CHANNEL-NAMES is the list of active channel names.
378 Only channel names longer than `erc-track-shorten-cutoff' are
379 actually shortened, and they are only shortened to a minimum
380 of `erc-track-shorten-start' characters."
381 (erc-unique-channel-names
382 (erc-all-buffer-names)
385 (> (length s
) erc-track-shorten-cutoff
))
386 erc-track-shorten-start
))
388 (defvar erc-default-recipients
)
390 (defun erc-all-buffer-names ()
391 "Return all channel or query buffer names.
392 Note that we cannot use `erc-channel-list' with a nil argument,
393 because that does not return query buffers."
396 (dolist (buf (buffer-list))
398 (when (or (eq major-mode
'erc-mode
) (eq major-mode
'erc-dcc-chat-mode
))
399 (setq result
(cons (buffer-name) result
))))
402 (defun erc-unique-channel-names (all active
&optional predicate start
)
403 "Return a list of unique channel names.
404 ALL is the list of all channel and query buffer names.
405 ACTIVE is the list of active buffer names.
406 PREDICATE is a predicate that should return non-nil if a name needs
408 START is the minimum length of the name used."
409 (if (eq 'max erc-track-shorten-aggressively
)
410 ;; Return the unique substrings of all active channels.
411 (erc-unique-substrings active predicate start
)
412 ;; Otherwise, determine the unique substrings of all channels, and
413 ;; for every active channel, return the corresponding substring.
414 ;; Given the names of the active channels, we now need to find the
415 ;; corresponding short name from the list of all substrings. To
416 ;; avoid problems when there are two channels and one is a
417 ;; substring of the other (notorious examples are #hurd and
418 ;; #hurd-bunny), every candidate gets the longest possible
420 (let ((all-substrings (sort
421 (erc-unique-substrings all predicate start
)
422 (lambda (a b
) (> (length a
) (length b
)))))
424 (dolist (channel active
)
425 (let ((substrings all-substrings
)
428 (while (and substrings
(not winner
))
429 (setq candidate
(car substrings
)
430 substrings
(cdr substrings
))
431 (when (and (string= candidate
434 (min (length candidate
)
436 (not (member candidate result
)))
437 (setq winner candidate
)))
438 (setq result
(cons winner result
))))
441 (defun erc-unique-substrings (strings &optional predicate start
)
442 "Return a list of unique substrings of STRINGS."
443 (if (or (not (numberp start
))
448 (let* ((others (delete str
(copy-sequence strings
)))
449 (maxlen (length str
))
454 (if (and (functionp predicate
) (not (funcall predicate str
)))
455 ;; do not shorten if a predicate exists and it returns nil
457 ;; Start with smallest substring candidate, ie. length 1.
458 ;; Then check all the others and see whether any of them starts
459 ;; with the same substring. While there is such another
460 ;; element in the list, increase the length of the candidate.
464 (setq candidate
(substring str
0 i
)
465 done
(not (erc-unique-substring-1 candidate others
))))
467 (if (and (= (length candidate
) (1- maxlen
))
468 (not erc-track-shorten-aggressively
))
473 (defun erc-unique-substring-1 (candidate others
)
474 "Return non-nil when any string in OTHERS starts with CANDIDATE."
475 (let (result other
(maxlen (length candidate
)))
478 (setq other
(car others
)
480 (when (and (>= (length other
) maxlen
)
481 (string= candidate
(substring other
0 maxlen
)))
482 (setq result other
)))
489 ;; verify examples from the doc strings
490 (equal (let ((erc-track-shorten-aggressively nil
))
491 (erc-unique-channel-names
492 '("#emacs" "#vi" "#electronica" "#folk")
494 '("#em" "#vi")) ; emacs is different from electronica
495 (equal (let ((erc-track-shorten-aggressively t
))
496 (erc-unique-channel-names
497 '("#emacs" "#vi" "#electronica" "#folk")
499 '("#em" "#v")) ; vi is shortened by one letter
500 (equal (let ((erc-track-shorten-aggressively 'max
))
501 (erc-unique-channel-names
502 '("#emacs" "#vi" "#electronica" "#folk")
504 '("#e" "#v")) ; emacs need not be different from electronica
505 (equal (let ((erc-track-shorten-aggressively nil
))
506 (erc-unique-channel-names
507 '("#linux-de" "#linux-fr")
508 '("#linux-de" "#linux-fr")))
509 '("#linux-de" "#linux-fr")) ; shortening by one letter is too aggressive
510 (equal (let ((erc-track-shorten-aggressively t
))
511 (erc-unique-channel-names
512 '("#linux-de" "#linux-fr")
513 '("#linux-de" "#linux-fr")))
514 '("#linux-d" "#linux-f")); now we want to be aggressive
516 (equal (let ((erc-track-shorten-aggressively nil
))
517 (erc-unique-channel-names
518 '("#dunnet" "#lisp" "#sawfish" "#fsf" "#guile"
519 "#testgnome" "#gnu" "#fsbot" "#hurd" "#hurd-bunny"
521 '("#hurd-bunny" "#hurd" "#sawfish" "#lisp")))
522 '("#hurd-" "#hurd" "#s" "#l"))
523 (equal (let ((erc-track-shorten-aggressively nil
))
524 (erc-unique-substrings
525 '("#emacs" "#vi" "#electronica" "#folk")))
526 '("#em" "#vi" "#el" "#f"))
527 (equal (let ((erc-track-shorten-aggressively t
))
528 (erc-unique-substrings
529 '("#emacs" "#vi" "#electronica" "#folk")))
530 '("#em" "#v" "#el" "#f"))
531 (equal (let ((erc-track-shorten-aggressively nil
))
532 (erc-unique-channel-names
533 '("#emacs" "#burse" "+linux.de" "#starwars"
534 "#bitlbee" "+burse" "#ratpoison")
535 '("+linux.de" "#starwars" "#burse")))
537 (equal (let ((erc-track-shorten-aggressively nil
))
538 (erc-unique-channel-names
539 '("fsbot" "#emacs" "deego")
542 (equal (let ((erc-track-shorten-aggressively nil
))
543 (erc-unique-channel-names
544 '("fsbot" "#emacs" "deego")
550 (equal (let ((erc-track-shorten-aggressively nil
))
551 (erc-unique-channel-names
552 '("fsbot" "#emacs" "deego")
558 (let ((erc-track-shorten-aggressively nil
))
559 (equal (erc-unique-channel-names '("deego" "#hurd" "#hurd-bunny" "#emacs")
560 '("#hurd" "#hurd-bunny"))
561 '("#hurd" "#hurd-")))
563 (let ((erc-track-shorten-aggressively t
))
564 (and (equal (erc-unique-substring-1 "abc" '("ab" "abcd")) "abcd")
565 (not (erc-unique-substring-1 "a" '("xyz" "xab")))
566 (equal (erc-unique-substrings '("abc" "xyz" "xab"))
568 (equal (erc-unique-substrings '("abc" "abcdefg"))
570 (let ((erc-track-shorten-aggressively nil
))
571 (and (equal (erc-unique-substring-1 "abc" '("ab" "abcd")) "abcd")
572 (not (erc-unique-substring-1 "a" '("xyz" "xab")))
573 (equal (erc-unique-substrings '("abc" "xyz" "xab"))
574 '("abc" "xyz" "xab"))
575 (equal (erc-unique-substrings '("abc" "abcdefg"))
580 ;; Play nice with other IRC clients (and Emacs development rules) by
581 ;; making this a minor mode
583 (defvar erc-track-minor-mode-map
(make-sparse-keymap)
584 "Keymap for rcirc track minor mode.")
586 (define-key erc-track-minor-mode-map
(kbd "C-c C-@") 'erc-track-switch-buffer
)
587 (define-key erc-track-minor-mode-map
(kbd "C-c C-SPC")
588 'erc-track-switch-buffer
)
591 (define-minor-mode erc-track-minor-mode
592 "Global minor mode for tracking ERC buffers and showing activity in the
595 This exists for the sole purpose of providing the C-c C-SPC and
596 C-c C-@ keybindings. Make sure that you have enabled the track
597 module, otherwise the keybindings will not do anything useful."
600 :keymap erc-track-minor-mode-map
604 (defun erc-track-minor-mode-maybe (&optional buffer
)
605 "Enable `erc-track-minor-mode', depending on `erc-track-enable-keybindings'."
606 (when (and (not erc-track-minor-mode
)
607 ;; don't start the minor mode until we have an ERC
608 ;; process running, because we don't want to prompt the
609 ;; user while starting Emacs
610 (or (and (buffer-live-p buffer
)
611 (with-current-buffer buffer
(eq major-mode
'erc-mode
)))
613 (cond ((eq erc-track-enable-keybindings
'ask
)
614 (let ((key (or (and (key-binding (kbd "C-c C-SPC")) "C-SPC")
615 (and (key-binding (kbd "C-c C-@")) "C-@"))))
618 (concat "The C-c " key
" binding is in use;"
619 " override it for tracking? "))
621 (message (concat "Will change it; set"
622 " `erc-track-enable-keybindings'"
623 " to disable this message"))
625 (erc-track-minor-mode 1))
626 (message (concat "Not changing it; set"
627 " `erc-track-enable-keybindings'"
628 " to disable this message"))
630 (erc-track-minor-mode 1))))
631 ((eq erc-track-enable-keybindings t
)
632 (erc-track-minor-mode 1))
637 ;;;###autoload (autoload 'erc-track-mode "erc-track" nil t)
638 (define-erc-module track nil
639 "This mode tracks ERC channel buffers with activity."
641 ((when (boundp 'erc-track-when-inactive
)
642 (if erc-track-when-inactive
644 (if (featurep 'xemacs
)
645 (defadvice switch-to-buffer
(after erc-update-when-inactive
646 (&rest args
) activate
)
647 (erc-user-is-active))
648 (add-hook 'window-configuration-change-hook
'erc-user-is-active
))
649 (add-hook 'erc-send-completed-hook
'erc-user-is-active
)
650 (add-hook 'erc-server-001-functions
'erc-user-is-active
))
651 (erc-track-add-to-mode-line erc-track-position-in-mode-line
)
652 (setq erc-modified-channels-object
(erc-modified-channels-object nil
))
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-modified-channels-update
))
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-modified-channels-update
))
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 (defvar erc-modified-channels-update-inside nil
736 "Variable to prevent running `erc-modified-channels-update' multiple
737 times. Without it, you cannot debug `erc-modified-channels-display',
738 because the debugger also cases changes to the window-configuration.")
740 (defun erc-modified-channels-update (&rest args
)
741 "This function updates the information in `erc-modified-channels-alist'
742 according to buffer visibility. It calls
743 `erc-modified-channels-display' at the end. This should usually be
744 called via `window-configuration-change-hook'.
747 (unless erc-modified-channels-update-inside
748 (let ((erc-modified-channels-update-inside t
)
749 (removed-channel nil
))
751 (let ((buffer (car elt
)))
752 (when (or (not (bufferp buffer
))
753 (not (buffer-live-p buffer
))
754 (erc-buffer-visible buffer
)
755 (and erc-track-remove-disconnected-buffers
756 (not (with-current-buffer buffer
757 erc-server-connected
))))
758 (setq removed-channel t
)
759 (erc-modified-channels-remove-buffer buffer
))))
760 erc-modified-channels-alist
)
761 (when removed-channel
762 (erc-modified-channels-display)
763 (force-mode-line-update t
)))))
765 (defvar erc-track-mouse-face
(if (featurep 'xemacs
)
767 'mode-line-highlight
)
768 "The face to use when mouse is over channel names in the mode line.")
770 (defun erc-make-mode-line-buffer-name (string buffer
&optional faces count
)
771 "Return STRING as a button that switches to BUFFER when clicked.
772 If FACES are provided, color STRING with them."
773 ;; We define a new sparse keymap every time, because 1. this data
774 ;; structure is very small, the alternative would require us to
775 ;; defvar a keymap, 2. the user is not interested in customizing it
776 ;; (really?), 3. the defun needs to switch to BUFFER, so we would
777 ;; need to save that value somewhere.
778 (let ((map (make-sparse-keymap))
779 (name (if erc-track-showcount
781 erc-track-showcount-string
782 (int-to-string count
))
783 (copy-sequence string
))))
784 (define-key map
(vector 'mode-line
'mouse-2
)
787 (save-selected-window
789 (posn-window (event-start e
)))
790 (switch-to-buffer ,buffer
))))
791 (define-key map
(vector 'mode-line
'mouse-3
)
794 (save-selected-window
796 (posn-window (event-start e
)))
797 (switch-to-buffer-other-window ,buffer
))))
798 (put-text-property 0 (length name
) 'local-map map name
)
801 'help-echo
(concat "mouse-2: switch to buffer, "
802 "mouse-3: switch to buffer in other window")
804 (put-text-property 0 (length name
) 'mouse-face erc-track-mouse-face name
)
805 (when (and faces erc-track-use-faces
)
806 (put-text-property 0 (length name
) 'face faces name
))
809 (defun erc-modified-channels-display ()
810 "Set `erc-modified-channels-object'
811 according to `erc-modified-channels-alist'.
812 Use `erc-make-mode-line-buffer-name' to create buttons."
813 (cond ((or (eq 'mostactive erc-track-switch-direction
)
814 (eq 'leastactive erc-track-switch-direction
))
815 (erc-track-sort-by-activest))
816 ((eq 'importance erc-track-switch-direction
)
817 (erc-track-sort-by-importance)))
818 (run-hooks 'erc-track-list-changed-hook
)
819 (unless (eq erc-track-position-in-mode-line nil
)
820 (if (null erc-modified-channels-alist
)
821 (setq erc-modified-channels-object
(erc-modified-channels-object nil
))
822 ;; erc-modified-channels-alist contains all the data we need. To
823 ;; better understand what is going on, we split things up into
824 ;; four lists: BUFFERS, COUNTS, SHORT-NAMES, and FACES. These
825 ;; four lists we use to create a new
826 ;; `erc-modified-channels-object' using
827 ;; `erc-make-mode-line-buffer-name'.
828 (let* ((buffers (mapcar 'car erc-modified-channels-alist
))
829 (counts (mapcar 'cadr erc-modified-channels-alist
))
830 (faces (mapcar 'cddr erc-modified-channels-alist
))
831 (long-names (mapcar #'(lambda (buf)
832 (or (buffer-name buf
)
835 (short-names (if (functionp erc-track-shorten-function
)
836 (funcall erc-track-shorten-function
841 (when (car short-names
)
842 (setq strings
(cons (erc-make-mode-line-buffer-name
848 (setq short-names
(cdr short-names
)
849 buffers
(cdr buffers
)
852 (when (featurep 'xemacs
)
853 (erc-modified-channels-object nil
))
854 (setq erc-modified-channels-object
855 (erc-modified-channels-object strings
))))))
857 (defun erc-modified-channels-remove-buffer (buffer)
858 "Remove BUFFER from `erc-modified-channels-alist'."
859 (interactive "bBuffer: ")
860 (setq erc-modified-channels-alist
861 (delete (assq buffer erc-modified-channels-alist
)
862 erc-modified-channels-alist
))
863 (when (interactive-p)
864 (erc-modified-channels-display)))
866 (defun erc-track-find-face (faces)
867 "Return the face to use in the modeline from the faces in FACES.
868 If `erc-track-faces-priority-list' is set, the one from FACES who
869 is first in that list will be used. If nothing matches or if
870 `erc-track-faces-priority-list' is not set, the default mode-line
873 If `erc-track-faces-normal-list' is non-nil, use it to produce a
874 blinking effect that indicates channel activity when the first
875 element in FACES and the highest-ranking face among the rest of
876 FACES are both members of `erc-track-faces-normal-list'.
878 If one of the faces is a list, then it will be ranked according
879 to its highest-tanking face member. A list of faces including
880 that member will take priority over just the single member
882 (let ((choice (catch 'face
883 (dolist (candidate erc-track-faces-priority-list
)
884 (when (member candidate faces
)
885 (throw 'face candidate
)))))
886 (no-first (and erc-track-faces-normal-list
888 (dolist (candidate erc-track-faces-priority-list
)
889 (when (member candidate
(cdr faces
))
890 (throw 'face candidate
)))))))
893 ((and (member choice erc-track-faces-normal-list
)
894 (member no-first erc-track-faces-normal-list
))
899 (defun erc-track-modified-channels ()
900 "Hook function for `erc-insert-post-hook' to check if the current
901 buffer should be added to the modeline as a hidden, modified
902 channel. Assumes it will only be called when current-buffer
904 (let ((this-channel (or (erc-default-target)
905 (buffer-name (current-buffer)))))
906 (if (and (not (erc-buffer-visible (current-buffer)))
907 (not (member this-channel erc-track-exclude
))
908 (not (and erc-track-exclude-server-buffer
909 (erc-server-buffer-p)))
910 (not (erc-message-type-member
911 (or (erc-find-parsed-property)
913 erc-track-exclude-types
)))
914 ;; If the active buffer is not visible (not shown in a
915 ;; window), and not to be excluded, determine the kinds of
916 ;; faces used in the current message, and unless the user
917 ;; wants to ignore changes in certain channels where there
918 ;; are no faces corresponding to `erc-track-faces-priority-list',
919 ;; and the faces in the current message are found in said
920 ;; priority list, add the buffer to the erc-modified-channels-alist,
921 ;; if it is not already there. If the buffer is already on the list
922 ;; (in the car), change its face attribute (in the cddr) if
923 ;; necessary. See `erc-modified-channels-alist' for the
924 ;; exact data structure used.
925 (let ((faces (erc-faces-in (buffer-string))))
927 (or (eq erc-track-priority-faces-only
'all
)
928 (member this-channel erc-track-priority-faces-only
))
931 (when (member f erc-track-faces-priority-list
)
932 (throw 'found t
))))))
933 (if (not (assq (current-buffer) erc-modified-channels-alist
))
934 ;; Add buffer, faces and counts
935 (setq erc-modified-channels-alist
936 (cons (cons (current-buffer)
937 (cons 1 (erc-track-find-face faces
)))
938 erc-modified-channels-alist
))
939 ;; Else modify the face for the buffer, if necessary.
941 (let* ((cell (assq (current-buffer)
942 erc-modified-channels-alist
))
943 (old-face (cddr cell
))
944 (new-face (erc-track-find-face
946 (cons old-face faces
)
948 (setcdr cell
(cons (1+ (cadr cell
)) new-face
)))))
950 (erc-modified-channels-display)))
951 ;; Else if the active buffer is the current buffer, remove it
953 (when (and (or (erc-buffer-visible (current-buffer))
955 (member this-channel erc-track-exclude
)))
956 (assq (current-buffer) erc-modified-channels-alist
))
957 ;; Remove it from mode-line if buffer is visible or
958 ;; channel was added to erc-track-exclude recently.
959 (erc-modified-channels-remove-buffer (current-buffer))
960 (erc-modified-channels-display)))))
962 (defun erc-faces-in (str)
963 "Return a list of all faces used in STR."
966 (faces (erc-list (get-text-property 0 'face str
)))
968 (while (and (setq i
(next-single-property-change i
'face str m
))
970 (when (setq cur
(get-text-property i
'face str
))
971 (add-to-list 'faces cur
)))
975 (let ((str "is bold"))
976 (put-text-property 3 (length str
)
977 'face
'(bold erc-current-nick-face
)
983 (defvar erc-track-last-non-erc-buffer nil
984 "Stores the name of the last buffer you were in before activating
985 `erc-track-switch-buffers'")
987 (defun erc-track-sort-by-activest ()
988 "Sort erc-modified-channels-alist by activity.
989 That means the number of unseen messages in a channel."
990 (setq erc-modified-channels-alist
991 (sort erc-modified-channels-alist
992 (lambda (a b
) (> (nth 1 a
) (nth 1 b
))))))
994 (defun erc-track-face-priority (face)
995 "Return a number indicating the priority of FACE in
996 `erc-track-faces-priority-list'. Lower number means higher
999 If face is not in `erc-track-faces-priority-list', it will have a
1000 higher number than any other face in that list."
1003 (dolist (item erc-track-faces-priority-list
)
1004 (if (equal item face
)
1006 (setq count
(1+ count
)))))
1009 (defun erc-track-sort-by-importance ()
1010 "Sort erc-modified-channels-alist by importance.
1011 That means the position of the face in `erc-track-faces-priority-list'."
1012 (setq erc-modified-channels-alist
1013 (sort erc-modified-channels-alist
1014 (lambda (a b
) (< (erc-track-face-priority (cddr a
))
1015 (erc-track-face-priority (cddr b
)))))))
1017 (defun erc-track-get-active-buffer (arg)
1018 "Return the buffer name of ARG in `erc-modified-channels-alist'.
1019 Negative arguments index in the opposite direction. This direction is
1020 relative to `erc-track-switch-direction'"
1021 (let ((dir erc-track-switch-direction
)
1027 (mostactive 'leastactive
)
1028 (leastactive 'mostactive
)
1029 (importance 'oldest
)))
1031 (setq offset
(case dir
1032 ((oldest leastactive
)
1033 (- (length erc-modified-channels-alist
) arg
))
1035 ;; normalise out of range user input
1036 (cond ((>= offset
(length erc-modified-channels-alist
))
1037 (setq offset
(1- (length erc-modified-channels-alist
))))
1040 (car (nth offset erc-modified-channels-alist
))))
1042 (defun erc-track-switch-buffer (arg)
1043 "Switch to the next active ERC buffer, or if there are no active buffers,
1044 switch back to the last non-ERC buffer visited. Next is defined by
1045 `erc-track-switch-direction', a negative argument will reverse this."
1047 (if (not erc-track-mode
)
1048 (message (concat "Enable the ERC track module if you want to use the"
1049 " tracking minor mode"))
1050 (cond (erc-modified-channels-alist
1051 ;; if we're not in erc-mode, set this buffer to return to
1052 (unless (eq major-mode
'erc-mode
)
1053 (setq erc-track-last-non-erc-buffer
(current-buffer)))
1054 ;; and jump to the next active channel
1055 (switch-to-buffer (erc-track-get-active-buffer arg
)))
1056 ;; if no active channels, switch back to what we were doing before
1057 ((and erc-track-last-non-erc-buffer
1058 erc-track-switch-from-erc
1059 (buffer-live-p erc-track-last-non-erc-buffer
))
1060 (switch-to-buffer erc-track-last-non-erc-buffer
)))))
1062 (provide 'erc-track
)
1064 ;;; erc-track.el ends here
1067 ;; indent-tabs-mode: t
1071 ;; arch-tag: 11b439f5-e5d7-4c6c-bb3f-eda98f9b0ac1