Browse Source

components/swap.c | move duplicated code to separate function

master
Laslo Hunhold 8 years ago
committed by Aaron Marcher
parent
commit
19343ff343
  1. 82
      components/swap.c

82
components/swap.c

@ -6,30 +6,40 @@
#include "../util.h" #include "../util.h"
const char * static size_t
swap_free(void) pread(const char *path, char *buf, size_t bufsiz)
{ {
long total, free;
FILE *fp; FILE *fp;
size_t bytes_read; size_t bytes_read;
char *match;
fp = fopen("/proc/meminfo", "r"); if (!(fp = fopen(path, "r"))) {
if (fp == NULL) { fprintf(stderr, "fopen '%s': %s\n", path,
fprintf(stderr, "fopen '/proc/meminfo': %s\n",
strerror(errno)); strerror(errno));
return NULL; return 0;
} }
if ((bytes_read = fread(buf, sizeof(char), bufsiz, fp)) == 0) {
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fprintf(stderr, "fread '%s': %s\n", path,
fp)) == 0) {
fprintf(stderr, "fread '/proc/meminfo': %s\n",
strerror(errno)); strerror(errno));
fclose(fp); fclose(fp);
return NULL; return 0;
} }
fclose(fp); 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) if ((match = strstr(buf, "SwapTotal")) == NULL)
return NULL; return NULL;
sscanf(match, "SwapTotal: %ld kB\n", &total); sscanf(match, "SwapTotal: %ld kB\n", &total);
@ -45,25 +55,11 @@
swap_perc(void) swap_perc(void)
{ {
long total, free, cached; long total, free, cached;
FILE *fp;
size_t bytes_read;
char *match; char *match;
fp = fopen("/proc/meminfo", "r"); if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
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);
return NULL; return NULL;
} }
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL) if ((match = strstr(buf, "SwapTotal")) == NULL)
return NULL; return NULL;
@ -84,24 +80,11 @@
swap_total(void) swap_total(void)
{ {
long total; long total;
FILE *fp;
size_t bytes_read;
char *match; char *match;
fp = fopen("/proc/meminfo", "r"); if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
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);
return NULL; return NULL;
} }
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL) if ((match = strstr(buf, "SwapTotal")) == NULL)
return NULL; return NULL;
@ -114,24 +97,11 @@
swap_used(void) swap_used(void)
{ {
long total, free, cached; long total, free, cached;
FILE *fp;
size_t bytes_read;
char *match; char *match;
fp = fopen("/proc/meminfo", "r"); if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
if (fp == NULL) {
fprintf(stderr, "fopen '/proc/meminfo': %s\n",
strerror(errno));
return NULL; 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) if ((match = strstr(buf, "SwapTotal")) == NULL)
return NULL; return NULL;

Loading…
Cancel
Save