2016-12-13 17:24:01 +00:00
|
|
|
#include <fstream>
|
2016-12-26 08:40:15 +00:00
|
|
|
#include <iomanip>
|
2016-12-31 03:32:11 +00:00
|
|
|
#include <istream>
|
2016-12-13 17:24:01 +00:00
|
|
|
|
2016-11-19 14:49:03 +00:00
|
|
|
#include "drawtypes/label.hpp"
|
|
|
|
#include "drawtypes/progressbar.hpp"
|
2018-02-19 17:04:55 +00:00
|
|
|
#include "drawtypes/ramp.hpp"
|
2017-01-12 19:28:44 +00:00
|
|
|
#include "modules/memory.hpp"
|
|
|
|
#include "utils/math.hpp"
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-11-20 22:04:31 +00:00
|
|
|
#include "modules/meta/base.inl"
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
namespace modules {
|
2016-11-20 22:04:31 +00:00
|
|
|
template class module<memory_module>;
|
|
|
|
|
2016-12-21 07:00:09 +00:00
|
|
|
memory_module::memory_module(const bar_settings& bar, string name_) : timer_module<memory_module>(bar, move(name_)) {
|
2016-12-31 02:04:01 +00:00
|
|
|
m_interval = m_conf.get<decltype(m_interval)>(name(), "interval", 1s);
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2018-02-19 17:04:55 +00:00
|
|
|
m_formatter->add(DEFAULT_FORMAT, TAG_LABEL, {TAG_LABEL, TAG_BAR_USED, TAG_BAR_FREE, TAG_RAMP_USED, TAG_RAMP_FREE});
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
if (m_formatter->has(TAG_BAR_USED)) {
|
2017-01-12 19:28:44 +00:00
|
|
|
m_bar_memused = load_progressbar(m_bar, m_conf, name(), TAG_BAR_USED);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_BAR_FREE)) {
|
2017-01-12 19:28:44 +00:00
|
|
|
m_bar_memfree = load_progressbar(m_bar, m_conf, name(), TAG_BAR_FREE);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2018-02-19 17:04:55 +00:00
|
|
|
if(m_formatter->has(TAG_RAMP_USED)) {
|
|
|
|
m_ramp_memused = load_ramp(m_conf, name(), TAG_RAMP_USED);
|
|
|
|
}
|
|
|
|
if(m_formatter->has(TAG_RAMP_FREE)) {
|
|
|
|
m_ramp_memfree = load_ramp(m_conf, name(), TAG_RAMP_FREE);
|
|
|
|
}
|
2016-11-25 12:55:15 +00:00
|
|
|
if (m_formatter->has(TAG_LABEL)) {
|
2017-01-13 19:03:08 +00:00
|
|
|
m_label = load_optional_label(m_conf, name(), TAG_LABEL, "%percentage_used%%");
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool memory_module::update() {
|
2017-01-12 19:28:44 +00:00
|
|
|
unsigned long long kb_total{0ULL};
|
|
|
|
unsigned long long kb_avail{0ULL};
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
try {
|
2017-02-04 17:19:58 +00:00
|
|
|
std::ifstream meminfo(PATH_MEMORY_INFO);
|
|
|
|
std::map<std::string, unsigned long long int> parsed;
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2017-02-04 17:19:58 +00:00
|
|
|
std::string line;
|
|
|
|
while (std::getline(meminfo, line)) {
|
|
|
|
size_t sep_off = line.find(':');
|
|
|
|
size_t value_off = line.find_first_of("123456789", sep_off);
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2017-02-04 17:19:58 +00:00
|
|
|
if (sep_off == std::string::npos || value_off == std::string::npos) continue;
|
|
|
|
|
|
|
|
std::string id = line.substr(0, sep_off);
|
|
|
|
unsigned long long int value = std::strtoull(&line[value_off], nullptr, 10);
|
|
|
|
parsed[id] = value;
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
2017-02-04 17:19:58 +00:00
|
|
|
kb_total = parsed["MemTotal"];
|
|
|
|
|
|
|
|
// newer kernels (3.4+) have an accurate available memory field,
|
|
|
|
// see https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=34e431b0ae398fc54ea69ff85ec700722c9da773
|
|
|
|
// for details
|
|
|
|
if (parsed.count("MemAvailable")) {
|
|
|
|
kb_avail = parsed["MemAvailable"];
|
|
|
|
} else {
|
|
|
|
// old kernel; give a best-effort approximation of available memory
|
|
|
|
kb_avail = parsed["MemFree"] + parsed["Buffers"] + parsed["Cached"] + parsed["SReclaimable"] - parsed["Shmem"];
|
|
|
|
}
|
2017-01-12 19:28:44 +00:00
|
|
|
} catch (const std::exception& err) {
|
|
|
|
m_log.err("Failed to read memory values (what: %s)", err.what());
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 19:28:44 +00:00
|
|
|
m_perc_memfree = math_util::percentage(kb_avail, kb_total);
|
|
|
|
m_perc_memused = 100 - m_perc_memfree;
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
// replace tokens
|
|
|
|
if (m_label) {
|
|
|
|
m_label->reset_tokens();
|
2017-01-12 19:28:44 +00:00
|
|
|
m_label->replace_token("%gb_used%", string_util::filesize_gb(kb_total - kb_avail, 2, m_bar.locale));
|
|
|
|
m_label->replace_token("%gb_free%", string_util::filesize_gb(kb_avail, 2, m_bar.locale));
|
|
|
|
m_label->replace_token("%gb_total%", string_util::filesize_gb(kb_total, 2, m_bar.locale));
|
|
|
|
m_label->replace_token("%mb_used%", string_util::filesize_mb(kb_total - kb_avail, 2, m_bar.locale));
|
|
|
|
m_label->replace_token("%mb_free%", string_util::filesize_mb(kb_avail, 2, m_bar.locale));
|
|
|
|
m_label->replace_token("%mb_total%", string_util::filesize_mb(kb_total, 2, m_bar.locale));
|
2017-01-13 19:03:08 +00:00
|
|
|
m_label->replace_token("%percentage_used%", to_string(m_perc_memused));
|
|
|
|
m_label->replace_token("%percentage_free%", to_string(m_perc_memfree));
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
bool memory_module::build(builder* builder, const string& tag) const {
|
|
|
|
if (tag == TAG_BAR_USED) {
|
2017-01-12 19:28:44 +00:00
|
|
|
builder->node(m_bar_memused->output(m_perc_memused));
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (tag == TAG_BAR_FREE) {
|
2017-01-12 19:28:44 +00:00
|
|
|
builder->node(m_bar_memfree->output(m_perc_memfree));
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (tag == TAG_LABEL) {
|
2016-11-02 19:22:45 +00:00
|
|
|
builder->node(m_label);
|
2018-02-19 17:04:55 +00:00
|
|
|
} else if (tag == TAG_RAMP_FREE) {
|
|
|
|
builder->node(m_ramp_memfree->get_by_percentage(m_perc_memfree));
|
|
|
|
} else if (tag == TAG_RAMP_USED) {
|
|
|
|
builder->node(m_ramp_memused->get_by_percentage(m_perc_memused));
|
2016-11-25 12:55:15 +00:00
|
|
|
} else {
|
2016-11-02 19:22:45 +00:00
|
|
|
return false;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|