mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
guac_message structure, initial parsing support
This commit is contained in:
@@ -4,7 +4,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
#include <sys/select.h>
|
#include <sys/select.h>
|
||||||
|
|
||||||
@@ -226,75 +225,3 @@ int guac_select(GUACIO* io, int usec_timeout) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int __guac_fill_messagebuf(GUACIO* io) {
|
|
||||||
|
|
||||||
int retval;
|
|
||||||
|
|
||||||
/* Attempt to fill buffer */
|
|
||||||
retval = read(
|
|
||||||
io->fd,
|
|
||||||
io->messagebuf + io->messagebuf_used_length,
|
|
||||||
io->messagebuf_size - io->messagebuf_used_length
|
|
||||||
);
|
|
||||||
|
|
||||||
if (retval < 0)
|
|
||||||
return retval;
|
|
||||||
|
|
||||||
io->messagebuf_used_length += retval;
|
|
||||||
|
|
||||||
/* Expand buffer if necessary */
|
|
||||||
if (io->messagebuf_used_length > io->messagebuf_size / 2) {
|
|
||||||
io->messagebuf_size *= 2;
|
|
||||||
io->messagebuf = realloc(io->messagebuf, io->messagebuf_size);
|
|
||||||
}
|
|
||||||
|
|
||||||
return retval;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
int guac_read_message(GUACIO* io) {
|
|
||||||
|
|
||||||
int retval;
|
|
||||||
int i = 0;
|
|
||||||
|
|
||||||
/* Loop until a message is read */
|
|
||||||
for (;;) {
|
|
||||||
|
|
||||||
/* Search for end of message */
|
|
||||||
for (; i < io->messagebuf_used_length; i++) {
|
|
||||||
|
|
||||||
if (io->messagebuf[i] == ';') {
|
|
||||||
|
|
||||||
char* message = malloc(i+1);
|
|
||||||
memcpy(message, io->messagebuf, i+1);
|
|
||||||
message[i] = '\0'; /* Replace semicolon with null terminator. */
|
|
||||||
|
|
||||||
fprintf(stderr, "RECEIVED MESSAGE: %s\n", message);
|
|
||||||
|
|
||||||
/* Found. Reset buffer */
|
|
||||||
memmove(io->messagebuf, io->messagebuf + i + 1, io->messagebuf_used_length - i - 1);
|
|
||||||
io->messagebuf_used_length -= i + 1;
|
|
||||||
|
|
||||||
/* Done */
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/* No message yet? Get more data ... */
|
|
||||||
retval = guac_select(io, 1000);
|
|
||||||
if (retval < 0)
|
|
||||||
return retval;
|
|
||||||
|
|
||||||
/* Break if descriptor doesn't have enough data */
|
|
||||||
if (retval == 0)
|
|
||||||
return 0; /* SOFT FAIL: No message ... yet, but is still in buffer */
|
|
||||||
|
|
||||||
retval = __guac_fill_messagebuf(io);
|
|
||||||
if (retval < 0 && errno != EAGAIN && errno != EWOULDBLOCK)
|
|
||||||
return retval;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@@ -27,7 +27,6 @@ ssize_t guac_write_base64(GUACIO* io, const void* buf, size_t count);
|
|||||||
ssize_t guac_flush_base64(GUACIO* io);
|
ssize_t guac_flush_base64(GUACIO* io);
|
||||||
ssize_t guac_flush(GUACIO* io);
|
ssize_t guac_flush(GUACIO* io);
|
||||||
int guac_select(GUACIO* io, int usec_timeout);
|
int guac_select(GUACIO* io, int usec_timeout);
|
||||||
int guac_read_message(GUACIO* io);
|
|
||||||
void guac_close(GUACIO* io);
|
void guac_close(GUACIO* io);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
|
|
||||||
#include "guacio.h"
|
#include "guacio.h"
|
||||||
@@ -175,3 +176,98 @@ void guac_send_png(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int __guac_fill_messagebuf(GUACIO* io) {
|
||||||
|
|
||||||
|
int retval;
|
||||||
|
|
||||||
|
/* Attempt to fill buffer */
|
||||||
|
retval = read(
|
||||||
|
io->fd,
|
||||||
|
io->messagebuf + io->messagebuf_used_length,
|
||||||
|
io->messagebuf_size - io->messagebuf_used_length
|
||||||
|
);
|
||||||
|
|
||||||
|
if (retval < 0)
|
||||||
|
return retval;
|
||||||
|
|
||||||
|
io->messagebuf_used_length += retval;
|
||||||
|
|
||||||
|
/* Expand buffer if necessary */
|
||||||
|
if (io->messagebuf_used_length > io->messagebuf_size / 2) {
|
||||||
|
io->messagebuf_size *= 2;
|
||||||
|
io->messagebuf = realloc(io->messagebuf, io->messagebuf_size);
|
||||||
|
}
|
||||||
|
|
||||||
|
return retval;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
guac_message* guac_read_message(GUACIO* io) {
|
||||||
|
|
||||||
|
guac_message* parsed_message;
|
||||||
|
int retval;
|
||||||
|
int i = 0;
|
||||||
|
|
||||||
|
/* Loop until a message is read */
|
||||||
|
for (;;) {
|
||||||
|
|
||||||
|
/* Search for end of message */
|
||||||
|
for (; i < io->messagebuf_used_length; i++) {
|
||||||
|
|
||||||
|
if (io->messagebuf[i] == ';') {
|
||||||
|
|
||||||
|
/* Parse new message */
|
||||||
|
char* message = malloc(i+1);
|
||||||
|
memcpy(message, io->messagebuf, i+1);
|
||||||
|
message[i] = '\0'; /* Replace semicolon with null terminator. */
|
||||||
|
|
||||||
|
parsed_message = malloc(sizeof(guac_message));
|
||||||
|
parsed_message->opcode = message;
|
||||||
|
parsed_message->argc = 0;
|
||||||
|
parsed_message->argv = NULL;
|
||||||
|
|
||||||
|
/* Found. Reset buffer */
|
||||||
|
memmove(io->messagebuf, io->messagebuf + i + 1, io->messagebuf_used_length - i - 1);
|
||||||
|
io->messagebuf_used_length -= i + 1;
|
||||||
|
|
||||||
|
/* Done */
|
||||||
|
return parsed_message;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* No message yet? Get more data ... */
|
||||||
|
retval = guac_select(io, 1000);
|
||||||
|
if (retval < 0)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
/* Break if descriptor doesn't have enough data */
|
||||||
|
if (retval == 0)
|
||||||
|
return NULL; /* SOFT FAIL: No message ... yet, but is still in buffer */
|
||||||
|
|
||||||
|
retval = __guac_fill_messagebuf(io);
|
||||||
|
if (retval < 0 && errno != EAGAIN && errno != EWOULDBLOCK)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void guac_free_message(guac_message* message) {
|
||||||
|
free(message->opcode);
|
||||||
|
|
||||||
|
if (message->argv)
|
||||||
|
free(message->argv);
|
||||||
|
|
||||||
|
free(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int guac_messages_waiting(GUACIO* io) {
|
||||||
|
|
||||||
|
if (io->messagebuf_used_length > 0)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
return guac_select(io, 1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -6,11 +6,25 @@
|
|||||||
|
|
||||||
#include "guacio.h"
|
#include "guacio.h"
|
||||||
|
|
||||||
|
typedef struct guac_message {
|
||||||
|
|
||||||
|
char* opcode;
|
||||||
|
|
||||||
|
int argc;
|
||||||
|
char** argv;
|
||||||
|
|
||||||
|
} guac_message;
|
||||||
|
|
||||||
|
|
||||||
|
void guac_free_message(guac_message* message);
|
||||||
char* guac_escape_string(const char* str);
|
char* guac_escape_string(const char* str);
|
||||||
void guac_send_name(GUACIO* io, const char* name);
|
void guac_send_name(GUACIO* io, const char* name);
|
||||||
void guac_send_size(GUACIO* io, int w, int h);
|
void guac_send_size(GUACIO* io, int w, int h);
|
||||||
void guac_send_copy(GUACIO* io, int srcx, int srcy, int w, int h, int dstx, int dsty);
|
void guac_send_copy(GUACIO* io, int srcx, int srcy, int w, int h, int dstx, int dsty);
|
||||||
void guac_send_png(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h);
|
void guac_send_png(GUACIO* io, int x, int y, png_byte** png_rows, int w, int h);
|
||||||
|
|
||||||
|
int guac_messages_waiting(GUACIO* io);
|
||||||
|
guac_message* guac_read_message(GUACIO* io);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@@ -179,9 +179,13 @@ void proxy(int client_fd) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
wait_result = guac_select(io, 2000);
|
wait_result = guac_messages_waiting(io);
|
||||||
if (wait_result > 0) {
|
if (wait_result > 0) {
|
||||||
guac_read_message(io);
|
guac_message* message = guac_read_message(io);
|
||||||
|
if (message) {
|
||||||
|
fprintf(stderr, "NEW READ MESSAGE: %s\n", message->opcode);
|
||||||
|
guac_free_message(message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user