polybar/include/modules/network.hpp

63 lines
1.8 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "adapters/net.hpp"
#include "components/config.hpp"
#include "drawtypes/animation.hpp"
2016-05-19 14:41:06 +00:00
#include "drawtypes/animation.hpp"
2016-06-15 03:32:35 +00:00
#include "drawtypes/label.hpp"
2016-05-19 14:41:06 +00:00
#include "drawtypes/ramp.hpp"
2016-06-15 03:32:35 +00:00
#include "modules/meta.hpp"
LEMONBUDDY_NS
namespace modules {
enum class connection_state { NONE = 0, CONNECTED, DISCONNECTED, PACKETLOSS };
2016-06-15 03:32:35 +00:00
class network_module : public timer_module<network_module> {
public:
using timer_module::timer_module;
2016-11-02 19:22:45 +00:00
void setup();
void teardown();
bool update();
string get_format() const;
bool build(builder* builder, string tag) const;
2016-06-15 03:32:35 +00:00
protected:
2016-11-02 19:22:45 +00:00
void subthread_routine();
2016-06-15 03:32:35 +00:00
private:
static constexpr auto FORMAT_CONNECTED = "format-connected";
static constexpr auto FORMAT_PACKETLOSS = "format-packetloss";
static constexpr auto FORMAT_DISCONNECTED = "format-disconnected";
static constexpr auto TAG_RAMP_SIGNAL = "<ramp-signal>";
static constexpr auto TAG_RAMP_QUALITY = "<ramp-quality>";
static constexpr auto TAG_LABEL_CONNECTED = "<label-connected>";
static constexpr auto TAG_LABEL_DISCONNECTED = "<label-disconnected>";
static constexpr auto TAG_LABEL_PACKETLOSS = "<label-packetloss>";
static constexpr auto TAG_ANIMATION_PACKETLOSS = "<animation-packetloss>";
2016-05-19 14:41:06 +00:00
net::wired_t m_wired;
net::wireless_t m_wireless;
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
ramp_t m_ramp_signal;
ramp_t m_ramp_quality;
2016-06-15 03:32:35 +00:00
animation_t m_animation_packetloss;
map<connection_state, label_t> m_label;
2016-06-15 03:32:35 +00:00
stateflag m_connected{false};
stateflag m_packetloss{false};
2016-05-19 14:41:06 +00:00
int m_signal = 0;
int m_quality = 0;
2016-06-15 03:32:35 +00:00
int m_counter = -1; // -1 to ignore the first run
string m_interface;
int m_ping_nth_update = 0;
int m_udspeed_minwidth = 3;
bool m_accumulate = false;
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
LEMONBUDDY_NS_END