mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
#ifndef _MODULES_NETWORK_HPP_
|
|
#define _MODULES_NETWORK_HPP_
|
|
|
|
#include <atomic>
|
|
#include <chrono>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "modules/base.hpp"
|
|
#include "interfaces/net.hpp"
|
|
#include "services/logger.hpp"
|
|
#include "drawtypes/icon.hpp"
|
|
#include "drawtypes/label.hpp"
|
|
#include "drawtypes/animation.hpp"
|
|
#include "drawtypes/ramp.hpp"
|
|
|
|
namespace modules
|
|
{
|
|
DefineModule(NetworkModule, TimerModule)
|
|
{
|
|
const char *FORMAT_CONNECTED = "format:connected";
|
|
const char *FORMAT_PACKETLOSS = "format:packetloss";
|
|
const char *FORMAT_DISCONNECTED = "format:disconnected";
|
|
|
|
const char *TAG_RAMP_SIGNAL = "<ramp:signal>";
|
|
const char *TAG_LABEL_CONNECTED = "<label:connected>";
|
|
const char *TAG_LABEL_DISCONNECTED = "<label:disconnected>";
|
|
const char *TAG_LABEL_PACKETLOSS = "<label:packetloss>";
|
|
const char *TAG_ANIMATION_PACKETLOSS = "<animation:packetloss>";
|
|
|
|
const int PING_EVERY_NTH_UPDATE = 10;
|
|
|
|
std::unique_ptr<net::WiredNetwork> wired_network;
|
|
std::unique_ptr<net::WirelessNetwork> wireless_network;
|
|
|
|
std::unique_ptr<drawtypes::Ramp> ramp_signal;
|
|
std::unique_ptr<drawtypes::Animation> animation_packetloss;
|
|
std::unique_ptr<drawtypes::Label> label_connected;
|
|
std::unique_ptr<drawtypes::Label> label_connected_tokenized;
|
|
std::unique_ptr<drawtypes::Label> label_disconnected;
|
|
std::unique_ptr<drawtypes::Label> label_packetloss;
|
|
std::unique_ptr<drawtypes::Label> label_packetloss_tokenized;
|
|
|
|
std::string interface;
|
|
bool connected = false;
|
|
int signal_quality = 0;
|
|
bool conseq_packetloss = false;
|
|
int counter = -1; // -1 to avoid ping the first run
|
|
int connectivity_test_interval;
|
|
|
|
// std::thread t_animation;
|
|
// void animation_thread_runner();
|
|
|
|
public:
|
|
NetworkModule(const std::string& name);
|
|
~NetworkModule();
|
|
|
|
bool update();
|
|
|
|
std::string get_format();
|
|
|
|
bool build(Builder *builder, const std::string& tag);
|
|
|
|
};
|
|
}
|
|
|
|
#endif
|