2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <iostream>
|
2018-10-28 07:02:56 +00:00
|
|
|
#include <cstring>
|
2018-08-20 12:50:45 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2018-08-08 21:54:58 +00:00
|
|
|
#include "ipc.hpp"
|
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
namespace waybar::modules::sway {
|
|
|
|
|
|
|
|
class Ipc {
|
|
|
|
public:
|
|
|
|
Ipc();
|
|
|
|
~Ipc();
|
|
|
|
|
|
|
|
struct ipc_response {
|
|
|
|
uint32_t size;
|
|
|
|
uint32_t type;
|
|
|
|
std::string payload;
|
|
|
|
};
|
|
|
|
|
|
|
|
void connect();
|
|
|
|
struct ipc_response sendCmd(uint32_t type,
|
|
|
|
const std::string& payload = "") const;
|
|
|
|
void subscribe(const std::string& payload) const;
|
|
|
|
struct ipc_response handleEvent() const;
|
|
|
|
protected:
|
|
|
|
static inline const std::string ipc_magic_ = "i3-ipc";
|
|
|
|
static inline const size_t ipc_header_size_ = ipc_magic_.size() + 8;
|
|
|
|
|
|
|
|
const std::string getSocketPath() const;
|
|
|
|
int open(const std::string&) const;
|
|
|
|
struct ipc_response send(int fd, uint32_t type,
|
|
|
|
const std::string& payload = "") const;
|
|
|
|
struct ipc_response recv(int fd) const;
|
|
|
|
|
|
|
|
int fd_;
|
|
|
|
int fd_event_;
|
2018-08-08 21:54:58 +00:00
|
|
|
};
|
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
}
|