2016-05-30 23:58:58 -04:00
|
|
|
#pragma once
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include <istream>
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "config.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
#include "drawtypes/label.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "drawtypes/progressbar.hpp"
|
|
|
|
#include "modules/meta.hpp"
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
LEMONBUDDY_NS
|
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
enum class memtype { NONE = 0, TOTAL, USED, FREE, SHARED, BUFFERS, CACHE, AVAILABLE };
|
|
|
|
|
|
|
|
class memory_module : public timer_module<memory_module> {
|
|
|
|
public:
|
|
|
|
using timer_module::timer_module;
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
m_interval = chrono::duration<double>(m_conf.get<float>(name(), "interval", 1));
|
|
|
|
|
|
|
|
m_formatter->add(DEFAULT_FORMAT, TAG_LABEL, {TAG_LABEL, TAG_BAR_USED, TAG_BAR_FREE});
|
|
|
|
|
|
|
|
if (m_formatter->has(TAG_BAR_USED))
|
2016-10-25 01:10:03 -04:00
|
|
|
m_bars[memtype::USED] = load_progressbar(m_bar, m_conf, name(), TAG_BAR_USED);
|
2016-06-14 23:32:35 -04:00
|
|
|
if (m_formatter->has(TAG_BAR_FREE))
|
2016-10-25 01:10:03 -04:00
|
|
|
m_bars[memtype::FREE] = load_progressbar(m_bar, m_conf, name(), TAG_BAR_FREE);
|
2016-10-18 19:26:17 -04:00
|
|
|
if (m_formatter->has(TAG_LABEL))
|
2016-10-25 01:10:03 -04:00
|
|
|
m_label = load_optional_label(m_conf, name(), TAG_LABEL, "%percentage_used%");
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool update() {
|
|
|
|
float kb_total;
|
|
|
|
float kb_avail;
|
|
|
|
// long kb_free;
|
|
|
|
|
|
|
|
try {
|
|
|
|
std::ifstream in(PATH_MEMORY_INFO);
|
|
|
|
std::stringstream buffer;
|
|
|
|
string str, rdbuf;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
in.exceptions(in.failbit);
|
|
|
|
|
|
|
|
buffer.imbue(std::locale::classic());
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
while (std::getline(in, str) && i++ < 3) {
|
|
|
|
size_t off = str.find_first_of("1234567890", str.find(':'));
|
|
|
|
buffer << std::strtol(&str[off], 0, 10) << std::endl;
|
|
|
|
}
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
buffer >> rdbuf;
|
|
|
|
kb_total = std::atol(rdbuf.c_str());
|
|
|
|
buffer >> rdbuf; // kb_free = std::atol(rdbuf.c_str());
|
|
|
|
buffer >> rdbuf;
|
|
|
|
kb_avail = std::atol(rdbuf.c_str());
|
|
|
|
} catch (const std::ios_base::failure& e) {
|
|
|
|
kb_total = 0;
|
|
|
|
// kb_free = 0;
|
|
|
|
kb_avail = 0;
|
|
|
|
m_log.err("Failed to read memory values (what: %s)", e.what());
|
|
|
|
}
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
if (kb_total > 0)
|
|
|
|
m_perc[memtype::FREE] = (kb_avail / kb_total) * 100.0f + 0.5f;
|
|
|
|
else
|
|
|
|
m_perc[memtype::FREE] = 0;
|
2016-05-19 10:41:06 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
m_perc[memtype::USED] = 100 - m_perc[memtype::FREE];
|
|
|
|
|
|
|
|
// replace tokens
|
2016-10-18 19:26:17 -04:00
|
|
|
if (m_label) {
|
|
|
|
m_label->reset_tokens();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
auto replace_unit = [](label_t& label, string token, float value, string unit) {
|
|
|
|
auto formatted = string_util::from_stream(
|
|
|
|
stringstream() << std::setprecision(2) << std::fixed << value << " " << unit);
|
|
|
|
label->replace_token(token, formatted);
|
|
|
|
};
|
|
|
|
|
2016-10-18 19:26:17 -04:00
|
|
|
replace_unit(m_label, "%gb_used%", (kb_total - kb_avail) / 1024 / 1024, "GB");
|
|
|
|
replace_unit(m_label, "%gb_free%", kb_avail / 1024 / 1024, "GB");
|
|
|
|
replace_unit(m_label, "%gb_total%", kb_total / 1024 / 1024, "GB");
|
|
|
|
replace_unit(m_label, "%mb_used%", (kb_total - kb_avail) / 1024, "MB");
|
|
|
|
replace_unit(m_label, "%mb_free%", kb_avail / 1024, "MB");
|
|
|
|
replace_unit(m_label, "%mb_total%", kb_total / 1024, "MB");
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-10-18 19:26:17 -04:00
|
|
|
m_label->replace_token("%percentage_used%", to_string(m_perc[memtype::USED]) + "%");
|
|
|
|
m_label->replace_token("%percentage_free%", to_string(m_perc[memtype::FREE]) + "%");
|
2016-06-14 23:32:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-18 19:26:17 -04:00
|
|
|
bool build(builder* builder, string tag) const {
|
2016-10-25 01:10:03 -04:00
|
|
|
if (tag == TAG_BAR_USED)
|
2016-10-18 19:26:17 -04:00
|
|
|
builder->node(m_bars.at(memtype::USED)->output(m_perc.at(memtype::USED)));
|
2016-10-25 01:10:03 -04:00
|
|
|
else if (tag == TAG_BAR_FREE)
|
2016-10-18 19:26:17 -04:00
|
|
|
builder->node(m_bars.at(memtype::FREE)->output(m_perc.at(memtype::FREE)));
|
2016-06-14 23:32:35 -04:00
|
|
|
else if (tag == TAG_LABEL)
|
2016-10-18 19:26:17 -04:00
|
|
|
builder->node(m_label);
|
2016-06-14 23:32:35 -04:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static constexpr auto TAG_LABEL = "<label>";
|
|
|
|
static constexpr auto TAG_BAR_USED = "<bar-used>";
|
|
|
|
static constexpr auto TAG_BAR_FREE = "<bar-free>";
|
|
|
|
|
|
|
|
label_t m_label;
|
2016-10-18 19:26:17 -04:00
|
|
|
progressbar_t m_bar_free;
|
2016-06-14 23:32:35 -04:00
|
|
|
map<memtype, progressbar_t> m_bars;
|
|
|
|
map<memtype, int> m_perc;
|
2016-05-19 10:41:06 -04:00
|
|
|
};
|
|
|
|
}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|