2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 19:46:27 +02:00
|
|
|
#include <errno.h>
|
2018-03-19 18:44:52 +01:00
|
|
|
#include <stdio.h>
|
2018-03-28 19:46:27 +02:00
|
|
|
#include <string.h>
|
2017-09-17 16:18:17 +02:00
|
|
|
|
Revert component-split
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to
d42870d6ca7fb587b38f8cf6d6821ae33a53a696.
After heavy consideration, the component split has more disadvantages
than advantages, especially given there will be utility-functions
sharing quite a lot of code that would then need to be duplicated, as it
does not fit into the util.c due to its speciality.
One big advantage of the component-wise build is readability, and
without doubt, this was achieved here. This point will be addressed
with a different approach that will be visible in the upcoming commits.
One big disadvantage of the component build is the fact that it
introduces state to the build process which is not necessary. Before its
introduction, the only influencing factors where the system-defines
__linux__ and __OpenBSD__. With the components, we are also relying on
the output of uname(1).
Additionally, if the os.mk is not present, make gives the output
$ make
Makefile:5: os.mk: No such file or directory
make: *** No rule to make target 'os.mk'. Stop.
This could easily be fixed by providing some sort of meta-rule for this
file, however, it indicates the problem we have here, and this entire
statefulness will heavily complicate packaging of this tool and makes
the build process much more complex than it actually has to be.
2018-05-01 18:10:39 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
Revert component-split
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to
d42870d6ca7fb587b38f8cf6d6821ae33a53a696.
After heavy consideration, the component split has more disadvantages
than advantages, especially given there will be utility-functions
sharing quite a lot of code that would then need to be duplicated, as it
does not fit into the util.c due to its speciality.
One big advantage of the component-wise build is readability, and
without doubt, this was achieved here. This point will be addressed
with a different approach that will be visible in the upcoming commits.
One big disadvantage of the component build is the fact that it
introduces state to the build process which is not necessary. Before its
introduction, the only influencing factors where the system-defines
__linux__ and __OpenBSD__. With the components, we are also relying on
the output of uname(1).
Additionally, if the os.mk is not present, make gives the output
$ make
Makefile:5: os.mk: No such file or directory
make: *** No rule to make target 'os.mk'. Stop.
This could easily be fixed by providing some sort of meta-rule for this
file, however, it indicates the problem we have here, and this entire
statefulness will heavily complicate packaging of this tool and makes
the build process much more complex than it actually has to be.
2018-05-01 18:10:39 +02:00
|
|
|
#if defined(__linux__)
|
2018-05-01 19:01:22 +02:00
|
|
|
#include <limits.h>
|
2018-05-20 09:42:16 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-05-21 00:36:59 +02:00
|
|
|
#define CHARGE_NOW "/sys/class/power_supply/%s/charge_now"
|
|
|
|
#define ENERGY_NOW "/sys/class/power_supply/%s/energy_now"
|
|
|
|
#define CURRENT_NOW "/sys/class/power_supply/%s/current_now"
|
|
|
|
#define POWER_NOW "/sys/class/power_supply/%s/power_now"
|
2018-05-20 09:42:16 +02:00
|
|
|
|
|
|
|
static const char *
|
2018-05-21 00:36:59 +02:00
|
|
|
pick(const char *bat, const char *f1, const char *f2, char *path,
|
|
|
|
size_t length)
|
2018-05-20 09:42:16 +02:00
|
|
|
{
|
2018-05-21 00:36:59 +02:00
|
|
|
if (esnprintf(path, length, f1, bat) > 0 &&
|
|
|
|
access(path, R_OK) == 0) {
|
2018-05-20 09:42:16 +02:00
|
|
|
return f1;
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:36:59 +02:00
|
|
|
if (esnprintf(path, length, f2, bat) > 0 &&
|
|
|
|
access(path, R_OK) == 0) {
|
2018-05-20 09:42:16 +02:00
|
|
|
return f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-01 19:01:22 +02:00
|
|
|
const char *
|
|
|
|
battery_perc(const char *bat)
|
|
|
|
{
|
|
|
|
int perc;
|
|
|
|
char path[PATH_MAX];
|
Revert component-split
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to
d42870d6ca7fb587b38f8cf6d6821ae33a53a696.
After heavy consideration, the component split has more disadvantages
than advantages, especially given there will be utility-functions
sharing quite a lot of code that would then need to be duplicated, as it
does not fit into the util.c due to its speciality.
One big advantage of the component-wise build is readability, and
without doubt, this was achieved here. This point will be addressed
with a different approach that will be visible in the upcoming commits.
One big disadvantage of the component build is the fact that it
introduces state to the build process which is not necessary. Before its
introduction, the only influencing factors where the system-defines
__linux__ and __OpenBSD__. With the components, we are also relying on
the output of uname(1).
Additionally, if the os.mk is not present, make gives the output
$ make
Makefile:5: os.mk: No such file or directory
make: *** No rule to make target 'os.mk'. Stop.
This could easily be fixed by providing some sort of meta-rule for this
file, however, it indicates the problem we have here, and this entire
statefulness will heavily complicate packaging of this tool and makes
the build process much more complex than it actually has to be.
2018-05-01 18:10:39 +02:00
|
|
|
|
2018-05-19 19:33:04 +02:00
|
|
|
if (esnprintf(path, sizeof(path),
|
|
|
|
"/sys/class/power_supply/%s/capacity",
|
|
|
|
bat) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (pscanf(path, "%d", &perc) != 1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:16:54 +02:00
|
|
|
return bprintf("%d", perc);
|
Revert component-split
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to
d42870d6ca7fb587b38f8cf6d6821ae33a53a696.
After heavy consideration, the component split has more disadvantages
than advantages, especially given there will be utility-functions
sharing quite a lot of code that would then need to be duplicated, as it
does not fit into the util.c due to its speciality.
One big advantage of the component-wise build is readability, and
without doubt, this was achieved here. This point will be addressed
with a different approach that will be visible in the upcoming commits.
One big disadvantage of the component build is the fact that it
introduces state to the build process which is not necessary. Before its
introduction, the only influencing factors where the system-defines
__linux__ and __OpenBSD__. With the components, we are also relying on
the output of uname(1).
Additionally, if the os.mk is not present, make gives the output
$ make
Makefile:5: os.mk: No such file or directory
make: *** No rule to make target 'os.mk'. Stop.
This could easily be fixed by providing some sort of meta-rule for this
file, however, it indicates the problem we have here, and this entire
statefulness will heavily complicate packaging of this tool and makes
the build process much more complex than it actually has to be.
2018-05-01 18:10:39 +02:00
|
|
|
}
|
|
|
|
|
2018-05-01 19:01:22 +02:00
|
|
|
const char *
|
|
|
|
battery_state(const char *bat)
|
|
|
|
{
|
2018-05-19 13:25:35 +02:00
|
|
|
static struct {
|
|
|
|
char *state;
|
|
|
|
char *symbol;
|
|
|
|
} map[] = {
|
|
|
|
{ "Charging", "+" },
|
|
|
|
{ "Discharging", "-" },
|
|
|
|
};
|
2018-05-01 19:01:22 +02:00
|
|
|
size_t i;
|
|
|
|
char path[PATH_MAX], state[12];
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-19 19:33:04 +02:00
|
|
|
if (esnprintf(path, sizeof(path),
|
|
|
|
"/sys/class/power_supply/%s/status",
|
|
|
|
bat) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-01 19:01:22 +02:00
|
|
|
if (pscanf(path, "%12s", state) != 1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-01 19:01:22 +02:00
|
|
|
for (i = 0; i < LEN(map); i++) {
|
|
|
|
if (!strcmp(map[i].state, state)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (i == LEN(map)) ? "?" : map[i].symbol;
|
|
|
|
}
|
2018-05-18 14:43:04 +02:00
|
|
|
|
|
|
|
const char *
|
|
|
|
battery_remaining(const char *bat)
|
|
|
|
{
|
2018-05-18 17:25:09 +02:00
|
|
|
int charge_now, current_now, m, h;
|
2018-05-21 00:41:03 +02:00
|
|
|
double timeleft;
|
2018-05-18 17:25:09 +02:00
|
|
|
char path[PATH_MAX], state[12];
|
|
|
|
|
2018-05-19 19:33:04 +02:00
|
|
|
if (esnprintf(path, sizeof(path),
|
|
|
|
"/sys/class/power_supply/%s/status",
|
|
|
|
bat) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-18 17:25:09 +02:00
|
|
|
if (pscanf(path, "%12s", state) != 1) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:36:59 +02:00
|
|
|
if (!pick(bat, CHARGE_NOW, ENERGY_NOW, path, sizeof(path)) ||
|
2018-05-20 09:42:16 +02:00
|
|
|
pscanf(path, "%d", &charge_now) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-18 17:25:09 +02:00
|
|
|
if (!strcmp(state, "Discharging")) {
|
2018-05-21 00:36:59 +02:00
|
|
|
if (!pick(bat, CURRENT_NOW, POWER_NOW, path,
|
|
|
|
sizeof(path)) ||
|
2018-05-20 09:42:16 +02:00
|
|
|
pscanf(path, "%d", ¤t_now) < 0) {
|
2018-05-18 17:25:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:42:06 +02:00
|
|
|
if (current_now == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-21 00:41:03 +02:00
|
|
|
timeleft = (double)charge_now / (double)current_now;
|
2018-05-18 17:25:09 +02:00
|
|
|
h = timeleft;
|
2018-05-21 00:41:03 +02:00
|
|
|
m = (timeleft - (double)h) * 60;
|
2018-05-18 17:25:09 +02:00
|
|
|
|
|
|
|
return bprintf("%dh %dm", h, m);
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
2018-05-18 14:43:04 +02:00
|
|
|
}
|
2018-05-01 19:01:22 +02:00
|
|
|
#elif defined(__OpenBSD__)
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <machine/apmvar.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
static int
|
|
|
|
load_apm_power_info(struct apm_power_info *apm_info)
|
2018-05-01 19:01:22 +02:00
|
|
|
{
|
|
|
|
int fd;
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-01 19:01:22 +02:00
|
|
|
fd = open("/dev/apm", O_RDONLY);
|
|
|
|
if (fd < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
warn("open '/dev/apm':");
|
2018-05-18 14:43:04 +02:00
|
|
|
return 0;
|
2018-05-01 19:01:22 +02:00
|
|
|
}
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
memset(apm_info, 0, sizeof(struct apm_power_info));
|
|
|
|
if (ioctl(fd, APM_IOC_GETPOWER, apm_info) < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
warn("ioctl 'APM_IOC_GETPOWER':");
|
2018-05-01 19:01:22 +02:00
|
|
|
close(fd);
|
2018-05-18 14:43:04 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return close(fd), 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
battery_perc(const char *unused)
|
|
|
|
{
|
|
|
|
struct apm_power_info apm_info;
|
|
|
|
|
|
|
|
if (load_apm_power_info(&apm_info)) {
|
2018-05-21 00:16:54 +02:00
|
|
|
return bprintf("%d", apm_info.battery_life);
|
2017-09-17 16:18:17 +02:00
|
|
|
}
|
2018-05-01 19:01:22 +02:00
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
return NULL;
|
2017-09-17 16:18:17 +02:00
|
|
|
}
|
2018-05-01 20:45:29 +02:00
|
|
|
|
|
|
|
const char *
|
2018-05-17 20:05:57 +02:00
|
|
|
battery_state(const char *unused)
|
2018-05-01 20:45:29 +02:00
|
|
|
{
|
2018-05-19 13:25:35 +02:00
|
|
|
struct {
|
|
|
|
unsigned int state;
|
|
|
|
char *symbol;
|
|
|
|
} map[] = {
|
|
|
|
{ APM_AC_ON, "+" },
|
|
|
|
{ APM_AC_OFF, "-" },
|
|
|
|
};
|
2018-05-01 20:45:29 +02:00
|
|
|
struct apm_power_info apm_info;
|
2018-05-18 14:43:04 +02:00
|
|
|
size_t i;
|
2018-05-01 20:45:29 +02:00
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
if (load_apm_power_info(&apm_info)) {
|
|
|
|
for (i = 0; i < LEN(map); i++) {
|
|
|
|
if (map[i].state == apm_info.ac_state) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (i == LEN(map)) ? "?" : map[i].symbol;
|
2018-05-01 20:45:29 +02:00
|
|
|
}
|
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-01 20:45:29 +02:00
|
|
|
|
2018-05-18 14:43:04 +02:00
|
|
|
const char *
|
|
|
|
battery_remaining(const char *unused)
|
|
|
|
{
|
|
|
|
struct apm_power_info apm_info;
|
|
|
|
|
|
|
|
if (load_apm_power_info(&apm_info)) {
|
2018-05-18 16:33:51 +02:00
|
|
|
if (apm_info.ac_state != APM_AC_ON) {
|
2018-05-21 00:36:59 +02:00
|
|
|
return bprintf("%uh %02um",
|
|
|
|
apm_info.minutes_left / 60,
|
2018-05-18 16:33:51 +02:00
|
|
|
apm_info.minutes_left % 60);
|
|
|
|
} else {
|
2018-05-18 16:55:37 +02:00
|
|
|
return "";
|
2018-05-18 16:33:51 +02:00
|
|
|
}
|
2018-05-01 20:45:29 +02:00
|
|
|
}
|
2018-05-18 14:43:04 +02:00
|
|
|
|
|
|
|
return NULL;
|
2018-05-01 20:45:29 +02:00
|
|
|
}
|
Revert component-split
this reverts the commits from 92ab9ef52ebcb097add97d9f78e67ad1c1d6a6ec up to
d42870d6ca7fb587b38f8cf6d6821ae33a53a696.
After heavy consideration, the component split has more disadvantages
than advantages, especially given there will be utility-functions
sharing quite a lot of code that would then need to be duplicated, as it
does not fit into the util.c due to its speciality.
One big advantage of the component-wise build is readability, and
without doubt, this was achieved here. This point will be addressed
with a different approach that will be visible in the upcoming commits.
One big disadvantage of the component build is the fact that it
introduces state to the build process which is not necessary. Before its
introduction, the only influencing factors where the system-defines
__linux__ and __OpenBSD__. With the components, we are also relying on
the output of uname(1).
Additionally, if the os.mk is not present, make gives the output
$ make
Makefile:5: os.mk: No such file or directory
make: *** No rule to make target 'os.mk'. Stop.
This could easily be fixed by providing some sort of meta-rule for this
file, however, it indicates the problem we have here, and this entire
statefulness will heavily complicate packaging of this tool and makes
the build process much more complex than it actually has to be.
2018-05-01 18:10:39 +02:00
|
|
|
#endif
|