Compare commits
15 Commits
process_in
...
hid.13
Author | SHA1 | Date | |
---|---|---|---|
f595d16cde | |||
74fb32a584 | |||
2f29b2e25d | |||
710f7e1a7c | |||
f80c5107db | |||
0ed00c2e40 | |||
874a4967a4 | |||
a52779ae6b | |||
c8f65647f2 | |||
b89c23b7f5 | |||
7f3d2eded7 | |||
1d4e15f0d5 | |||
ee55118282 | |||
4c6096388e | |||
691bdb925f |
15
BUILD.md
15
BUILD.md
@ -88,11 +88,12 @@ Install the required packages from your package manager.
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# runtime dependencies
|
# runtime dependencies
|
||||||
sudo apt install ffmpeg libsdl2-2.0-0 adb
|
sudo apt install ffmpeg libsdl2-2.0-0 adb libusb-1.0-0
|
||||||
|
|
||||||
# client build dependencies
|
# client build dependencies
|
||||||
sudo apt install gcc git pkg-config meson ninja-build libsdl2-dev \
|
sudo apt install gcc git pkg-config meson ninja-build libsdl2-dev \
|
||||||
libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev
|
libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev\
|
||||||
|
libusb-dev
|
||||||
|
|
||||||
# server build dependencies
|
# server build dependencies
|
||||||
sudo apt install openjdk-11-jdk
|
sudo apt install openjdk-11-jdk
|
||||||
@ -114,7 +115,7 @@ pip3 install meson
|
|||||||
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
|
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
|
||||||
|
|
||||||
# client build dependencies
|
# client build dependencies
|
||||||
sudo dnf install SDL2-devel ffms2-devel meson gcc make
|
sudo dnf install SDL2-devel ffms2-devel libusb-devel meson gcc make
|
||||||
|
|
||||||
# server build dependencies
|
# server build dependencies
|
||||||
sudo dnf install java-devel
|
sudo dnf install java-devel
|
||||||
@ -159,7 +160,8 @@ install the required packages:
|
|||||||
```bash
|
```bash
|
||||||
# runtime dependencies
|
# runtime dependencies
|
||||||
pacman -S mingw-w64-x86_64-SDL2 \
|
pacman -S mingw-w64-x86_64-SDL2 \
|
||||||
mingw-w64-x86_64-ffmpeg
|
mingw-w64-x86_64-ffmpeg \
|
||||||
|
mingw-w64-x86_64-libusb
|
||||||
|
|
||||||
# client build dependencies
|
# client build dependencies
|
||||||
pacman -S mingw-w64-x86_64-make \
|
pacman -S mingw-w64-x86_64-make \
|
||||||
@ -173,7 +175,8 @@ For a 32 bits version, replace `x86_64` by `i686`:
|
|||||||
```bash
|
```bash
|
||||||
# runtime dependencies
|
# runtime dependencies
|
||||||
pacman -S mingw-w64-i686-SDL2 \
|
pacman -S mingw-w64-i686-SDL2 \
|
||||||
mingw-w64-i686-ffmpeg
|
mingw-w64-i686-ffmpeg \
|
||||||
|
mingw-w64-i686-libusb
|
||||||
|
|
||||||
# client build dependencies
|
# client build dependencies
|
||||||
pacman -S mingw-w64-i686-make \
|
pacman -S mingw-w64-i686-make \
|
||||||
@ -197,7 +200,7 @@ Install the packages with [Homebrew]:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# runtime dependencies
|
# runtime dependencies
|
||||||
brew install sdl2 ffmpeg
|
brew install sdl2 ffmpeg libusb
|
||||||
|
|
||||||
# client build dependencies
|
# client build dependencies
|
||||||
brew install pkg-config meson
|
brew install pkg-config meson
|
||||||
|
23
README.md
23
README.md
@ -207,6 +207,29 @@ scrcpy --crop 1224:1440:0:0 # 1224x1440 at offset (0,0)
|
|||||||
|
|
||||||
If `--max-size` is also specified, resizing is applied after cropping.
|
If `--max-size` is also specified, resizing is applied after cropping.
|
||||||
|
|
||||||
|
#### USB HID over AOAv2
|
||||||
|
|
||||||
|
Scrcpy can simulate a USB physical keyboard on Android to provide better input
|
||||||
|
experience, you need to connect your device via USB, not wireless.
|
||||||
|
|
||||||
|
However, due to some limitation of libusb and WinUSB driver, you cannot use HID
|
||||||
|
over AOAv2 on Windows.
|
||||||
|
|
||||||
|
Currently a USB serial number is needed to use HID over AOAv2.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
scrcpy --serial XXXXXXXXXXXXXXXX # don't use HID
|
||||||
|
scrcpy --serial XXXXXXXXXXXXXXXX --input-mode inject # don't use HID
|
||||||
|
scrcpy --serial XXXXXXXXXXXXXXXX --input-mode hid # try HID and exit if failed
|
||||||
|
```
|
||||||
|
|
||||||
|
Serial number can be found by `adb get-serialno`.
|
||||||
|
|
||||||
|
If you are a non-QWERTY keyboard user and using HID mode, please remember to set
|
||||||
|
correct physical keyboard layout manually in Android settings, because scrcpy
|
||||||
|
just forwards scancodes to Android device and Android system is responsible for
|
||||||
|
converting scancodes to correct keycode on Android device (your system does this
|
||||||
|
on your PC).
|
||||||
|
|
||||||
#### Lock video orientation
|
#### Lock video orientation
|
||||||
|
|
||||||
|
@ -8,11 +8,12 @@ src = [
|
|||||||
'src/controller.c',
|
'src/controller.c',
|
||||||
'src/decoder.c',
|
'src/decoder.c',
|
||||||
'src/device_msg.c',
|
'src/device_msg.c',
|
||||||
'src/event_converter.c',
|
|
||||||
'src/file_handler.c',
|
'src/file_handler.c',
|
||||||
'src/fps_counter.c',
|
'src/fps_counter.c',
|
||||||
'src/frame_buffer.c',
|
'src/frame_buffer.c',
|
||||||
'src/input_manager.c',
|
'src/input_manager.c',
|
||||||
|
'src/keyboard_inject.c',
|
||||||
|
'src/mouse_inject.c',
|
||||||
'src/opengl.c',
|
'src/opengl.c',
|
||||||
'src/receiver.c',
|
'src/receiver.c',
|
||||||
'src/recorder.c',
|
'src/recorder.c',
|
||||||
@ -41,6 +42,14 @@ if v4l2_support
|
|||||||
src += [ 'src/v4l2_sink.c' ]
|
src += [ 'src/v4l2_sink.c' ]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
aoa_hid_support = host_machine.system() == 'linux'
|
||||||
|
if aoa_hid_support
|
||||||
|
src += [
|
||||||
|
'src/aoa_hid.c',
|
||||||
|
'src/hid_keyboard.c',
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
check_functions = [
|
check_functions = [
|
||||||
'strdup'
|
'strdup'
|
||||||
]
|
]
|
||||||
@ -61,8 +70,11 @@ if not get_option('crossbuild_windows')
|
|||||||
dependencies += dependency('libavdevice')
|
dependencies += dependency('libavdevice')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
else
|
if aoa_hid_support
|
||||||
|
dependencies += dependency('libusb-1.0')
|
||||||
|
endif
|
||||||
|
|
||||||
|
else
|
||||||
# cross-compile mingw32 build (from Linux to Windows)
|
# cross-compile mingw32 build (from Linux to Windows)
|
||||||
prebuilt_sdl2 = meson.get_cross_property('prebuilt_sdl2')
|
prebuilt_sdl2 = meson.get_cross_property('prebuilt_sdl2')
|
||||||
sdl2_bin_dir = meson.current_source_dir() + '/../prebuilt-deps/' + prebuilt_sdl2 + '/bin'
|
sdl2_bin_dir = meson.current_source_dir() + '/../prebuilt-deps/' + prebuilt_sdl2 + '/bin'
|
||||||
@ -139,6 +151,9 @@ conf.set('SERVER_DEBUGGER_METHOD_NEW', get_option('server_debugger_method') == '
|
|||||||
# enable V4L2 support (linux only)
|
# enable V4L2 support (linux only)
|
||||||
conf.set('HAVE_V4L2', v4l2_support)
|
conf.set('HAVE_V4L2', v4l2_support)
|
||||||
|
|
||||||
|
# enable HID over AOA support (linux only)
|
||||||
|
conf.set('HAVE_AOA_HID', aoa_hid_support)
|
||||||
|
|
||||||
configure_file(configuration: conf, output: 'config.h')
|
configure_file(configuration: conf, output: 'config.h')
|
||||||
|
|
||||||
src_dir = include_directories('src')
|
src_dir = include_directories('src')
|
||||||
|
18
app/scrcpy.1
18
app/scrcpy.1
@ -82,6 +82,24 @@ Start in fullscreen.
|
|||||||
.B \-h, \-\-help
|
.B \-h, \-\-help
|
||||||
Print this help.
|
Print this help.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
.B \-K, \-\-keyboard\-hid
|
||||||
|
Simulate a physical keyboard by using HID over AOAv2.
|
||||||
|
|
||||||
|
This provides a better experience for IME users, and allows to generate non-ASCII characters, contrary to the default injection method.
|
||||||
|
|
||||||
|
It may only work over USB, and is currently only supported on Linux.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
.B \-i, \-\-input\-mode mode
|
||||||
|
Select input mode for keyboard events.
|
||||||
|
|
||||||
|
Possible values are "hid" and "inject".
|
||||||
|
|
||||||
|
"hid" uses Android's USB HID over AOAv2 feature to simulate physical keyboard's events, which provides better experience for IME users if supported by you device.
|
||||||
|
|
||||||
|
"inject" is the legacy scrcpy way by injecting keycode events on Android, works on most devices and is the default.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B \-\-legacy\-paste
|
.B \-\-legacy\-paste
|
||||||
Inject computer clipboard text as a sequence of key events on Ctrl+v (like MOD+Shift+v).
|
Inject computer clipboard text as a sequence of key events on Ctrl+v (like MOD+Shift+v).
|
||||||
|
@ -109,7 +109,9 @@ show_adb_err_msg(enum process_result err, const char *const argv[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
process_t
|
process_t
|
||||||
adb_execute(const char *serial, const char *const adb_cmd[], size_t len) {
|
adb_execute_redirect(const char *serial, const char *const adb_cmd[],
|
||||||
|
size_t len, pipe_t *pipe_stdin, pipe_t *pipe_stdout,
|
||||||
|
pipe_t *pipe_stderr) {
|
||||||
int i;
|
int i;
|
||||||
process_t process;
|
process_t process;
|
||||||
|
|
||||||
@ -129,7 +131,9 @@ adb_execute(const char *serial, const char *const adb_cmd[], size_t len) {
|
|||||||
|
|
||||||
memcpy(&argv[i], adb_cmd, len * sizeof(const char *));
|
memcpy(&argv[i], adb_cmd, len * sizeof(const char *));
|
||||||
argv[len + i] = NULL;
|
argv[len + i] = NULL;
|
||||||
enum process_result r = process_execute(argv, &process);
|
enum process_result r =
|
||||||
|
process_execute_redirect(argv, &process, pipe_stdin, pipe_stdout,
|
||||||
|
pipe_stderr);
|
||||||
if (r != PROCESS_SUCCESS) {
|
if (r != PROCESS_SUCCESS) {
|
||||||
show_adb_err_msg(r, argv);
|
show_adb_err_msg(r, argv);
|
||||||
process = PROCESS_NONE;
|
process = PROCESS_NONE;
|
||||||
@ -139,6 +143,11 @@ adb_execute(const char *serial, const char *const adb_cmd[], size_t len) {
|
|||||||
return process;
|
return process;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
process_t
|
||||||
|
adb_execute(const char *serial, const char *const adb_cmd[], size_t len) {
|
||||||
|
return adb_execute_redirect(serial, adb_cmd, len, NULL, NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
process_t
|
process_t
|
||||||
adb_forward(const char *serial, uint16_t local_port,
|
adb_forward(const char *serial, uint16_t local_port,
|
||||||
const char *device_socket_name) {
|
const char *device_socket_name) {
|
||||||
@ -224,3 +233,47 @@ adb_install(const char *serial, const char *local) {
|
|||||||
|
|
||||||
return proc;
|
return proc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static ssize_t
|
||||||
|
adb_execute_for_output(const char *serial, const char *const adb_cmd[],
|
||||||
|
size_t adb_cmd_len, char *buf, size_t buf_len,
|
||||||
|
const char *name) {
|
||||||
|
pipe_t pipe_stdout;
|
||||||
|
process_t proc = adb_execute_redirect(serial, adb_cmd, adb_cmd_len, NULL,
|
||||||
|
&pipe_stdout, NULL);
|
||||||
|
|
||||||
|
ssize_t r = read_pipe_all(pipe_stdout, buf, buf_len);
|
||||||
|
close_pipe(pipe_stdout);
|
||||||
|
|
||||||
|
if (!process_check_success(proc, name, true)) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t
|
||||||
|
truncate_first_line(char *data, size_t len) {
|
||||||
|
data[len - 1] = '\0';
|
||||||
|
char *eol = strpbrk(data, "\r\n");
|
||||||
|
if (eol) {
|
||||||
|
*eol = '\0';
|
||||||
|
len = eol - data;
|
||||||
|
}
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
char *
|
||||||
|
adb_get_serialno(void) {
|
||||||
|
char buf[128];
|
||||||
|
|
||||||
|
const char *const adb_cmd[] = {"get-serialno"};
|
||||||
|
ssize_t r = adb_execute_for_output(NULL, adb_cmd, ARRAY_LEN(adb_cmd),
|
||||||
|
buf, sizeof(buf), "get-serialno");
|
||||||
|
if (r <= 0) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
truncate_first_line(buf, r);
|
||||||
|
return strdup(buf);
|
||||||
|
}
|
||||||
|
@ -11,6 +11,11 @@
|
|||||||
process_t
|
process_t
|
||||||
adb_execute(const char *serial, const char *const adb_cmd[], size_t len);
|
adb_execute(const char *serial, const char *const adb_cmd[], size_t len);
|
||||||
|
|
||||||
|
process_t
|
||||||
|
adb_execute_redirect(const char *serial, const char *const adb_cmd[],
|
||||||
|
size_t len, pipe_t *pipe_stdin, pipe_t *pipe_stdout,
|
||||||
|
pipe_t *pipe_stderr);
|
||||||
|
|
||||||
process_t
|
process_t
|
||||||
adb_forward(const char *serial, uint16_t local_port,
|
adb_forward(const char *serial, uint16_t local_port,
|
||||||
const char *device_socket_name);
|
const char *device_socket_name);
|
||||||
@ -31,4 +36,8 @@ adb_push(const char *serial, const char *local, const char *remote);
|
|||||||
process_t
|
process_t
|
||||||
adb_install(const char *serial, const char *local);
|
adb_install(const char *serial, const char *local);
|
||||||
|
|
||||||
|
// Return the result of "adb get-serialno".
|
||||||
|
char *
|
||||||
|
adb_get_serialno(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
357
app/src/aoa_hid.c
Normal file
357
app/src/aoa_hid.c
Normal file
@ -0,0 +1,357 @@
|
|||||||
|
#include "util/log.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include "aoa_hid.h"
|
||||||
|
|
||||||
|
// See <https://source.android.com/devices/accessories/aoa2#hid-support>.
|
||||||
|
#define ACCESSORY_REGISTER_HID 54
|
||||||
|
#define ACCESSORY_SET_HID_REPORT_DESC 56
|
||||||
|
#define ACCESSORY_SEND_HID_EVENT 57
|
||||||
|
#define ACCESSORY_UNREGISTER_HID 55
|
||||||
|
|
||||||
|
#define DEFAULT_TIMEOUT 1000
|
||||||
|
|
||||||
|
static void
|
||||||
|
hid_event_log(const struct hid_event *event) {
|
||||||
|
// HID Event: [00] FF FF FF FF...
|
||||||
|
assert(event->size);
|
||||||
|
unsigned buffer_size = event->size * 3 + 1;
|
||||||
|
char *buffer = malloc(buffer_size);
|
||||||
|
if (!buffer) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (unsigned i = 0; i < event->size; ++i) {
|
||||||
|
snprintf(buffer + i * 3, 4, " %02x", event->buffer[i]);
|
||||||
|
}
|
||||||
|
LOGV("HID Event: [%d]%s", event->from_accessory_id, buffer);
|
||||||
|
free(buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
hid_event_destroy(struct hid_event *event) {
|
||||||
|
free(event->buffer);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
log_libusb_error(enum libusb_error errcode) {
|
||||||
|
LOGW("libusb error: %s", libusb_strerror(errcode));
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
accept_device(libusb_device *device, const char *serial) {
|
||||||
|
// do not log any USB error in this function, it is expected that many USB
|
||||||
|
// devices available on the computer have permission restrictions
|
||||||
|
|
||||||
|
struct libusb_device_descriptor desc;
|
||||||
|
libusb_get_device_descriptor(device, &desc);
|
||||||
|
|
||||||
|
if (!desc.iSerialNumber) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
libusb_device_handle *handle;
|
||||||
|
int result = libusb_open(device, &handle);
|
||||||
|
if (result < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
char buffer[128];
|
||||||
|
result = libusb_get_string_descriptor_ascii(handle, desc.iSerialNumber,
|
||||||
|
(unsigned char *) buffer,
|
||||||
|
sizeof(buffer));
|
||||||
|
libusb_close(handle);
|
||||||
|
if (result < 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer[sizeof(buffer) - 1] = '\0'; // just in case
|
||||||
|
|
||||||
|
// accept the device if its serial matches
|
||||||
|
return !strcmp(buffer, serial);
|
||||||
|
}
|
||||||
|
|
||||||
|
static libusb_device *
|
||||||
|
aoa_find_usb_device(const char *serial) {
|
||||||
|
if (!serial) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
libusb_device **list;
|
||||||
|
libusb_device *result = NULL;
|
||||||
|
ssize_t count = libusb_get_device_list(NULL, &list);
|
||||||
|
if (count < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) count);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < (size_t) count; ++i) {
|
||||||
|
libusb_device *device = list[i];
|
||||||
|
|
||||||
|
if (accept_device(device, serial)) {
|
||||||
|
result = libusb_ref_device(device);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
libusb_free_device_list(list, 1);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
aoa_open_usb_handle(libusb_device *device, libusb_device_handle **handle) {
|
||||||
|
int result = libusb_open(device, handle);
|
||||||
|
if (result < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) result);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_init(struct aoa *aoa, const char *serial) {
|
||||||
|
cbuf_init(&aoa->queue);
|
||||||
|
|
||||||
|
if (!sc_mutex_init(&aoa->mutex)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!sc_cond_init(&aoa->event_cond)) {
|
||||||
|
sc_mutex_destroy(&aoa->mutex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (libusb_init(&aoa->usb_context) != LIBUSB_SUCCESS) {
|
||||||
|
sc_cond_destroy(&aoa->event_cond);
|
||||||
|
sc_mutex_destroy(&aoa->mutex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
aoa->usb_device = aoa_find_usb_device(serial);
|
||||||
|
if (!aoa->usb_device) {
|
||||||
|
LOGW("USB device of serial %s not found", serial);
|
||||||
|
libusb_exit(aoa->usb_context);
|
||||||
|
sc_mutex_destroy(&aoa->mutex);
|
||||||
|
sc_cond_destroy(&aoa->event_cond);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aoa_open_usb_handle(aoa->usb_device, &aoa->usb_handle) < 0) {
|
||||||
|
LOGW("Open USB handle failed");
|
||||||
|
libusb_unref_device(aoa->usb_device);
|
||||||
|
libusb_exit(aoa->usb_context);
|
||||||
|
sc_cond_destroy(&aoa->event_cond);
|
||||||
|
sc_mutex_destroy(&aoa->mutex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
aoa->stopped = false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_destroy(struct aoa *aoa) {
|
||||||
|
// Destroy remaining events
|
||||||
|
struct hid_event event;
|
||||||
|
while (cbuf_take(&aoa->queue, &event)) {
|
||||||
|
hid_event_destroy(&event);
|
||||||
|
}
|
||||||
|
|
||||||
|
libusb_close(aoa->usb_handle);
|
||||||
|
libusb_unref_device(aoa->usb_device);
|
||||||
|
libusb_exit(aoa->usb_context);
|
||||||
|
sc_cond_destroy(&aoa->event_cond);
|
||||||
|
sc_mutex_destroy(&aoa->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
aoa_register_hid(struct aoa *aoa, uint16_t accessory_id,
|
||||||
|
uint16_t report_desc_size) {
|
||||||
|
uint8_t request_type = LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR;
|
||||||
|
uint8_t request = ACCESSORY_REGISTER_HID;
|
||||||
|
// <https://source.android.com/devices/accessories/aoa2.html#hid-support>
|
||||||
|
// value (arg0): accessory assigned ID for the HID device
|
||||||
|
// index (arg1): total length of the HID report descriptor
|
||||||
|
uint16_t value = accessory_id;
|
||||||
|
uint16_t index = report_desc_size;
|
||||||
|
unsigned char *buffer = NULL;
|
||||||
|
uint16_t length = 0;
|
||||||
|
int result = libusb_control_transfer(aoa->usb_handle, request_type, request,
|
||||||
|
value, index, buffer, length,
|
||||||
|
DEFAULT_TIMEOUT);
|
||||||
|
if (result < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) result);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
aoa_set_hid_report_desc(struct aoa *aoa, uint16_t accessory_id,
|
||||||
|
const unsigned char *report_desc,
|
||||||
|
uint16_t report_desc_size) {
|
||||||
|
uint8_t request_type = LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR;
|
||||||
|
uint8_t request = ACCESSORY_SET_HID_REPORT_DESC;
|
||||||
|
/**
|
||||||
|
* If the HID descriptor is longer than the endpoint zero max packet size,
|
||||||
|
* the descriptor will be sent in multiple ACCESSORY_SET_HID_REPORT_DESC
|
||||||
|
* commands. The data for the descriptor must be sent sequentially
|
||||||
|
* if multiple packets are needed.
|
||||||
|
* <https://source.android.com/devices/accessories/aoa2.html#hid-support>
|
||||||
|
*
|
||||||
|
* libusb handles packet abstraction internally, so we don't need to care
|
||||||
|
* about bMaxPacketSize0 here.
|
||||||
|
*
|
||||||
|
* See <https://libusb.sourceforge.io/api-1.0/libusb_packetoverflow.html>
|
||||||
|
*/
|
||||||
|
// value (arg0): accessory assigned ID for the HID device
|
||||||
|
// index (arg1): offset of data (buffer) in descriptor
|
||||||
|
uint16_t value = accessory_id;
|
||||||
|
uint16_t index = 0;
|
||||||
|
// libusb_control_transfer expects a pointer to non-const
|
||||||
|
unsigned char *buffer = (unsigned char *) report_desc;
|
||||||
|
uint16_t length = report_desc_size;
|
||||||
|
int result = libusb_control_transfer(aoa->usb_handle, request_type, request,
|
||||||
|
value, index, buffer, length,
|
||||||
|
DEFAULT_TIMEOUT);
|
||||||
|
if (result < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) result);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_setup_hid(struct aoa *aoa, uint16_t accessory_id,
|
||||||
|
const unsigned char *report_desc, uint16_t report_desc_size) {
|
||||||
|
bool ok = aoa_register_hid(aoa, accessory_id, report_desc_size);
|
||||||
|
if (!ok) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
ok = aoa_set_hid_report_desc(aoa, accessory_id, report_desc,
|
||||||
|
report_desc_size);
|
||||||
|
if (!ok) {
|
||||||
|
if (!aoa_unregister_hid(aoa, accessory_id)) {
|
||||||
|
LOGW("Could not unregister HID");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
aoa_send_hid_event(struct aoa *aoa, const struct hid_event *event) {
|
||||||
|
uint8_t request_type = LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR;
|
||||||
|
uint8_t request = ACCESSORY_SEND_HID_EVENT;
|
||||||
|
// <https://source.android.com/devices/accessories/aoa2.html#hid-support>
|
||||||
|
// value (arg0): accessory assigned ID for the HID device
|
||||||
|
// index (arg1): 0 (unused)
|
||||||
|
uint16_t value = event->from_accessory_id;
|
||||||
|
uint16_t index = 0;
|
||||||
|
unsigned char *buffer = event->buffer;
|
||||||
|
uint16_t length = event->size;
|
||||||
|
int result = libusb_control_transfer(aoa->usb_handle, request_type, request,
|
||||||
|
value, index, buffer, length,
|
||||||
|
DEFAULT_TIMEOUT);
|
||||||
|
if (result < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) result);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_unregister_hid(struct aoa *aoa, const uint16_t accessory_id) {
|
||||||
|
uint8_t request_type = LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR;
|
||||||
|
uint8_t request = ACCESSORY_UNREGISTER_HID;
|
||||||
|
// <https://source.android.com/devices/accessories/aoa2.html#hid-support>
|
||||||
|
// value (arg0): accessory assigned ID for the HID device
|
||||||
|
// index (arg1): 0
|
||||||
|
uint16_t value = accessory_id;
|
||||||
|
uint16_t index = 0;
|
||||||
|
unsigned char *buffer = NULL;
|
||||||
|
uint16_t length = 0;
|
||||||
|
int result = libusb_control_transfer(aoa->usb_handle, request_type, request,
|
||||||
|
value, index, buffer, length,
|
||||||
|
DEFAULT_TIMEOUT);
|
||||||
|
if (result < 0) {
|
||||||
|
log_libusb_error((enum libusb_error) result);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_push_hid_event(struct aoa *aoa, const struct hid_event *event) {
|
||||||
|
hid_event_log(event);
|
||||||
|
sc_mutex_lock(&aoa->mutex);
|
||||||
|
bool was_empty = cbuf_is_empty(&aoa->queue);
|
||||||
|
bool res = cbuf_push(&aoa->queue, *event);
|
||||||
|
if (was_empty) {
|
||||||
|
sc_cond_signal(&aoa->event_cond);
|
||||||
|
}
|
||||||
|
sc_mutex_unlock(&aoa->mutex);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
run_aoa_thread(void *data) {
|
||||||
|
struct aoa *aoa = data;
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
sc_mutex_lock(&aoa->mutex);
|
||||||
|
while (!aoa->stopped && cbuf_is_empty(&aoa->queue)) {
|
||||||
|
sc_cond_wait(&aoa->event_cond, &aoa->mutex);
|
||||||
|
}
|
||||||
|
if (aoa->stopped) {
|
||||||
|
// Stop immediately, do not process further events
|
||||||
|
sc_mutex_unlock(&aoa->mutex);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
struct hid_event event;
|
||||||
|
bool non_empty = cbuf_take(&aoa->queue, &event);
|
||||||
|
assert(non_empty);
|
||||||
|
(void) non_empty;
|
||||||
|
sc_mutex_unlock(&aoa->mutex);
|
||||||
|
|
||||||
|
bool ok = aoa_send_hid_event(aoa, &event);
|
||||||
|
hid_event_destroy(&event);
|
||||||
|
if (!ok) {
|
||||||
|
LOGW("Could not send HID event to USB device");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_start(struct aoa *aoa) {
|
||||||
|
LOGD("Starting AOA thread");
|
||||||
|
|
||||||
|
bool ok = sc_thread_create(&aoa->thread, run_aoa_thread, "aoa_thread", aoa);
|
||||||
|
if (!ok) {
|
||||||
|
LOGC("Could not start AOA thread");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_stop(struct aoa *aoa) {
|
||||||
|
sc_mutex_lock(&aoa->mutex);
|
||||||
|
aoa->stopped = true;
|
||||||
|
sc_cond_signal(&aoa->event_cond);
|
||||||
|
sc_mutex_unlock(&aoa->mutex);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_join(struct aoa *aoa) {
|
||||||
|
sc_thread_join(&aoa->thread, NULL);
|
||||||
|
}
|
57
app/src/aoa_hid.h
Normal file
57
app/src/aoa_hid.h
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
#ifndef AOA_HID_H
|
||||||
|
#define AOA_HID_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include <libusb-1.0/libusb.h>
|
||||||
|
|
||||||
|
#include "scrcpy.h"
|
||||||
|
#include "util/cbuf.h"
|
||||||
|
#include "util/thread.h"
|
||||||
|
|
||||||
|
struct hid_event {
|
||||||
|
uint16_t from_accessory_id;
|
||||||
|
unsigned char *buffer;
|
||||||
|
uint16_t size;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct hid_event_queue CBUF(struct hid_event, 64);
|
||||||
|
|
||||||
|
struct aoa {
|
||||||
|
libusb_context *usb_context;
|
||||||
|
libusb_device *usb_device;
|
||||||
|
libusb_device_handle *usb_handle;
|
||||||
|
sc_thread thread;
|
||||||
|
sc_mutex mutex;
|
||||||
|
sc_cond event_cond;
|
||||||
|
bool stopped;
|
||||||
|
struct hid_event_queue queue;
|
||||||
|
};
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_init(struct aoa *aoa, const char *serial);
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_destroy(struct aoa *aoa);
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_start(struct aoa *aoa);
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_stop(struct aoa *aoa);
|
||||||
|
|
||||||
|
void
|
||||||
|
aoa_join(struct aoa *aoa);
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_setup_hid(struct aoa *aoa, uint16_t accessory_id,
|
||||||
|
const unsigned char *report_desc, uint16_t report_desc_size);
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_unregister_hid(struct aoa *aoa, uint16_t accessory_id);
|
||||||
|
|
||||||
|
bool
|
||||||
|
aoa_push_hid_event(struct aoa *aoa, const struct hid_event *event);
|
||||||
|
|
||||||
|
#endif
|
@ -76,6 +76,14 @@ scrcpy_print_usage(const char *arg0) {
|
|||||||
" -f, --fullscreen\n"
|
" -f, --fullscreen\n"
|
||||||
" Start in fullscreen.\n"
|
" Start in fullscreen.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
" -K, --keyboard-hid\n"
|
||||||
|
" Simulate a physical keyboard by using HID over AOAv2.\n"
|
||||||
|
" It provides a better experience for IME users, and allows to\n"
|
||||||
|
" generate non-ASCII characters, contrary to the default\n"
|
||||||
|
" injection method.\n"
|
||||||
|
" It may only work over USB, and is currently only supported\n"
|
||||||
|
" on Linux.\n"
|
||||||
|
"\n"
|
||||||
" -h, --help\n"
|
" -h, --help\n"
|
||||||
" Print this help.\n"
|
" Print this help.\n"
|
||||||
"\n"
|
"\n"
|
||||||
@ -738,6 +746,7 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
|
|||||||
OPT_FORWARD_ALL_CLICKS},
|
OPT_FORWARD_ALL_CLICKS},
|
||||||
{"fullscreen", no_argument, NULL, 'f'},
|
{"fullscreen", no_argument, NULL, 'f'},
|
||||||
{"help", no_argument, NULL, 'h'},
|
{"help", no_argument, NULL, 'h'},
|
||||||
|
{"keyboard-hid", no_argument, NULL, 'K'},
|
||||||
{"legacy-paste", no_argument, NULL, OPT_LEGACY_PASTE},
|
{"legacy-paste", no_argument, NULL, OPT_LEGACY_PASTE},
|
||||||
{"lock-video-orientation", optional_argument, NULL,
|
{"lock-video-orientation", optional_argument, NULL,
|
||||||
OPT_LOCK_VIDEO_ORIENTATION},
|
OPT_LOCK_VIDEO_ORIENTATION},
|
||||||
@ -784,7 +793,7 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
|
|||||||
optind = 0; // reset to start from the first argument in tests
|
optind = 0; // reset to start from the first argument in tests
|
||||||
|
|
||||||
int c;
|
int c;
|
||||||
while ((c = getopt_long(argc, argv, "b:c:fF:hm:nNp:r:s:StTvV:w",
|
while ((c = getopt_long(argc, argv, "b:c:fF:hKm:nNp:r:s:StTvV:w",
|
||||||
long_options, NULL)) != -1) {
|
long_options, NULL)) != -1) {
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case 'b':
|
case 'b':
|
||||||
@ -817,6 +826,9 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
|
|||||||
case 'h':
|
case 'h':
|
||||||
args->help = true;
|
args->help = true;
|
||||||
break;
|
break;
|
||||||
|
case 'K':
|
||||||
|
opts->keyboard_input_mode = SC_KEYBOARD_INPUT_MODE_HID;
|
||||||
|
break;
|
||||||
case OPT_MAX_FPS:
|
case OPT_MAX_FPS:
|
||||||
if (!parse_max_fps(optarg, &opts->max_fps)) {
|
if (!parse_max_fps(optarg, &opts->max_fps)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "decoder.h"
|
#include "decoder.h"
|
||||||
|
|
||||||
|
#include <libavcodec/avcodec.h>
|
||||||
#include <libavformat/avformat.h>
|
#include <libavformat/avformat.h>
|
||||||
|
|
||||||
#include "events.h"
|
#include "events.h"
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
#ifndef CONVERT_H
|
|
||||||
#define CONVERT_H
|
|
||||||
|
|
||||||
#include "common.h"
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <SDL2/SDL_events.h>
|
|
||||||
|
|
||||||
#include "control_msg.h"
|
|
||||||
|
|
||||||
bool
|
|
||||||
convert_keycode_action(SDL_EventType from, enum android_keyevent_action *to);
|
|
||||||
|
|
||||||
enum android_metastate
|
|
||||||
convert_meta_state(SDL_Keymod mod);
|
|
||||||
|
|
||||||
bool
|
|
||||||
convert_keycode(SDL_Keycode from, enum android_keycode *to, uint16_t mod,
|
|
||||||
bool prefer_text);
|
|
||||||
|
|
||||||
enum android_motionevent_buttons
|
|
||||||
convert_mouse_buttons(uint32_t state);
|
|
||||||
|
|
||||||
bool
|
|
||||||
convert_mouse_action(SDL_EventType from, enum android_motionevent_action *to);
|
|
||||||
|
|
||||||
bool
|
|
||||||
convert_touch_action(SDL_EventType from, enum android_motionevent_action *to);
|
|
||||||
|
|
||||||
#endif
|
|
356
app/src/hid_keyboard.c
Normal file
356
app/src/hid_keyboard.c
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
#include "hid_keyboard.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <SDL2/SDL_events.h>
|
||||||
|
|
||||||
|
#include "util/log.h"
|
||||||
|
|
||||||
|
/** Downcast key processor to hid_keyboard */
|
||||||
|
#define DOWNCAST(KP) \
|
||||||
|
container_of(KP, struct hid_keyboard, key_processor)
|
||||||
|
|
||||||
|
#define HID_KEYBOARD_ACCESSORY_ID 1
|
||||||
|
|
||||||
|
#define HID_KEYBOARD_MODIFIER_NONE 0x00
|
||||||
|
#define HID_KEYBOARD_MODIFIER_LEFT_CONTROL (1 << 0)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_LEFT_SHIFT (1 << 1)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_LEFT_ALT (1 << 2)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_LEFT_GUI (1 << 3)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_RIGHT_CONTROL (1 << 4)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_RIGHT_SHIFT (1 << 5)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_RIGHT_ALT (1 << 6)
|
||||||
|
#define HID_KEYBOARD_MODIFIER_RIGHT_GUI (1 << 7)
|
||||||
|
|
||||||
|
#define HID_KEYBOARD_INDEX_MODIFIER 0
|
||||||
|
#define HID_KEYBOARD_INDEX_KEYS 2
|
||||||
|
|
||||||
|
// USB HID protocol says 6 keys in an event is the requirement for BIOS
|
||||||
|
// keyboard support, though OS could support more keys via modifying the report
|
||||||
|
// desc. 6 should be enough for scrcpy.
|
||||||
|
#define HID_KEYBOARD_MAX_KEYS 6
|
||||||
|
#define HID_KEYBOARD_EVENT_SIZE (2 + HID_KEYBOARD_MAX_KEYS)
|
||||||
|
|
||||||
|
#define HID_KEYBOARD_RESERVED 0x00
|
||||||
|
#define HID_KEYBOARD_ERROR_ROLL_OVER 0x01
|
||||||
|
|
||||||
|
#define SC_SCANCODE_CAPSLOCK 57
|
||||||
|
#define SC_SCANCODE_NUMLOCK 83
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For HID over AOAv2, only report descriptor is needed.
|
||||||
|
*
|
||||||
|
* The specification is available here:
|
||||||
|
* <https://www.usb.org/sites/default/files/hid1_11.pdf>
|
||||||
|
*
|
||||||
|
* In particular, read:
|
||||||
|
* - 6.2.2 Report Descriptor
|
||||||
|
* - Appendix B.1 Protocol 1 (Keyboard)
|
||||||
|
* - Appendix C: Keyboard Implementation
|
||||||
|
*
|
||||||
|
* Normally a basic HID keyboard uses 8 bytes:
|
||||||
|
* Modifier Reserved Key Key Key Key Key Key
|
||||||
|
*
|
||||||
|
* You can dump your device's report descriptor with:
|
||||||
|
*
|
||||||
|
* sudo usbhid-dump -m vid:pid -e descriptor
|
||||||
|
*
|
||||||
|
* (change vid:pid' to your device's vendor ID and product ID).
|
||||||
|
*/
|
||||||
|
static const unsigned char keyboard_report_desc[] = {
|
||||||
|
// Usage Page (Generic Desktop)
|
||||||
|
0x05, 0x01,
|
||||||
|
// Usage (Keyboard)
|
||||||
|
0x09, 0x06,
|
||||||
|
|
||||||
|
// Collection (Application)
|
||||||
|
0xA1, 0x01,
|
||||||
|
|
||||||
|
// Usage Page (Key Codes)
|
||||||
|
0x05, 0x07,
|
||||||
|
// Usage Minimum (224)
|
||||||
|
0x19, 0xE0,
|
||||||
|
// Usage Maximum (231)
|
||||||
|
0x29, 0xE7,
|
||||||
|
// Logical Minimum (0)
|
||||||
|
0x15, 0x00,
|
||||||
|
// Logical Maximum (1)
|
||||||
|
0x25, 0x01,
|
||||||
|
// Report Size (1)
|
||||||
|
0x75, 0x01,
|
||||||
|
// Report Count (8)
|
||||||
|
0x95, 0x08,
|
||||||
|
// Input (Data, Variable, Absolute): Modifier byte
|
||||||
|
0x81, 0x02,
|
||||||
|
|
||||||
|
// Report Size (8)
|
||||||
|
0x75, 0x08,
|
||||||
|
// Report Count (1)
|
||||||
|
0x95, 0x01,
|
||||||
|
// Input (Constant): Reserved byte
|
||||||
|
0x81, 0x01,
|
||||||
|
|
||||||
|
// Usage Page (LEDs)
|
||||||
|
0x05, 0x08,
|
||||||
|
// Usage Minimum (1)
|
||||||
|
0x19, 0x01,
|
||||||
|
// Usage Maximum (5)
|
||||||
|
0x29, 0x05,
|
||||||
|
// Report Size (1)
|
||||||
|
0x75, 0x01,
|
||||||
|
// Report Count (5)
|
||||||
|
0x95, 0x05,
|
||||||
|
// Output (Data, Variable, Absolute): LED report
|
||||||
|
0x91, 0x02,
|
||||||
|
|
||||||
|
// Report Size (3)
|
||||||
|
0x75, 0x03,
|
||||||
|
// Report Count (1)
|
||||||
|
0x95, 0x01,
|
||||||
|
// Output (Constant): LED report padding
|
||||||
|
0x91, 0x01,
|
||||||
|
|
||||||
|
// Usage Page (Key Codes)
|
||||||
|
0x05, 0x07,
|
||||||
|
// Usage Minimum (0)
|
||||||
|
0x19, 0x00,
|
||||||
|
// Usage Maximum (101)
|
||||||
|
0x29, HID_KEYBOARD_KEYS - 1,
|
||||||
|
// Logical Minimum (0)
|
||||||
|
0x15, 0x00,
|
||||||
|
// Logical Maximum(101)
|
||||||
|
0x25, HID_KEYBOARD_KEYS - 1,
|
||||||
|
// Report Size (8)
|
||||||
|
0x75, 0x08,
|
||||||
|
// Report Count (6)
|
||||||
|
0x95, HID_KEYBOARD_MAX_KEYS,
|
||||||
|
// Input (Data, Array): Keys
|
||||||
|
0x81, 0x00,
|
||||||
|
|
||||||
|
// End Collection
|
||||||
|
0xC0
|
||||||
|
};
|
||||||
|
|
||||||
|
static unsigned char *
|
||||||
|
create_hid_keyboard_event(void) {
|
||||||
|
unsigned char *buffer = malloc(HID_KEYBOARD_EVENT_SIZE);
|
||||||
|
if (!buffer) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
buffer[HID_KEYBOARD_INDEX_MODIFIER] = HID_KEYBOARD_MODIFIER_NONE;
|
||||||
|
buffer[1] = HID_KEYBOARD_RESERVED;
|
||||||
|
memset(&buffer[HID_KEYBOARD_INDEX_KEYS], 0, HID_KEYBOARD_MAX_KEYS);
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
static unsigned char
|
||||||
|
sdl_keymod_to_hid_modifiers(SDL_Keymod mod) {
|
||||||
|
unsigned char modifiers = HID_KEYBOARD_MODIFIER_NONE;
|
||||||
|
if (mod & KMOD_LCTRL) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_LEFT_CONTROL;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LSHIFT) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_LEFT_SHIFT;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LALT) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_LEFT_ALT;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LGUI) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_LEFT_GUI;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RCTRL) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_RIGHT_CONTROL;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RSHIFT) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_RIGHT_SHIFT;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RALT) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_RIGHT_ALT;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RGUI) {
|
||||||
|
modifiers |= HID_KEYBOARD_MODIFIER_RIGHT_GUI;
|
||||||
|
}
|
||||||
|
return modifiers;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
send_mod_lock_state(struct hid_keyboard *kb, unsigned lock_mod) {
|
||||||
|
assert(!(lock_mod & ~SC_MOD_MASK));
|
||||||
|
if (!lock_mod) {
|
||||||
|
// Nothing to do
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct hid_event hid_event;
|
||||||
|
hid_event.from_accessory_id = HID_KEYBOARD_ACCESSORY_ID;
|
||||||
|
hid_event.buffer = create_hid_keyboard_event();
|
||||||
|
if (!hid_event.buffer) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
hid_event.size = HID_KEYBOARD_EVENT_SIZE;
|
||||||
|
|
||||||
|
unsigned i = 0;
|
||||||
|
if (lock_mod & SC_MOD_CAPSLOCK) {
|
||||||
|
hid_event.buffer[HID_KEYBOARD_INDEX_KEYS + i] = SC_SCANCODE_CAPSLOCK;
|
||||||
|
++i;
|
||||||
|
}
|
||||||
|
if (lock_mod & SC_MOD_NUMLOCK) {
|
||||||
|
hid_event.buffer[HID_KEYBOARD_INDEX_KEYS + i] = SC_SCANCODE_NUMLOCK;
|
||||||
|
++i;
|
||||||
|
}
|
||||||
|
|
||||||
|
// for (int i = 0; i < HID_KEYBOARD_EVENT_SIZE; ++i)
|
||||||
|
// printf("%02x ", hid_event->buffer[i]);
|
||||||
|
// printf("\n");
|
||||||
|
|
||||||
|
if (!aoa_push_hid_event(kb->aoa, &hid_event)) {
|
||||||
|
LOGW("Could request HID event");
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_hid_keyboard_event(struct hid_keyboard *kb, struct hid_event *hid_event,
|
||||||
|
const SDL_KeyboardEvent *event) {
|
||||||
|
hid_event->buffer = create_hid_keyboard_event();
|
||||||
|
if (!hid_event->buffer) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
hid_event->size = HID_KEYBOARD_EVENT_SIZE;
|
||||||
|
|
||||||
|
unsigned char modifiers = sdl_keymod_to_hid_modifiers(event->keysym.mod);
|
||||||
|
|
||||||
|
SDL_Scancode scancode = event->keysym.scancode;
|
||||||
|
assert(scancode >= 0);
|
||||||
|
if (scancode < HID_KEYBOARD_KEYS) {
|
||||||
|
// Pressed is true and released is false
|
||||||
|
kb->keys[scancode] = (event->type == SDL_KEYDOWN);
|
||||||
|
LOGV("keys[%02x] = %s", scancode,
|
||||||
|
kb->keys[scancode] ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
hid_event->buffer[HID_KEYBOARD_INDEX_MODIFIER] = modifiers;
|
||||||
|
|
||||||
|
// Re-calculate pressed keys every time
|
||||||
|
int keys_pressed_count = 0;
|
||||||
|
for (int i = 0; i < HID_KEYBOARD_KEYS; ++i) {
|
||||||
|
if (kb->keys[i]) {
|
||||||
|
// USB HID protocol says that if keys exceeds report count, a
|
||||||
|
// phantom state should be reported
|
||||||
|
if (keys_pressed_count >= HID_KEYBOARD_MAX_KEYS) {
|
||||||
|
// Pantom state:
|
||||||
|
// - Modifiers
|
||||||
|
// - Reserved
|
||||||
|
// - ErrorRollOver * HID_KEYBOARD_MAX_KEYS
|
||||||
|
memset(&hid_event->buffer[HID_KEYBOARD_INDEX_KEYS],
|
||||||
|
HID_KEYBOARD_ERROR_ROLL_OVER, HID_KEYBOARD_MAX_KEYS);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
hid_event->buffer[HID_KEYBOARD_INDEX_KEYS + keys_pressed_count] = i;
|
||||||
|
++keys_pressed_count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline bool
|
||||||
|
scancode_is_modifier(SDL_Scancode scancode) {
|
||||||
|
return scancode >= SDL_SCANCODE_LCTRL && scancode <= SDL_SCANCODE_RGUI;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
hid_keyboard_convert_event(struct hid_keyboard *kb, struct hid_event *hid_event,
|
||||||
|
const SDL_KeyboardEvent *event) {
|
||||||
|
LOGV(
|
||||||
|
"Type: %s, Repeat: %s, Modifiers: %02x, Key: %02x",
|
||||||
|
event->type == SDL_KEYDOWN ? "down" : "up",
|
||||||
|
event->repeat != 0 ? "true" : "false",
|
||||||
|
sdl_keymod_to_hid_modifiers(event->keysym.mod),
|
||||||
|
event->keysym.scancode
|
||||||
|
);
|
||||||
|
|
||||||
|
hid_event->from_accessory_id = HID_KEYBOARD_ACCESSORY_ID;
|
||||||
|
|
||||||
|
SDL_Scancode scancode = event->keysym.scancode;
|
||||||
|
assert(scancode >= 0);
|
||||||
|
// SDL also generates events when only modifiers are pressed, we cannot
|
||||||
|
// ignore them totally, for example press 'a' first then press 'Control',
|
||||||
|
// if we ignore 'Control' event, only 'a' is sent.
|
||||||
|
if (scancode < HID_KEYBOARD_KEYS || scancode_is_modifier(scancode)) {
|
||||||
|
return convert_hid_keyboard_event(kb, hid_event, event);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_key_processor_process_key(struct sc_key_processor *kp,
|
||||||
|
const SDL_KeyboardEvent *event) {
|
||||||
|
if (event->repeat) {
|
||||||
|
// In USB HID protocol, key repeat is handled by the host (Android), so
|
||||||
|
// just ignore key repeat here.
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct hid_keyboard *kb = DOWNCAST(kp);
|
||||||
|
|
||||||
|
struct hid_event hid_event;
|
||||||
|
// Not all keys are supported, just ignore unsupported keys
|
||||||
|
if (hid_keyboard_convert_event(kb, &hid_event, event)) {
|
||||||
|
if (!aoa_push_hid_event(kb->aoa, &hid_event)) {
|
||||||
|
LOGW("Could request HID event");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_key_processor_process_text(struct sc_key_processor *kp,
|
||||||
|
const SDL_TextInputEvent *event) {
|
||||||
|
(void) kp;
|
||||||
|
(void) event;
|
||||||
|
|
||||||
|
// Never forward text input via HID (all the keys are injected separately)
|
||||||
|
}
|
||||||
|
|
||||||
|
bool
|
||||||
|
hid_keyboard_init(struct hid_keyboard *kb, struct aoa *aoa, unsigned lock_mod) {
|
||||||
|
kb->aoa = aoa;
|
||||||
|
|
||||||
|
// FIXME In practice, sending CAPS_LOCK immediately after fails with a Pipe
|
||||||
|
// error but we must know immediately if this fails or not
|
||||||
|
bool ok = aoa_setup_hid(aoa, HID_KEYBOARD_ACCESSORY_ID,
|
||||||
|
keyboard_report_desc,
|
||||||
|
ARRAY_LEN(keyboard_report_desc));
|
||||||
|
if (!ok) {
|
||||||
|
LOGW("Register HID for keyboard failed");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reset all states
|
||||||
|
memset(kb->keys, false, HID_KEYBOARD_KEYS);
|
||||||
|
|
||||||
|
static const struct sc_key_processor_ops ops = {
|
||||||
|
.process_key = sc_key_processor_process_key,
|
||||||
|
.process_text = sc_key_processor_process_text,
|
||||||
|
};
|
||||||
|
|
||||||
|
kb->key_processor.ops = &ops;
|
||||||
|
|
||||||
|
// FIXME to avoid pipe error
|
||||||
|
usleep(100000);
|
||||||
|
send_mod_lock_state(kb, lock_mod);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
hid_keyboard_destroy(struct hid_keyboard *kb) {
|
||||||
|
// Unregister HID keyboard so the soft keyboard shows again on Android
|
||||||
|
bool ok = aoa_unregister_hid(kb->aoa, HID_KEYBOARD_ACCESSORY_ID);
|
||||||
|
if (!ok) {
|
||||||
|
LOGW("Could not unregister HID");
|
||||||
|
}
|
||||||
|
}
|
48
app/src/hid_keyboard.h
Normal file
48
app/src/hid_keyboard.h
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
#ifndef HID_KEYBOARD_H
|
||||||
|
#define HID_KEYBOARD_H
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include <SDL2/SDL.h>
|
||||||
|
|
||||||
|
#include "aoa_hid.h"
|
||||||
|
#include "trait/key_processor.h"
|
||||||
|
|
||||||
|
// See "SDL2/SDL_scancode.h".
|
||||||
|
// Maybe SDL_Keycode is used by most people, but SDL_Scancode is taken from USB
|
||||||
|
// HID protocol.
|
||||||
|
// 0x65 is Application, typically AT-101 Keyboard ends here.
|
||||||
|
#define HID_KEYBOARD_KEYS 0x66
|
||||||
|
|
||||||
|
#define SC_MOD_MASK 0x3
|
||||||
|
#define SC_MOD_CAPSLOCK 0x1
|
||||||
|
#define SC_MOD_NUMLOCK 0x2
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HID keyboard events are sequence-based, every time keyboard state changes
|
||||||
|
* it sends an array of currently pressed keys, the host is responsible for
|
||||||
|
* compare events and determine which key becomes pressed and which key becomes
|
||||||
|
* released. In order to convert SDL_KeyboardEvent to HID events, we first use
|
||||||
|
* an array of keys to save each keys' state. And when a SDL_KeyboardEvent was
|
||||||
|
* emitted, we updated our state, and then we use a loop to generate HID
|
||||||
|
* events. The sequence of array elements is unimportant and when too much keys
|
||||||
|
* pressed at the same time (more than report count), we should generate
|
||||||
|
* phantom state. Don't forget that modifiers should be updated too, even for
|
||||||
|
* phantom state.
|
||||||
|
*/
|
||||||
|
struct hid_keyboard {
|
||||||
|
struct sc_key_processor key_processor; // key processor trait
|
||||||
|
|
||||||
|
struct aoa *aoa;
|
||||||
|
bool keys[HID_KEYBOARD_KEYS];
|
||||||
|
};
|
||||||
|
|
||||||
|
bool
|
||||||
|
hid_keyboard_init(struct hid_keyboard *kb, struct aoa *aoa, unsigned lock_mod);
|
||||||
|
|
||||||
|
void
|
||||||
|
hid_keyboard_destroy(struct hid_keyboard *kb);
|
||||||
|
|
||||||
|
#endif
|
@ -3,7 +3,6 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <SDL2/SDL_keycode.h>
|
#include <SDL2/SDL_keycode.h>
|
||||||
|
|
||||||
#include "event_converter.h"
|
|
||||||
#include "util/log.h"
|
#include "util/log.h"
|
||||||
|
|
||||||
static const int ACTION_DOWN = 1;
|
static const int ACTION_DOWN = 1;
|
||||||
@ -53,15 +52,18 @@ is_shortcut_mod(struct input_manager *im, uint16_t sdl_mod) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
input_manager_init(struct input_manager *im, struct controller *controller,
|
input_manager_init(struct input_manager *im, struct controller *controller,
|
||||||
struct screen *screen,
|
struct screen *screen, struct sc_key_processor *kp,
|
||||||
|
struct sc_mouse_processor *mp,
|
||||||
const struct scrcpy_options *options) {
|
const struct scrcpy_options *options) {
|
||||||
|
assert(!options->control || (kp && kp->ops));
|
||||||
|
assert(!options->control || (mp && mp->ops));
|
||||||
|
|
||||||
im->controller = controller;
|
im->controller = controller;
|
||||||
im->screen = screen;
|
im->screen = screen;
|
||||||
im->repeat = 0;
|
im->kp = kp;
|
||||||
|
im->mp = mp;
|
||||||
|
|
||||||
im->control = options->control;
|
im->control = options->control;
|
||||||
im->forward_key_repeat = options->forward_key_repeat;
|
|
||||||
im->prefer_text = options->prefer_text;
|
|
||||||
im->forward_all_clicks = options->forward_all_clicks;
|
im->forward_all_clicks = options->forward_all_clicks;
|
||||||
im->legacy_paste = options->legacy_paste;
|
im->legacy_paste = options->legacy_paste;
|
||||||
|
|
||||||
@ -323,26 +325,8 @@ input_manager_process_text_input(struct input_manager *im,
|
|||||||
// A shortcut must never generate text events
|
// A shortcut must never generate text events
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!im->prefer_text) {
|
|
||||||
char c = event->text[0];
|
|
||||||
if (isalpha(c) || c == ' ') {
|
|
||||||
assert(event->text[1] == '\0');
|
|
||||||
// letters and space are handled as raw key event
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct control_msg msg;
|
im->kp->ops->process_text(im->kp, event);
|
||||||
msg.type = CONTROL_MSG_TYPE_INJECT_TEXT;
|
|
||||||
msg.inject_text.text = strdup(event->text);
|
|
||||||
if (!msg.inject_text.text) {
|
|
||||||
LOGW("Could not strdup input text");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!controller_push_msg(im->controller, &msg)) {
|
|
||||||
free(msg.inject_text.text);
|
|
||||||
LOGW("Could not request 'inject text'");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
@ -375,27 +359,6 @@ inverse_point(struct point point, struct size size) {
|
|||||||
return point;
|
return point;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_input_key(const SDL_KeyboardEvent *from, struct control_msg *to,
|
|
||||||
bool prefer_text, uint32_t repeat) {
|
|
||||||
to->type = CONTROL_MSG_TYPE_INJECT_KEYCODE;
|
|
||||||
|
|
||||||
if (!convert_keycode_action(from->type, &to->inject_keycode.action)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint16_t mod = from->keysym.mod;
|
|
||||||
if (!convert_keycode(from->keysym.sym, &to->inject_keycode.keycode, mod,
|
|
||||||
prefer_text)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
to->inject_keycode.repeat = repeat;
|
|
||||||
to->inject_keycode.metastate = convert_meta_state(mod);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
input_manager_process_key(struct input_manager *im,
|
input_manager_process_key(struct input_manager *im,
|
||||||
const SDL_KeyboardEvent *event) {
|
const SDL_KeyboardEvent *event) {
|
||||||
@ -413,6 +376,8 @@ input_manager_process_key(struct input_manager *im,
|
|||||||
|
|
||||||
bool smod = is_shortcut_mod(im, mod);
|
bool smod = is_shortcut_mod(im, mod);
|
||||||
|
|
||||||
|
LOGD("=== %x", (int) mod);
|
||||||
|
|
||||||
if (down && !repeat) {
|
if (down && !repeat) {
|
||||||
if (keycode == im->last_keycode && mod == im->last_mod) {
|
if (keycode == im->last_keycode && mod == im->last_mod) {
|
||||||
++im->key_repeat;
|
++im->key_repeat;
|
||||||
@ -549,15 +514,6 @@ input_manager_process_key(struct input_manager *im,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event->repeat) {
|
|
||||||
if (!im->forward_key_repeat) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
++im->repeat;
|
|
||||||
} else {
|
|
||||||
im->repeat = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ctrl && !shift && keycode == SDLK_v && down && !repeat) {
|
if (ctrl && !shift && keycode == SDLK_v && down && !repeat) {
|
||||||
if (im->legacy_paste) {
|
if (im->legacy_paste) {
|
||||||
// inject the text as input events
|
// inject the text as input events
|
||||||
@ -569,27 +525,7 @@ input_manager_process_key(struct input_manager *im,
|
|||||||
set_device_clipboard(controller, false);
|
set_device_clipboard(controller, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct control_msg msg;
|
im->kp->ops->process_key(im->kp, event);
|
||||||
if (convert_input_key(event, &msg, im->prefer_text, im->repeat)) {
|
|
||||||
if (!controller_push_msg(controller, &msg)) {
|
|
||||||
LOGW("Could not request 'inject keycode'");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_mouse_motion(const SDL_MouseMotionEvent *from, struct screen *screen,
|
|
||||||
struct control_msg *to) {
|
|
||||||
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
|
||||||
to->inject_touch_event.action = AMOTION_EVENT_ACTION_MOVE;
|
|
||||||
to->inject_touch_event.pointer_id = POINTER_ID_MOUSE;
|
|
||||||
to->inject_touch_event.position.screen_size = screen->frame_size;
|
|
||||||
to->inject_touch_event.position.point =
|
|
||||||
screen_convert_window_to_frame_coords(screen, from->x, from->y);
|
|
||||||
to->inject_touch_event.pressure = 1.f;
|
|
||||||
to->inject_touch_event.buttons = convert_mouse_buttons(from->state);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -607,79 +543,22 @@ input_manager_process_mouse_motion(struct input_manager *im,
|
|||||||
// simulated from touch events, so it's a duplicate
|
// simulated from touch events, so it's a duplicate
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
struct control_msg msg;
|
|
||||||
if (!convert_mouse_motion(event, im->screen, &msg)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!controller_push_msg(im->controller, &msg)) {
|
im->mp->ops->process_mouse_motion(im->mp, event);
|
||||||
LOGW("Could not request 'inject mouse motion event'");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (im->vfinger_down) {
|
if (im->vfinger_down) {
|
||||||
struct point mouse = msg.inject_touch_event.position.point;
|
struct point mouse =
|
||||||
|
screen_convert_window_to_frame_coords(im->screen, event->x,
|
||||||
|
event->y);
|
||||||
struct point vfinger = inverse_point(mouse, im->screen->frame_size);
|
struct point vfinger = inverse_point(mouse, im->screen->frame_size);
|
||||||
simulate_virtual_finger(im, AMOTION_EVENT_ACTION_MOVE, vfinger);
|
simulate_virtual_finger(im, AMOTION_EVENT_ACTION_MOVE, vfinger);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_touch(const SDL_TouchFingerEvent *from, struct screen *screen,
|
|
||||||
struct control_msg *to) {
|
|
||||||
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
|
||||||
|
|
||||||
if (!convert_touch_action(from->type, &to->inject_touch_event.action)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
to->inject_touch_event.pointer_id = from->fingerId;
|
|
||||||
to->inject_touch_event.position.screen_size = screen->frame_size;
|
|
||||||
|
|
||||||
int dw;
|
|
||||||
int dh;
|
|
||||||
SDL_GL_GetDrawableSize(screen->window, &dw, &dh);
|
|
||||||
|
|
||||||
// SDL touch event coordinates are normalized in the range [0; 1]
|
|
||||||
int32_t x = from->x * dw;
|
|
||||||
int32_t y = from->y * dh;
|
|
||||||
to->inject_touch_event.position.point =
|
|
||||||
screen_convert_drawable_to_frame_coords(screen, x, y);
|
|
||||||
|
|
||||||
to->inject_touch_event.pressure = from->pressure;
|
|
||||||
to->inject_touch_event.buttons = 0;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
input_manager_process_touch(struct input_manager *im,
|
input_manager_process_touch(struct input_manager *im,
|
||||||
const SDL_TouchFingerEvent *event) {
|
const SDL_TouchFingerEvent *event) {
|
||||||
struct control_msg msg;
|
im->mp->ops->process_touch(im->mp, event);
|
||||||
if (convert_touch(event, im->screen, &msg)) {
|
|
||||||
if (!controller_push_msg(im->controller, &msg)) {
|
|
||||||
LOGW("Could not request 'inject touch event'");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_mouse_button(const SDL_MouseButtonEvent *from, struct screen *screen,
|
|
||||||
struct control_msg *to) {
|
|
||||||
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
|
||||||
|
|
||||||
if (!convert_mouse_action(from->type, &to->inject_touch_event.action)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
to->inject_touch_event.pointer_id = POINTER_ID_MOUSE;
|
|
||||||
to->inject_touch_event.position.screen_size = screen->frame_size;
|
|
||||||
to->inject_touch_event.position.point =
|
|
||||||
screen_convert_window_to_frame_coords(screen, from->x, from->y);
|
|
||||||
to->inject_touch_event.pressure =
|
|
||||||
from->type == SDL_MOUSEBUTTONDOWN ? 1.f : 0.f;
|
|
||||||
to->inject_touch_event.buttons =
|
|
||||||
convert_mouse_buttons(SDL_BUTTON(from->button));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -739,15 +618,7 @@ input_manager_process_mouse_button(struct input_manager *im,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct control_msg msg;
|
im->mp->ops->process_mouse_button(im->mp, event);
|
||||||
if (!convert_mouse_button(event, im->screen, &msg)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!controller_push_msg(im->controller, &msg)) {
|
|
||||||
LOGW("Could not request 'inject mouse button event'");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Pinch-to-zoom simulation.
|
// Pinch-to-zoom simulation.
|
||||||
//
|
//
|
||||||
@ -761,7 +632,9 @@ input_manager_process_mouse_button(struct input_manager *im,
|
|||||||
#define CTRL_PRESSED (SDL_GetModState() & (KMOD_LCTRL | KMOD_RCTRL))
|
#define CTRL_PRESSED (SDL_GetModState() & (KMOD_LCTRL | KMOD_RCTRL))
|
||||||
if ((down && !im->vfinger_down && CTRL_PRESSED)
|
if ((down && !im->vfinger_down && CTRL_PRESSED)
|
||||||
|| (!down && im->vfinger_down)) {
|
|| (!down && im->vfinger_down)) {
|
||||||
struct point mouse = msg.inject_touch_event.position.point;
|
struct point mouse =
|
||||||
|
screen_convert_window_to_frame_coords(im->screen, event->x,
|
||||||
|
event->y);
|
||||||
struct point vfinger = inverse_point(mouse, im->screen->frame_size);
|
struct point vfinger = inverse_point(mouse, im->screen->frame_size);
|
||||||
enum android_motionevent_action action = down
|
enum android_motionevent_action action = down
|
||||||
? AMOTION_EVENT_ACTION_DOWN
|
? AMOTION_EVENT_ACTION_DOWN
|
||||||
@ -773,39 +646,10 @@ input_manager_process_mouse_button(struct input_manager *im,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_mouse_wheel(const SDL_MouseWheelEvent *from, struct screen *screen,
|
|
||||||
struct control_msg *to) {
|
|
||||||
|
|
||||||
// mouse_x and mouse_y are expressed in pixels relative to the window
|
|
||||||
int mouse_x;
|
|
||||||
int mouse_y;
|
|
||||||
SDL_GetMouseState(&mouse_x, &mouse_y);
|
|
||||||
|
|
||||||
struct position position = {
|
|
||||||
.screen_size = screen->frame_size,
|
|
||||||
.point = screen_convert_window_to_frame_coords(screen,
|
|
||||||
mouse_x, mouse_y),
|
|
||||||
};
|
|
||||||
|
|
||||||
to->type = CONTROL_MSG_TYPE_INJECT_SCROLL_EVENT;
|
|
||||||
|
|
||||||
to->inject_scroll_event.position = position;
|
|
||||||
to->inject_scroll_event.hscroll = from->x;
|
|
||||||
to->inject_scroll_event.vscroll = from->y;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
input_manager_process_mouse_wheel(struct input_manager *im,
|
input_manager_process_mouse_wheel(struct input_manager *im,
|
||||||
const SDL_MouseWheelEvent *event) {
|
const SDL_MouseWheelEvent *event) {
|
||||||
struct control_msg msg;
|
im->mp->ops->process_mouse_wheel(im->mp, event);
|
||||||
if (convert_mouse_wheel(event, im->screen, &msg)) {
|
|
||||||
if (!controller_push_msg(im->controller, &msg)) {
|
|
||||||
LOGW("Could not request 'inject mouse wheel event'");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
@ -11,18 +11,17 @@
|
|||||||
#include "fps_counter.h"
|
#include "fps_counter.h"
|
||||||
#include "scrcpy.h"
|
#include "scrcpy.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
|
#include "trait/key_processor.h"
|
||||||
|
#include "trait/mouse_processor.h"
|
||||||
|
|
||||||
struct input_manager {
|
struct input_manager {
|
||||||
struct controller *controller;
|
struct controller *controller;
|
||||||
struct screen *screen;
|
struct screen *screen;
|
||||||
|
|
||||||
// SDL reports repeated events as a boolean, but Android expects the actual
|
struct sc_key_processor *kp;
|
||||||
// number of repetitions. This variable keeps track of the count.
|
struct sc_mouse_processor *mp;
|
||||||
unsigned repeat;
|
|
||||||
|
|
||||||
bool control;
|
bool control;
|
||||||
bool forward_key_repeat;
|
|
||||||
bool prefer_text;
|
|
||||||
bool forward_all_clicks;
|
bool forward_all_clicks;
|
||||||
bool legacy_paste;
|
bool legacy_paste;
|
||||||
|
|
||||||
@ -43,7 +42,9 @@ struct input_manager {
|
|||||||
|
|
||||||
void
|
void
|
||||||
input_manager_init(struct input_manager *im, struct controller *controller,
|
input_manager_init(struct input_manager *im, struct controller *controller,
|
||||||
struct screen *screen, const struct scrcpy_options *options);
|
struct screen *screen, struct sc_key_processor *kp,
|
||||||
|
struct sc_mouse_processor *mp,
|
||||||
|
const struct scrcpy_options *options);
|
||||||
|
|
||||||
bool
|
bool
|
||||||
input_manager_handle_event(struct input_manager *im, SDL_Event *event);
|
input_manager_handle_event(struct input_manager *im, SDL_Event *event);
|
||||||
|
@ -1,9 +1,20 @@
|
|||||||
#include "event_converter.h"
|
#include "keyboard_inject.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <SDL2/SDL_events.h>
|
||||||
|
|
||||||
|
#include "android/input.h"
|
||||||
|
#include "control_msg.h"
|
||||||
|
#include "controller.h"
|
||||||
|
#include "util/log.h"
|
||||||
|
|
||||||
|
/** Downcast key processor to sc_keyboard_inject */
|
||||||
|
#define DOWNCAST(KP) \
|
||||||
|
container_of(KP, struct sc_keyboard_inject, key_processor)
|
||||||
|
|
||||||
#define MAP(FROM, TO) case FROM: *to = TO; return true
|
#define MAP(FROM, TO) case FROM: *to = TO; return true
|
||||||
#define FAIL default: return false
|
#define FAIL default: return false
|
||||||
|
static bool
|
||||||
bool
|
|
||||||
convert_keycode_action(SDL_EventType from, enum android_keyevent_action *to) {
|
convert_keycode_action(SDL_EventType from, enum android_keyevent_action *to) {
|
||||||
switch (from) {
|
switch (from) {
|
||||||
MAP(SDL_KEYDOWN, AKEY_EVENT_ACTION_DOWN);
|
MAP(SDL_KEYDOWN, AKEY_EVENT_ACTION_DOWN);
|
||||||
@ -12,67 +23,7 @@ convert_keycode_action(SDL_EventType from, enum android_keyevent_action *to) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static enum android_metastate
|
static bool
|
||||||
autocomplete_metastate(enum android_metastate metastate) {
|
|
||||||
// fill dependent flags
|
|
||||||
if (metastate & (AMETA_SHIFT_LEFT_ON | AMETA_SHIFT_RIGHT_ON)) {
|
|
||||||
metastate |= AMETA_SHIFT_ON;
|
|
||||||
}
|
|
||||||
if (metastate & (AMETA_CTRL_LEFT_ON | AMETA_CTRL_RIGHT_ON)) {
|
|
||||||
metastate |= AMETA_CTRL_ON;
|
|
||||||
}
|
|
||||||
if (metastate & (AMETA_ALT_LEFT_ON | AMETA_ALT_RIGHT_ON)) {
|
|
||||||
metastate |= AMETA_ALT_ON;
|
|
||||||
}
|
|
||||||
if (metastate & (AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON)) {
|
|
||||||
metastate |= AMETA_META_ON;
|
|
||||||
}
|
|
||||||
|
|
||||||
return metastate;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum android_metastate
|
|
||||||
convert_meta_state(SDL_Keymod mod) {
|
|
||||||
enum android_metastate metastate = 0;
|
|
||||||
if (mod & KMOD_LSHIFT) {
|
|
||||||
metastate |= AMETA_SHIFT_LEFT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_RSHIFT) {
|
|
||||||
metastate |= AMETA_SHIFT_RIGHT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_LCTRL) {
|
|
||||||
metastate |= AMETA_CTRL_LEFT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_RCTRL) {
|
|
||||||
metastate |= AMETA_CTRL_RIGHT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_LALT) {
|
|
||||||
metastate |= AMETA_ALT_LEFT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_RALT) {
|
|
||||||
metastate |= AMETA_ALT_RIGHT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_LGUI) { // Windows key
|
|
||||||
metastate |= AMETA_META_LEFT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_RGUI) { // Windows key
|
|
||||||
metastate |= AMETA_META_RIGHT_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_NUM) {
|
|
||||||
metastate |= AMETA_NUM_LOCK_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_CAPS) {
|
|
||||||
metastate |= AMETA_CAPS_LOCK_ON;
|
|
||||||
}
|
|
||||||
if (mod & KMOD_MODE) { // Alt Gr
|
|
||||||
// no mapping?
|
|
||||||
}
|
|
||||||
|
|
||||||
// fill the dependent fields
|
|
||||||
return autocomplete_metastate(metastate);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
convert_keycode(SDL_Keycode from, enum android_keycode *to, uint16_t mod,
|
convert_keycode(SDL_Keycode from, enum android_keycode *to, uint16_t mod,
|
||||||
bool prefer_text) {
|
bool prefer_text) {
|
||||||
switch (from) {
|
switch (from) {
|
||||||
@ -154,42 +105,150 @@ convert_keycode(SDL_Keycode from, enum android_keycode *to, uint16_t mod,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
enum android_motionevent_buttons
|
static enum android_metastate
|
||||||
convert_mouse_buttons(uint32_t state) {
|
autocomplete_metastate(enum android_metastate metastate) {
|
||||||
enum android_motionevent_buttons buttons = 0;
|
// fill dependent flags
|
||||||
if (state & SDL_BUTTON_LMASK) {
|
if (metastate & (AMETA_SHIFT_LEFT_ON | AMETA_SHIFT_RIGHT_ON)) {
|
||||||
buttons |= AMOTION_EVENT_BUTTON_PRIMARY;
|
metastate |= AMETA_SHIFT_ON;
|
||||||
}
|
}
|
||||||
if (state & SDL_BUTTON_RMASK) {
|
if (metastate & (AMETA_CTRL_LEFT_ON | AMETA_CTRL_RIGHT_ON)) {
|
||||||
buttons |= AMOTION_EVENT_BUTTON_SECONDARY;
|
metastate |= AMETA_CTRL_ON;
|
||||||
}
|
}
|
||||||
if (state & SDL_BUTTON_MMASK) {
|
if (metastate & (AMETA_ALT_LEFT_ON | AMETA_ALT_RIGHT_ON)) {
|
||||||
buttons |= AMOTION_EVENT_BUTTON_TERTIARY;
|
metastate |= AMETA_ALT_ON;
|
||||||
}
|
}
|
||||||
if (state & SDL_BUTTON_X1MASK) {
|
if (metastate & (AMETA_META_LEFT_ON | AMETA_META_RIGHT_ON)) {
|
||||||
buttons |= AMOTION_EVENT_BUTTON_BACK;
|
metastate |= AMETA_META_ON;
|
||||||
}
|
}
|
||||||
if (state & SDL_BUTTON_X2MASK) {
|
|
||||||
buttons |= AMOTION_EVENT_BUTTON_FORWARD;
|
return metastate;
|
||||||
}
|
|
||||||
return buttons;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
static enum android_metastate
|
||||||
convert_mouse_action(SDL_EventType from, enum android_motionevent_action *to) {
|
convert_meta_state(SDL_Keymod mod) {
|
||||||
switch (from) {
|
enum android_metastate metastate = 0;
|
||||||
MAP(SDL_MOUSEBUTTONDOWN, AMOTION_EVENT_ACTION_DOWN);
|
if (mod & KMOD_LSHIFT) {
|
||||||
MAP(SDL_MOUSEBUTTONUP, AMOTION_EVENT_ACTION_UP);
|
metastate |= AMETA_SHIFT_LEFT_ON;
|
||||||
FAIL;
|
}
|
||||||
|
if (mod & KMOD_RSHIFT) {
|
||||||
|
metastate |= AMETA_SHIFT_RIGHT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LCTRL) {
|
||||||
|
metastate |= AMETA_CTRL_LEFT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RCTRL) {
|
||||||
|
metastate |= AMETA_CTRL_RIGHT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LALT) {
|
||||||
|
metastate |= AMETA_ALT_LEFT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RALT) {
|
||||||
|
metastate |= AMETA_ALT_RIGHT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_LGUI) { // Windows key
|
||||||
|
metastate |= AMETA_META_LEFT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_RGUI) { // Windows key
|
||||||
|
metastate |= AMETA_META_RIGHT_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_NUM) {
|
||||||
|
metastate |= AMETA_NUM_LOCK_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_CAPS) {
|
||||||
|
metastate |= AMETA_CAPS_LOCK_ON;
|
||||||
|
}
|
||||||
|
if (mod & KMOD_MODE) { // Alt Gr
|
||||||
|
// no mapping?
|
||||||
|
}
|
||||||
|
|
||||||
|
// fill the dependent fields
|
||||||
|
return autocomplete_metastate(metastate);
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_input_key(const SDL_KeyboardEvent *from, struct control_msg *to,
|
||||||
|
bool prefer_text, uint32_t repeat) {
|
||||||
|
to->type = CONTROL_MSG_TYPE_INJECT_KEYCODE;
|
||||||
|
|
||||||
|
if (!convert_keycode_action(from->type, &to->inject_keycode.action)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint16_t mod = from->keysym.mod;
|
||||||
|
if (!convert_keycode(from->keysym.sym, &to->inject_keycode.keycode, mod,
|
||||||
|
prefer_text)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
to->inject_keycode.repeat = repeat;
|
||||||
|
to->inject_keycode.metastate = convert_meta_state(mod);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_key_processor_process_key(struct sc_key_processor *kp,
|
||||||
|
const SDL_KeyboardEvent *event) {
|
||||||
|
struct sc_keyboard_inject *ki = DOWNCAST(kp);
|
||||||
|
|
||||||
|
if (event->repeat) {
|
||||||
|
if (!ki->forward_key_repeat) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
++ki->repeat;
|
||||||
|
} else {
|
||||||
|
ki->repeat = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
if (convert_input_key(event, &msg, ki->prefer_text, ki->repeat)) {
|
||||||
|
if (!controller_push_msg(ki->controller, &msg)) {
|
||||||
|
LOGW("Could not request 'inject keycode'");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
static void
|
||||||
convert_touch_action(SDL_EventType from, enum android_motionevent_action *to) {
|
sc_key_processor_process_text(struct sc_key_processor *kp,
|
||||||
switch (from) {
|
const SDL_TextInputEvent *event) {
|
||||||
MAP(SDL_FINGERMOTION, AMOTION_EVENT_ACTION_MOVE);
|
struct sc_keyboard_inject *ki = DOWNCAST(kp);
|
||||||
MAP(SDL_FINGERDOWN, AMOTION_EVENT_ACTION_DOWN);
|
|
||||||
MAP(SDL_FINGERUP, AMOTION_EVENT_ACTION_UP);
|
if (!ki->prefer_text) {
|
||||||
FAIL;
|
char c = event->text[0];
|
||||||
|
if (isalpha(c) || c == ' ') {
|
||||||
|
assert(event->text[1] == '\0');
|
||||||
|
// letters and space are handled as raw key event
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
msg.type = CONTROL_MSG_TYPE_INJECT_TEXT;
|
||||||
|
msg.inject_text.text = strdup(event->text);
|
||||||
|
if (!msg.inject_text.text) {
|
||||||
|
LOGW("Could not strdup input text");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!controller_push_msg(ki->controller, &msg)) {
|
||||||
|
free(msg.inject_text.text);
|
||||||
|
LOGW("Could not request 'inject text'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
sc_keyboard_inject_init(struct sc_keyboard_inject *ki,
|
||||||
|
struct controller *controller,
|
||||||
|
const struct scrcpy_options *options) {
|
||||||
|
ki->controller = controller;
|
||||||
|
ki->prefer_text = options->prefer_text;
|
||||||
|
ki->forward_key_repeat = options->forward_key_repeat;
|
||||||
|
|
||||||
|
ki->repeat = 0;
|
||||||
|
|
||||||
|
static const struct sc_key_processor_ops ops = {
|
||||||
|
.process_key = sc_key_processor_process_key,
|
||||||
|
.process_text = sc_key_processor_process_text,
|
||||||
|
};
|
||||||
|
|
||||||
|
ki->key_processor.ops = &ops;
|
||||||
|
}
|
30
app/src/keyboard_inject.h
Normal file
30
app/src/keyboard_inject.h
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
#ifndef SC_KEYBOARD_INJECT_H
|
||||||
|
#define SC_KEYBOARD_INJECT_H
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include "controller.h"
|
||||||
|
#include "scrcpy.h"
|
||||||
|
#include "trait/key_processor.h"
|
||||||
|
|
||||||
|
struct sc_keyboard_inject {
|
||||||
|
struct sc_key_processor key_processor; // key processor trait
|
||||||
|
|
||||||
|
struct controller *controller;
|
||||||
|
|
||||||
|
// SDL reports repeated events as a boolean, but Android expects the actual
|
||||||
|
// number of repetitions. This variable keeps track of the count.
|
||||||
|
unsigned repeat;
|
||||||
|
|
||||||
|
bool prefer_text;
|
||||||
|
bool forward_key_repeat;
|
||||||
|
};
|
||||||
|
|
||||||
|
void
|
||||||
|
sc_keyboard_inject_init(struct sc_keyboard_inject *ki,
|
||||||
|
struct controller *controller,
|
||||||
|
const struct scrcpy_options *options);
|
||||||
|
|
||||||
|
#endif
|
211
app/src/mouse_inject.c
Normal file
211
app/src/mouse_inject.c
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
#include "mouse_inject.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <SDL2/SDL_events.h>
|
||||||
|
|
||||||
|
#include "android/input.h"
|
||||||
|
#include "control_msg.h"
|
||||||
|
#include "controller.h"
|
||||||
|
#include "util/log.h"
|
||||||
|
|
||||||
|
/** Downcast mouse processor to sc_mouse_inject */
|
||||||
|
#define DOWNCAST(MP) container_of(MP, struct sc_mouse_inject, mouse_processor)
|
||||||
|
|
||||||
|
static enum android_motionevent_buttons
|
||||||
|
convert_mouse_buttons(uint32_t state) {
|
||||||
|
enum android_motionevent_buttons buttons = 0;
|
||||||
|
if (state & SDL_BUTTON_LMASK) {
|
||||||
|
buttons |= AMOTION_EVENT_BUTTON_PRIMARY;
|
||||||
|
}
|
||||||
|
if (state & SDL_BUTTON_RMASK) {
|
||||||
|
buttons |= AMOTION_EVENT_BUTTON_SECONDARY;
|
||||||
|
}
|
||||||
|
if (state & SDL_BUTTON_MMASK) {
|
||||||
|
buttons |= AMOTION_EVENT_BUTTON_TERTIARY;
|
||||||
|
}
|
||||||
|
if (state & SDL_BUTTON_X1MASK) {
|
||||||
|
buttons |= AMOTION_EVENT_BUTTON_BACK;
|
||||||
|
}
|
||||||
|
if (state & SDL_BUTTON_X2MASK) {
|
||||||
|
buttons |= AMOTION_EVENT_BUTTON_FORWARD;
|
||||||
|
}
|
||||||
|
return buttons;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define MAP(FROM, TO) case FROM: *to = TO; return true
|
||||||
|
#define FAIL default: return false
|
||||||
|
static bool
|
||||||
|
convert_mouse_action(SDL_EventType from, enum android_motionevent_action *to) {
|
||||||
|
switch (from) {
|
||||||
|
MAP(SDL_MOUSEBUTTONDOWN, AMOTION_EVENT_ACTION_DOWN);
|
||||||
|
MAP(SDL_MOUSEBUTTONUP, AMOTION_EVENT_ACTION_UP);
|
||||||
|
FAIL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_touch_action(SDL_EventType from, enum android_motionevent_action *to) {
|
||||||
|
switch (from) {
|
||||||
|
MAP(SDL_FINGERMOTION, AMOTION_EVENT_ACTION_MOVE);
|
||||||
|
MAP(SDL_FINGERDOWN, AMOTION_EVENT_ACTION_DOWN);
|
||||||
|
MAP(SDL_FINGERUP, AMOTION_EVENT_ACTION_UP);
|
||||||
|
FAIL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_mouse_motion(const SDL_MouseMotionEvent *from, struct screen *screen,
|
||||||
|
struct control_msg *to) {
|
||||||
|
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
||||||
|
to->inject_touch_event.action = AMOTION_EVENT_ACTION_MOVE;
|
||||||
|
to->inject_touch_event.pointer_id = POINTER_ID_MOUSE;
|
||||||
|
to->inject_touch_event.position.screen_size = screen->frame_size;
|
||||||
|
to->inject_touch_event.position.point =
|
||||||
|
screen_convert_window_to_frame_coords(screen, from->x, from->y);
|
||||||
|
to->inject_touch_event.pressure = 1.f;
|
||||||
|
to->inject_touch_event.buttons = convert_mouse_buttons(from->state);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_touch(const SDL_TouchFingerEvent *from, struct screen *screen,
|
||||||
|
struct control_msg *to) {
|
||||||
|
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
||||||
|
|
||||||
|
if (!convert_touch_action(from->type, &to->inject_touch_event.action)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
to->inject_touch_event.pointer_id = from->fingerId;
|
||||||
|
to->inject_touch_event.position.screen_size = screen->frame_size;
|
||||||
|
|
||||||
|
int dw;
|
||||||
|
int dh;
|
||||||
|
SDL_GL_GetDrawableSize(screen->window, &dw, &dh);
|
||||||
|
|
||||||
|
// SDL touch event coordinates are normalized in the range [0; 1]
|
||||||
|
int32_t x = from->x * dw;
|
||||||
|
int32_t y = from->y * dh;
|
||||||
|
to->inject_touch_event.position.point =
|
||||||
|
screen_convert_drawable_to_frame_coords(screen, x, y);
|
||||||
|
|
||||||
|
to->inject_touch_event.pressure = from->pressure;
|
||||||
|
to->inject_touch_event.buttons = 0;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_mouse_button(const SDL_MouseButtonEvent *from, struct screen *screen,
|
||||||
|
struct control_msg *to) {
|
||||||
|
to->type = CONTROL_MSG_TYPE_INJECT_TOUCH_EVENT;
|
||||||
|
|
||||||
|
if (!convert_mouse_action(from->type, &to->inject_touch_event.action)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
to->inject_touch_event.pointer_id = POINTER_ID_MOUSE;
|
||||||
|
to->inject_touch_event.position.screen_size = screen->frame_size;
|
||||||
|
to->inject_touch_event.position.point =
|
||||||
|
screen_convert_window_to_frame_coords(screen, from->x, from->y);
|
||||||
|
to->inject_touch_event.pressure =
|
||||||
|
from->type == SDL_MOUSEBUTTONDOWN ? 1.f : 0.f;
|
||||||
|
to->inject_touch_event.buttons =
|
||||||
|
convert_mouse_buttons(SDL_BUTTON(from->button));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool
|
||||||
|
convert_mouse_wheel(const SDL_MouseWheelEvent *from, struct screen *screen,
|
||||||
|
struct control_msg *to) {
|
||||||
|
|
||||||
|
// mouse_x and mouse_y are expressed in pixels relative to the window
|
||||||
|
int mouse_x;
|
||||||
|
int mouse_y;
|
||||||
|
SDL_GetMouseState(&mouse_x, &mouse_y);
|
||||||
|
|
||||||
|
struct position position = {
|
||||||
|
.screen_size = screen->frame_size,
|
||||||
|
.point = screen_convert_window_to_frame_coords(screen,
|
||||||
|
mouse_x, mouse_y),
|
||||||
|
};
|
||||||
|
|
||||||
|
to->type = CONTROL_MSG_TYPE_INJECT_SCROLL_EVENT;
|
||||||
|
|
||||||
|
to->inject_scroll_event.position = position;
|
||||||
|
to->inject_scroll_event.hscroll = from->x;
|
||||||
|
to->inject_scroll_event.vscroll = from->y;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_mouse_processor_process_mouse_motion(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseMotionEvent *event) {
|
||||||
|
struct sc_mouse_inject *mi = DOWNCAST(mp);
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
if (!convert_mouse_motion(event, mi->screen, &msg)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!controller_push_msg(mi->controller, &msg)) {
|
||||||
|
LOGW("Could not request 'inject mouse motion event'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_mouse_processor_process_touch(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_TouchFingerEvent *event) {
|
||||||
|
struct sc_mouse_inject *mi = DOWNCAST(mp);
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
if (convert_touch(event, mi->screen, &msg)) {
|
||||||
|
if (!controller_push_msg(mi->controller, &msg)) {
|
||||||
|
LOGW("Could not request 'inject touch event'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_mouse_processor_process_mouse_button(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseButtonEvent *event) {
|
||||||
|
struct sc_mouse_inject *mi = DOWNCAST(mp);
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
if (convert_mouse_button(event, mi->screen, &msg)) {
|
||||||
|
if (!controller_push_msg(mi->controller, &msg)) {
|
||||||
|
LOGW("Could not request 'inject mouse button event'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
sc_mouse_processor_process_mouse_wheel(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseWheelEvent *event) {
|
||||||
|
struct sc_mouse_inject *mi = DOWNCAST(mp);
|
||||||
|
|
||||||
|
struct control_msg msg;
|
||||||
|
if (convert_mouse_wheel(event, mi->screen, &msg)) {
|
||||||
|
if (!controller_push_msg(mi->controller, &msg)) {
|
||||||
|
LOGW("Could not request 'inject mouse wheel event'");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
sc_mouse_inject_init(struct sc_mouse_inject *mi, struct controller *controller,
|
||||||
|
struct screen *screen) {
|
||||||
|
mi->controller = controller;
|
||||||
|
mi->screen = screen;
|
||||||
|
|
||||||
|
static const struct sc_mouse_processor_ops ops = {
|
||||||
|
.process_mouse_motion = sc_mouse_processor_process_mouse_motion,
|
||||||
|
.process_touch = sc_mouse_processor_process_touch,
|
||||||
|
.process_mouse_button = sc_mouse_processor_process_mouse_button,
|
||||||
|
.process_mouse_wheel = sc_mouse_processor_process_mouse_wheel,
|
||||||
|
};
|
||||||
|
|
||||||
|
mi->mouse_processor.ops = &ops;
|
||||||
|
}
|
24
app/src/mouse_inject.h
Normal file
24
app/src/mouse_inject.h
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#ifndef SC_MOUSE_INJECT_H
|
||||||
|
#define SC_MOUSE_INJECT_H
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include "controller.h"
|
||||||
|
#include "scrcpy.h"
|
||||||
|
#include "screen.h"
|
||||||
|
#include "trait/mouse_processor.h"
|
||||||
|
|
||||||
|
struct sc_mouse_inject {
|
||||||
|
struct sc_mouse_processor mouse_processor; // mouse processor trait
|
||||||
|
|
||||||
|
struct controller *controller;
|
||||||
|
struct screen *screen;
|
||||||
|
};
|
||||||
|
|
||||||
|
void
|
||||||
|
sc_mouse_inject_init(struct sc_mouse_inject *mi, struct controller *controller,
|
||||||
|
struct screen *screen);
|
||||||
|
|
||||||
|
#endif
|
@ -1,6 +1,8 @@
|
|||||||
#include "recorder.h"
|
#include "recorder.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <libavcodec/avcodec.h>
|
||||||
|
#include <libavformat/avformat.h>
|
||||||
#include <libavutil/time.h>
|
#include <libavutil/time.h>
|
||||||
|
|
||||||
#include "util/log.h"
|
#include "util/log.h"
|
||||||
|
120
app/src/scrcpy.c
120
app/src/scrcpy.c
@ -18,6 +18,11 @@
|
|||||||
#include "events.h"
|
#include "events.h"
|
||||||
#include "file_handler.h"
|
#include "file_handler.h"
|
||||||
#include "input_manager.h"
|
#include "input_manager.h"
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
# include "hid_keyboard.h"
|
||||||
|
#endif
|
||||||
|
#include "keyboard_inject.h"
|
||||||
|
#include "mouse_inject.h"
|
||||||
#include "recorder.h"
|
#include "recorder.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "server.h"
|
#include "server.h"
|
||||||
@ -40,6 +45,16 @@ struct scrcpy {
|
|||||||
#endif
|
#endif
|
||||||
struct controller controller;
|
struct controller controller;
|
||||||
struct file_handler file_handler;
|
struct file_handler file_handler;
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
struct aoa aoa;
|
||||||
|
#endif
|
||||||
|
union {
|
||||||
|
struct sc_keyboard_inject keyboard_inject;
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
struct hid_keyboard keyboard_hid;
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
struct sc_mouse_inject mouse_inject;
|
||||||
struct input_manager input_manager;
|
struct input_manager input_manager;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -239,8 +254,20 @@ stream_on_eos(struct stream *stream, void *userdata) {
|
|||||||
SDL_PushEvent(&stop_event);
|
SDL_PushEvent(&stop_event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static unsigned
|
||||||
|
to_sc_mod(SDL_Keymod sdl_mod) {
|
||||||
|
unsigned mod = 0;
|
||||||
|
if (sdl_mod & KMOD_CAPS) {
|
||||||
|
mod |= SC_MOD_CAPSLOCK;
|
||||||
|
}
|
||||||
|
if (sdl_mod & KMOD_NUM) {
|
||||||
|
mod |= SC_MOD_NUMLOCK;
|
||||||
|
}
|
||||||
|
return mod;
|
||||||
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
scrcpy(const struct scrcpy_options *options) {
|
scrcpy(struct scrcpy_options *options) {
|
||||||
static struct scrcpy scrcpy;
|
static struct scrcpy scrcpy;
|
||||||
struct scrcpy *s = &scrcpy;
|
struct scrcpy *s = &scrcpy;
|
||||||
|
|
||||||
@ -257,6 +284,9 @@ scrcpy(const struct scrcpy_options *options) {
|
|||||||
bool v4l2_sink_initialized = false;
|
bool v4l2_sink_initialized = false;
|
||||||
#endif
|
#endif
|
||||||
bool stream_started = false;
|
bool stream_started = false;
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
bool aoa_hid_initialized = false;
|
||||||
|
#endif
|
||||||
bool controller_initialized = false;
|
bool controller_initialized = false;
|
||||||
bool controller_started = false;
|
bool controller_started = false;
|
||||||
bool screen_initialized = false;
|
bool screen_initialized = false;
|
||||||
@ -412,7 +442,80 @@ scrcpy(const struct scrcpy_options *options) {
|
|||||||
}
|
}
|
||||||
stream_started = true;
|
stream_started = true;
|
||||||
|
|
||||||
input_manager_init(&s->input_manager, &s->controller, &s->screen, options);
|
struct sc_key_processor *kp = NULL;
|
||||||
|
struct sc_mouse_processor *mp = NULL;
|
||||||
|
|
||||||
|
if (options->control) {
|
||||||
|
if (options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_HID) {
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
bool aoa_hid_ok = false;
|
||||||
|
|
||||||
|
char *serialno = NULL;
|
||||||
|
|
||||||
|
const char *serial = options->serial;
|
||||||
|
if (!serial) {
|
||||||
|
serialno = adb_get_serialno();
|
||||||
|
if (!serialno) {
|
||||||
|
LOGE("Could not get device serial");
|
||||||
|
goto aoa_hid_end;
|
||||||
|
}
|
||||||
|
serial = serialno;
|
||||||
|
LOGI("Device serial: %s", serial);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ok = aoa_init(&s->aoa, serial);
|
||||||
|
free(serialno);
|
||||||
|
if (!ok) {
|
||||||
|
goto aoa_hid_end;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!aoa_start(&s->aoa)) {
|
||||||
|
aoa_destroy(&s->aoa);
|
||||||
|
goto aoa_hid_end;
|
||||||
|
}
|
||||||
|
|
||||||
|
// FIXME: SDL_GetModState() always returns 0 here :/
|
||||||
|
unsigned mod = to_sc_mod(SDL_GetModState());
|
||||||
|
if (!hid_keyboard_init(&s->keyboard_hid, &s->aoa, mod)) {
|
||||||
|
aoa_join(&s->aoa);
|
||||||
|
aoa_stop(&s->aoa);
|
||||||
|
aoa_destroy(&s->aoa);
|
||||||
|
goto aoa_hid_end;
|
||||||
|
}
|
||||||
|
|
||||||
|
aoa_hid_ok = true;
|
||||||
|
kp = &s->keyboard_hid.key_processor;
|
||||||
|
|
||||||
|
aoa_hid_initialized = true;
|
||||||
|
|
||||||
|
aoa_hid_end:
|
||||||
|
if (!aoa_hid_ok) {
|
||||||
|
LOGE("Failed to enable HID over AOA, "
|
||||||
|
"fallback to default keyboard injection method "
|
||||||
|
"(-K/--keyboard-hid ignored)");
|
||||||
|
options->keyboard_input_mode = SC_KEYBOARD_INPUT_MODE_INJECT;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
LOGE("HID over AOA is not supported on this platform, "
|
||||||
|
"fallback to default keyboard injection method "
|
||||||
|
"(-K/--keyboard-hid ignored)");
|
||||||
|
options->keyboard_input_mode = SC_KEYBOARD_INPUT_MODE_INJECT;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
// keyboard_input_mode may have been reset if HID mode failed
|
||||||
|
if (options->keyboard_input_mode == SC_KEYBOARD_INPUT_MODE_INJECT) {
|
||||||
|
sc_keyboard_inject_init(&s->keyboard_inject, &s->controller,
|
||||||
|
options);
|
||||||
|
kp = &s->keyboard_inject.key_processor;
|
||||||
|
}
|
||||||
|
|
||||||
|
sc_mouse_inject_init(&s->mouse_inject, &s->controller, &s->screen);
|
||||||
|
mp = &s->mouse_inject.mouse_processor;
|
||||||
|
}
|
||||||
|
|
||||||
|
input_manager_init(&s->input_manager, &s->controller, &s->screen, kp, mp,
|
||||||
|
options);
|
||||||
|
|
||||||
ret = event_loop(s, options);
|
ret = event_loop(s, options);
|
||||||
LOGD("quit...");
|
LOGD("quit...");
|
||||||
@ -424,6 +527,12 @@ scrcpy(const struct scrcpy_options *options) {
|
|||||||
end:
|
end:
|
||||||
// The stream is not stopped explicitly, because it will stop by itself on
|
// The stream is not stopped explicitly, because it will stop by itself on
|
||||||
// end-of-stream
|
// end-of-stream
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
if (aoa_hid_initialized) {
|
||||||
|
hid_keyboard_destroy(&s->keyboard_hid);
|
||||||
|
aoa_stop(&s->aoa);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
if (controller_started) {
|
if (controller_started) {
|
||||||
controller_stop(&s->controller);
|
controller_stop(&s->controller);
|
||||||
}
|
}
|
||||||
@ -451,6 +560,13 @@ end:
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_AOA_HID
|
||||||
|
if (aoa_hid_initialized) {
|
||||||
|
aoa_join(&s->aoa);
|
||||||
|
aoa_destroy(&s->aoa);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Destroy the screen only after the stream is guaranteed to be finished,
|
// Destroy the screen only after the stream is guaranteed to be finished,
|
||||||
// because otherwise the screen could receive new frames after destruction
|
// because otherwise the screen could receive new frames after destruction
|
||||||
if (screen_initialized) {
|
if (screen_initialized) {
|
||||||
|
@ -33,6 +33,11 @@ enum sc_lock_video_orientation {
|
|||||||
SC_LOCK_VIDEO_ORIENTATION_3,
|
SC_LOCK_VIDEO_ORIENTATION_3,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum sc_keyboard_input_mode {
|
||||||
|
SC_KEYBOARD_INPUT_MODE_INJECT,
|
||||||
|
SC_KEYBOARD_INPUT_MODE_HID,
|
||||||
|
};
|
||||||
|
|
||||||
#define SC_MAX_SHORTCUT_MODS 8
|
#define SC_MAX_SHORTCUT_MODS 8
|
||||||
|
|
||||||
enum sc_shortcut_mod {
|
enum sc_shortcut_mod {
|
||||||
@ -68,6 +73,7 @@ struct scrcpy_options {
|
|||||||
const char *v4l2_device;
|
const char *v4l2_device;
|
||||||
enum sc_log_level log_level;
|
enum sc_log_level log_level;
|
||||||
enum sc_record_format record_format;
|
enum sc_record_format record_format;
|
||||||
|
enum sc_keyboard_input_mode keyboard_input_mode;
|
||||||
struct sc_port_range port_range;
|
struct sc_port_range port_range;
|
||||||
struct sc_shortcut_mods shortcut_mods;
|
struct sc_shortcut_mods shortcut_mods;
|
||||||
uint16_t max_size;
|
uint16_t max_size;
|
||||||
@ -112,6 +118,7 @@ struct scrcpy_options {
|
|||||||
.v4l2_device = NULL, \
|
.v4l2_device = NULL, \
|
||||||
.log_level = SC_LOG_LEVEL_INFO, \
|
.log_level = SC_LOG_LEVEL_INFO, \
|
||||||
.record_format = SC_RECORD_FORMAT_AUTO, \
|
.record_format = SC_RECORD_FORMAT_AUTO, \
|
||||||
|
.keyboard_input_mode = SC_KEYBOARD_INPUT_MODE_INJECT, \
|
||||||
.port_range = { \
|
.port_range = { \
|
||||||
.first = DEFAULT_LOCAL_PORT_RANGE_FIRST, \
|
.first = DEFAULT_LOCAL_PORT_RANGE_FIRST, \
|
||||||
.last = DEFAULT_LOCAL_PORT_RANGE_LAST, \
|
.last = DEFAULT_LOCAL_PORT_RANGE_LAST, \
|
||||||
@ -151,6 +158,6 @@ struct scrcpy_options {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
scrcpy(const struct scrcpy_options *options);
|
scrcpy(struct scrcpy_options *options);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "util/process.h"
|
#include "util/process.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
@ -50,65 +51,151 @@ search_executable(const char *file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum process_result
|
enum process_result
|
||||||
process_execute(const char *const argv[], pid_t *pid) {
|
process_execute_redirect(const char *const argv[], pid_t *pid, int *pipe_stdin,
|
||||||
int fd[2];
|
int *pipe_stdout, int *pipe_stderr) {
|
||||||
|
int in[2];
|
||||||
|
int out[2];
|
||||||
|
int err[2];
|
||||||
|
int internal[2]; // communication between parent and children
|
||||||
|
|
||||||
if (pipe(fd) == -1) {
|
if (pipe(internal) == -1) {
|
||||||
perror("pipe");
|
perror("pipe");
|
||||||
return PROCESS_ERROR_GENERIC;
|
return PROCESS_ERROR_GENERIC;
|
||||||
}
|
}
|
||||||
|
if (pipe_stdin) {
|
||||||
enum process_result ret = PROCESS_SUCCESS;
|
if (pipe(in) == -1) {
|
||||||
|
perror("pipe");
|
||||||
|
close(internal[0]);
|
||||||
|
close(internal[1]);
|
||||||
|
return PROCESS_ERROR_GENERIC;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
if (pipe(out) == -1) {
|
||||||
|
perror("pipe");
|
||||||
|
// clean up
|
||||||
|
if (pipe_stdin) {
|
||||||
|
close(in[0]);
|
||||||
|
close(in[1]);
|
||||||
|
}
|
||||||
|
close(internal[0]);
|
||||||
|
close(internal[1]);
|
||||||
|
return PROCESS_ERROR_GENERIC;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
if (pipe(err) == -1) {
|
||||||
|
perror("pipe");
|
||||||
|
// clean up
|
||||||
|
if (pipe_stdout) {
|
||||||
|
close(out[0]);
|
||||||
|
close(out[1]);
|
||||||
|
}
|
||||||
|
if (pipe_stdin) {
|
||||||
|
close(in[0]);
|
||||||
|
close(in[1]);
|
||||||
|
}
|
||||||
|
close(internal[0]);
|
||||||
|
close(internal[1]);
|
||||||
|
return PROCESS_ERROR_GENERIC;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
*pid = fork();
|
*pid = fork();
|
||||||
if (*pid == -1) {
|
if (*pid == -1) {
|
||||||
perror("fork");
|
perror("fork");
|
||||||
ret = PROCESS_ERROR_GENERIC;
|
// clean up
|
||||||
goto end;
|
if (pipe_stderr) {
|
||||||
|
close(err[0]);
|
||||||
|
close(err[1]);
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
close(out[0]);
|
||||||
|
close(out[1]);
|
||||||
|
}
|
||||||
|
if (pipe_stdin) {
|
||||||
|
close(in[0]);
|
||||||
|
close(in[1]);
|
||||||
|
}
|
||||||
|
close(internal[0]);
|
||||||
|
close(internal[1]);
|
||||||
|
return PROCESS_ERROR_GENERIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*pid > 0) {
|
if (*pid == 0) {
|
||||||
// parent close write side
|
if (pipe_stdin) {
|
||||||
close(fd[1]);
|
if (in[0] != STDIN_FILENO) {
|
||||||
fd[1] = -1;
|
dup2(in[0], STDIN_FILENO);
|
||||||
// wait for EOF or receive errno from child
|
close(in[0]);
|
||||||
if (read(fd[0], &ret, sizeof(ret)) == -1) {
|
|
||||||
perror("read");
|
|
||||||
ret = PROCESS_ERROR_GENERIC;
|
|
||||||
goto end;
|
|
||||||
}
|
|
||||||
} else if (*pid == 0) {
|
|
||||||
// child close read side
|
|
||||||
close(fd[0]);
|
|
||||||
if (fcntl(fd[1], F_SETFD, FD_CLOEXEC) == 0) {
|
|
||||||
execvp(argv[0], (char *const *)argv);
|
|
||||||
if (errno == ENOENT) {
|
|
||||||
ret = PROCESS_ERROR_MISSING_BINARY;
|
|
||||||
} else {
|
|
||||||
ret = PROCESS_ERROR_GENERIC;
|
|
||||||
}
|
}
|
||||||
|
close(in[1]);
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
if (out[1] != STDOUT_FILENO) {
|
||||||
|
dup2(out[1], STDOUT_FILENO);
|
||||||
|
close(out[1]);
|
||||||
|
}
|
||||||
|
close(out[0]);
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
if (err[1] != STDERR_FILENO) {
|
||||||
|
dup2(err[1], STDERR_FILENO);
|
||||||
|
close(err[1]);
|
||||||
|
}
|
||||||
|
close(err[0]);
|
||||||
|
}
|
||||||
|
close(internal[0]);
|
||||||
|
enum process_result err;
|
||||||
|
if (fcntl(internal[1], F_SETFD, FD_CLOEXEC) == 0) {
|
||||||
|
execvp(argv[0], (char *const *) argv);
|
||||||
perror("exec");
|
perror("exec");
|
||||||
|
err = errno == ENOENT ? PROCESS_ERROR_MISSING_BINARY
|
||||||
|
: PROCESS_ERROR_GENERIC;
|
||||||
} else {
|
} else {
|
||||||
perror("fcntl");
|
perror("fcntl");
|
||||||
ret = PROCESS_ERROR_GENERIC;
|
err = PROCESS_ERROR_GENERIC;
|
||||||
}
|
}
|
||||||
// send ret to the parent
|
// send err to the parent
|
||||||
if (write(fd[1], &ret, sizeof(ret)) == -1) {
|
if (write(internal[1], &err, sizeof(err)) == -1) {
|
||||||
perror("write");
|
perror("write");
|
||||||
}
|
}
|
||||||
// close write side before exiting
|
close(internal[1]);
|
||||||
close(fd[1]);
|
|
||||||
_exit(1);
|
_exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
end:
|
// parent
|
||||||
if (fd[0] != -1) {
|
assert(*pid > 0);
|
||||||
close(fd[0]);
|
|
||||||
|
close(internal[1]);
|
||||||
|
|
||||||
|
enum process_result res = PROCESS_SUCCESS;
|
||||||
|
// wait for EOF or receive err from child
|
||||||
|
if (read(internal[0], &res, sizeof(res)) == -1) {
|
||||||
|
perror("read");
|
||||||
|
res = PROCESS_ERROR_GENERIC;
|
||||||
}
|
}
|
||||||
if (fd[1] != -1) {
|
|
||||||
close(fd[1]);
|
close(internal[0]);
|
||||||
|
|
||||||
|
if (pipe_stdin) {
|
||||||
|
close(in[0]);
|
||||||
|
*pipe_stdin = in[1];
|
||||||
}
|
}
|
||||||
return ret;
|
if (pipe_stdout) {
|
||||||
|
*pipe_stdout = out[0];
|
||||||
|
close(out[1]);
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
*pipe_stderr = err[0];
|
||||||
|
close(err[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum process_result
|
||||||
|
process_execute(const char *const argv[], pid_t *pid) {
|
||||||
|
return process_execute_redirect(argv, pid, NULL, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
@ -175,3 +262,15 @@ is_regular_file(const char *path) {
|
|||||||
}
|
}
|
||||||
return S_ISREG(path_stat.st_mode);
|
return S_ISREG(path_stat.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
read_pipe(int pipe, char *data, size_t len) {
|
||||||
|
return read(pipe, data, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
close_pipe(int pipe) {
|
||||||
|
if (close(pipe)) {
|
||||||
|
perror("close pipe");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -23,38 +23,129 @@ build_cmd(char *cmd, size_t len, const char *const argv[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
enum process_result
|
enum process_result
|
||||||
process_execute(const char *const argv[], HANDLE *handle) {
|
process_execute_redirect(const char *const argv[], HANDLE *handle,
|
||||||
|
HANDLE *pipe_stdin, HANDLE *pipe_stdout,
|
||||||
|
HANDLE *pipe_stderr) {
|
||||||
|
enum process_result ret = PROCESS_ERROR_GENERIC;
|
||||||
|
|
||||||
|
SECURITY_ATTRIBUTES sa;
|
||||||
|
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
|
||||||
|
sa.lpSecurityDescriptor = NULL;
|
||||||
|
sa.bInheritHandle = TRUE;
|
||||||
|
|
||||||
|
HANDLE stdin_read_handle;
|
||||||
|
HANDLE stdout_write_handle;
|
||||||
|
HANDLE stderr_write_handle;
|
||||||
|
if (pipe_stdin) {
|
||||||
|
if (!CreatePipe(&stdin_read_handle, pipe_stdin, &sa, 0)) {
|
||||||
|
perror("pipe");
|
||||||
|
return PROCESS_ERROR_GENERIC;
|
||||||
|
}
|
||||||
|
if (!SetHandleInformation(*pipe_stdin, HANDLE_FLAG_INHERIT, 0)) {
|
||||||
|
LOGE("SetHandleInformation stdin failed");
|
||||||
|
goto error_close_stdin;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
if (!CreatePipe(pipe_stdout, &stdout_write_handle, &sa, 0)) {
|
||||||
|
perror("pipe");
|
||||||
|
goto error_close_stdin;
|
||||||
|
}
|
||||||
|
if (!SetHandleInformation(*pipe_stdout, HANDLE_FLAG_INHERIT, 0)) {
|
||||||
|
LOGE("SetHandleInformation stdout failed");
|
||||||
|
goto error_close_stdout;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
if (!CreatePipe(pipe_stderr, &stderr_write_handle, &sa, 0)) {
|
||||||
|
perror("pipe");
|
||||||
|
goto error_close_stdout;
|
||||||
|
}
|
||||||
|
if (!SetHandleInformation(*pipe_stderr, HANDLE_FLAG_INHERIT, 0)) {
|
||||||
|
LOGE("SetHandleInformation stderr failed");
|
||||||
|
goto error_close_stderr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
STARTUPINFOW si;
|
STARTUPINFOW si;
|
||||||
PROCESS_INFORMATION pi;
|
PROCESS_INFORMATION pi;
|
||||||
memset(&si, 0, sizeof(si));
|
memset(&si, 0, sizeof(si));
|
||||||
si.cb = sizeof(si);
|
si.cb = sizeof(si);
|
||||||
|
if (pipe_stdin || pipe_stdout || pipe_stderr) {
|
||||||
|
si.dwFlags = STARTF_USESTDHANDLES;
|
||||||
|
if (pipe_stdin) {
|
||||||
|
si.hStdInput = stdin_read_handle;
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
si.hStdOutput = stdout_write_handle;
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
si.hStdError = stderr_write_handle;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
char *cmd = malloc(CMD_MAX_LEN);
|
char *cmd = malloc(CMD_MAX_LEN);
|
||||||
if (!cmd || !build_cmd(cmd, CMD_MAX_LEN, argv)) {
|
if (!cmd || !build_cmd(cmd, CMD_MAX_LEN, argv)) {
|
||||||
*handle = NULL;
|
*handle = NULL;
|
||||||
return PROCESS_ERROR_GENERIC;
|
goto error_close_stderr;
|
||||||
}
|
}
|
||||||
|
|
||||||
wchar_t *wide = utf8_to_wide_char(cmd);
|
wchar_t *wide = utf8_to_wide_char(cmd);
|
||||||
free(cmd);
|
free(cmd);
|
||||||
if (!wide) {
|
if (!wide) {
|
||||||
LOGC("Could not allocate wide char string");
|
LOGC("Could not allocate wide char string");
|
||||||
return PROCESS_ERROR_GENERIC;
|
goto error_close_stderr;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!CreateProcessW(NULL, wide, NULL, NULL, FALSE, 0, NULL, NULL, &si,
|
if (!CreateProcessW(NULL, wide, NULL, NULL, TRUE, 0, NULL, NULL, &si,
|
||||||
&pi)) {
|
&pi)) {
|
||||||
free(wide);
|
free(wide);
|
||||||
*handle = NULL;
|
*handle = NULL;
|
||||||
|
|
||||||
if (GetLastError() == ERROR_FILE_NOT_FOUND) {
|
if (GetLastError() == ERROR_FILE_NOT_FOUND) {
|
||||||
return PROCESS_ERROR_MISSING_BINARY;
|
ret = PROCESS_ERROR_MISSING_BINARY;
|
||||||
}
|
}
|
||||||
return PROCESS_ERROR_GENERIC;
|
goto error_close_stderr;
|
||||||
|
}
|
||||||
|
|
||||||
|
// These handles are used by the child process, close them for this process
|
||||||
|
if (pipe_stdin) {
|
||||||
|
CloseHandle(stdin_read_handle);
|
||||||
|
}
|
||||||
|
if (pipe_stdout) {
|
||||||
|
CloseHandle(stdout_write_handle);
|
||||||
|
}
|
||||||
|
if (pipe_stderr) {
|
||||||
|
CloseHandle(stderr_write_handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
free(wide);
|
free(wide);
|
||||||
*handle = pi.hProcess;
|
*handle = pi.hProcess;
|
||||||
|
|
||||||
return PROCESS_SUCCESS;
|
return PROCESS_SUCCESS;
|
||||||
|
|
||||||
|
error_close_stderr:
|
||||||
|
if (pipe_stderr) {
|
||||||
|
CloseHandle(*pipe_stderr);
|
||||||
|
CloseHandle(stderr_write_handle);
|
||||||
|
}
|
||||||
|
error_close_stdout:
|
||||||
|
if (pipe_stdout) {
|
||||||
|
CloseHandle(*pipe_stdout);
|
||||||
|
CloseHandle(stdout_write_handle);
|
||||||
|
}
|
||||||
|
error_close_stdin:
|
||||||
|
if (pipe_stdin) {
|
||||||
|
CloseHandle(*pipe_stdin);
|
||||||
|
CloseHandle(stdin_read_handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
enum process_result
|
||||||
|
process_execute(const char *const argv[], HANDLE *handle) {
|
||||||
|
return process_execute_redirect(argv, handle, NULL, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
@ -116,3 +207,19 @@ is_regular_file(const char *path) {
|
|||||||
}
|
}
|
||||||
return S_ISREG(path_stat.st_mode);
|
return S_ISREG(path_stat.st_mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
read_pipe(HANDLE pipe, char *data, size_t len) {
|
||||||
|
DWORD r;
|
||||||
|
if (!ReadFile(pipe, data, len, &r, NULL)) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
close_pipe(HANDLE pipe) {
|
||||||
|
if (!CloseHandle(pipe)) {
|
||||||
|
LOGW("Cannot close pipe");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef SC_FRAME_SINK
|
#ifndef SC_FRAME_SINK_H
|
||||||
#define SC_FRAME_SINK
|
#define SC_FRAME_SINK_H
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
|
29
app/src/trait/key_processor.h
Normal file
29
app/src/trait/key_processor.h
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#ifndef SC_KEY_PROCESSOR_H
|
||||||
|
#define SC_KEY_PROCESSOR_H
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include <SDL2/SDL_events.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Key processor trait.
|
||||||
|
*
|
||||||
|
* Component able to process and inject keys should implement this trait.
|
||||||
|
*/
|
||||||
|
struct sc_key_processor {
|
||||||
|
const struct sc_key_processor_ops *ops;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct sc_key_processor_ops {
|
||||||
|
void
|
||||||
|
(*process_key)(struct sc_key_processor *kp, const SDL_KeyboardEvent *event);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*process_text)(struct sc_key_processor *kp,
|
||||||
|
const SDL_TextInputEvent *event);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
39
app/src/trait/mouse_processor.h
Normal file
39
app/src/trait/mouse_processor.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#ifndef SC_MOUSE_PROCESSOR_H
|
||||||
|
#define SC_MOUSE_PROCESSOR_H
|
||||||
|
|
||||||
|
#include "common.h"
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include <SDL2/SDL_events.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mouse processor trait.
|
||||||
|
*
|
||||||
|
* Component able to process and inject mouse events should implement this
|
||||||
|
* trait.
|
||||||
|
*/
|
||||||
|
struct sc_mouse_processor {
|
||||||
|
const struct sc_mouse_processor_ops *ops;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct sc_mouse_processor_ops {
|
||||||
|
void
|
||||||
|
(*process_mouse_motion)(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseMotionEvent *event);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*process_touch)(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_TouchFingerEvent *event);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*process_mouse_button)(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseButtonEvent *event);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*process_mouse_wheel)(struct sc_mouse_processor *mp,
|
||||||
|
const SDL_MouseWheelEvent *event);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -1,5 +1,5 @@
|
|||||||
#ifndef SC_PACKET_SINK
|
#ifndef SC_PACKET_SINK_H
|
||||||
#define SC_PACKET_SINK
|
#define SC_PACKET_SINK_H
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
|
@ -116,9 +116,8 @@ net_send(socket_t socket, const void *buf, size_t len) {
|
|||||||
ssize_t
|
ssize_t
|
||||||
net_send_all(socket_t socket, const void *buf, size_t len) {
|
net_send_all(socket_t socket, const void *buf, size_t len) {
|
||||||
size_t copied = 0;
|
size_t copied = 0;
|
||||||
ssize_t w = 0;
|
|
||||||
while (len > 0) {
|
while (len > 0) {
|
||||||
w = send(socket, buf, len, 0);
|
ssize_t w = send(socket, buf, len, 0);
|
||||||
if (w == -1) {
|
if (w == -1) {
|
||||||
return copied ? (ssize_t) copied : -1;
|
return copied ? (ssize_t) copied : -1;
|
||||||
}
|
}
|
||||||
|
@ -19,3 +19,18 @@ process_check_success(process_t proc, const char *name, bool close) {
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
read_pipe_all(pipe_t pipe, char *data, size_t len) {
|
||||||
|
size_t copied = 0;
|
||||||
|
while (len > 0) {
|
||||||
|
ssize_t r = read_pipe(pipe, data, len);
|
||||||
|
if (r <= 0) {
|
||||||
|
return copied ? (ssize_t) copied : r;
|
||||||
|
}
|
||||||
|
len -= r;
|
||||||
|
data += r;
|
||||||
|
copied += r;
|
||||||
|
}
|
||||||
|
return copied;
|
||||||
|
}
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
# define NO_EXIT_CODE -1u // max value as unsigned
|
# define NO_EXIT_CODE -1u // max value as unsigned
|
||||||
typedef HANDLE process_t;
|
typedef HANDLE process_t;
|
||||||
typedef DWORD exit_code_t;
|
typedef DWORD exit_code_t;
|
||||||
|
typedef HANDLE pipe_t;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
@ -29,6 +30,7 @@
|
|||||||
# define NO_EXIT_CODE -1
|
# define NO_EXIT_CODE -1
|
||||||
typedef pid_t process_t;
|
typedef pid_t process_t;
|
||||||
typedef int exit_code_t;
|
typedef int exit_code_t;
|
||||||
|
typedef int pipe_t;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -42,6 +44,14 @@ enum process_result {
|
|||||||
enum process_result
|
enum process_result
|
||||||
process_execute(const char *const argv[], process_t *process);
|
process_execute(const char *const argv[], process_t *process);
|
||||||
|
|
||||||
|
enum process_result
|
||||||
|
process_execute_redirect(const char *const argv[], process_t *process,
|
||||||
|
pipe_t *pipe_stdin, pipe_t *pipe_stdout,
|
||||||
|
pipe_t *pipe_stderr);
|
||||||
|
|
||||||
|
bool
|
||||||
|
process_terminate(process_t pid);
|
||||||
|
|
||||||
// kill the process
|
// kill the process
|
||||||
bool
|
bool
|
||||||
process_terminate(process_t pid);
|
process_terminate(process_t pid);
|
||||||
@ -78,4 +88,13 @@ get_executable_path(void);
|
|||||||
bool
|
bool
|
||||||
is_regular_file(const char *path);
|
is_regular_file(const char *path);
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
read_pipe(pipe_t pipe, char *data, size_t len);
|
||||||
|
|
||||||
|
ssize_t
|
||||||
|
read_pipe_all(pipe_t pipe, char *data, size_t len);
|
||||||
|
|
||||||
|
void
|
||||||
|
close_pipe(pipe_t pipe);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -183,8 +183,11 @@ sc_v4l2_sink_open(struct sc_v4l2_sink *vs) {
|
|||||||
goto error_mutex_destroy;
|
goto error_mutex_destroy;
|
||||||
}
|
}
|
||||||
|
|
||||||
// FIXME
|
const AVOutputFormat *format = find_muxer("v4l2");
|
||||||
const AVOutputFormat *format = find_muxer("video4linux2,v4l2");
|
if (!format) {
|
||||||
|
// Alternative name
|
||||||
|
format = find_muxer("video4linux2");
|
||||||
|
}
|
||||||
if (!format) {
|
if (!format) {
|
||||||
LOGE("Could not find v4l2 muxer");
|
LOGE("Could not find v4l2 muxer");
|
||||||
goto error_cond_destroy;
|
goto error_cond_destroy;
|
||||||
|
@ -56,17 +56,13 @@ public class ScreenEncoder implements Device.RotationListener {
|
|||||||
|
|
||||||
public void streamScreen(Device device, FileDescriptor fd) throws IOException {
|
public void streamScreen(Device device, FileDescriptor fd) throws IOException {
|
||||||
Workarounds.prepareMainLooper();
|
Workarounds.prepareMainLooper();
|
||||||
|
if (Build.BRAND.equalsIgnoreCase("meizu")) {
|
||||||
try {
|
// <https://github.com/Genymobile/scrcpy/issues/240>
|
||||||
internalStreamScreen(device, fd);
|
// <https://github.com/Genymobile/scrcpy/issues/2656>
|
||||||
} catch (NullPointerException e) {
|
|
||||||
// Retry with workarounds enabled:
|
|
||||||
// <https://github.com/Genymobile/scrcpy/issues/365>
|
|
||||||
// <https://github.com/Genymobile/scrcpy/issues/940>
|
|
||||||
Ln.d("Applying workarounds to avoid NullPointerException");
|
|
||||||
Workarounds.fillAppInfo();
|
Workarounds.fillAppInfo();
|
||||||
internalStreamScreen(device, fd);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internalStreamScreen(device, fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void internalStreamScreen(Device device, FileDescriptor fd) throws IOException {
|
private void internalStreamScreen(Device device, FileDescriptor fd) throws IOException {
|
||||||
|
@ -11,6 +11,7 @@ public class StatusBarManager {
|
|||||||
|
|
||||||
private final IInterface manager;
|
private final IInterface manager;
|
||||||
private Method expandNotificationsPanelMethod;
|
private Method expandNotificationsPanelMethod;
|
||||||
|
private boolean expandNotificationPanelMethodCustomVersion;
|
||||||
private Method expandSettingsPanelMethod;
|
private Method expandSettingsPanelMethod;
|
||||||
private boolean expandSettingsPanelMethodNewVersion = true;
|
private boolean expandSettingsPanelMethodNewVersion = true;
|
||||||
private Method collapsePanelsMethod;
|
private Method collapsePanelsMethod;
|
||||||
@ -21,7 +22,13 @@ public class StatusBarManager {
|
|||||||
|
|
||||||
private Method getExpandNotificationsPanelMethod() throws NoSuchMethodException {
|
private Method getExpandNotificationsPanelMethod() throws NoSuchMethodException {
|
||||||
if (expandNotificationsPanelMethod == null) {
|
if (expandNotificationsPanelMethod == null) {
|
||||||
expandNotificationsPanelMethod = manager.getClass().getMethod("expandNotificationsPanel");
|
try {
|
||||||
|
expandNotificationsPanelMethod = manager.getClass().getMethod("expandNotificationsPanel");
|
||||||
|
} catch (NoSuchMethodException e) {
|
||||||
|
// Custom version for custom vendor ROM: <https://github.com/Genymobile/scrcpy/issues/2551>
|
||||||
|
expandNotificationsPanelMethod = manager.getClass().getMethod("expandNotificationsPanel", int.class);
|
||||||
|
expandNotificationPanelMethodCustomVersion = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return expandNotificationsPanelMethod;
|
return expandNotificationsPanelMethod;
|
||||||
}
|
}
|
||||||
@ -50,7 +57,11 @@ public class StatusBarManager {
|
|||||||
public void expandNotificationsPanel() {
|
public void expandNotificationsPanel() {
|
||||||
try {
|
try {
|
||||||
Method method = getExpandNotificationsPanelMethod();
|
Method method = getExpandNotificationsPanelMethod();
|
||||||
method.invoke(manager);
|
if (expandNotificationPanelMethodCustomVersion) {
|
||||||
|
method.invoke(manager, 0);
|
||||||
|
} else {
|
||||||
|
method.invoke(manager);
|
||||||
|
}
|
||||||
} catch (InvocationTargetException | IllegalAccessException | NoSuchMethodException e) {
|
} catch (InvocationTargetException | IllegalAccessException | NoSuchMethodException e) {
|
||||||
Ln.e("Could not invoke method", e);
|
Ln.e("Could not invoke method", e);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user