aboutsummaryrefslogtreecommitdiff
path: root/src/status.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-03-08 17:48:03 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-03-08 17:48:03 +0100
commit035fbcc25e951b5180d7491cc0a11e514a20f9f7 (patch)
tree85b93c35c62ca70e37983a066035e591f58bafce /src/status.c
parent5d95abdee246b6dbb1643f13e916e91700f133aa (diff)
limit the size of UI statusbar contentsHEADmaster
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/status.c')
-rw-r--r--src/status.c34
1 files changed, 27 insertions, 7 deletions
diff --git a/src/status.c b/src/status.c
index e545339..8a8cd44 100644
--- a/src/status.c
+++ b/src/status.c
@@ -4,28 +4,48 @@
#include <stdlib.h>
#include <errno.h>
#include <fcntl.h>
+#include <string.h>
#include <sys/sysinfo.h>
#include "status.h"
+static const char *sysinfo_error = "[SYSINFO ERROR]";
+static const char *asprintf_error = "[ASPRINTF ERROR]";
+
char *
-get_system_stat(void)
+get_system_stat(size_t *siz)
{
+ size_t retsiz = 0;
char *retstr = NULL;
int ncpu;
struct sysinfo inf;
if (sysinfo(&inf) == EFAULT) {
- return ("[SYSINFO ERROR]");
+ if (siz) {
+ *siz = strlen(sysinfo_error);
+ }
+ return (strdup(sysinfo_error));
}
ncpu = get_nprocs();
- if (asprintf(&retstr, "u:%04ld - l:%3.2f,%3.2f,%3.2f - %dcore%s - mem:%lu/%lumb - procs:%02d",
- inf.uptime, ((float)inf.loads[0]/10000), ((float)inf.loads[1]/10000), ((float)inf.loads[2]/10000),
- ncpu, (ncpu > 1 ? "s" : ""),
- (unsigned long)((inf.freeram/1024)/1024), (unsigned long)((inf.totalram/1024)/1024), inf.procs) == -1) {
- return ("[ASPRINTF ERROR]");
+ retsiz = asprintf(&retstr, "u:%04ld - l:%3.2f,%3.2f,%3.2f - %dcore%s - "
+ "mem:%lu/%lumb - procs:%02d",
+ inf.uptime, ((float)inf.loads[0]/10000),
+ ((float)inf.loads[1]/10000), ((float)inf.loads[2]/10000),
+ ncpu, (ncpu > 1 ? "s" : ""),
+ (unsigned long)((inf.freeram/1024)/1024),
+ (unsigned long)((inf.totalram/1024)/1024), inf.procs);
+
+ if (retsiz < 0) {
+ if (siz) {
+ *siz = strlen(asprintf_error);
+ }
+ return (strdup(asprintf_error));
}
+ if (siz) {
+ *siz = retsiz;
+ }
+
return (retstr);
}