Waybar/include/modules/network.hpp

63 lines
1.6 KiB
C++
Raw Normal View History

2018-08-09 14:38:24 +00:00
#pragma once
#include <net/if.h>
#include <arpa/inet.h>
#include <ifaddrs.h>
2018-08-09 14:38:24 +00:00
#include <netlink/netlink.h>
#include <netlink/genl/genl.h>
#include <netlink/genl/ctrl.h>
#include <linux/nl80211.h>
2018-12-26 10:13:36 +00:00
#include <sys/epoll.h>
2018-08-09 14:38:24 +00:00
#include <fmt/format.h>
2018-12-26 10:13:36 +00:00
#include "util/sleeper_thread.hpp"
#include "ALabel.hpp"
2018-08-09 14:38:24 +00:00
namespace waybar::modules {
class Network : public ALabel {
2018-08-16 12:29:41 +00:00
public:
2018-12-18 16:30:54 +00:00
Network(const std::string&, const Json::Value&);
2018-08-19 11:39:57 +00:00
~Network();
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
static const uint8_t MAX_RETRY = 5;
static const uint8_t EPOLL_MAX = 200;
static int handleEvents(struct nl_msg*, void*);
2018-12-26 10:13:36 +00:00
static int handleScan(struct nl_msg*, void*);
2018-08-16 12:29:41 +00:00
2018-11-16 09:02:12 +00:00
void worker();
2018-08-17 12:24:00 +00:00
void disconnected();
2018-12-26 10:13:36 +00:00
void createInfoSocket();
void createEventSocket();
2018-08-17 12:24:00 +00:00
int getExternalInterface();
void getInterfaceAddress();
2018-12-26 10:13:36 +00:00
int netlinkRequest(void*, uint32_t, uint32_t groups = 0);
int netlinkResponse(void*, uint32_t, uint32_t groups = 0);
2018-08-16 12:29:41 +00:00
void parseEssid(struct nlattr**);
void parseSignal(struct nlattr**);
bool associatedOrJoined(struct nlattr**);
auto getInfo() -> void;
waybar::util::SleeperThread thread_;
2018-11-16 09:02:12 +00:00
waybar::util::SleeperThread thread_timer_;
2018-08-17 12:24:00 +00:00
int ifid_;
sa_family_t family_;
2018-11-16 09:02:12 +00:00
struct sockaddr_nl nladdr_ = {0};
2018-08-24 13:32:06 +00:00
struct nl_sock* sk_ = nullptr;
struct nl_sock* info_sock_ = nullptr;
2018-12-26 10:13:36 +00:00
int efd_;
int ev_fd_;
2018-08-24 13:32:06 +00:00
int nl80211_id_;
2018-08-17 12:24:00 +00:00
2018-08-16 12:29:41 +00:00
std::string essid_;
2018-08-17 12:24:00 +00:00
std::string ifname_;
std::string ipaddr_;
std::string netmask_;
int cidr_;
int32_t signal_strength_dbm_;
uint8_t signal_strength_;
2018-08-16 12:29:41 +00:00
};
2018-08-09 14:38:24 +00:00
}