#pragma once #include #include #include #include #include #include #include #include "exception.hpp" #include "services/command.hpp" namespace net { bool is_wireless_interface(std::string ifname); // Network class NetworkException : public Exception { public: explicit NetworkException(std::string msg) : Exception("[Network] "+ msg){} }; class Network { protected: std::unique_ptr ping; std::string interface; struct ifreq data; int fd; bool test_interface(); bool test_connection(); public: explicit Network(std::string interface); ~Network(); virtual bool connected(); virtual bool test(); std::string get_ip(); }; // WiredNetwork class WiredNetworkException : public NetworkException { using NetworkException::NetworkException; }; class WiredNetwork : public Network { int linkspeed = 0; public: explicit WiredNetwork(std::string interface); std::string get_link_speed(); }; // WirelessNetwork class WirelessNetworkException : public NetworkException { using NetworkException::NetworkException; }; class WirelessNetwork : public Network { struct iwreq iw; public: explicit WirelessNetwork(std::string interface); std::string get_essid(); float get_signal_dbm(); float get_signal_quality(); }; }