mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-20 01:42:38 +02:00
refactor: lint
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h> // getpagesize
|
||||
|
||||
#include "modules/memory.hpp"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <unistd.h> // getpagesize
|
||||
|
||||
#if defined(__DragonFly__)
|
||||
# include <sys/vmmeter.h> // struct vmstats
|
||||
#include <sys/vmmeter.h> // struct vmstats
|
||||
#elif defined(__NetBSD__)
|
||||
# include <uvm/uvm_extern.h> // struct uvmexp_sysctl
|
||||
#include <uvm/uvm_extern.h> // struct uvmexp_sysctl
|
||||
#elif defined(__OpenBSD__)
|
||||
# include <uvm/uvmexp.h> // struct uvmexp
|
||||
#include <uvm/uvmexp.h> // struct uvmexp
|
||||
#endif
|
||||
|
||||
static uint64_t get_total_memory() {
|
||||
@@ -43,33 +43,27 @@ static uint64_t get_free_memory() {
|
||||
if (sysctlbyname("vm.vmstats", &vms, &sz, NULL, 0)) {
|
||||
throw std::runtime_error("sysctl vm.vmstats failed");
|
||||
}
|
||||
return static_cast<uint64_t>
|
||||
(vms.v_free_count + vms.v_inactive_count + vms.v_cache_count)
|
||||
* getpagesize();
|
||||
return static_cast<uint64_t>(vms.v_free_count + vms.v_inactive_count + vms.v_cache_count) *
|
||||
getpagesize();
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||
u_int v_free_count = 0, v_inactive_count = 0, v_cache_count = 0;
|
||||
size_t sz = sizeof(u_int);
|
||||
sysctlbyname("vm.stats.vm.v_free_count",
|
||||
&v_free_count, &sz, NULL, 0);
|
||||
sysctlbyname("vm.stats.vm.v_inactive_count",
|
||||
&v_inactive_count, &sz, NULL, 0);
|
||||
sysctlbyname("vm.stats.vm.v_cache_count",
|
||||
&v_cache_count, &sz, NULL, 0);
|
||||
return static_cast<uint64_t>
|
||||
(v_free_count + v_inactive_count + v_cache_count)
|
||||
* getpagesize();
|
||||
sysctlbyname("vm.stats.vm.v_free_count", &v_free_count, &sz, NULL, 0);
|
||||
sysctlbyname("vm.stats.vm.v_inactive_count", &v_inactive_count, &sz, NULL, 0);
|
||||
sysctlbyname("vm.stats.vm.v_cache_count", &v_cache_count, &sz, NULL, 0);
|
||||
return static_cast<uint64_t>(v_free_count + v_inactive_count + v_cache_count) * getpagesize();
|
||||
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#ifdef VM_UVMEXP2
|
||||
# undef VM_UVMEXP
|
||||
# define VM_UVMEXP VM_UVMEXP2
|
||||
# define uvmexp uvmexp_sysctl
|
||||
#undef VM_UVMEXP
|
||||
#define VM_UVMEXP VM_UVMEXP2
|
||||
#define uvmexp uvmexp_sysctl
|
||||
#else
|
||||
# define filepages vnodepages
|
||||
# define execpages vtextpages
|
||||
#define filepages vnodepages
|
||||
#define execpages vtextpages
|
||||
#endif
|
||||
int mib[] = {
|
||||
CTL_VM,
|
||||
VM_UVMEXP,
|
||||
CTL_VM,
|
||||
VM_UVMEXP,
|
||||
};
|
||||
u_int miblen = sizeof(mib) / sizeof(mib[0]);
|
||||
struct uvmexp uvmexp;
|
||||
@@ -77,9 +71,9 @@ static uint64_t get_free_memory() {
|
||||
if (sysctl(mib, miblen, &uvmexp, &sz, NULL, 0)) {
|
||||
throw std::runtime_error("sysctl vm.uvmexp failed");
|
||||
}
|
||||
return static_cast<uint64_t>
|
||||
(uvmexp.free + uvmexp.inactive + uvmexp.filepages + uvmexp.execpages)
|
||||
* uvmexp.pagesize;
|
||||
return static_cast<uint64_t>(uvmexp.free + uvmexp.inactive + uvmexp.filepages +
|
||||
uvmexp.execpages) *
|
||||
uvmexp.pagesize;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -33,8 +33,8 @@ auto waybar::modules::Memory::update() -> void {
|
||||
if (memtotal > 0 && memfree >= 0) {
|
||||
auto total_ram_gigabytes = memtotal / std::pow(1024, 2);
|
||||
auto total_swap_gigabytes = swaptotal / std::pow(1024, 2);
|
||||
int used_ram_percentage = 100 * (memtotal - memfree) / memtotal;
|
||||
int used_swap_percentage = 0;
|
||||
int used_ram_percentage = 100 * (memtotal - memfree) / memtotal;
|
||||
int used_swap_percentage = 0;
|
||||
if (swaptotal && swapfree) {
|
||||
used_swap_percentage = 100 * (swaptotal - swapfree) / swaptotal;
|
||||
}
|
||||
@@ -54,32 +54,25 @@ auto waybar::modules::Memory::update() -> void {
|
||||
} else {
|
||||
event_box_.show();
|
||||
auto icons = std::vector<std::string>{state};
|
||||
label_.set_markup(fmt::format(format,
|
||||
used_ram_percentage,
|
||||
fmt::arg("icon", getIcon(used_ram_percentage, icons)),
|
||||
fmt::arg("total", total_ram_gigabytes),
|
||||
fmt::arg("swapTotal", total_swap_gigabytes),
|
||||
fmt::arg("percentage", used_ram_percentage),
|
||||
fmt::arg("swapPercentage", used_swap_percentage),
|
||||
fmt::arg("used", used_ram_gigabytes),
|
||||
fmt::arg("swapUsed", used_swap_gigabytes),
|
||||
fmt::arg("avail", available_ram_gigabytes),
|
||||
fmt::arg("swapAvail", available_swap_gigabytes)));
|
||||
label_.set_markup(fmt::format(
|
||||
format, used_ram_percentage, fmt::arg("icon", getIcon(used_ram_percentage, icons)),
|
||||
fmt::arg("total", total_ram_gigabytes), fmt::arg("swapTotal", total_swap_gigabytes),
|
||||
fmt::arg("percentage", used_ram_percentage),
|
||||
fmt::arg("swapPercentage", used_swap_percentage), fmt::arg("used", used_ram_gigabytes),
|
||||
fmt::arg("swapUsed", used_swap_gigabytes), fmt::arg("avail", available_ram_gigabytes),
|
||||
fmt::arg("swapAvail", available_swap_gigabytes)));
|
||||
}
|
||||
|
||||
if (tooltipEnabled()) {
|
||||
if (config_["tooltip-format"].isString()) {
|
||||
auto tooltip_format = config_["tooltip-format"].asString();
|
||||
label_.set_tooltip_text(fmt::format(tooltip_format,
|
||||
used_ram_percentage,
|
||||
fmt::arg("total", total_ram_gigabytes),
|
||||
fmt::arg("swapTotal", total_swap_gigabytes),
|
||||
fmt::arg("percentage", used_ram_percentage),
|
||||
fmt::arg("swapPercentage", used_swap_percentage),
|
||||
fmt::arg("used", used_ram_gigabytes),
|
||||
fmt::arg("swapUsed", used_swap_gigabytes),
|
||||
fmt::arg("avail", available_ram_gigabytes),
|
||||
fmt::arg("swapAvail", available_swap_gigabytes)));
|
||||
label_.set_tooltip_text(fmt::format(
|
||||
tooltip_format, used_ram_percentage, fmt::arg("total", total_ram_gigabytes),
|
||||
fmt::arg("swapTotal", total_swap_gigabytes),
|
||||
fmt::arg("percentage", used_ram_percentage),
|
||||
fmt::arg("swapPercentage", used_swap_percentage), fmt::arg("used", used_ram_gigabytes),
|
||||
fmt::arg("swapUsed", used_swap_gigabytes), fmt::arg("avail", available_ram_gigabytes),
|
||||
fmt::arg("swapAvail", available_swap_gigabytes)));
|
||||
} else {
|
||||
label_.set_tooltip_text(fmt::format("{:.{}f}GiB used", used_ram_gigabytes, 1));
|
||||
}
|
||||
|
@@ -4,8 +4,8 @@ static unsigned zfsArcSize() {
|
||||
std::ifstream zfs_arc_stats{"/proc/spl/kstat/zfs/arcstats"};
|
||||
|
||||
if (zfs_arc_stats.is_open()) {
|
||||
std::string name;
|
||||
std::string type;
|
||||
std::string name;
|
||||
std::string type;
|
||||
unsigned long data{0};
|
||||
|
||||
std::string line;
|
||||
@@ -23,7 +23,7 @@ static unsigned zfsArcSize() {
|
||||
|
||||
void waybar::modules::Memory::parseMeminfo() {
|
||||
const std::string data_dir_ = "/proc/meminfo";
|
||||
std::ifstream info(data_dir_);
|
||||
std::ifstream info(data_dir_);
|
||||
if (!info.is_open()) {
|
||||
throw std::runtime_error("Can't open " + data_dir_);
|
||||
}
|
||||
@@ -35,7 +35,7 @@ void waybar::modules::Memory::parseMeminfo() {
|
||||
}
|
||||
|
||||
std::string name = line.substr(0, posDelim);
|
||||
int64_t value = std::stol(line.substr(posDelim + 1));
|
||||
int64_t value = std::stol(line.substr(posDelim + 1));
|
||||
meminfo_[name] = value;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user