mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
Refactor update_net_stats
Clean up
This commit is contained in:
parent
b177dbc4b2
commit
d1a3c0eaa3
125
src/linux.cc
125
src/linux.cc
@ -450,66 +450,23 @@ void print_gateway_ip(struct text_object *obj, char *p,
|
|||||||
snprintf(p, p_max_size, "%s", gw_info.ip);
|
snprintf(p, p_max_size, "%s", gw_info.ip);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
void update_net_interfaces(FILE *net_dev_fp, bool is_first_update,
|
||||||
* Parses information from /proc/net/dev and stores them in ???
|
double time_between_updates) {
|
||||||
*
|
|
||||||
* For the output format of /proc/net/dev @see http://linux.die.net/man/5/proc
|
|
||||||
*
|
|
||||||
* @return always returns 0. May change in the future, e.g. returning non zero
|
|
||||||
* if some error happened
|
|
||||||
**/
|
|
||||||
int update_net_stats(void) {
|
|
||||||
update_gateway_info();
|
|
||||||
update_gateway_info2();
|
|
||||||
FILE *net_dev_fp;
|
|
||||||
static int reported = 0;
|
|
||||||
/* variable to notify the parts averaging the download speed, that this
|
|
||||||
* is the first call ever to this function. This variable can't be used
|
|
||||||
* to decide if this is the first time an interface was parsed as there
|
|
||||||
* are many interfaces, which can be activated and deactivated at arbitrary
|
|
||||||
* times */
|
|
||||||
static bool is_first_update = true;
|
|
||||||
|
|
||||||
// FIXME: arbitrary size chosen to keep code simple.
|
|
||||||
char buf[256];
|
|
||||||
double time_between_updates;
|
|
||||||
|
|
||||||
/* get delta */
|
|
||||||
time_between_updates = current_update_time - last_update_time;
|
|
||||||
if (time_between_updates <= 0.0001) { return 0; }
|
|
||||||
|
|
||||||
/* open file /proc/net/dev. If not something went wrong, clear all
|
|
||||||
* network statistics */
|
|
||||||
if (!(net_dev_fp = open_file("/proc/net/dev", &reported))) {
|
|
||||||
clear_net_stats();
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
/* ignore first two header lines in file /proc/net/dev. If somethings
|
|
||||||
* goes wrong, e.g. end of file reached, quit.
|
|
||||||
* (Why isn't clear_net_stats called for this case ??? */
|
|
||||||
char *one = fgets(buf, 255, net_dev_fp);
|
|
||||||
char *two = fgets(buf, 255, net_dev_fp);
|
|
||||||
if (!one || /* garbage */
|
|
||||||
!two) { /* garbage (field names) */
|
|
||||||
fclose(net_dev_fp);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* read each interface */
|
/* read each interface */
|
||||||
#ifdef BUILD_WLAN
|
#ifdef BUILD_WLAN
|
||||||
// wireless info variables
|
// wireless info variables
|
||||||
int skfd, has_bitrate = 0;
|
|
||||||
struct wireless_info *winfo;
|
struct wireless_info *winfo;
|
||||||
struct iwreq wrq;
|
struct iwreq wrq;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (int i2 = 0; i2 < MAX_NET_INTERFACES; i2++) {
|
for (int i = 0; i < MAX_NET_INTERFACES; i++) {
|
||||||
struct net_stat *ns;
|
struct net_stat *ns;
|
||||||
char *s, *p;
|
char *s, *p;
|
||||||
char temp_addr[18];
|
|
||||||
long long r, t, last_recv, last_trans;
|
long long r, t, last_recv, last_trans;
|
||||||
|
|
||||||
/* quit only after all non-header lines from /proc/net/dev parsed */
|
/* quit only after all non-header lines from /proc/net/dev parsed */
|
||||||
|
// FIXME: arbitrary size chosen to keep code simple.
|
||||||
|
char buf[256];
|
||||||
if (fgets(buf, 255, net_dev_fp) == nullptr) { break; }
|
if (fgets(buf, 255, net_dev_fp) == nullptr) { break; }
|
||||||
p = buf;
|
p = buf;
|
||||||
/* change char * p to first non-space character, which is the beginning
|
/* change char * p to first non-space character, which is the beginning
|
||||||
@ -591,6 +548,7 @@ int update_net_stats(void) {
|
|||||||
ns2 = get_net_stat(((struct ifreq *)conf.ifc_buf)[k].ifr_ifrn.ifrn_name,
|
ns2 = get_net_stat(((struct ifreq *)conf.ifc_buf)[k].ifr_ifrn.ifrn_name,
|
||||||
nullptr, NULL);
|
nullptr, NULL);
|
||||||
ns2->addr = ((struct ifreq *)conf.ifc_buf)[k].ifr_ifru.ifru_addr;
|
ns2->addr = ((struct ifreq *)conf.ifc_buf)[k].ifr_ifru.ifru_addr;
|
||||||
|
char temp_addr[18];
|
||||||
sprintf(temp_addr, "%u.%u.%u.%u, ", ns2->addr.sa_data[2] & 255,
|
sprintf(temp_addr, "%u.%u.%u.%u, ", ns2->addr.sa_data[2] & 255,
|
||||||
ns2->addr.sa_data[3] & 255, ns2->addr.sa_data[4] & 255,
|
ns2->addr.sa_data[3] & 255, ns2->addr.sa_data[4] & 255,
|
||||||
ns2->addr.sa_data[5] & 255);
|
ns2->addr.sa_data[5] & 255);
|
||||||
@ -617,9 +575,9 @@ int update_net_stats(void) {
|
|||||||
#ifdef HAVE_OPENMP
|
#ifdef HAVE_OPENMP
|
||||||
#pragma omp parallel for reduction(+ : curtmp1, curtmp2) schedule(dynamic, 10)
|
#pragma omp parallel for reduction(+ : curtmp1, curtmp2) schedule(dynamic, 10)
|
||||||
#endif /* HAVE_OPENMP */
|
#endif /* HAVE_OPENMP */
|
||||||
for (int i = 0; i < samples; i++) {
|
for (int j = 0; j < samples; j++) {
|
||||||
curtmp1 = curtmp1 + ns->net_rec[i];
|
curtmp1 = curtmp1 + ns->net_rec[j];
|
||||||
curtmp2 = curtmp2 + ns->net_trans[i];
|
curtmp2 = curtmp2 + ns->net_trans[j];
|
||||||
}
|
}
|
||||||
ns->recv_speed = curtmp1 / (double)samples;
|
ns->recv_speed = curtmp1 / (double)samples;
|
||||||
ns->trans_speed = curtmp2 / (double)samples;
|
ns->trans_speed = curtmp2 / (double)samples;
|
||||||
@ -627,9 +585,9 @@ int update_net_stats(void) {
|
|||||||
#ifdef HAVE_OPENMP
|
#ifdef HAVE_OPENMP
|
||||||
#pragma omp parallel for schedule(dynamic, 10)
|
#pragma omp parallel for schedule(dynamic, 10)
|
||||||
#endif /* HAVE_OPENMP */
|
#endif /* HAVE_OPENMP */
|
||||||
for (int i = samples; i > 1; i--) {
|
for (int j = samples; j > 1; j--) {
|
||||||
ns->net_rec[i - 1] = ns->net_rec[i - 2];
|
ns->net_rec[j - 1] = ns->net_rec[j - 2];
|
||||||
ns->net_trans[i - 1] = ns->net_trans[i - 2];
|
ns->net_trans[j - 1] = ns->net_trans[j - 2];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -638,7 +596,7 @@ int update_net_stats(void) {
|
|||||||
winfo = (struct wireless_info *)malloc(sizeof(struct wireless_info));
|
winfo = (struct wireless_info *)malloc(sizeof(struct wireless_info));
|
||||||
memset(winfo, 0, sizeof(struct wireless_info));
|
memset(winfo, 0, sizeof(struct wireless_info));
|
||||||
|
|
||||||
skfd = iw_sockets_open();
|
int skfd = iw_sockets_open();
|
||||||
if (iw_get_basic_config(skfd, s, &(winfo->b)) > -1) {
|
if (iw_get_basic_config(skfd, s, &(winfo->b)) > -1) {
|
||||||
// set present winfo variables
|
// set present winfo variables
|
||||||
if (iw_get_range_info(skfd, s, &(winfo->range)) >= 0) {
|
if (iw_get_range_info(skfd, s, &(winfo->range)) >= 0) {
|
||||||
@ -657,7 +615,6 @@ int update_net_stats(void) {
|
|||||||
if (iw_get_ext(skfd, s, SIOCGIWRATE, &wrq) >= 0) {
|
if (iw_get_ext(skfd, s, SIOCGIWRATE, &wrq) >= 0) {
|
||||||
memcpy(&(winfo->bitrate), &(wrq.u.bitrate), sizeof(iwparam));
|
memcpy(&(winfo->bitrate), &(wrq.u.bitrate), sizeof(iwparam));
|
||||||
iw_print_bitrate(ns->bitrate, 16, winfo->bitrate.value);
|
iw_print_bitrate(ns->bitrate, 16, winfo->bitrate.value);
|
||||||
has_bitrate = 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// get link quality
|
// get link quality
|
||||||
@ -705,8 +662,9 @@ int update_net_stats(void) {
|
|||||||
free(winfo);
|
free(winfo);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef BUILD_IPV6
|
void update_ipv6_net_stats() {
|
||||||
FILE *file;
|
FILE *file;
|
||||||
char v6addr[33];
|
char v6addr[33];
|
||||||
char devname[21];
|
char devname[21];
|
||||||
@ -724,7 +682,8 @@ int update_net_stats(void) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((file = fopen(PROCDIR "/net/if_inet6", "r")) != nullptr) {
|
if ((file = fopen(PROCDIR "/net/if_inet6", "r")) == nullptr) { return; }
|
||||||
|
|
||||||
while (fscanf(file, "%32s %*02x %02x %02x %*02x %20s\n", v6addr, &netmask,
|
while (fscanf(file, "%32s %*02x %02x %02x %*02x %20s\n", v6addr, &netmask,
|
||||||
&scope, devname) != EOF) {
|
&scope, devname) != EOF) {
|
||||||
ns = get_net_stat(devname, nullptr, NULL);
|
ns = get_net_stat(devname, nullptr, NULL);
|
||||||
@ -768,7 +727,57 @@ int update_net_stats(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parses information from /proc/net/dev and stores them in ???
|
||||||
|
*
|
||||||
|
* For the output format of /proc/net/dev @see http://linux.die.net/man/5/proc
|
||||||
|
*
|
||||||
|
* @return always returns 0. May change in the future, e.g. returning non zero
|
||||||
|
* if some error happened
|
||||||
|
**/
|
||||||
|
int update_net_stats(void) {
|
||||||
|
update_gateway_info();
|
||||||
|
update_gateway_info2();
|
||||||
|
FILE *net_dev_fp;
|
||||||
|
static int reported = 0;
|
||||||
|
/* variable to notify the parts averaging the download speed, that this
|
||||||
|
* is the first call ever to this function. This variable can't be used
|
||||||
|
* to decide if this is the first time an interface was parsed as there
|
||||||
|
* are many interfaces, which can be activated and deactivated at arbitrary
|
||||||
|
* times */
|
||||||
|
static bool is_first_update = true;
|
||||||
|
|
||||||
|
// FIXME: arbitrary size chosen to keep code simple.
|
||||||
|
char buf[256];
|
||||||
|
double time_between_updates;
|
||||||
|
|
||||||
|
/* get delta */
|
||||||
|
time_between_updates = current_update_time - last_update_time;
|
||||||
|
if (time_between_updates <= 0.0001) { return 0; }
|
||||||
|
|
||||||
|
/* open file /proc/net/dev. If not something went wrong, clear all
|
||||||
|
* network statistics */
|
||||||
|
if (!(net_dev_fp = open_file("/proc/net/dev", &reported))) {
|
||||||
|
clear_net_stats();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
/* ignore first two header lines in file /proc/net/dev. If somethings
|
||||||
|
* goes wrong, e.g. end of file reached, quit.
|
||||||
|
* (Why isn't clear_net_stats called for this case ??? */
|
||||||
|
char *one = fgets(buf, 255, net_dev_fp);
|
||||||
|
char *two = fgets(buf, 255, net_dev_fp);
|
||||||
|
if (!one || /* garbage */
|
||||||
|
!two) { /* garbage (field names) */
|
||||||
|
fclose(net_dev_fp);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
update_net_interfaces(net_dev_fp, is_first_update, time_between_updates);
|
||||||
|
|
||||||
|
#ifdef BUILD_IPV6
|
||||||
|
update_ipv6_net_stats();
|
||||||
#endif /* BUILD_IPV6 */
|
#endif /* BUILD_IPV6 */
|
||||||
|
|
||||||
is_first_update = false;
|
is_first_update = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user