components/swap.c | move duplicated code to separate function
authorLaslo Hunhold <dev@frign.de>
Tue, 1 May 2018 18:20:58 +0000 (20:20 +0200)
committerAaron Marcher <me@drkhsh.at>
Tue, 1 May 2018 18:24:13 +0000 (20:24 +0200)
components/swap.c

index 08a97de16ffd8a9cffb51e8d1956f77643f2fad3..fe779dbaafb75ee8c284a9b307d3d4d64193eae2 100644 (file)
@@ -6,30 +6,40 @@
 
        #include "../util.h"
 
-       const char *
-       swap_free(void)
+       static size_t
+       pread(const char *path, char *buf, size_t bufsiz)
        {
-               long total, free;
                FILE *fp;
                size_t bytes_read;
-               char *match;
 
-               fp = fopen("/proc/meminfo", "r");
-               if (fp == NULL) {
-                       fprintf(stderr, "fopen '/proc/meminfo': %s\n",
+               if (!(fp = fopen(path, "r"))) {
+                       fprintf(stderr, "fopen '%s': %s\n", path,
                                strerror(errno));
-                       return NULL;
+                       return 0;
                }
-
-               if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1,
-                                       fp)) == 0) {
-                       fprintf(stderr, "fread '/proc/meminfo': %s\n",
+               if ((bytes_read = fread(buf, sizeof(char), bufsiz, fp)) == 0) {
+                       fprintf(stderr, "fread '%s': %s\n", path,
                                strerror(errno));
                        fclose(fp);
-                       return NULL;
+                       return 0;
                }
                fclose(fp);
 
+               buf[bytes_read] = '\0';
+
+               return bytes_read;
+       }
+
+       const char *
+       swap_free(void)
+       {
+               long total, free;
+               char *match;
+
+               if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
+                       return NULL;
+               }
+
                if ((match = strstr(buf, "SwapTotal")) == NULL)
                        return NULL;
                sscanf(match, "SwapTotal: %ld kB\n", &total);
        swap_perc(void)
        {
                long total, free, cached;
-               FILE *fp;
-               size_t bytes_read;
                char *match;
 
-               fp = fopen("/proc/meminfo", "r");
-               if (fp == NULL) {
-                       fprintf(stderr, "fopen '/proc/meminfo': %s\n",
-                               strerror(errno));
-                       return NULL;
-               }
-
-               if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1,
-                                       fp)) == 0) {
-                       fprintf(stderr, "fread '/proc/meminfo': %s\n",
-                               strerror(errno));
-                       fclose(fp);
+               if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
                        return NULL;
                }
-               fclose(fp);
 
                if ((match = strstr(buf, "SwapTotal")) == NULL)
                        return NULL;
        swap_total(void)
        {
                long total;
-               FILE *fp;
-               size_t bytes_read;
                char *match;
 
-               fp = fopen("/proc/meminfo", "r");
-               if (fp == NULL) {
-                       fprintf(stderr, "fopen '/proc/meminfo': %s\n",
-                               strerror(errno));
-                       return NULL;
-               }
-               if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1,
-                                       fp)) == 0) {
-                       fprintf(stderr, "fread '/proc/meminfo': %s\n",
-                               strerror(errno));
-                       fclose(fp);
+               if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
                        return NULL;
                }
-               fclose(fp);
 
                if ((match = strstr(buf, "SwapTotal")) == NULL)
                        return NULL;
        swap_used(void)
        {
                long total, free, cached;
-               FILE *fp;
-               size_t bytes_read;
                char *match;
 
-               fp = fopen("/proc/meminfo", "r");
-               if (fp == NULL) {
-                       fprintf(stderr, "fopen '/proc/meminfo': %s\n",
-                               strerror(errno));
+               if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
                        return NULL;
                }
-               if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1,
-                                       fp)) == 0) {
-                       fprintf(stderr, "fread '/proc/meminfo': %s\n",
-                               strerror(errno));
-                       fclose(fp);
-                       return NULL;
-               }
-               fclose(fp);
 
                if ((match = strstr(buf, "SwapTotal")) == NULL)
                        return NULL;