mirror of
https://github.com/Genymobile/scrcpy
synced 2024-12-22 23:23:17 +00:00
5d17bcf1bc
To allow seamless copy-paste, on Ctrl+v, a SET_CLIPBOARD request is performed before injecting Ctrl+v. But when HID keyboard is enabled, the Ctrl+v injection is not sent on the same channel as the clipboard request, so they are not serialized, and may occur in any order. If Ctrl+v happens to be injected before the new clipboard content is set, then the old content is pasted instead, which is incorrect. To minimize the probability of occurrence of the wrong order, a delay of 2 milliseconds was added before injecting Ctrl+v. Then 5ms. But even with 5ms, the wrong behavior sometimes happens. To handle it properly, add an acknowledgement mechanism, so that Ctrl+v is injected over AOA only after the SET_CLIPBOARD request has been performed and acknowledged by the server. Refse4163321f0
Refs45b0f8123a
PR #2814 <https://github.com/Genymobile/scrcpy/pull/2814>
48 lines
948 B
C
48 lines
948 B
C
#ifndef CONTROLLER_H
|
|
#define CONTROLLER_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "control_msg.h"
|
|
#include "receiver.h"
|
|
#include "util/acksync.h"
|
|
#include "util/cbuf.h"
|
|
#include "util/net.h"
|
|
#include "util/thread.h"
|
|
|
|
struct control_msg_queue CBUF(struct control_msg, 64);
|
|
|
|
struct controller {
|
|
sc_socket control_socket;
|
|
sc_thread thread;
|
|
sc_mutex mutex;
|
|
sc_cond msg_cond;
|
|
bool stopped;
|
|
struct control_msg_queue queue;
|
|
struct receiver receiver;
|
|
};
|
|
|
|
bool
|
|
controller_init(struct controller *controller, sc_socket control_socket,
|
|
struct sc_acksync *acksync);
|
|
|
|
void
|
|
controller_destroy(struct controller *controller);
|
|
|
|
bool
|
|
controller_start(struct controller *controller);
|
|
|
|
void
|
|
controller_stop(struct controller *controller);
|
|
|
|
void
|
|
controller_join(struct controller *controller);
|
|
|
|
bool
|
|
controller_push_msg(struct controller *controller,
|
|
const struct control_msg *msg);
|
|
|
|
#endif
|