server: Add remaining support for simple copy/paste

- Add function to set callback for client_cut_text
- Add server_cut_text structure and function

This in conjunction with wayvnc #66 closes #4.
pull/45/head
Scott Moreau 2020-09-16 16:10:15 -06:00 committed by Andri Yngvason
parent 6ad4aba374
commit 6d29937e15
4 changed files with 43 additions and 6 deletions

View File

@ -96,6 +96,7 @@ struct nvnc {
nvnc_pointer_fn pointer_fn;
nvnc_fb_req_fn fb_req_fn;
nvnc_client_fn new_client_fn;
nvnc_cut_text_fn cut_text_fn;
struct nvnc_display* display;
#ifdef ENABLE_TLS

View File

@ -49,6 +49,7 @@ typedef void (*nvnc_damage_fn)(struct pixman_region16* damage, void* userdata);
typedef bool (*nvnc_auth_fn)(const char* username, const char* password,
void* userdata);
typedef void (*nvnc_render_fn)(struct nvnc_display*, struct nvnc_fb*);
typedef void (*nvnc_cut_text_fn)(struct nvnc*, const char* text, uint32_t len);
extern const char nvnc_version[];
@ -70,6 +71,7 @@ void nvnc_set_pointer_fn(struct nvnc* self, nvnc_pointer_fn);
void nvnc_set_fb_req_fn(struct nvnc* self, nvnc_fb_req_fn);
void nvnc_set_new_client_fn(struct nvnc* self, nvnc_client_fn);
void nvnc_set_client_cleanup_fn(struct nvnc_client* self, nvnc_client_fn fn);
void nvnc_set_cut_text_receive_fn(struct nvnc* self, nvnc_cut_text_fn fn);
bool nvnc_has_auth(void);
int nvnc_enable_auth(struct nvnc* self, const char* privkey_path,
@ -111,3 +113,5 @@ void nvnc_display_damage_whole(struct nvnc_display*);
int nvnc_check_damage(struct nvnc_fb* fb0, struct nvnc_fb* fb1,
int x_hint, int y_hint, int width_hint, int height_hint,
nvnc_damage_fn on_check_done, void* userdata);
void nvnc_send_cut_text(struct nvnc*, const char* text, uint32_t len);

View File

@ -140,11 +140,11 @@ struct rfb_client_pointer_event_msg {
uint16_t y;
} RFB_PACKED;
struct rfb_client_cut_text_msg {
struct rfb_cut_text_msg {
uint8_t type;
uint8_t padding[3];
uint32_t length;
char test[0];
char text[0];
} RFB_PACKED;
struct rfb_server_fb_rect {

View File

@ -584,18 +584,44 @@ static int on_client_pointer_event(struct nvnc_client* client)
return sizeof(*msg);
}
EXPORT
void nvnc_send_cut_text(struct nvnc* server, const char* text, uint32_t len)
{
struct rfb_cut_text_msg msg;
msg.type = RFB_SERVER_TO_CLIENT_SERVER_CUT_TEXT;
msg.length = htonl(len);
struct nvnc_client* client;
LIST_FOREACH (client, &server->clients, link) {
stream_write(client->net_stream, &msg, sizeof(msg), NULL, NULL);
stream_write(client->net_stream, text, len, NULL, NULL);
}
}
static int on_client_cut_text(struct nvnc_client* client)
{
struct rfb_client_cut_text_msg* msg =
(struct rfb_client_cut_text_msg*)(client->msg_buffer +
client->buffer_index);
struct nvnc* server = client->server;
struct rfb_cut_text_msg* msg =
(struct rfb_cut_text_msg*)(client->msg_buffer +
client->buffer_index);
if (client->buffer_len - client->buffer_index < sizeof(*msg))
return 0;
uint32_t length = ntohl(msg->length);
// TODO
/* Messages greater than this size are unsupported */
if (length > MSG_BUFFER_SIZE - sizeof(*msg)) {
stream_close(client->net_stream);
client_unref(client);
return 0;
}
nvnc_cut_text_fn fn = server->cut_text_fn;
if (fn) {
fn(server, msg->text, length);
}
return sizeof(*msg) + length;
}
@ -1197,6 +1223,12 @@ void nvnc_set_client_cleanup_fn(struct nvnc_client* self, nvnc_client_fn fn)
self->cleanup_fn = fn;
}
EXPORT
void nvnc_set_cut_text_receive_fn(struct nvnc* self, nvnc_cut_text_fn fn)
{
self->cut_text_fn = fn;
}
EXPORT
void nvnc_add_display(struct nvnc* self, struct nvnc_display* display)
{