2018-08-09 14:38:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netlink/netlink.h>
|
|
|
|
#include <netlink/genl/genl.h>
|
|
|
|
#include <netlink/genl/ctrl.h>
|
|
|
|
#include <linux/nl80211.h>
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "util/chrono.hpp"
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-09 14:38:24 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Network : public ALabel {
|
2018-08-16 12:29:41 +00:00
|
|
|
public:
|
2018-08-20 12:50:45 +00:00
|
|
|
Network(const Json::Value&);
|
2018-08-19 11:39:57 +00:00
|
|
|
~Network();
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-09-10 09:16:57 +00:00
|
|
|
static int netlinkRequest(int, void*, uint32_t, uint32_t groups = 0);
|
|
|
|
static int netlinkResponse(int, void*, uint32_t, uint32_t groups = 0);
|
2018-08-16 12:29:41 +00:00
|
|
|
static int scanCb(struct nl_msg*, void*);
|
|
|
|
|
2018-08-17 12:24:00 +00:00
|
|
|
void disconnected();
|
2018-08-24 13:32:06 +00:00
|
|
|
void initNL80211();
|
2018-08-17 12:24:00 +00:00
|
|
|
int getExternalInterface();
|
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-08-17 12:24:00 +00:00
|
|
|
int ifid_;
|
|
|
|
sa_family_t family_;
|
|
|
|
int sock_fd_;
|
2018-09-10 09:16:57 +00:00
|
|
|
struct sockaddr_nl nladdr_ = {};
|
2018-08-24 13:32:06 +00:00
|
|
|
struct nl_sock* sk_ = nullptr;
|
|
|
|
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_;
|
2018-08-16 12:29:41 +00:00
|
|
|
int signal_strength_dbm_;
|
|
|
|
uint16_t signal_strength_;
|
|
|
|
};
|
2018-08-09 14:38:24 +00:00
|
|
|
|
|
|
|
}
|