aboutsummaryrefslogtreecommitdiffstats
path: root/BatteryMeter.c
blob: 977a1919ff9fbb87815168c08270ef6cb6d38b8d (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
  htop
  (C) 2004-2006 Hisham H. Muhammad
  Released under the GNU GPL, see the COPYING file
  in the source distribution for its full text.

  This "Meter" written by Ian P. Hands (iphands@gmail.com).
*/

#include "BatteryMeter.h"
#include "Meter.h"
#include "ProcessList.h"
#include "CRT.h"
#include "String.h"
#include "debug.h"

int BatteryMeter_attributes[] = {
   BATTERY
};

static unsigned long int parseBatInfo(const char * fileName, const unsigned short int lineNum, const unsigned short int wordNum) {
   const DIR *batteryDir;
   const struct dirent *pDirEnt;
  
   const char batteryPath[] = PROCDIR "/acpi/battery/";
   batteryDir = opendir(batteryPath);
  
   if (batteryDir == NULL) {
      return 0;
   }
  
   char * string;
   typedef struct listLbl { char* content; struct listLbl* next; } list;
  
   list *myList = NULL;
   list *newEntry;
  
   /*
   Some of this is based off of code found in kismet (they claim it came from gkrellm).
   Written for multi battery use...
   */
   for (pDirEnt= readdir((DIR*)batteryDir); pDirEnt; pDirEnt = readdir((DIR*)batteryDir)) {
      string = (char*)pDirEnt->d_name;
      if(!strcmp(string, ".") || !strcmp(string, ".."))
         continue;
    
      newEntry = calloc(1, sizeof(list));
      newEntry->next = myList;
      newEntry->content = string;
      myList = newEntry;
   }

   unsigned long int total = 0;
   for (newEntry = myList; newEntry; newEntry = newEntry->next) {
      const char infoPath[30];
      const FILE * file;
      char line[50];  
    
      sprintf((char*)infoPath, "%s%s/%s", batteryPath, newEntry->content, fileName);
    
      if ((file = fopen(infoPath, "r")) == NULL) {
         return 0;
      }

      for (unsigned short int i = 0; i < lineNum; i++){
         fgets(line, sizeof line, (FILE*)file);
      }
    
      fclose((FILE*)file);
    
      const char * foundNumTmp = String_getToken(line, wordNum);
      const unsigned long int foundNum = atoi(foundNumTmp);
      free((char*)foundNumTmp);

      total += foundNum;
   }

   free(myList);
   free(newEntry);
   closedir((DIR*)batteryDir);
   return total;
}

static void BatteryMeter_setValues(Meter* this, char* buffer, int len) {
   FILE* file = fopen(PROCDIR "/acpi/ac_adapter/AC/state", "r");
   if (!file)
      file = fopen(PROCDIR "/acpi/ac_adapter/ADP1/state", "r");
   if (!file) {
      snprintf(buffer, len, "n/a");
      return;
   }  

   char line [100];
   fgets(line, sizeof line, file);
   line[sizeof(line) - 1] = '\0';
   fclose(file);

   const unsigned long int totalFull = parseBatInfo("info", 3, 4);
   const unsigned long int totalRemain = parseBatInfo("state", 5, 3);
   const double percent = totalFull > 0 ? ((double)totalRemain * 100) / (double)totalFull : 0;
   
   if (totalFull == 0) {
      snprintf(buffer, len, "n/a");
      return;
   }
   
   this->values[0] = percent;

   const char* isOnline = String_getToken(line, 2);
   
   char *onAcText, *onBatteryText;
   
   if (this->mode == TEXT_METERMODE) {
      onAcText = "%.1f%% (Running on A/C)";
      onBatteryText = "%.1f%% (Running on battery)";
   } else {
      onAcText = "%.1f%%(A/C)";
      onBatteryText = "%.1f%%(bat)";
   }

   if (strcmp(String_getToken(line, 2),"on-line") == 0) {
      snprintf(buffer, len, onAcText, percent);
   } else {
      snprintf(buffer, len, onBatteryText, percent); 
   }

   free((char*)isOnline);
   return;
}

MeterType BatteryMeter = {
   .setValues = BatteryMeter_setValues, 
   .display = NULL,
   .mode = TEXT_METERMODE,
   .items = 1,
   .total = 100.0,
   .attributes = BatteryMeter_attributes,
   .name = "Battery",
   .uiName = "Battery",
   .caption = "Battery: "
};

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