summaryrefslogtreecommitdiffstats
path: root/UptimeMeter.c
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2014-11-27 19:18:14 -0200
committerHisham Muhammad <hisham@gobolinux.org>2014-11-27 19:18:14 -0200
commit357e7a3243a0e6fbc937354a03639f0cc34b966c (patch)
treec053aca956193d9e9d60f877f6c2b3a80a91ffea /UptimeMeter.c
parentb192af006f67369881bfc92c963f3d594e71fe0c (diff)
Move UptimeMeter into platform-dependent area.
Set up environment to move other meters.
Diffstat (limited to 'UptimeMeter.c')
-rw-r--r--UptimeMeter.c64
1 files changed, 0 insertions, 64 deletions
diff --git a/UptimeMeter.c b/UptimeMeter.c
deleted file mode 100644
index 9e288171..00000000
--- a/UptimeMeter.c
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
-htop - UptimeMeter.c
-(C) 2004-2011 Hisham H. Muhammad
-Released under the GNU GPL, see the COPYING file
-in the source distribution for its full text.
-*/
-
-#include "UptimeMeter.h"
-
-#include "ProcessList.h"
-#include "CRT.h"
-
-#include <math.h>
-
-/*{
-#include "Meter.h"
-}*/
-
-int UptimeMeter_attributes[] = {
- UPTIME
-};
-
-static void UptimeMeter_setValues(Meter* this, char* buffer, int len) {
- double uptime = 0;
- FILE* fd = fopen(PROCDIR "/uptime", "r");
- if (fd) {
- fscanf(fd, "%64lf", &uptime);
- fclose(fd);
- }
- int totalseconds = (int) ceil(uptime);
- int seconds = totalseconds % 60;
- int minutes = (totalseconds/60) % 60;
- int hours = (totalseconds/3600) % 24;
- int days = (totalseconds/86400);
- this->values[0] = days;
- if (days > this->total) {
- this->total = days;
- }
- char daysbuf[15];
- if (days > 100) {
- sprintf(daysbuf, "%d days(!), ", days);
- } else if (days > 1) {
- sprintf(daysbuf, "%d days, ", days);
- } else if (days == 1) {
- sprintf(daysbuf, "1 day, ");
- } else {
- daysbuf[0] = '\0';
- }
- snprintf(buffer, len, "%s%02d:%02d:%02d", daysbuf, hours, minutes, seconds);
-}
-
-MeterClass UptimeMeter_class = {
- .super = {
- .extends = Class(Meter),
- .delete = Meter_delete
- },
- .setValues = UptimeMeter_setValues,
- .defaultMode = TEXT_METERMODE,
- .total = 100.0,
- .attributes = UptimeMeter_attributes,
- .name = "Uptime",
- .uiName = "Uptime",
- .caption = "Uptime: "
-};

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