041cdf6cf5
It will allow to expose more binary util functions not related to buffers. PR #3369 <https://github.com/Genymobile/scrcpy/pull/3369>
54 lines
1.4 KiB
C
54 lines
1.4 KiB
C
#include "device_msg.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "util/binary.h"
|
|
#include "util/log.h"
|
|
|
|
ssize_t
|
|
device_msg_deserialize(const unsigned char *buf, size_t len,
|
|
struct device_msg *msg) {
|
|
if (len < 5) {
|
|
// at least type + empty string length
|
|
return 0; // not available
|
|
}
|
|
|
|
msg->type = buf[0];
|
|
switch (msg->type) {
|
|
case DEVICE_MSG_TYPE_CLIPBOARD: {
|
|
size_t clipboard_len = sc_read32be(&buf[1]);
|
|
if (clipboard_len > len - 5) {
|
|
return 0; // not available
|
|
}
|
|
char *text = malloc(clipboard_len + 1);
|
|
if (!text) {
|
|
LOG_OOM();
|
|
return -1;
|
|
}
|
|
if (clipboard_len) {
|
|
memcpy(text, &buf[5], clipboard_len);
|
|
}
|
|
text[clipboard_len] = '\0';
|
|
|
|
msg->clipboard.text = text;
|
|
return 5 + clipboard_len;
|
|
}
|
|
case DEVICE_MSG_TYPE_ACK_CLIPBOARD: {
|
|
uint64_t sequence = sc_read64be(&buf[1]);
|
|
msg->ack_clipboard.sequence = sequence;
|
|
return 9;
|
|
}
|
|
default:
|
|
LOGW("Unknown device message type: %d", (int) msg->type);
|
|
return -1; // error, we cannot recover
|
|
}
|
|
}
|
|
|
|
void
|
|
device_msg_destroy(struct device_msg *msg) {
|
|
if (msg->type == DEVICE_MSG_TYPE_CLIPBOARD) {
|
|
free(msg->clipboard.text);
|
|
}
|
|
}
|