]> git.sur5r.net Git - i3/i3status/commitdiff
Refactor common seconds_remaining code in print_battery_info. 144/head
authorTommie Gannert <tommie@gannert.se>
Mon, 1 Aug 2016 00:27:44 +0000 (01:27 +0100)
committerTommie Gannert <tommie@gannert.se>
Wed, 3 Aug 2016 22:09:16 +0000 (23:09 +0100)
src/print_battery_info.c

index d0e69c41b2344a4adb83e18fd512b8dcbd0d4941..fc75f52bcbdecc8b16332eb01fe055e4002d6f94 100644 (file)
 #include <sys/envsys.h>
 #endif
 
+/*
+ * Estimate the number of seconds remaining in state 'status'.
+ *
+ * Assumes a constant (dis)charge rate.
+ */
+static int seconds_remaining_from_rate(charging_status_t status, float full_design, float remaining, float present_rate) {
+    if (status == CS_CHARGING)
+        return 3600.0 * (full_design - remaining) / present_rate;
+    else if (status == CS_DISCHARGING)
+        return 3600.0 * remaining / present_rate;
+    else
+        return 0;
+}
+
 /*
  * Get battery information from /sys. Note that it uses the design capacity to
  * calculate the percentage, not the last full capacity, so you can see how
@@ -135,15 +149,7 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char
     }
 
     if (present_rate > 0 && status != CS_FULL) {
-        float remaining_time;
-        if (status == CS_CHARGING)
-            remaining_time = ((float)full_design - (float)remaining) / (float)present_rate;
-        else if (status == CS_DISCHARGING)
-            remaining_time = ((float)remaining / (float)present_rate);
-        else
-            remaining_time = 0;
-
-        seconds_remaining = (int)(remaining_time * 3600.0);
+        seconds_remaining = seconds_remaining_from_rate(status, full_design, remaining, present_rate);
     }
 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
     int state;
@@ -397,16 +403,7 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char
      * The envsys(4) ACPI routines do not appear to provide a 'time
      * remaining' figure, so we must deduce it.
      */
-    float remaining_time;
-
-    if (status == CS_CHARGING)
-        remaining_time = ((float)full_design - (float)remaining) / (float)present_rate;
-    else if (status == CS_DISCHARGING)
-        remaining_time = ((float)remaining / (float)present_rate);
-    else
-        remaining_time = 0;
-
-    seconds_remaining = (int)(remaining_time * 3600.0);
+    seconds_remaining = seconds_remaining_from_rate(status, full_design, remaining, present_rate);
 #endif
 
     bool colorful_output = false;