Mercurial > emacs
annotate lisp/battery.el @ 76079:27d8a3520956
*** empty log message ***
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Thu, 22 Feb 2007 23:04:34 +0000 |
parents | e3694f1cb928 |
children | 9355f9b7bbff 95d0cdf160ea |
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 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64094
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
18388 | 5 |
30110
23cb074f9d88
Change author's mail address.
Gerd Moellmann <gerd@gnu.org>
parents:
26828
diff
changeset
|
6 ;; 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
|
7 ;; Keywords: hardware |
18388 | 8 |
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
18388 | 10 |
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
18388 | 12 ;; it under the terms of the GNU General Public License as published by |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
18685
4f3350c88e6c
Fix copyright and copying permissions.
Richard M. Stallman <rms@gnu.org>
parents:
18388
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
18388 | 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; 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
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
18388 | 25 |
26 ;;; Commentary: | |
27 | |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
28 ;; There is at present support for GNU/Linux and OS X. This library |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
29 ;; supports both the `/proc/apm' file format of Linux version 1.3.58 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
30 ;; or newer and the `/proc/acpi/' directory structure of Linux 2.4.20 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
31 ;; and 2.6. Darwin (OS X) is supported by using the `pmset' program. |
18388 | 32 |
33 ;;; Code: | |
34 | |
35 (require 'timer) | |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
36 (eval-when-compile (require 'cl)) |
18388 | 37 |
38 | |
21088 | 39 (defgroup battery nil |
40 "Display battery status information." | |
41 :prefix "battery-" | |
42 :group 'hardware) | |
43 | |
44 (defcustom battery-status-function | |
18388 | 45 (cond ((and (eq system-type 'gnu/linux) |
46 (file-readable-p "/proc/apm")) | |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
47 'battery-linux-proc-apm) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
48 ((and (eq system-type 'gnu/linux) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
49 (file-directory-p "/proc/acpi/battery")) |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
50 'battery-linux-proc-acpi) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
51 ((and (eq system-type 'darwin) |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
52 (condition-case nil |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
53 (with-temp-buffer |
64907
08b55dc9bcd1
(battery-status-function): Don't use ignore-errors.
Lute Kamstra <lute@gnu.org>
parents:
64762
diff
changeset
|
54 (and (eq (call-process "pmset" nil t nil "-g" "ps") 0) |
08b55dc9bcd1
(battery-status-function): Don't use ignore-errors.
Lute Kamstra <lute@gnu.org>
parents:
64762
diff
changeset
|
55 (> (buffer-size) 0))) |
08b55dc9bcd1
(battery-status-function): Don't use ignore-errors.
Lute Kamstra <lute@gnu.org>
parents:
64762
diff
changeset
|
56 (error nil))) |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
57 'battery-pmset)) |
18388 | 58 "*Function for getting battery status information. |
36090
9ed7c3f74e35
(battery-status-function): Fix doc, :type.
Dave Love <fx@gnu.org>
parents:
32356
diff
changeset
|
59 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
|
60 Its cons cells are of the form |
18388 | 61 |
62 (CONVERSION . REPLACEMENT-TEXT) | |
63 | |
64 CONVERSION is the character code of a \"conversion specification\" | |
21088 | 65 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
|
66 :type '(choice (const nil) function) |
21088 | 67 :group 'battery) |
18388 | 68 |
21088 | 69 (defcustom battery-echo-area-format |
18388 | 70 (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
|
71 "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
|
72 ((eq battery-status-function 'battery-linux-proc-acpi) |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
73 "Power %L, battery %B at %r (%p%% load, remaining time %t)") |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
74 ((eq battery-status-function 'battery-pmset) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
75 "%L power, battery %B (%p%% load, remaining time %t)")) |
18388 | 76 "*Control string formatting the string to display in the echo area. |
77 Ordinary characters in the control string are printed as-is, while | |
78 conversion specifications introduced by a `%' character in the control | |
79 string are substituted as defined by the current value of the variable | |
69381
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
80 `battery-status-function'. Here are the ones generally available: |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
81 %c Current capacity (mAh or mWh) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
82 %r Current rate of charge or discharge |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
83 %B Battery status (verbose) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
84 %b Battery status: empty means high, `-' means low, |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
85 `!' means critical, and `+' means charging |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
86 %d Temperature (in degrees Celsius) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
87 %L AC line status (verbose) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
88 %p Battery load percentage |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
89 %m Remaining time (to charge or discharge) in minutes |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
90 %h Remaining time (to charge or discharge) in hours |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
91 %t Remaining time (to charge or discharge) in the form `h:min'" |
21088 | 92 :type '(choice string (const nil)) |
93 :group 'battery) | |
18388 | 94 |
95 (defvar battery-mode-line-string nil | |
96 "String to display in the mode line.") | |
59132
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
97 ;;;###autoload (put 'battery-mode-line-string 'risky-local-variable t) |
18388 | 98 |
21088 | 99 (defcustom battery-mode-line-format |
18388 | 100 (cond ((eq battery-status-function 'battery-linux-proc-apm) |
59132
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
101 "[%b%p%%]") |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
102 ((eq battery-status-function 'battery-linux-proc-acpi) |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
103 "[%b%p%%,%d°C]") |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
104 ((eq battery-status-function 'battery-pmset) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
105 "[%b%p%%]")) |
18388 | 106 "*Control string formatting the string to display in the mode line. |
107 Ordinary characters in the control string are printed as-is, while | |
108 conversion specifications introduced by a `%' character in the control | |
109 string are substituted as defined by the current value of the variable | |
69381
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
110 `battery-status-function'. Here are the ones generally available: |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
111 %c Current capacity (mAh or mWh) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
112 %r Current rate of charge or discharge |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
113 %B Battery status (verbose) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
114 %b Battery status: empty means high, `-' means low, |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
115 `!' means critical, and `+' means charging |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
116 %d Temperature (in degrees Celsius) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
117 %L AC line status (verbose) |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
118 %p Battery load percentage |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
119 %m Remaining time (to charge or discharge) in minutes |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
120 %h Remaining time (to charge or discharge) in hours |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
121 %t Remaining time (to charge or discharge) in the form `h:min'" |
21088 | 122 :type '(choice string (const nil)) |
123 :group 'battery) | |
18388 | 124 |
21088 | 125 (defcustom battery-update-interval 60 |
126 "*Seconds after which the battery status will be updated." | |
127 :type 'integer | |
128 :group 'battery) | |
18388 | 129 |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
130 (defcustom battery-load-low 25 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
131 "*Upper bound of low battery load percentage. |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
132 A battery load percentage below this number is considered low." |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
133 :type 'integer |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
134 :group 'battery) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
135 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
136 (defcustom battery-load-critical 10 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
137 "*Upper bound of critical battery load percentage. |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
138 A battery load percentage below this number is considered critical." |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
139 :type 'integer |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
140 :group 'battery) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
141 |
18388 | 142 (defvar battery-update-timer nil |
143 "Interval timer object.") | |
144 | |
21076
dc82196eac58
Fixed spelling of `autoload' magic cookies.
Richard M. Stallman <rms@gnu.org>
parents:
20972
diff
changeset
|
145 ;;;###autoload |
18388 | 146 (defun battery () |
147 "Display battery status information in the echo area. | |
26828 | 148 The text being displayed in the echo area is controlled by the variables |
18388 | 149 `battery-echo-area-format' and `battery-status-function'." |
150 (interactive) | |
151 (message "%s" (if (and battery-echo-area-format battery-status-function) | |
152 (battery-format battery-echo-area-format | |
153 (funcall battery-status-function)) | |
154 "Battery status not available"))) | |
155 | |
21076
dc82196eac58
Fixed spelling of `autoload' magic cookies.
Richard M. Stallman <rms@gnu.org>
parents:
20972
diff
changeset
|
156 ;;;###autoload |
59363
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
157 (define-minor-mode display-battery-mode |
18388 | 158 "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
|
159 The text being displayed in the mode line is controlled by the variables |
18388 | 160 `battery-mode-line-format' and `battery-status-function'. |
161 The mode line will be updated automatically every `battery-update-interval' | |
162 seconds." | |
61268
abd0d265b4ba
(display-battery-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
59363
diff
changeset
|
163 :global t :group 'battery |
18388 | 164 (setq battery-mode-line-string "") |
165 (or global-mode-string (setq global-mode-string '(""))) | |
166 (and battery-update-timer (cancel-timer battery-update-timer)) | |
59363
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
167 (if (not display-battery-mode) |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
168 (setq global-mode-string |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
169 (delq 'battery-mode-line-string global-mode-string)) |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
170 (add-to-list 'global-mode-string 'battery-mode-line-string t) |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
171 (setq battery-update-timer (run-at-time nil battery-update-interval |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
172 'battery-update-handler)) |
9120644ff426
(display-battery-mode): Rename from display-battery.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59132
diff
changeset
|
173 (battery-update))) |
18388 | 174 |
175 (defun battery-update-handler () | |
176 (battery-update) | |
177 (sit-for 0)) | |
178 | |
179 (defun battery-update () | |
180 "Update battery status information in the mode line." | |
59132
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
181 (setq battery-mode-line-string |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
182 (propertize (if (and battery-mode-line-format |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
183 battery-status-function) |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
184 (battery-format |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
185 battery-mode-line-format |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
186 (funcall battery-status-function)) |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
187 "") |
38f1d5865861
(battery-mode-line-format): Remove initial spaces.
Richard M. Stallman <rms@gnu.org>
parents:
57143
diff
changeset
|
188 'help-echo "Battery status information")) |
18388 | 189 (force-mode-line-update)) |
190 | |
191 | |
192 ;;; `/proc/apm' interface for Linux. | |
193 | |
194 (defconst battery-linux-proc-apm-regexp | |
195 (concat "^\\([^ ]+\\)" ; Driver version. | |
196 " \\([^ ]+\\)" ; APM BIOS version. | |
197 " 0x\\([0-9a-f]+\\)" ; APM BIOS flags. | |
198 " 0x\\([0-9a-f]+\\)" ; AC line status. | |
199 " 0x\\([0-9a-f]+\\)" ; Battery status. | |
200 " 0x\\([0-9a-f]+\\)" ; Battery flags. | |
20972
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
201 " \\(-?[0-9]+\\)%" ; Load percentage. |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
202 " \\(-?[0-9]+\\)" ; Remaining time. |
18388 | 203 " \\(.*\\)" ; Time unit. |
204 "$") | |
205 "Regular expression matching contents of `/proc/apm'.") | |
206 | |
207 (defun battery-linux-proc-apm () | |
208 "Get APM status information from Linux kernel. | |
209 This function works only with the new `/proc/apm' format introduced | |
210 in Linux version 1.3.58. | |
211 | |
212 The following %-sequences are provided: | |
213 %v Linux driver version | |
214 %V APM BIOS version | |
215 %I APM BIOS status (verbose) | |
216 %L AC line status (verbose) | |
217 %B Battery status (verbose) | |
218 %b Battery status, empty means high, `-' means low, | |
219 `!' means critical, and `+' means charging | |
63899
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
220 %p Battery load percentage |
69381
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
221 %s Remaining time (to charge or discharge) in seconds |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
222 %m Remaining time (to charge or discharge) in minutes |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
223 %h Remaining time (to charge or discharge) in hours |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
224 %t Remaining time (to charge or discharge) in the form `h:min'" |
18388 | 225 (let (driver-version bios-version bios-interface line-status |
226 battery-status battery-status-symbol load-percentage | |
63899
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
227 seconds minutes hours remaining-time tem) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
228 (with-temp-buffer |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
229 (ignore-errors (insert-file-contents "/proc/apm")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
230 (when (re-search-forward battery-linux-proc-apm-regexp) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
231 (setq driver-version (match-string 1)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
232 (setq bios-version (match-string 2)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
233 (setq tem (string-to-number (match-string 3) 16)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
234 (if (not (logand tem 2)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
235 (setq bios-interface "not supported") |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
236 (setq bios-interface "enabled") |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
237 (cond ((logand tem 16) (setq bios-interface "disabled")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
238 ((logand tem 32) (setq bios-interface "disengaged"))) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
239 (setq tem (string-to-number (match-string 4) 16)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
240 (cond ((= tem 0) (setq line-status "off-line")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
241 ((= tem 1) (setq line-status "on-line")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
242 ((= tem 2) (setq line-status "on backup"))) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
243 (setq tem (string-to-number (match-string 6) 16)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
244 (if (= tem 255) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
245 (setq battery-status "N/A") |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
246 (setq tem (string-to-number (match-string 5) 16)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
247 (cond ((= tem 0) (setq battery-status "high" |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
248 battery-status-symbol "")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
249 ((= tem 1) (setq battery-status "low" |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
250 battery-status-symbol "-")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
251 ((= tem 2) (setq battery-status "critical" |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
252 battery-status-symbol "!")) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
253 ((= tem 3) (setq battery-status "charging" |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
254 battery-status-symbol "+"))) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
255 (setq load-percentage (match-string 7)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
256 (setq seconds (string-to-number (match-string 8))) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
257 (and (string-equal (match-string 9) "min") |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
258 (setq seconds (* 60 seconds))) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
259 (setq minutes (/ seconds 60) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
260 hours (/ seconds 3600)) |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
261 (setq remaining-time |
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
262 (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
|
263 (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
|
264 (cons ?V (or bios-version "N/A")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
265 (cons ?I (or bios-interface "N/A")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
266 (cons ?L (or line-status "N/A")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
267 (cons ?B (or battery-status "N/A")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
268 (cons ?b (or battery-status-symbol "")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
269 (cons ?p (or load-percentage "N/A")) |
9dff083ee7a9
(battery-linux-proc-apm-regexp): Load percentage
Karl Heuer <kwzh@gnu.org>
parents:
18685
diff
changeset
|
270 (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
|
271 (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
|
272 (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
|
273 (cons ?t (or remaining-time "N/A"))))) |
18388 | 274 |
275 | |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
276 ;;; `/proc/acpi/' interface for Linux. |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
277 |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
278 (defun battery-linux-proc-acpi () |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
279 "Get ACPI status information from Linux kernel. |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
280 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
|
281 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
|
282 |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
283 The following %-sequences are provided: |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
284 %c Current capacity (mAh) |
63899
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
285 %r Current rate |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
286 %B Battery status (verbose) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
287 %b Battery status, empty means high, `-' means low, |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
288 `!' means critical, and `+' means charging |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
289 %d Temperature (in degrees Celsius) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
290 %L AC line status (verbose) |
63899
1f503fd2046d
(battery-linux-proc-apm): Fix typo in docstring.
Lute Kamstra <lute@gnu.org>
parents:
61268
diff
changeset
|
291 %p Battery load percentage |
69381
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
292 %m Remaining time (to charge or discharge) in minutes |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
293 %h Remaining time (to charge or discharge) in hours |
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
294 %t Remaining time (to charge or discharge) in the form `h:min'" |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
295 (let ((design-capacity 0) |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
296 (last-full-capacity 0) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
297 full-capacity |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
298 (warn 0) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
299 (low 0) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
300 capacity rate rate-type charging-state minutes hours) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
301 ;; ACPI provides information about each battery present in the system in |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
302 ;; a separate subdirectory. We are going to merge the available |
57133
fd1a6df8927e
Delete superfluous empty lines.
Eli Zaretskii <eliz@gnu.org>
parents:
56663
diff
changeset
|
303 ;; information together since displaying for a variable amount of |
fd1a6df8927e
Delete superfluous empty lines.
Eli Zaretskii <eliz@gnu.org>
parents:
56663
diff
changeset
|
304 ;; batteries seems overkill for format-strings. |
fd1a6df8927e
Delete superfluous empty lines.
Eli Zaretskii <eliz@gnu.org>
parents:
56663
diff
changeset
|
305 (with-temp-buffer |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
306 (dolist (dir (ignore-errors (directory-files "/proc/acpi/battery/" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
307 t "\\`[^.]"))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
308 (erase-buffer) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
309 (ignore-errors (insert-file-contents (expand-file-name "state" dir))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
310 (when (re-search-forward "present: +yes$" nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
311 (and (re-search-forward "charging state: +\\(.*\\)$" nil t) |
69381
780bbe0dfb17
(battery-echo-area-format): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
68651
diff
changeset
|
312 (member charging-state '("unknown" "charged" nil)) |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
313 ;; On most multi-battery systems, most of the time only one |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
314 ;; battery is "charging"/"discharging", the others are |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
315 ;; "unknown". |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
316 (setq charging-state (match-string 1))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
317 (when (re-search-forward "present rate: +\\([0-9]+\\) \\(m[AW]\\)$" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
318 nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
319 (setq rate (+ (or rate 0) (string-to-number (match-string 1))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
320 rate-type (or (and rate-type |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
321 (if (string= rate-type (match-string 2)) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
322 rate-type |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
323 (error |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
324 "Inconsistent rate types (%s vs. %s)" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
325 rate-type (match-string 2)))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
326 (match-string 2)))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
327 (when (re-search-forward "remaining capacity: +\\([0-9]+\\) m[AW]h$" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
328 nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
329 (setq capacity |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
330 (+ (or capacity 0) (string-to-number (match-string 1)))))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
331 (goto-char (point-max)) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
332 (ignore-errors (insert-file-contents (expand-file-name "info" dir))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
333 (when (re-search-forward "present: +yes$" nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
334 (when (re-search-forward "design capacity: +\\([0-9]+\\) m[AW]h$" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
335 nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
336 (incf design-capacity (string-to-number (match-string 1)))) |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
337 (when (re-search-forward "last full capacity: +\\([0-9]+\\) m[AW]h$" |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
338 nil t) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
339 (incf last-full-capacity (string-to-number (match-string 1)))) |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
340 (when (re-search-forward |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
341 "design capacity warning: +\\([0-9]+\\) m[AW]h$" nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
342 (incf warn (string-to-number (match-string 1)))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
343 (when (re-search-forward "design capacity low: +\\([0-9]+\\) m[AW]h$" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
344 nil t) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
345 (incf low (string-to-number (match-string 1))))))) |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
346 (setq full-capacity (if (> last-full-capacity 0) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
347 last-full-capacity design-capacity)) |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
348 (and capacity rate |
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
349 (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
|
350 (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
|
351 "charging") |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
352 (- full-capacity capacity) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
353 capacity)) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
354 rate) |
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
355 60))) |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
356 hours (/ minutes 60))) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
357 (list (cons ?c (or (and capacity (number-to-string capacity)) "N/A")) |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
358 (cons ?L (or (battery-search-for-one-match-in-files |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
359 (mapcar (lambda (e) (concat e "/state")) |
75178
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
360 (ignore-errors |
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
361 (directory-files "/proc/acpi/ac_adapter/" |
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
362 t "\\`[^.]"))) |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
363 "state: +\\(.*\\)$" 1) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
364 |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
365 "N/A")) |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
366 (cons ?d (or (battery-search-for-one-match-in-files |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
367 (mapcar (lambda (e) (concat e "/temperature")) |
75178
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
368 (ignore-errors |
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
369 (directory-files "/proc/acpi/thermal_zone/" |
b01847d9a51b
(battery-linux-proc-acpi): Use ignore-errors around calls to directory-files.
Richard M. Stallman <rms@gnu.org>
parents:
75139
diff
changeset
|
370 t "\\`[^.]"))) |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
371 "temperature: +\\([0-9]+\\) C$" 1) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
372 |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
373 "N/A")) |
55904
f3be7c4dc1e6
(battery-linux-proc-acpi): mA was hardcored, but some
Eli Zaretskii <eliz@gnu.org>
parents:
52470
diff
changeset
|
374 (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
|
375 rate-type)) "N/A")) |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
376 (cons ?B (or charging-state "N/A")) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
377 (cons ?b (or (and (string= charging-state "charging") "+") |
69414
a159957988d5
(battery-linux-proc-acpi): Check `capacity' for non-nil
Juri Linkov <juri@jurta.org>
parents:
69381
diff
changeset
|
378 (and capacity (< capacity low) "!") |
a159957988d5
(battery-linux-proc-acpi): Check `capacity' for non-nil
Juri Linkov <juri@jurta.org>
parents:
69381
diff
changeset
|
379 (and capacity (< capacity warn) "-") |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
380 "")) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
381 (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
|
382 (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
|
383 (cons ?t (or (and minutes |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
384 (format "%d:%02d" hours (- minutes (* 60 hours)))) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
385 "N/A")) |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
386 (cons ?p (or (and full-capacity capacity |
73599
65d9fbabd719
* battery.el (battery-linux-proc-acpi): Prevent range error when
Chong Yidong <cyd@stupidchicken.com>
parents:
70539
diff
changeset
|
387 (> full-capacity 0) |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
388 (number-to-string |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
389 (floor (/ capacity |
68266
0d67eef96242
(battery-linux-proc-acpi): Handle "last full capacity".
Richard M. Stallman <rms@gnu.org>
parents:
67802
diff
changeset
|
390 (/ (float full-capacity) 100))))) |
52450
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
391 "N/A"))))) |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
392 |
d096f00804db
(battery-linux-proc-acpi): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
393 |
64094
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
394 ;;; `pmset' interface for Darwin (OS X). |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
395 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
396 (defun battery-pmset () |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
397 "Get battery status information using `pmset'. |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
398 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
399 The following %-sequences are provided: |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
400 %L Power source (verbose) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
401 %B Battery status (verbose) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
402 %b Battery status, empty means high, `-' means low, |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
403 `!' means critical, and `+' means charging |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
404 %p Battery load percentage |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
405 %h Remaining time in hours |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
406 %m Remaining time in minutes |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
407 %t Remaining time in the form `h:min'" |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
408 (let (power-source load-percentage battery-status battery-status-symbol |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
409 remaining-time hours minutes) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
410 (with-temp-buffer |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
411 (ignore-errors (call-process "pmset" nil t nil "-g" "ps")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
412 (goto-char (point-min)) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
413 (when (re-search-forward "Currentl?y drawing from '\\(AC\\|Battery\\) Power'" nil t) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
414 (setq power-source (match-string 1)) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
415 (when (re-search-forward "^ -InternalBattery-0[ \t]+" nil t) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
416 (when (looking-at "\\([0-9]\\{1,3\\}\\)%") |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
417 (setq load-percentage (match-string 1)) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
418 (goto-char (match-end 0)) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
419 (cond ((looking-at "; charging") |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
420 (setq battery-status "charging" |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
421 battery-status-symbol "+")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
422 ((< (string-to-number load-percentage) battery-load-low) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
423 (setq battery-status "low" |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
424 battery-status-symbol "-")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
425 ((< (string-to-number load-percentage) battery-load-critical) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
426 (setq battery-status "critical" |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
427 battery-status-symbol "!")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
428 (t |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
429 (setq battery-status "high" |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
430 battery-status-symbol ""))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
431 (when (re-search-forward "\\(\\([0-9]+\\):\\([0-9]+\\)\\) remaining" nil t) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
432 (setq remaining-time (match-string 1)) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
433 (let ((h (string-to-number (match-string 2))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
434 (m (string-to-number (match-string 3)))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
435 (setq hours (number-to-string (+ h (if (< m 30) 0 1))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
436 minutes (number-to-string (+ (* h 60) m))))))))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
437 (list (cons ?L (or power-source "N/A")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
438 (cons ?p (or load-percentage "N/A")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
439 (cons ?B (or battery-status "N/A")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
440 (cons ?b (or battery-status-symbol "")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
441 (cons ?h (or hours "N/A")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
442 (cons ?m (or minutes "N/A")) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
443 (cons ?t (or remaining-time "N/A"))))) |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
444 |
e960506e0661
Add support for Darwin (with much debugging help from Samuel Lauber
Lute Kamstra <lute@gnu.org>
parents:
64091
diff
changeset
|
445 |
18388 | 446 ;;; Private functions. |
447 | |
448 (defun battery-format (format alist) | |
449 "Substitute %-sequences in FORMAT." | |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
450 (replace-regexp-in-string |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
451 "%." |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
452 (lambda (str) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
453 (let ((char (aref str 1))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
454 (if (eq char ?%) "%" |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
455 (or (cdr (assoc char alist)) "")))) |
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
456 format t t)) |
18388 | 457 |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
458 (defun battery-search-for-one-match-in-files (files regexp match-num) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
459 "Search REGEXP in the content of the files listed in FILES. |
75139
685bae49b575
(battery-search-for-one-match-in-files): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
73700
diff
changeset
|
460 If a match occurred, return the parenthesized expression numbered by |
73700
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
461 MATCH-NUM in the match. Otherwise, return nil." |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
462 (with-temp-buffer |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
463 (catch 'found |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
464 (dolist (file files) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
465 (and (ignore-errors (insert-file-contents file nil nil nil 'replace)) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
466 (re-search-forward regexp nil t) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
467 (throw 'found (match-string match-num))))))) |
294b1de9ac5f
2006-11-05 Micha?Cadilhac <michael.cadilhac@lrde.org>
Romain Francoise <romain@orebokech.com>
parents:
73599
diff
changeset
|
468 |
18388 | 469 |
470 (provide 'battery) | |
471 | |
57143
b628e08b0230
(battery-linux-proc-apm): Use string-to-number.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57133
diff
changeset
|
472 ;; arch-tag: 65916f50-4754-4b6b-ac21-0b510f545a37 |
18388 | 473 ;;; battery.el ends here |