polybar/include/adapters/net.hpp

132 lines
2.6 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
2016-11-20 22:04:31 +00:00
#include <chrono>
2017-01-11 04:10:51 +00:00
#include <cstdlib>
2016-11-25 07:42:31 +00:00
2016-06-15 03:32:35 +00:00
#include <arpa/inet.h>
#include <ifaddrs.h>
#include <iwlib.h>
#ifdef inline
#undef inline
#endif
#include "common.hpp"
2017-01-11 02:07:28 +00:00
#include "settings.hpp"
2016-11-25 12:55:15 +00:00
#include "errors.hpp"
#include "utils/math.hpp"
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
class file_descriptor;
2016-06-15 03:32:35 +00:00
namespace net {
DEFINE_ERROR(network_error);
2016-11-25 12:55:15 +00:00
bool is_wireless_interface(const string& ifname);
2016-11-02 19:22:45 +00:00
2016-06-15 03:32:35 +00:00
// types {{{
struct quality_range {
int val{0};
int max{0};
int percentage() const {
if (val < 0) {
return std::max(std::min(std::abs(math_util::percentage(val, max, -20)), 100), 0);
}
return std::max(std::min(math_util::percentage(val, 0, max), 100), 0);
}
};
using bytes_t = unsigned int;
struct link_activity {
bytes_t transmitted{0};
bytes_t received{0};
2017-01-11 02:07:28 +00:00
std::chrono::system_clock::time_point time;
2016-06-15 03:32:35 +00:00
};
struct link_status {
string ip;
link_activity previous{};
link_activity current{};
2016-06-15 03:32:35 +00:00
};
// }}}
2016-11-02 19:22:45 +00:00
// class : network {{{
2016-06-15 03:32:35 +00:00
class network {
public:
2016-11-02 19:22:45 +00:00
explicit network(string interface);
virtual ~network() {}
2016-06-15 03:32:35 +00:00
virtual bool query(bool accumulate = false);
virtual bool connected() const = 0;
2016-11-02 19:22:45 +00:00
virtual bool ping() const;
2016-11-02 19:22:45 +00:00
string ip() const;
string downspeed(int minwidth = 3) const;
string upspeed(int minwidth = 3) const;
void set_unknown_up(bool unknown = true);
2016-06-15 03:32:35 +00:00
protected:
void check_tuntap();
2016-11-02 19:22:45 +00:00
bool test_interface() const;
string format_speedrate(float bytes_diff, int minwidth) const;
2016-06-15 03:32:35 +00:00
unique_ptr<file_descriptor> m_socketfd;
link_status m_status{};
2016-06-15 03:32:35 +00:00
string m_interface;
bool m_tuntap{false};
bool m_unknown_up{false};
2016-06-15 03:32:35 +00:00
};
// }}}
2016-11-02 19:22:45 +00:00
// class : wired_network {{{
2016-06-15 03:32:35 +00:00
class wired_network : public network {
public:
explicit wired_network(string interface) : network(interface) {}
bool query(bool accumulate = false) override;
2016-11-02 19:22:45 +00:00
bool connected() const override;
string linkspeed() const;
2016-06-15 03:32:35 +00:00
private:
int m_linkspeed{0};
2016-06-15 03:32:35 +00:00
};
// }}}
2016-11-02 19:22:45 +00:00
// class : wireless_network {{{
2016-06-15 03:32:35 +00:00
class wireless_network : public network {
public:
wireless_network(string interface) : network(interface) {}
bool query(bool accumulate = false) override;
2016-11-02 19:22:45 +00:00
bool connected() const override;
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
string essid() const;
int signal() const;
int quality() const;
2016-06-15 03:32:35 +00:00
protected:
2016-11-02 19:22:45 +00:00
void query_essid(const int& socket_fd);
void query_quality(const int& socket_fd);
2016-06-15 03:32:35 +00:00
private:
2016-12-15 02:30:41 +00:00
shared_ptr<wireless_info> m_info{};
string m_essid{};
quality_range m_signalstrength{};
quality_range m_linkquality{};
2016-06-15 03:32:35 +00:00
};
// }}}
using wireless_t = unique_ptr<wireless_network>;
using wired_t = unique_ptr<wired_network>;
2016-06-15 03:32:35 +00:00
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END