1 ;;; type-break.el --- encourage rests from typing at appropriate intervals
3 ;; Copyright (C) 1994, 95, 97, 2000, 2004 Free Software Foundation, Inc.
5 ;; Author: Noah Friedman
6 ;; Maintainer: Noah Friedman <friedman@splode.com>
7 ;; Keywords: extensions, timers
8 ;; Status: Works in GNU Emacs 19.25 or later, some versions of XEmacs
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
30 ;; The docstring for the function `type-break-mode' summarizes most of the
31 ;; details of the interface.
33 ;; This package relies on the assumption that you live entirely in Emacs,
34 ;; as the author does. If that's not the case for you (e.g. you often
35 ;; suspend Emacs or work in other windows) then this won't help very much;
36 ;; it will depend on just how often you switch back to Emacs. At the very
37 ;; least, you will want to turn off the keystroke thresholds and rest
40 ;; If you prefer not to be queried about taking breaks, but instead just
41 ;; want to be reminded, do the following:
43 ;; (setq type-break-query-mode nil)
45 ;; Or call the command `type-break-query-mode' with a negative prefix
48 ;; If you find echo area messages annoying and would prefer to see messages
49 ;; in the mode line instead, do M-x type-break-mode-line-message-mode
50 ;; or set the variable of the same name to `t'.
52 ;; This program can truly cons up a storm because of all the calls to
53 ;; `current-time' (which always returns 3 fresh conses). I'm dismayed by
54 ;; this, but I think the health of my hands is far more important than a
55 ;; few pages of virtual memory.
57 ;; This program has no hope of working in Emacs 18.
59 ;; This package was inspired by Roland McGrath's hanoi-break.el.
60 ;; Several people contributed feedback and ideas, including
61 ;; Roland McGrath <roland@gnu.org>
62 ;; Kleanthes Koniaris <kgk@koniaris.com>
63 ;; Mark Ashton <mpashton@gnu.org>
64 ;; Matt Wilding <wilding@cli.com>
65 ;; Robert S. Boyer <boyer@cs.utexas.edu>
70 (defgroup type-break nil
71 "Encourage the user to take a rest from typing at suitable intervals."
76 (defcustom type-break-mode nil
77 "Toggle typing break mode.
78 See the docstring for the `type-break-mode' command for more information.
79 Setting this variable directly does not take effect;
80 use either \\[customize] or the function `type-break-mode'."
81 :set
(lambda (symbol value
)
82 (type-break-mode (if value
1 -
1)))
83 :initialize
'custom-initialize-default
89 (defcustom type-break-interval
(* 60 60)
90 "*Number of seconds between scheduled typing breaks."
95 (defcustom type-break-good-rest-interval
(/ type-break-interval
6)
96 "*Number of seconds of idle time considered to be an adequate typing rest.
98 When this variable is non-nil, Emacs checks the idle time between
99 keystrokes. If this idle time is long enough to be considered a \"good\"
100 rest from typing, then the next typing break is simply rescheduled for later.
102 If a break is interrupted before this much time elapses, the user will be
103 asked whether or not really to interrupt the break."
108 (defcustom type-break-good-break-interval nil
109 "*Number of seconds considered to be an adequate explicit typing rest.
111 When this variable is non-nil, its value is considered to be a \"good\"
112 length (in seconds) for a break initiated by the command `type-break',
113 overriding `type-break-good-rest-interval'. This provides querying of
114 break interruptions when `type-break-good-rest-interval' is nil."
119 (defcustom type-break-keystroke-threshold
120 ;; Assuming typing speed is 35wpm (on the average, do you really
121 ;; type more than that in a minute? I spend a lot of time reading mail
122 ;; and simply studying code in buffers) and average word length is
123 ;; about 5 letters, default upper threshold to the average number of
124 ;; keystrokes one is likely to type in a break interval. That way if the
125 ;; user goes through a furious burst of typing activity, cause a typing
126 ;; break to be required sooner than originally scheduled.
127 ;; Conversely, the minimum threshold should be about a fifth of this.
130 (upper (* wpm avg-word-length
(/ type-break-interval
60)))
133 "*Upper and lower bound on number of keystrokes for considering typing break.
134 This structure is a pair of numbers (MIN . MAX).
136 The first number is the minimum number of keystrokes that must have been
137 entered since the last typing break before considering another one, even if
138 the scheduled time has elapsed; the break is simply rescheduled until later
139 if the minimum threshold hasn't been reached. If this first value is nil,
140 then there is no minimum threshold; as soon as the scheduled time has
141 elapsed, the user will always be queried.
143 The second number is the maximum number of keystrokes that can be entered
144 before a typing break is requested immediately, pre-empting the originally
145 scheduled break. If this second value is nil, then no pre-emptive breaks
146 will occur; only scheduled ones will.
148 Keys with bucky bits (shift, control, meta, etc) are counted as only one
149 keystroke even though they really require multiple keys to generate them.
151 The command `type-break-guesstimate-keystroke-threshold' can be used to
152 guess a reasonably good pair of values for this variable."
156 (defcustom type-break-query-mode t
157 "*Non-nil means ask whether or not to prompt user for breaks.
158 If so, call the function specified in the value of the variable
159 `type-break-query-function' to do the asking."
163 (defcustom type-break-query-function
'yes-or-no-p
164 "*Function to use for making query for a typing break.
165 It should take a string as an argument, the prompt.
166 Usually this should be set to `yes-or-no-p' or `y-or-n-p'.
168 To avoid being queried at all, set `type-break-query-mode' to nil."
169 :type
'(radio function
170 (function-item yes-or-no-p
)
171 (function-item y-or-n-p
))
174 (defcustom type-break-query-interval
60
175 "*Number of seconds between queries to take a break, if put off.
176 The user will continue to be prompted at this interval until he or she
177 finally submits to taking a typing break."
181 (defcustom type-break-time-warning-intervals
'(300 120 60 30)
182 "*List of time intervals for warnings about upcoming typing break.
183 At each of the intervals (specified in seconds) away from a scheduled
184 typing break, print a warning in the echo area."
185 :type
'(repeat integer
)
188 (defcustom type-break-keystroke-warning-intervals
'(300 200 100 50)
189 "*List of keystroke measurements for warnings about upcoming typing break.
190 At each of the intervals (specified in keystrokes) away from the upper
191 keystroke threshold, print a warning in the echo area.
192 If either this variable or the upper threshold is set, then no warnings
194 :type
'(repeat integer
)
197 (defcustom type-break-warning-repeat
40
198 "*Number of keystrokes for which warnings should be repeated.
199 That is, for each of this many keystrokes the warning is redisplayed
200 in the echo area to make sure it's really seen."
204 (defcustom type-break-time-stamp-format
"[%H:%M] "
205 "*Timestamp format used to prefix messages.
206 Format specifiers are as used by `format-time-string'."
210 (defcustom type-break-demo-functions
211 '(type-break-demo-boring type-break-demo-life type-break-demo-hanoi
)
212 "*List of functions to consider running as demos during typing breaks.
213 When a typing break begins, one of these functions is selected randomly
214 to have Emacs do something interesting.
216 Any function in this list should start a demo which ceases as soon as a
218 :type
'(repeat function
)
221 (defcustom type-break-demo-boring-stats nil
222 "*Show word per minute and keystroke figures in the Boring demo."
226 (defcustom type-break-terse-messages nil
227 "*Use slightly terser messages."
231 (defcustom type-break-file-name
(convert-standard-filename "~/.type-break")
232 "*Name of file used to save state across sessions."
236 (defvar type-break-post-command-hook
'(type-break-check)
237 "Hook run indirectly by `post-command-hook' for typing break functions.
238 This is not really intended to be set by the user, but it's probably
239 harmless to do so. Mainly it is used by various parts of the typing break
240 program to delay actions until after the user has completed some command.
241 It exists because `post-command-hook' itself is inaccessible while its
242 functions are being run, and some type-break--related functions want to
243 remove themselves after running.")
248 (defcustom type-break-mode-line-message-mode nil
249 "*Non-nil means put type-break related messages in the mode line.
250 Otherwise, messages typically go in the echo area.
252 See also `type-break-mode-line-format' and its members."
256 (defvar type-break-mode-line-format
257 '(type-break-mode-line-message-mode
259 type-break-mode-line-break-message
260 type-break-mode-line-warning
))
261 "*Format of messages in the mode line concerning typing breaks.")
263 (defvar type-break-mode-line-break-message
264 '(type-break-mode-line-break-message-p
265 type-break-mode-line-break-string
))
267 (defvar type-break-mode-line-break-message-p nil
)
268 (defvar type-break-mode-line-break-string
" *** TAKE A TYPING BREAK NOW ***")
270 (defvar type-break-mode-line-warning
271 '(type-break-mode-line-break-message-p
273 (type-break-warning-countdown-string
276 type-break-warning-countdown-string
278 type-break-warning-countdown-string-type
281 (defvar type-break-warning-countdown-string nil
282 "If non-nil, this is a countdown for the next typing break.
284 This variable, in conjunction with `type-break-warning-countdown-string-type'
285 \(which indicates whether this value is a number of keystrokes or seconds)
286 is installed in `mode-line-format' to notify of imminent typing breaks.")
288 (defvar type-break-warning-countdown-string-type nil
289 "Indicates the unit type of `type-break-warning-countdown-string'.
290 It will be either \"seconds\" or \"keystrokes\".")
293 ;; These are internal variables. Do not set them yourself.
295 (defvar type-break-alarm-p nil
)
296 (defvar type-break-keystroke-count
0)
297 (defvar type-break-time-last-break nil
)
298 (defvar type-break-time-next-break nil
)
299 (defvar type-break-time-last-command
(current-time))
300 (defvar type-break-current-time-warning-interval nil
)
301 (defvar type-break-current-keystroke-warning-interval nil
)
302 (defvar type-break-time-warning-count
0)
303 (defvar type-break-keystroke-warning-count
0)
304 (defvar type-break-interval-start nil
)
308 (defun type-break-mode (&optional prefix
)
309 "Enable or disable typing-break mode.
310 This is a minor mode, but it is global to all buffers by default.
312 When this mode is enabled, the user is encouraged to take typing breaks at
313 appropriate intervals; either after a specified amount of time or when the
314 user has exceeded a keystroke threshold. When the time arrives, the user
315 is asked to take a break. If the user refuses at that time, Emacs will ask
316 again in a short period of time. The idea is to give the user enough time
317 to find a good breaking point in his or her work, but be sufficiently
318 annoying to discourage putting typing breaks off indefinitely.
320 A negative prefix argument disables this mode.
321 No argument or any non-negative argument enables it.
323 The user may enable or disable this mode by setting the variable of the
324 same name, though setting it in that way doesn't reschedule a break or
325 reset the keystroke counter.
327 If the mode was previously disabled and is enabled as a consequence of
328 calling this function, it schedules a break with `type-break-schedule' to
329 make sure one occurs (the user can call that command to reschedule the
330 break at any time). It also initializes the keystroke counter.
332 The variable `type-break-interval' specifies the number of seconds to
333 schedule between regular typing breaks. This variable doesn't directly
334 affect the time schedule; it simply provides a default for the
335 `type-break-schedule' command.
337 If set, the variable `type-break-good-rest-interval' specifies the minimum
338 amount of time which is considered a reasonable typing break. Whenever
339 that time has elapsed, typing breaks are automatically rescheduled for
340 later even if Emacs didn't prompt you to take one first. Also, if a break
341 is ended before this much time has elapsed, the user will be asked whether
342 or not to continue. A nil value for this variable prevents automatic
343 break rescheduling, making `type-break-interval' an upper bound on the time
344 between breaks. In this case breaks will be prompted for as usual before
345 the upper bound if the keystroke threshold is reached.
347 If `type-break-good-rest-interval' is nil and
348 `type-break-good-break-interval' is set, then confirmation is required to
349 interrupt a break before `type-break-good-break-interval' seconds
350 have passed. This provides for an upper bound on the time between breaks
351 together with confirmation of interruptions to these breaks.
353 The variable `type-break-keystroke-threshold' is used to determine the
354 thresholds at which typing breaks should be considered. You can use
355 the command `type-break-guesstimate-keystroke-threshold' to try to
356 approximate good values for this.
358 There are several variables that affect how or when warning messages about
359 imminent typing breaks are displayed. They include:
361 `type-break-mode-line-message-mode'
362 `type-break-time-warning-intervals'
363 `type-break-keystroke-warning-intervals'
364 `type-break-warning-repeat'
365 `type-break-warning-countdown-string'
366 `type-break-warning-countdown-string-type'
368 There are several variables that affect if, how, and when queries to begin
369 a typing break occur. They include:
371 `type-break-query-mode'
372 `type-break-query-function'
373 `type-break-query-interval'
375 The command `type-break-statistics' prints interesting things.
377 Finally, a file (named `type-break-file-name') is used to store information
378 across Emacs sessions. This provides recovery of the break status between
379 sessions and after a crash. Manual changes to the file may result in
382 (type-break-check-post-command-hook)
384 (let ((already-enabled type-break-mode
))
385 (setq type-break-mode
(>= (prefix-numeric-value prefix
) 0))
388 ((and already-enabled type-break-mode
)
390 (message "Type Break mode is already enabled")))
392 (or global-mode-string
393 (setq global-mode-string
'("")))
394 (or (assq 'type-break-mode-line-message-mode
396 (setq minor-mode-alist
397 (cons type-break-mode-line-format
399 (type-break-keystroke-reset)
400 (type-break-mode-line-countdown-or-break nil
)
402 (setq type-break-time-last-break
(type-break-get-previous-time))
404 ;; schedule according to break time from session file
407 (if (and type-break-time-last-break
408 (< (setq diff
(type-break-time-difference
409 type-break-time-last-break
411 type-break-interval
))
412 ;; use the file's value
414 (setq type-break-keystroke-count
415 (type-break-get-previous-count))
416 ;; file the time, in case it was read from the auto-save file
417 (type-break-file-time type-break-interval-start
)
418 (setq type-break-interval-start type-break-time-last-break
)
419 (- type-break-interval diff
))
421 (setq type-break-interval-start
(current-time))
422 (type-break-file-time type-break-interval-start
)
423 type-break-interval
))
424 type-break-interval-start
428 (message "Type Break mode is enabled and set")))
430 (type-break-keystroke-reset)
431 (type-break-mode-line-countdown-or-break nil
)
432 (type-break-cancel-schedule)
434 (with-current-buffer (find-file-noselect type-break-file-name
436 (setq buffer-save-without-query t
)
437 (set-buffer-modified-p nil
)
441 (message "Type Break mode is disabled")))))
444 (defun type-break-mode-line-message-mode (&optional prefix
)
445 "Enable or disable warnings in the mode line about typing breaks.
447 A negative PREFIX argument disables this mode.
448 No argument or any non-negative argument enables it.
450 The user may also enable or disable this mode simply by setting the
451 variable of the same name.
453 Variables controlling the display of messages in the mode line include:
457 `type-break-mode-line-break-message'
458 `type-break-mode-line-warning'"
460 (setq type-break-mode-line-message-mode
461 (>= (prefix-numeric-value prefix
) 0))
463 (if type-break-mode-line-message-mode
464 (message "type-break-mode-line-message-mode is enabled")
465 (message "type-break-mode-line-message-mode is disabled")))
466 type-break-mode-line-message-mode
)
468 (defun type-break-query-mode (&optional prefix
)
469 "Enable or disable warnings in the mode line about typing breaks.
471 When enabled, the user is periodically queried about whether to take a
472 typing break at that moment. The function which does this query is
473 specified by the variable `type-break-query-function'.
475 A negative PREFIX argument disables this mode.
476 No argument or any non-negative argument enables it.
478 The user may also enable or disable this mode simply by setting the
479 variable of the same name."
481 (setq type-break-query-mode
482 (>= (prefix-numeric-value prefix
) 0))
484 (if type-break-query-mode
485 (message "type-break-query-mode is enabled")
486 (message "type-break-query-mode is disabled")))
487 type-break-query-mode
)
490 ;;; session file functions
492 (defvar type-break-auto-save-file-name
493 (let ((buffer-file-name type-break-file-name
))
494 (make-auto-save-file-name))
495 "Auto-save name of `type-break-file-name'.")
497 (defun type-break-file-time (&optional time
)
498 "File break time in `type-break-file-name', unless the file is locked."
499 (if (not (stringp (file-locked-p type-break-file-name
)))
500 (with-current-buffer (find-file-noselect type-break-file-name
502 (let ((inhibit-read-only t
))
504 (insert (format "%s\n\n" (or time type-break-interval-start
)))
505 ;; file saving is left to auto-save
508 (defun type-break-file-keystroke-count ()
509 "File keystroke count in `type-break-file-name', unless the file is locked."
510 (if (not (stringp (file-locked-p type-break-file-name
)))
511 ;; Prevent deactivation of the mark in some other buffer.
512 (let (deactivate-mark)
513 (with-current-buffer (find-file-noselect type-break-file-name
516 (let ((inhibit-read-only t
))
517 (goto-char (point-min))
519 (delete-region (point) (save-excursion (end-of-line) (point)))
520 (insert (format "%s" type-break-keystroke-count
))
521 ;; file saving is left to auto-save
525 "If TIME is in the format returned by `current-time' then
526 return TIME, else return nil."
529 (integerp (car time
))
530 (integerp (nth 1 time
))
531 (integerp (nth 2 time
))
534 (defun type-break-choose-file ()
535 "Return file to read from."
537 ((and (file-exists-p type-break-auto-save-file-name
)
538 (file-readable-p type-break-auto-save-file-name
))
539 type-break-auto-save-file-name
)
540 ((and (file-exists-p type-break-file-name
)
541 (file-readable-p type-break-file-name
))
542 type-break-file-name
)
545 (defun type-break-get-previous-time ()
546 "Get previous break time from `type-break-file-name'.
547 Returns nil if the file is missing or if the time breaks with the
548 `current-time' format."
549 (let ((file (type-break-choose-file)))
551 (timep ;; returns expected format, else nil
552 (with-current-buffer (find-file-noselect file
'nowarn
)
554 (goto-char (point-min))
555 (read (current-buffer))))))))
557 (defun type-break-get-previous-count ()
558 "Get previous keystroke count from `type-break-file-name'.
559 Return 0 if the file is missing or if the form read is not an
561 (let ((file (type-break-choose-file)))
566 (find-file-noselect file
'nowarn
)
568 (goto-char (point-min))
570 (read (current-buffer)))))))
577 "Take a typing break.
579 During the break, a demo selected from the functions listed in
580 `type-break-demo-functions' is run.
582 After the typing break is finished, the next break is scheduled
583 as per the function `type-break-schedule'."
586 (type-break-cancel-schedule)
587 ;; remove any query scheduled during interactive invocation
588 (remove-hook 'type-break-post-command-hook
'type-break-do-query
)
590 (start-time (current-time)))
591 (setq type-break-time-last-break start-time
)
593 (save-window-excursion
595 (and (eq (selected-window) (minibuffer-window))
597 (delete-other-windows)
598 (scroll-right (window-width))
599 (unless type-break-terse-messages
600 (message "Press any key to resume from typing break."))
603 (let* ((len (length type-break-demo-functions
))
605 (fn (nth idx type-break-demo-functions
)))
610 (let ((good-interval (or type-break-good-rest-interval
611 type-break-good-break-interval
)))
614 (let ((break-secs (type-break-time-difference
615 start-time
(current-time))))
617 ((>= break-secs good-interval
)
619 ;; 60 seconds may be too much leeway if the break is only 3
620 ;; minutes to begin with. You can just say "no" to the query
621 ;; below if you're in that much of a hurry.
622 ;;((> 60 (abs (- break-secs good-interval)))
623 ;; (setq continue nil))
625 type-break-query-function
627 (if type-break-terse-messages
628 "%s%s remaining. Continue break? "
629 "%sYou really ought to rest %s more. Continue break? ")
630 (type-break-time-stamp)
631 (type-break-format-time (- good-interval
634 (setq continue nil
)))))
635 (t (setq continue nil
))))))
637 (type-break-keystroke-reset)
638 (type-break-file-time)
639 (type-break-mode-line-countdown-or-break nil
)
640 (type-break-schedule))
643 (defun type-break-schedule (&optional time start interval
)
644 "Schedule a typing break for TIME seconds from now.
645 If time is not specified it defaults to `type-break-interval'.
646 START and INTERVAL are used when recovering a break.
647 START is the start of the break (defaults to now).
648 INTERVAL is the full length of an interval (defaults to TIME)."
649 (interactive (list (and current-prefix-arg
650 (prefix-numeric-value current-prefix-arg
))))
651 (or time
(setq time type-break-interval
))
652 (type-break-check-post-command-hook)
653 (type-break-cancel-schedule)
654 (type-break-time-warning-schedule time
'reset
)
655 (type-break-run-at-time (max 1 time
) nil
'type-break-alarm
)
656 (setq type-break-time-next-break
657 (type-break-time-sum (or start
(current-time))
658 (or interval time
))))
660 (defun type-break-cancel-schedule ()
661 (type-break-cancel-time-warning-schedule)
662 (type-break-cancel-function-timers 'type-break-alarm
)
663 (setq type-break-alarm-p nil
)
664 (setq type-break-time-next-break nil
))
666 (defun type-break-time-warning-schedule (&optional time resetp
)
667 (let ((type-break-current-time-warning-interval nil
))
668 (type-break-cancel-time-warning-schedule))
669 (add-hook 'type-break-post-command-hook
'type-break-time-warning
'append
)
671 (type-break-time-warning-intervals
673 (setq type-break-current-time-warning-interval
674 type-break-time-warning-intervals
))
677 (setq time
(type-break-time-difference (current-time)
678 type-break-time-next-break
)))
680 (while (and type-break-current-time-warning-interval
681 (> (car type-break-current-time-warning-interval
) time
))
682 (setq type-break-current-time-warning-interval
683 (cdr type-break-current-time-warning-interval
)))
686 (type-break-current-time-warning-interval
687 (setq time
(- time
(car type-break-current-time-warning-interval
)))
688 (setq type-break-current-time-warning-interval
689 (cdr type-break-current-time-warning-interval
))
691 ;(let (type-break-current-time-warning-interval)
692 ; (type-break-cancel-time-warning-schedule))
693 (type-break-run-at-time (max 1 time
) nil
'type-break-time-warning-alarm
)
697 (setq type-break-warning-countdown-string nil
))
699 (setq type-break-warning-countdown-string
(number-to-string time
))
700 (setq type-break-warning-countdown-string-type
"seconds"))))))))
702 (defun type-break-cancel-time-warning-schedule ()
703 (type-break-cancel-function-timers 'type-break-time-warning-alarm
)
704 (remove-hook 'type-break-post-command-hook
'type-break-time-warning
)
705 (setq type-break-current-time-warning-interval
706 type-break-time-warning-intervals
)
707 (setq type-break-time-warning-count
0) ; avoid warnings after break
708 (setq type-break-warning-countdown-string nil
))
710 (defun type-break-alarm ()
711 (type-break-check-post-command-hook)
712 (setq type-break-alarm-p t
)
713 (type-break-mode-line-countdown-or-break 'break
))
715 (defun type-break-time-warning-alarm ()
716 (type-break-check-post-command-hook)
717 (type-break-time-warning-schedule)
718 (setq type-break-time-warning-count type-break-warning-repeat
)
719 (type-break-time-warning)
720 (type-break-mode-line-countdown-or-break 'countdown
))
723 (defun type-break-run-tb-post-command-hook ()
725 (run-hooks 'type-break-post-command-hook
)))
727 (defun type-break-check ()
728 "Ask to take a typing break if appropriate.
729 This may be the case either because the scheduled time has come \(and the
730 minimum keystroke threshold has been reached\) or because the maximum
731 keystroke threshold has been exceeded."
732 (type-break-file-keystroke-count)
733 (let* ((min-threshold (car type-break-keystroke-threshold
))
734 (max-threshold (cdr type-break-keystroke-threshold
)))
735 (and type-break-good-rest-interval
737 (and (> (type-break-time-difference
738 type-break-time-last-command
(current-time))
739 type-break-good-rest-interval
)
741 (type-break-keystroke-reset)
742 (type-break-mode-line-countdown-or-break nil
)
743 (setq type-break-time-last-break
(current-time))
744 (type-break-schedule)))
745 (setq type-break-time-last-command
(current-time))))
747 (and type-break-keystroke-threshold
748 (let ((keys (this-command-keys)))
750 ;; Ignore mouse motion
752 (consp (aref keys
0))
753 (memq (car (aref keys
0)) '(mouse-movement))))
755 (setq type-break-keystroke-count
756 (+ type-break-keystroke-count
(length keys
)))))))
762 ((eq (selected-window) (minibuffer-window)))
764 (< type-break-keystroke-count min-threshold
))
765 (type-break-schedule))
767 ;; If keystroke count is within min-threshold of
768 ;; max-threshold, lower it to reduce the likelihood of an
769 ;; immediate subsequent query.
772 (< (- max-threshold type-break-keystroke-count
) min-threshold
)
774 (type-break-keystroke-reset)
775 (setq type-break-keystroke-count min-threshold
)))
776 (type-break-query))))
777 ((and type-break-keystroke-warning-intervals
779 (= type-break-keystroke-warning-count
0)
780 (type-break-check-keystroke-warning)))
782 (> type-break-keystroke-count max-threshold
)
783 (not (input-pending-p))
784 (not (eq (selected-window) (minibuffer-window))))
785 (type-break-keystroke-reset)
786 (setq type-break-keystroke-count
(or min-threshold
0))
787 (type-break-query)))))
789 ;; This should return t if warnings were enabled, nil otherwise.
790 (defun type-break-check-keystroke-warning ()
791 ;; This is safe because the caller should have checked that the cdr was
793 (let ((left (- (cdr type-break-keystroke-threshold
)
794 type-break-keystroke-count
)))
796 ((null (car type-break-current-keystroke-warning-interval
))
798 ((> left
(car type-break-current-keystroke-warning-interval
))
801 (while (and (car type-break-current-keystroke-warning-interval
)
802 (< left
(car type-break-current-keystroke-warning-interval
)))
803 (setq type-break-current-keystroke-warning-interval
804 (cdr type-break-current-keystroke-warning-interval
)))
805 (setq type-break-keystroke-warning-count type-break-warning-repeat
)
806 (add-hook 'type-break-post-command-hook
'type-break-keystroke-warning
)
807 (setq type-break-warning-countdown-string
(number-to-string left
))
808 (setq type-break-warning-countdown-string-type
"keystrokes")
809 (type-break-mode-line-countdown-or-break 'countdown
)
812 ;; Arrange for a break query to be made, when the user stops typing furiously.
813 (defun type-break-query ()
814 (add-hook 'type-break-post-command-hook
'type-break-do-query
))
816 (defun type-break-do-query ()
818 ((not type-break-query-mode
)
819 (type-break-noninteractive-query)
820 (type-break-schedule type-break-query-interval
)
821 (remove-hook 'type-break-post-command-hook
'type-break-do-query
))
825 ((let ((type-break-mode nil
)
826 ;; yes-or-no-p sets this-command to exit-minibuffer,
827 ;; which hoses undo or yank-pop (if you happened to be
828 ;; yanking just when the query occurred).
829 (this-command this-command
))
830 ;; Cancel schedule to prevent possibility of a second query
831 ;; from taking place before this one has even returned.
832 ;; The condition-case wrapper will reschedule on quit.
833 (type-break-cancel-schedule)
834 ;; Also prevent a second query when the break is interrupted.
835 (remove-hook 'type-break-post-command-hook
'type-break-do-query
)
836 (funcall type-break-query-function
838 (type-break-time-stamp)
839 (if type-break-terse-messages
841 "Take a break from typing now? "))))
844 (type-break-schedule type-break-query-interval
)))
846 (type-break-schedule type-break-query-interval
))))))
848 (defun type-break-noninteractive-query (&optional ignored-args
)
849 "Null query function which doesn't interrupt user and assumes `no'.
850 It prints a reminder in the echo area to take a break, but doesn't enforce
851 this or ask the user to start one right now."
853 (type-break-mode-line-message-mode)
856 (message "%sYou should take a typing break now. Do `M-x type-break'."
857 (type-break-time-stamp))
860 ;; return nil so query caller knows to reset reminder, as if user
861 ;; said "no" in response to yes-or-no-p.
864 (defun type-break-time-warning ()
866 ((and (car type-break-keystroke-threshold
)
867 (< type-break-keystroke-count
(car type-break-keystroke-threshold
))))
868 ((> type-break-time-warning-count
0)
869 (let ((timeleft (type-break-time-difference (current-time)
870 type-break-time-next-break
)))
871 (setq type-break-warning-countdown-string
(number-to-string timeleft
))
873 ((eq (selected-window) (minibuffer-window)))
874 ;; Do nothing if the command was just a prefix arg, since that will
875 ;; immediately be followed by some other interactive command.
876 ;; Otherwise, it is particularly annoying for the sit-for below to
877 ;; delay redisplay when one types sequences like `C-u -1 C-l'.
878 ((memq this-command
'(digit-argument universal-argument
)))
879 ((not type-break-mode-line-message-mode
)
880 ;; Pause for a moment so any previous message can be seen.
882 (message "%sWarning: typing break due in %s."
883 (type-break-time-stamp)
884 (type-break-format-time timeleft
))
885 (setq type-break-time-warning-count
886 (1- type-break-time-warning-count
))))))
888 (remove-hook 'type-break-post-command-hook
'type-break-time-warning
)
889 (setq type-break-warning-countdown-string nil
))))
891 (defun type-break-keystroke-warning ()
893 ((> type-break-keystroke-warning-count
0)
894 (setq type-break-warning-countdown-string
895 (number-to-string (- (cdr type-break-keystroke-threshold
)
896 type-break-keystroke-count
)))
898 ((eq (selected-window) (minibuffer-window)))
899 ;; Do nothing if the command was just a prefix arg, since that will
900 ;; immediately be followed by some other interactive command.
901 ;; Otherwise, it is particularly annoying for the sit-for below to
902 ;; delay redisplay when one types sequences like `C-u -1 C-l'.
903 ((memq this-command
'(digit-argument universal-argument
)))
904 ((not type-break-mode-line-message-mode
)
906 (message "%sWarning: typing break due in %s keystrokes."
907 (type-break-time-stamp)
908 (- (cdr type-break-keystroke-threshold
)
909 type-break-keystroke-count
))
910 (setq type-break-keystroke-warning-count
911 (1- type-break-keystroke-warning-count
)))))
913 (remove-hook 'type-break-post-command-hook
914 'type-break-keystroke-warning
)
915 (setq type-break-warning-countdown-string nil
))))
917 (defun type-break-mode-line-countdown-or-break (&optional type
)
919 ((not type-break-mode-line-message-mode
))
920 ((eq type
'countdown
)
921 ;(setq type-break-mode-line-break-message-p nil)
922 (add-hook 'type-break-post-command-hook
923 'type-break-force-mode-line-update
'append
))
926 (setq type-break-mode-line-break-message-p
927 (not type-break-mode-line-break-message-p
))
928 (remove-hook 'type-break-post-command-hook
929 'type-break-force-mode-line-update
))
931 (setq type-break-mode-line-break-message-p nil
)
932 (setq type-break-warning-countdown-string nil
)
933 (remove-hook 'type-break-post-command-hook
934 'type-break-force-mode-line-update
)))
935 (type-break-force-mode-line-update))
939 (defun type-break-statistics ()
940 "Print statistics about typing breaks in a temporary buffer.
941 This includes the last time a typing break was taken, when the next one is
942 scheduled, the keystroke thresholds and the current keystroke count, etc."
944 (with-output-to-temp-buffer "*Typing Break Statistics*"
945 (princ (format "Typing break statistics\n-----------------------\n
946 Typing break mode is currently %s.
947 Interactive query for breaks is %s.
948 Warnings of imminent typing breaks in mode line is %s.
950 Last typing break ended : %s
951 Next scheduled typing break : %s\n
952 Minimum keystroke threshold : %s
953 Maximum keystroke threshold : %s
954 Current keystroke count : %s"
955 (if type-break-mode
"enabled" "disabled")
956 (if type-break-query-mode
"enabled" "disabled")
957 (if type-break-mode-line-message-mode
"enabled" "disabled")
958 (if type-break-time-last-break
959 (current-time-string type-break-time-last-break
)
961 (if (and type-break-mode type-break-time-next-break
)
962 (format "%s\t(%s from now)"
963 (current-time-string type-break-time-next-break
)
964 (type-break-format-time
965 (type-break-time-difference
967 type-break-time-next-break
)))
969 (or (car type-break-keystroke-threshold
) "none")
970 (or (cdr type-break-keystroke-threshold
) "none")
971 type-break-keystroke-count
))))
974 (defun type-break-guesstimate-keystroke-threshold (wpm &optional wordlen frac
)
975 "Guess values for the minimum/maximum keystroke threshold for typing breaks.
977 If called interactively, the user is prompted for their guess as to how
978 many words per minute they usually type. This value should not be your
979 maximum WPM, but your average. Of course, this is harder to gauge since it
980 can vary considerably depending on what you are doing. For example, one
981 tends to type less when debugging a program as opposed to writing
982 documentation. (Perhaps a separate program should be written to estimate
983 average typing speed.)
985 From that, this command sets the values in `type-break-keystroke-threshold'
986 based on a fairly simple algorithm involving assumptions about the average
987 length of words (5). For the minimum threshold, it uses about a fifth of
988 the computed maximum threshold.
990 When called from Lisp programs, the optional args WORDLEN and FRAC can be
991 used to override the default assumption about average word length and the
992 fraction of the maximum threshold to which to set the minimum threshold.
993 FRAC should be the inverse of the fractional value; for example, a value of
994 2 would mean to use one half, a value of 4 would mean to use one quarter, etc."
995 (interactive "NOn average, how many words per minute do you type? ")
996 (let* ((upper (* wpm
(or wordlen
5) (/ type-break-interval
60)))
997 (lower (/ upper
(or frac
5))))
998 (or type-break-keystroke-threshold
999 (setq type-break-keystroke-threshold
(cons nil nil
)))
1000 (setcar type-break-keystroke-threshold lower
)
1001 (setcdr type-break-keystroke-threshold upper
)
1003 (message "min threshold: %d\tmax threshold: %d" lower upper
))
1004 type-break-keystroke-threshold
))
1009 ;; Compute the difference, in seconds, between a and b, two structures
1010 ;; similar to those returned by `current-time'.
1011 ;; Use addition rather than logand since that is more robust; the low 16
1012 ;; bits of the seconds might have been incremented, making it more than 16
1014 (defun type-break-time-difference (a b
)
1015 (+ (lsh (- (car b
) (car a
)) 16)
1016 (- (car (cdr b
)) (car (cdr a
)))))
1018 ;; Return (in a new list the same in structure to that returned by
1019 ;; `current-time') the sum of the arguments. Each argument may be a time
1020 ;; list or a single integer, a number of seconds.
1021 ;; This function keeps the high and low 16 bits of the seconds properly
1022 ;; balanced so that the lower value never exceeds 16 bits. Otherwise, when
1023 ;; the result is passed to `current-time-string' it will toss some of the
1024 ;; "low" bits and format the time incorrectly.
1025 (defun type-break-time-sum (&rest tmlist
)
1031 (setq tem
(car tmlist
))
1032 (setq tmlist
(cdr tmlist
))
1035 (setq low
(+ low tem
)))
1037 (setq high
(+ high
(or (car tem
) 0)))
1038 (setq low
(+ low
(or (car (cdr tem
)) 0)))
1039 (setq micro
(+ micro
(or (car (cdr (cdr tem
))) 0))))))
1041 (and (>= micro
1000000)
1043 (setq tem
(/ micro
1000000))
1044 (setq low
(+ low tem
))
1045 (setq micro
(- micro
(* tem
1000000)))))
1047 (setq tem
(lsh low -
16))
1050 (setq low
(logand low
65535))
1051 (setq high
(+ high tem
))))
1053 (list high low micro
)))
1055 (defun type-break-time-stamp (&optional when
)
1056 (if (fboundp 'format-time-string
)
1057 (format-time-string type-break-time-stamp-format when
)
1058 ;; Emacs 19.28 and prior do not have format-time-string.
1059 ;; In that case, result is not customizable. Upgrade today!
1060 (format "[%s] " (substring (current-time-string when
) 11 16))))
1062 (defun type-break-format-time (secs)
1063 (let ((mins (/ secs
60)))
1065 ((= mins
1) (format "%d minute" mins
))
1066 ((> mins
0) (format "%d minutes" mins
))
1067 ((= secs
1) (format "%d second" secs
))
1068 (t (format "%d seconds" secs
)))))
1070 (defun type-break-keystroke-reset ()
1071 (setq type-break-interval-start
(current-time)) ; not a keystroke
1072 (setq type-break-keystroke-count
0)
1073 (setq type-break-keystroke-warning-count
0)
1074 (setq type-break-current-keystroke-warning-interval
1075 type-break-keystroke-warning-intervals
)
1076 (remove-hook 'type-break-post-command-hook
'type-break-keystroke-warning
))
1078 (defun type-break-force-mode-line-update (&optional all
)
1079 "Force the mode-line of the current buffer to be redisplayed.
1080 With optional non-nil ALL, force redisplay of all mode-lines."
1081 (and all
(save-excursion (set-buffer (other-buffer))))
1082 (set-buffer-modified-p (buffer-modified-p)))
1084 ;; If an exception occurs in Emacs while running the post command hook, the
1085 ;; value of that hook is clobbered. This is because the value of the
1086 ;; variable is temporarily set to nil while it's running to prevent
1087 ;; recursive application, but it also means an exception aborts the routine
1088 ;; of restoring it. This function is called from the timers to restore it,
1090 (defun type-break-check-post-command-hook ()
1091 (add-hook 'post-command-hook
'type-break-run-tb-post-command-hook
'append
))
1094 ;;; Timer wrapper functions
1096 ;;; These shield type-break from variations in the interval timer packages
1097 ;;; for different versions of Emacs.
1099 (defun type-break-run-at-time (time repeat function
)
1100 (condition-case nil
(or (require 'timer
) (require 'itimer
)) (error nil
))
1101 (run-at-time time repeat function
))
1103 (defvar timer-dont-exit
)
1104 (defun type-break-cancel-function-timers (function)
1105 (let ((timer-dont-exit t
))
1106 (cancel-function-timers function
)))
1111 ;; This is a wrapper around hanoi that calls it with an arg large enough to
1112 ;; make the largest discs possible that will fit in the window.
1113 ;; Also, clean up the *Hanoi* buffer after we're done.
1114 (defun type-break-demo-hanoi ()
1115 "Take a hanoiing typing break."
1116 (and (get-buffer "*Hanoi*")
1117 (kill-buffer "*Hanoi*"))
1120 (hanoi (/ (window-width) 8))
1121 ;; Wait for user to come back.
1123 (kill-buffer "*Hanoi*"))
1127 (and (get-buffer "*Hanoi*")
1128 (kill-buffer "*Hanoi*")))))
1130 ;; This is a wrapper around life that calls it with a `sleep' arg to make
1131 ;; it run a little more leisurely.
1132 ;; Also, clean up the *Life* buffer after we're done.
1133 (defun type-break-demo-life ()
1134 "Take a typing break and get a life."
1138 (and (get-buffer "*Life*")
1139 (kill-buffer "*Life*"))
1143 ;; wait for user to return
1145 (kill-buffer "*Life*"))
1147 (message "%s" (get 'life-extinct
'error-message
))
1152 (and (get-buffer "*Life*")
1153 (kill-buffer "*Life*")))))))
1155 ;; Boring demo, but doesn't use many cycles
1156 (defun type-break-demo-boring ()
1157 "Boring typing break demo."
1158 (let ((rmsg (if type-break-terse-messages
1160 "Press any key to resume from typing break"))
1161 (buffer-name "*Typing Break Buffer*")
1162 lines elapsed timeleft tmsg
)
1165 (switch-to-buffer (get-buffer-create buffer-name
))
1166 (buffer-disable-undo (current-buffer))
1167 (setq lines
(/ (window-body-height) 2))
1168 (unless type-break-terse-messages
(setq lines
(1- lines
)))
1169 (if type-break-demo-boring-stats
1170 (setq lines
(- lines
2)))
1171 (setq lines
(make-string lines ?\C-j
))
1172 (while (not (input-pending-p))
1174 (setq elapsed
(type-break-time-difference
1175 type-break-time-last-break
1177 (let ((good-interval (or type-break-good-rest-interval
1178 type-break-good-break-interval
)))
1181 (setq timeleft
(- good-interval elapsed
))
1184 (format (if type-break-terse-messages
1185 "Break remaining: %s"
1186 "You should rest for %s more")
1187 (type-break-format-time timeleft
)))
1189 (format (if type-break-terse-messages
1190 "Break complete (%s elapsed in total)"
1191 "Typing break has lasted %s")
1192 (type-break-format-time elapsed
)))))
1195 (format (if type-break-terse-messages
1196 "Break has lasted %s"
1197 "Typing break has lasted %s")
1198 (type-break-format-time elapsed
))))))
1200 (make-string (/ (- (window-width) (length tmsg
)) 2) ?\
)
1202 (if (> (length rmsg
) 0)
1204 (make-string (/ (- (window-width) (length rmsg
)) 2)
1207 (if type-break-demo-boring-stats
1211 (if type-break-terse-messages
1212 "Since last break: %s keystrokes\n"
1213 "Since your last break you've typed %s keystrokes\n")
1214 type-break-keystroke-count
))
1216 (make-string (/ (- (window-width) (length message
)) 2)
1218 (wpm (/ (/ (float type-break-keystroke-count
) 5)
1219 (/ (type-break-time-difference
1220 type-break-interval-start
1221 type-break-time-last-break
)
1223 (insert "\n\n" column-spaces message
)
1224 (if type-break-terse-messages
1225 (insert (format " %s%.2f wpm"
1229 (format "at an average of %.2f words per minute"
1232 (make-string (/ (- (window-width) (length message
)) 2)
1235 (goto-char (point-min))
1238 (kill-buffer buffer-name
))
1240 (and (get-buffer buffer-name
)
1241 (kill-buffer buffer-name
))))))
1244 (provide 'type-break
)
1247 (type-break-mode 1))
1249 ;;; arch-tag: 943a2eb3-07e6-420b-993f-96e4796f5fd0
1250 ;;; type-break.el ends here