Mercurial > emacs
annotate lisp/battery.el @ 56303:d86ec00a8470
(isearch-mode-map): Bind C-M-w to isearch-del-char,
C-M-y to isearch-yank-char. Bind M-% to isearch-query-replace,
C-M-% to isearch-query-replace-regexp.
(minibuffer-local-isearch-map): Add arrow key bindings.
Bind C-f to isearch-yank-char-in-minibuffer.
(isearch-forward): Doc fix.
(isearch-edit-string): Doc fix.
(isearch-query-replace, isearch-query-replace-regexp): New funs.
(isearch-del-char): Add optional arg. Set isearch-yank-flag to t.
(isearch-yank-char): Add optional arg.
(isearch-yank-char-in-minibuffer): New fun.
| author | Juri Linkov <juri@jurta.org> |
|---|---|
| date | Thu, 01 Jul 2004 09:54:51 +0000 |
| parents | f3be7c4dc1e6 |
| children | f5b70c70c08c 4c90ffeb71c5 |
| rev | line source |
|---|---|
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
38292
diff
changeset
|
1 ;;; battery.el --- display battery status information |
| 18388 | 2 |
|
52470
b4d15685afef
2003-09-10 Mario Lang <mlang@delysid.org>
Alex Schroeder <alex@gnu.org>
parents:
52450
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 2000, 2001, 2003 Free Software Foundation, Inc. |
| 18388 | 4 |
|
30110
23cb074f9d88
Change author's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
26828
diff
changeset
|
5 ;; Author: Ralph Schleicher <rs@nunatak.allgaeu.org> |
|
20972
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
6 ;; Keywords: hardware |
| 18388 | 7 |
|
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
| 18388 | 9 |
|
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 18388 | 11 ;; it under the terms of the GNU General Public License as published by |
| 12 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 13 ;; any later version. | |
| 14 | |
|
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
| 18388 | 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 ;; GNU General Public License for more details. | |
| 19 | |
| 20 ;; You should have received a copy of the GNU General Public License | |
|
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
|
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 18388 | 23 ;; Boston, MA 02111-1307, USA. |
| 24 | |
| 25 ;;; Commentary: | |
| 26 | |
|
52470
b4d15685afef
2003-09-10 Mario Lang <mlang@delysid.org>
Alex Schroeder <alex@gnu.org>
parents:
52450
diff
changeset
|
27 ;; There is at present support for interpreting the new `/proc/apm' |
|
b4d15685afef
2003-09-10 Mario Lang <mlang@delysid.org>
Alex Schroeder <alex@gnu.org>
parents:
52450
diff
changeset
|
28 ;; file format of Linux version 1.3.58 or newer and for the `/proc/acpi/' |
|
b4d15685afef
2003-09-10 Mario Lang <mlang@delysid.org>
Alex Schroeder <alex@gnu.org>
parents:
52450
diff
changeset
|
29 ;; directory structure of Linux 2.4.20 and 2.6. |
| 18388 | 30 |
| 31 ;;; Code: | |
| 32 | |
| 33 (require 'timer) | |
| 34 | |
| 35 | |
| 21088 | 36 |
| 37 (defgroup battery nil | |
| 38 "Display battery status information." | |
| 39 :prefix "battery-" | |
| 40 :group 'hardware) | |
| 41 | |
| 42 (defcustom battery-status-function | |
| 18388 | 43 (cond ((and (eq system-type 'gnu/linux) |
| 44 (file-readable-p "/proc/apm")) | |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
45 'battery-linux-proc-apm) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
46 ((and (eq system-type 'gnu/linux) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
47 (file-directory-p "/proc/acpi/battery")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
48 'battery-linux-proc-acpi)) |
| 18388 | 49 "*Function for getting battery status information. |
|
36090
9ed7c3f74e35
(battery-status-function): Fix doc, :type.
Dave Love <fx@gnu.org>
parents:
32356
diff
changeset
|
50 The function has to return an alist of conversion definitions. |
|
9ed7c3f74e35
(battery-status-function): Fix doc, :type.
Dave Love <fx@gnu.org>
parents:
32356
diff
changeset
|
51 Its cons cells are of the form |
| 18388 | 52 |
| 53 (CONVERSION . REPLACEMENT-TEXT) | |
| 54 | |
| 55 CONVERSION is the character code of a \"conversion specification\" | |
| 21088 | 56 introduced by a `%' character in a control string." |
|
36090
9ed7c3f74e35
(battery-status-function): Fix doc, :type.
Dave Love <fx@gnu.org>
parents:
32356
diff
changeset
|
57 :type '(choice (const nil) function) |
| 21088 | 58 :group 'battery) |
| 18388 | 59 |
| 21088 | 60 (defcustom battery-echo-area-format |
| 18388 | 61 (cond ((eq battery-status-function 'battery-linux-proc-apm) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
62 "Power %L, battery %B (%p%% load, remaining time %t)") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
63 ((eq battery-status-function 'battery-linux-proc-acpi) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
64 "Power %L, battery %B at %r (%p%% load, remaining time %t)")) |
| 18388 | 65 "*Control string formatting the string to display in the echo area. |
| 66 Ordinary characters in the control string are printed as-is, while | |
| 67 conversion specifications introduced by a `%' character in the control | |
| 68 string are substituted as defined by the current value of the variable | |
| 21088 | 69 `battery-status-function'." |
| 70 :type '(choice string (const nil)) | |
| 71 :group 'battery) | |
| 18388 | 72 |
| 73 (defvar battery-mode-line-string nil | |
| 74 "String to display in the mode line.") | |
| 75 | |
| 21088 | 76 (defcustom battery-mode-line-format |
| 18388 | 77 (cond ((eq battery-status-function 'battery-linux-proc-apm) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
78 " [%b%p%%]") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
79 ((eq battery-status-function 'battery-linux-proc-acpi) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
80 " [%b%p%%,%d°C]")) |
| 18388 | 81 "*Control string formatting the string to display in the mode line. |
| 82 Ordinary characters in the control string are printed as-is, while | |
| 83 conversion specifications introduced by a `%' character in the control | |
| 84 string are substituted as defined by the current value of the variable | |
| 21088 | 85 `battery-status-function'." |
| 86 :type '(choice string (const nil)) | |
| 87 :group 'battery) | |
| 18388 | 88 |
| 21088 | 89 (defcustom battery-update-interval 60 |
| 90 "*Seconds after which the battery status will be updated." | |
| 91 :type 'integer | |
| 92 :group 'battery) | |
| 18388 | 93 |
| 94 (defvar battery-update-timer nil | |
| 95 "Interval timer object.") | |
| 96 | |
|
21076
dc82196eac58
Fixed spelling of `autoload' magic cookies.
Richard M. Stallman <rms@gnu.org>
parents:
20972
diff
changeset
|
97 ;;;###autoload |
| 18388 | 98 (defun battery () |
| 99 "Display battery status information in the echo area. | |
| 26828 | 100 The text being displayed in the echo area is controlled by the variables |
| 18388 | 101 `battery-echo-area-format' and `battery-status-function'." |
| 102 (interactive) | |
| 103 (message "%s" (if (and battery-echo-area-format battery-status-function) | |
| 104 (battery-format battery-echo-area-format | |
| 105 (funcall battery-status-function)) | |
| 106 "Battery status not available"))) | |
| 107 | |
|
21076
dc82196eac58
Fixed spelling of `autoload' magic cookies.
Richard M. Stallman <rms@gnu.org>
parents:
20972
diff
changeset
|
108 ;;;###autoload |
| 18388 | 109 (defun display-battery () |
| 110 "Display battery status information in the mode line. | |
|
32346
fa3f5e8f6201
(display-battery): Doc spelling fix.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
30110
diff
changeset
|
111 The text being displayed in the mode line is controlled by the variables |
| 18388 | 112 `battery-mode-line-format' and `battery-status-function'. |
| 113 The mode line will be updated automatically every `battery-update-interval' | |
| 114 seconds." | |
| 115 (interactive) | |
| 116 (setq battery-mode-line-string "") | |
| 117 (or global-mode-string (setq global-mode-string '(""))) | |
|
32356
fb23c215bdc8
(display-battery): Use `add-to-list'.
Miles Bader <miles@gnu.org>
parents:
32346
diff
changeset
|
118 (add-to-list 'global-mode-string 'battery-mode-line-string t) |
| 18388 | 119 (and battery-update-timer (cancel-timer battery-update-timer)) |
| 120 (setq battery-update-timer (run-at-time nil battery-update-interval | |
| 121 'battery-update-handler)) | |
| 122 (battery-update)) | |
| 123 | |
| 124 (defun battery-update-handler () | |
| 125 (battery-update) | |
| 126 (sit-for 0)) | |
| 127 | |
| 128 (defun battery-update () | |
| 129 "Update battery status information in the mode line." | |
|
38292
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
130 (setq battery-mode-line-string (propertize (if (and battery-mode-line-format |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
131 battery-status-function) |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
132 (battery-format |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
133 battery-mode-line-format |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
134 (funcall battery-status-function)) |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
135 "") |
|
1c462d61083a
(battery-update): Add help-echo.
Gerd Moellmann <gerd@gnu.org>
parents:
36090
diff
changeset
|
136 'help-echo "Battery status information")) |
| 18388 | 137 (force-mode-line-update)) |
| 138 | |
| 139 | |
| 140 ;;; `/proc/apm' interface for Linux. | |
| 141 | |
| 142 (defconst battery-linux-proc-apm-regexp | |
| 143 (concat "^\\([^ ]+\\)" ; Driver version. | |
| 144 " \\([^ ]+\\)" ; APM BIOS version. | |
| 145 " 0x\\([0-9a-f]+\\)" ; APM BIOS flags. | |
| 146 " 0x\\([0-9a-f]+\\)" ; AC line status. | |
| 147 " 0x\\([0-9a-f]+\\)" ; Battery status. | |
| 148 " 0x\\([0-9a-f]+\\)" ; Battery flags. | |
|
20972
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
149 " \\(-?[0-9]+\\)%" ; Load percentage. |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
150 " \\(-?[0-9]+\\)" ; Remaining time. |
| 18388 | 151 " \\(.*\\)" ; Time unit. |
| 152 "$") | |
| 153 "Regular expression matching contents of `/proc/apm'.") | |
| 154 | |
| 155 (defun battery-linux-proc-apm () | |
| 156 "Get APM status information from Linux kernel. | |
| 157 This function works only with the new `/proc/apm' format introduced | |
| 158 in Linux version 1.3.58. | |
| 159 | |
| 160 The following %-sequences are provided: | |
| 161 %v Linux driver version | |
| 162 %V APM BIOS version | |
| 163 %I APM BIOS status (verbose) | |
| 164 %L AC line status (verbose) | |
| 165 %B Battery status (verbose) | |
| 166 %b Battery status, empty means high, `-' means low, | |
| 167 `!' means critical, and `+' means charging | |
| 168 %p battery load percentage | |
| 169 %s Remaining time in seconds | |
| 170 %m Remaining time in minutes | |
| 171 %h Remaining time in hours | |
| 172 %t Remaining time in the form `h:min'" | |
| 173 (let (driver-version bios-version bios-interface line-status | |
| 174 battery-status battery-status-symbol load-percentage | |
| 175 seconds minutes hours remaining-time buffer tem) | |
| 176 (unwind-protect | |
| 177 (save-excursion | |
|
21317
566100bc6eef
(battery-linux-proc-apm): Re-use the temporary buffer.
Richard M. Stallman <rms@gnu.org>
parents:
21088
diff
changeset
|
178 (setq buffer (get-buffer-create " *battery*")) |
| 18388 | 179 (set-buffer buffer) |
|
21317
566100bc6eef
(battery-linux-proc-apm): Re-use the temporary buffer.
Richard M. Stallman <rms@gnu.org>
parents:
21088
diff
changeset
|
180 (erase-buffer) |
|
41919
842512c9651c
(battery-insert-file-contents): Obsolete function removed.
Noah Friedman <friedman@splode.com>
parents:
38737
diff
changeset
|
181 (insert-file-contents "/proc/apm") |
| 18388 | 182 (re-search-forward battery-linux-proc-apm-regexp) |
| 183 (setq driver-version (match-string 1)) | |
| 184 (setq bios-version (match-string 2)) | |
| 185 (setq tem (battery-hex-to-int-2 (match-string 3))) | |
| 186 (if (not (logand tem 2)) | |
| 187 (setq bios-interface "not supported") | |
| 188 (setq bios-interface "enabled") | |
| 189 (cond ((logand tem 16) (setq bios-interface "disabled")) | |
| 190 ((logand tem 32) (setq bios-interface "disengaged"))) | |
| 191 (setq tem (battery-hex-to-int-2 (match-string 4))) | |
| 192 (cond ((= tem 0) (setq line-status "off-line")) | |
| 193 ((= tem 1) (setq line-status "on-line")) | |
| 194 ((= tem 2) (setq line-status "on backup"))) | |
| 195 (setq tem (battery-hex-to-int-2 (match-string 6))) | |
| 196 (if (= tem 255) | |
| 197 (setq battery-status "N/A") | |
| 198 (setq tem (battery-hex-to-int-2 (match-string 5))) | |
| 199 (cond ((= tem 0) (setq battery-status "high" | |
| 200 battery-status-symbol "")) | |
| 201 ((= tem 1) (setq battery-status "low" | |
| 202 battery-status-symbol "-")) | |
| 203 ((= tem 2) (setq battery-status "critical" | |
| 204 battery-status-symbol "!")) | |
| 205 ((= tem 3) (setq battery-status "charging" | |
| 206 battery-status-symbol "+"))) | |
| 207 (setq load-percentage (match-string 7)) | |
| 208 (setq seconds (string-to-number (match-string 8))) | |
| 209 (and (string-equal (match-string 9) "min") | |
| 210 (setq seconds (* 60 seconds))) | |
| 211 (setq minutes (/ seconds 60) | |
| 212 hours (/ seconds 3600)) | |
| 213 (setq remaining-time | |
|
21317
566100bc6eef
(battery-linux-proc-apm): Re-use the temporary buffer.
Richard M. Stallman <rms@gnu.org>
parents:
21088
diff
changeset
|
214 (format "%d:%02d" hours (- minutes (* 60 hours)))))))) |
|
20972
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
215 (list (cons ?v (or driver-version "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
216 (cons ?V (or bios-version "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
217 (cons ?I (or bios-interface "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
218 (cons ?L (or line-status "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
219 (cons ?B (or battery-status "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
220 (cons ?b (or battery-status-symbol "")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
221 (cons ?p (or load-percentage "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
222 (cons ?s (or (and seconds (number-to-string seconds)) "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
223 (cons ?m (or (and minutes (number-to-string minutes)) "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
224 (cons ?h (or (and hours (number-to-string hours)) "N/A")) |
|
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
225 (cons ?t (or remaining-time "N/A"))))) |
| 18388 | 226 |
| 227 | |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
228 ;;; `/proc/acpi/' interface for Linux. |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
229 |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
230 (defun battery-linux-proc-acpi () |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
231 "Get ACPI status information from Linux kernel. |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
232 This function works only with the new `/proc/acpi/' format introduced |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
233 in Linux version 2.4.20 and 2.6.0. |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
234 |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
235 The following %-sequences are provided: |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
236 %c Current capacity (mAh) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
237 %B Battery status (verbose) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
238 %b Battery status, empty means high, `-' means low, |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
239 `!' means critical, and `+' means charging |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
240 %d Temperature (in degrees Celsius) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
241 %L AC line status (verbose) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
242 %p battery load percentage |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
243 %m Remaining time in minutes |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
244 %h Remaining time in hours |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
245 %t Remaining time in the form `h:min'" |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
246 (let (capacity design-capacity rate rate-type charging-state warn low |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
247 minutes hours) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
248 (when (file-directory-p "/proc/acpi/battery/") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
249 ;; ACPI provides information about each battery present in the system in |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
250 ;; a separate subdirectory. We are going to merge the available |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
251 ;; information together since displaying for a variable amount of |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
252 ;; batteries seems overkill for format-strings. |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
253 (mapc |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
254 (lambda (dir) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
255 (with-temp-buffer |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
256 (insert-file-contents (expand-file-name "state" dir)) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
257 (when (re-search-forward "present: +yes$" nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
258 (and (re-search-forward "charging state: +\\(.*\\)$" nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
259 (or (null charging-state) (string= charging-state |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
260 "unknown")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
261 ;; On most multi-battery systems, most of the time only one |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
262 ;; battery is "charging"/"discharging", the others are |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
263 ;; "unknown". |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
264 (setq charging-state (match-string 1))) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
265 (when (re-search-forward "present rate: +\\([0-9]+\\) \\(m[AW]\\)$" |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
266 nil t) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
267 (setq rate (+ (or rate 0) (string-to-int (match-string 1))) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
268 rate-type (or (and rate-type |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
269 (if (string= rate-type (match-string 2)) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
270 rate-type |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
271 (error |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
272 "Inconsistent rate types (%s vs. %s)" |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
273 rate-type (match-string 2)))) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
274 (match-string 2)))) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
275 (when (re-search-forward "remaining capacity: +\\([0-9]+\\) m[AW]h$" |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
276 nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
277 (setq capacity |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
278 (+ (or capacity 0) (string-to-int (match-string 1)))))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
279 (goto-char (point-max)) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
280 (insert-file-contents (expand-file-name "info" dir)) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
281 (when (re-search-forward "present: +yes$" nil t) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
282 (when (re-search-forward "design capacity: +\\([0-9]+\\) m[AW]h$" |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
283 nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
284 (setq design-capacity (+ (or design-capacity 0) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
285 (string-to-int (match-string 1))))) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
286 (when (re-search-forward "design capacity warning: +\\([0-9]+\\) m[AW]h$" |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
287 nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
288 (setq warn (+ (or warn 0) (string-to-int (match-string 1))))) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
289 (when (re-search-forward "design capacity low: +\\([0-9]+\\) m[AW]h$" |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
290 nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
291 (setq low (+ (or low 0) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
292 (string-to-int (match-string 1)))))))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
293 (directory-files "/proc/acpi/battery/" t "BAT"))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
294 (and capacity rate |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
295 (setq minutes (if (zerop rate) 0 |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
296 (floor (* (/ (float (if (string= charging-state |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
297 "charging") |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
298 (- design-capacity capacity) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
299 capacity)) rate) 60))) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
300 hours (/ minutes 60))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
301 (list (cons ?c (or (and capacity (number-to-string capacity)) "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
302 (cons ?L (or (when (file-exists-p "/proc/acpi/ac_adapter/AC/state") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
303 (with-temp-buffer |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
304 (insert-file-contents |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
305 "/proc/acpi/ac_adapter/AC/state") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
306 (when (re-search-forward "state: +\\(.*\\)$" nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
307 (match-string 1)))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
308 "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
309 (cons ?d (or (when (file-exists-p |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
310 "/proc/acpi/thermal_zone/THRM/temperature") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
311 (with-temp-buffer |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
312 (insert-file-contents |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
313 "/proc/acpi/thermal_zone/THRM/temperature") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
314 (when (re-search-forward |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
315 "temperature: +\\([0-9]+\\) C$" nil t) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
316 (match-string 1)))) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
317 (when (file-exists-p |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
318 "/proc/acpi/thermal_zone/THM/temperature") |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
319 (with-temp-buffer |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
320 (insert-file-contents |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
321 "/proc/acpi/thermal_zone/THM/temperature") |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
322 (when (re-search-forward |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
323 "temperature: +\\([0-9]+\\) C$" nil t) |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
324 (match-string 1)))) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
325 "N/A")) |
|
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
326 (cons ?r (or (and rate (concat (number-to-string rate) " " |
|
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
327 rate-type)) "N/A")) |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
328 (cons ?B (or charging-state "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
329 (cons ?b (or (and (string= charging-state "charging") "+") |
|
52470
b4d15685afef
2003-09-10 Mario Lang <mlang@delysid.org>
Alex Schroeder <alex@gnu.org>
parents:
52450
diff
changeset
|
330 (and low (< capacity low) "!") |
|
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
331 (and warn (< capacity warn) "-") |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
332 "")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
333 (cons ?h (or (and hours (number-to-string hours)) "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
334 (cons ?m (or (and minutes (number-to-string minutes)) "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
335 (cons ?t (or (and minutes |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
336 (format "%d:%02d" hours (- minutes (* 60 hours)))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
337 "N/A")) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
338 (cons ?p (or (and design-capacity capacity |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
339 (number-to-string |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
340 (floor (/ capacity |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
341 (/ (float design-capacity) 100))))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
342 "N/A"))))) |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
343 |
|
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
344 |
| 18388 | 345 ;;; Private functions. |
| 346 | |
| 347 (defun battery-format (format alist) | |
| 348 "Substitute %-sequences in FORMAT." | |
| 349 (let ((index 0) | |
| 350 (length (length format)) | |
| 351 (result "") | |
| 352 char flag elem) | |
| 353 (while (< index length) | |
| 354 (setq char (aref format index)) | |
| 355 (if (not flag) | |
| 356 (if (char-equal char ?%) | |
| 357 (setq flag t) | |
| 358 (setq result (concat result (char-to-string char)))) | |
| 359 (cond ((char-equal char ?%) | |
| 360 (setq result (concat result "%"))) | |
| 361 ((setq elem (assoc char alist)) | |
| 362 (setq result (concat result (cdr elem))))) | |
| 363 (setq flag nil)) | |
| 364 (setq index (1+ index))) | |
| 365 (or (null flag) | |
| 366 (setq result (concat result "%"))) | |
| 367 result)) | |
| 368 | |
| 369 (defconst battery-hex-map '((?0 . 0) (?1 . 1) (?2 . 2) (?3 . 3) | |
| 370 (?4 . 4) (?5 . 5) (?6 . 6) (?7 . 7) | |
| 371 (?8 . 8) (?9 . 9) (?a . 10) (?b . 11) | |
| 372 (?c . 12) (?d . 13) (?e . 14) (?f . 15))) | |
| 373 | |
| 374 (defun battery-hex-to-int (string) | |
| 375 "Convert a hexadecimal number (a string) into a number." | |
| 376 (save-match-data | |
| 377 (and (string-match "^[ \t]+" string) | |
| 378 (setq string (substring string (match-end 0)))) | |
| 379 (and (string-match "^0[xX]" string) | |
| 380 (setq string (substring string (match-end 0))))) | |
| 381 (battery-hex-to-int-2 string)) | |
| 382 | |
| 383 (defun battery-hex-to-int-2 (string) | |
| 384 (let ((index 0) | |
| 385 (length (length string)) | |
| 386 (value 0) | |
| 387 (elem nil)) | |
| 388 (while (and (< index length) | |
| 389 (setq elem (assoc (downcase (aref string index)) | |
| 390 battery-hex-map))) | |
| 391 (setq value (+ (* 16 value) (cdr elem)) | |
| 392 index (1+ index))) | |
| 393 value)) | |
| 394 | |
| 395 | |
| 396 (provide 'battery) | |
| 397 | |
| 52401 | 398 ;;; arch-tag: 65916f50-4754-4b6b-ac21-0b510f545a37 |
| 18388 | 399 ;;; battery.el ends here |
