summaryrefslogtreecommitdiffstats
path: root/dragonflybsd/Battery.c
blob: 1a690ee313cd58b4f8e9150f1d83868ddafc8e8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
htop - dragonflybsd/Battery.c
(C) 2015 Hisham H. Muhammad
(C) 2017 Diederik de Groot
Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/

#include "Battery.h"

#include <math.h>
#include <sys/sysctl.h>

void Battery_getData(double* level, ACPresence* isOnAC) {
   int life;
   size_t life_len = sizeof(life);
   if (sysctlbyname("hw.acpi.battery.life", &life, &life_len, NULL, 0) == -1) {
      *level = NAN;
   } else {
      *level = life;
   }

   int acline;
   size_t acline_len = sizeof(acline);
   if (sysctlbyname("hw.acpi.acline", &acline, &acline_len, NULL, 0) == -1) {
      *isOnAC = AC_ERROR;
   } else {
      *isOnAC = acline == 0 ? AC_ABSENT : AC_PRESENT;
   }
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy