2015-11-27 14:50:04 +00:00
|
|
|
#ifndef _SWAY_IPC_CLIENT_H
|
|
|
|
#define _SWAY_IPC_CLIENT_H
|
|
|
|
|
2019-04-17 05:57:34 +00:00
|
|
|
#include <stdbool.h>
|
2016-01-24 01:19:08 +00:00
|
|
|
#include <stdint.h>
|
2019-04-17 05:57:34 +00:00
|
|
|
#include <sys/time.h>
|
2016-01-24 01:19:08 +00:00
|
|
|
|
2015-11-27 14:50:04 +00:00
|
|
|
#include "ipc.h"
|
|
|
|
|
2016-01-03 19:40:50 +00:00
|
|
|
/**
|
|
|
|
* IPC response including type of IPC response, size of payload and the json
|
|
|
|
* encoded payload string.
|
|
|
|
*/
|
|
|
|
struct ipc_response {
|
|
|
|
uint32_t size;
|
|
|
|
uint32_t type;
|
|
|
|
char *payload;
|
|
|
|
};
|
|
|
|
|
2015-11-27 15:10:29 +00:00
|
|
|
/**
|
|
|
|
* Gets the path to the IPC socket from sway.
|
|
|
|
*/
|
2015-11-27 14:50:04 +00:00
|
|
|
char *get_socketpath(void);
|
2015-11-27 15:10:29 +00:00
|
|
|
/**
|
|
|
|
* Opens the sway socket.
|
|
|
|
*/
|
|
|
|
int ipc_open_socket(const char *socket_path);
|
|
|
|
/**
|
|
|
|
* Issues a single IPC command and returns the buffer. len will be updated with
|
|
|
|
* the length of the buffer returned from sway.
|
|
|
|
*/
|
|
|
|
char *ipc_single_command(int socketfd, uint32_t type, const char *payload, uint32_t *len);
|
2015-12-13 21:04:54 +00:00
|
|
|
/**
|
2016-01-03 19:40:50 +00:00
|
|
|
* Receives a single IPC response and returns an ipc_response.
|
|
|
|
*/
|
|
|
|
struct ipc_response *ipc_recv_response(int socketfd);
|
|
|
|
/**
|
|
|
|
* Free ipc_response struct
|
2015-12-13 21:04:54 +00:00
|
|
|
*/
|
2016-01-03 19:40:50 +00:00
|
|
|
void free_ipc_response(struct ipc_response *response);
|
2019-04-17 05:57:34 +00:00
|
|
|
/**
|
|
|
|
* Sets the receive timeout for the IPC socket
|
|
|
|
*/
|
|
|
|
bool ipc_set_recv_timeout(int socketfd, struct timeval tv);
|
2015-11-27 14:50:04 +00:00
|
|
|
|
|
|
|
#endif
|