57 lines
1.4 KiB
C
57 lines
1.4 KiB
C
// Copyright 2020 - 2025, project-repo and the NEDM contributors
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef NEDM_IPC_SERVER_H
|
|
#define NEDM_IPC_SERVER_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <wayland-server-core.h>
|
|
|
|
struct nedm_server;
|
|
|
|
struct nedm_ipc_client {
|
|
struct wl_event_source *event_source;
|
|
struct wl_event_source *writable_event_source;
|
|
struct nedm_server *server;
|
|
struct wl_list link;
|
|
int fd;
|
|
uint32_t security_policy;
|
|
size_t write_buffer_len;
|
|
size_t write_buffer_size;
|
|
char *write_buffer;
|
|
// The following is for storing data between event_loop calls
|
|
uint16_t read_buf_len;
|
|
size_t read_buf_cap;
|
|
uint8_t read_discard; // 1 if the current line is to be discarded
|
|
char *read_buffer;
|
|
};
|
|
|
|
struct nedm_ipc_handle {
|
|
int socket;
|
|
struct wl_event_source *event_source;
|
|
struct wl_list client_list;
|
|
struct wl_listener display_destroy;
|
|
struct sockaddr_un *sockaddr;
|
|
};
|
|
|
|
void
|
|
ipc_send_event(struct nedm_server *server, const char *fmt, ...);
|
|
int
|
|
ipc_init(struct nedm_server *server);
|
|
int
|
|
ipc_handle_connection(int fd, uint32_t mask, void *data);
|
|
int
|
|
ipc_client_handle_readable(int client_fd, uint32_t mask, void *data);
|
|
// int ipc_client_handle_writable(int client_fd, uint32_t mask, void *data);
|
|
void
|
|
ipc_client_disconnect(struct nedm_ipc_client *client);
|
|
void
|
|
ipc_client_handle_command(struct nedm_ipc_client *client);
|
|
// bool ipc_send_reply(struct ipc_client *client, const char *payload, uint32_t
|
|
// payload_length);
|
|
|
|
#endif
|