home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / emacs-15.0.3 / lisp / time.el < prev    next >
Lisp/Scheme  |  1990-08-16  |  3KB  |  94 lines

  1. ;; Display time and load in mode line of Emacs.
  2. ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
  3.  
  4. ;; This file is part of GNU Emacs.
  5.  
  6. ;; GNU Emacs is distributed in the hope that it will be useful,
  7. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  8. ;; accepts responsibility to anyone for the consequences of using it
  9. ;; or for whether it serves any particular purpose or works at all,
  10. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  11. ;; License for full details.
  12.  
  13. ;; Everyone is granted permission to copy, modify and redistribute
  14. ;; GNU Emacs, but only under the conditions described in the
  15. ;; GNU Emacs General Public License.   A copy of this license is
  16. ;; supposed to have been given to you along with GNU Emacs so you
  17. ;; can know your rights and responsibilities.  It should be in a
  18. ;; file named COPYING.  Among other things, the copyright notice
  19. ;; and this notice must be preserved on all copies.
  20.  
  21.  
  22. (defvar display-time-process nil)
  23.  
  24. (defvar display-time-interval 60
  25.   "*Seconds between updates of time in the mode line.")
  26.  
  27. (defvar display-time-string nil)
  28.  
  29. (defun display-time ()
  30.   "Display current time and load level in mode line of each buffer.
  31. Updates automatically every minute.
  32. If display-time-day-and-date is non-nil, the current day and date
  33. are displayed as well."
  34.   (interactive)
  35.   (let ((live (and display-time-process
  36.            (eq (process-status display-time-process) 'run))))
  37.     (if (not live)
  38.     (progn
  39.       (if display-time-process
  40.           (delete-process display-time-process))
  41.       (or global-mode-string (setq global-mode-string '("")))
  42.       (or (memq 'display-time-string global-mode-string)
  43.           (setq global-mode-string
  44.             (append global-mode-string '(display-time-string))))
  45.       (setq display-time-string "")
  46.       (setq display-time-process
  47.         (start-process "display-time" nil
  48.                    "wakeup"
  49.                    (int-to-string display-time-interval)))
  50.       (process-kill-without-query display-time-process)
  51.       (set-process-sentinel display-time-process 'display-time-sentinel)
  52.       (set-process-filter display-time-process 'display-time-filter)))))
  53.  
  54. (defun display-time-sentinel (proc reason)
  55.   (or (eq (process-status proc) 'run)
  56.       (setq display-time-string ""))
  57.   ;; Force mode-line updates
  58.   (save-excursion (set-buffer (other-buffer)))
  59.   (set-buffer-modified-p (buffer-modified-p))
  60.   (sit-for 0))
  61.  
  62. (defun display-time-filter (proc string)
  63.   (let ((time (current-time-string))
  64.     (load (format "%03d" (car (load-average))))
  65.     (mail-spool-file (concat rmail-spool-directory
  66.                  (or (getenv "LOGNAME")
  67.                      (getenv "USER")
  68.                      (user-login-name))))
  69.     hour pm)
  70.     (setq hour (read (substring time 11 13)))
  71.     (setq pm (>= hour 12))
  72.     (if (> hour 12)
  73.     (setq hour (- hour 12))
  74.       (if (= hour 0)
  75.       (setq hour 12)))
  76.     (setq display-time-string
  77.       (concat (format "%d" hour) (substring time 13 16)
  78.           (if pm "pm " "am ")
  79.           (substring load 0 -2) "." (substring load -2)
  80.           (if (and (file-exists-p mail-spool-file)
  81.                ;; file not empty?
  82.                (> (nth 7 (file-attributes mail-spool-file)) 0))
  83.               " Mail"
  84.             "")))
  85.     ;; Append the date if desired.
  86.     (if display-time-day-and-date
  87.     (setq display-time-string
  88.           (concat (substring time 0 11) display-time-string))))
  89.   ;; Force redisplay of all buffers' mode lines to be considered.
  90.   (save-excursion (set-buffer (other-buffer)))
  91.   (set-buffer-modified-p (buffer-modified-p))
  92.   ;; Do redisplay right now, if no input pending.
  93.   (sit-for 0))
  94.