2018-01-22 18:22:31 +08:00
|
|
|
#include "command.h"
|
|
|
|
|
|
|
|
#include <SDL2/SDL_log.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2018-01-23 22:46:34 +08:00
|
|
|
#define SOCKET_NAME "scrcpy"
|
|
|
|
|
|
|
|
process_t push_server(const char *serial) {
|
|
|
|
const char *server_jar_path = getenv("SCRCPY_SERVER_JAR");
|
|
|
|
if (!server_jar_path) {
|
|
|
|
server_jar_path = "scrcpy-server.jar";
|
|
|
|
}
|
|
|
|
return adb_push(serial, server_jar_path, "/data/local/tmp/");
|
|
|
|
}
|
|
|
|
|
|
|
|
process_t enable_tunnel(const char *serial, Uint16 local_port) {
|
|
|
|
return adb_reverse(serial, SOCKET_NAME, local_port);
|
|
|
|
}
|
|
|
|
|
|
|
|
process_t disable_tunnel(const char *serial) {
|
|
|
|
return adb_reverse_remove(serial, SOCKET_NAME);
|
|
|
|
}
|
|
|
|
|
2018-01-22 18:22:31 +08:00
|
|
|
process_t start_server(const char *serial) {
|
|
|
|
const char *const cmd[] = {
|
|
|
|
"shell",
|
|
|
|
"CLASSPATH=/data/local/tmp/scrcpy-server.jar",
|
|
|
|
"app_process",
|
|
|
|
"/system/bin",
|
|
|
|
"com.genymobile.scrcpy.ScrCpyServer"
|
|
|
|
};
|
|
|
|
return adb_execute(serial, cmd, sizeof(cmd) / sizeof(cmd[0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
void stop_server(process_t server) {
|
|
|
|
if (!cmd_terminate(server)) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_SYSTEM, "Could not terminate server: %s", strerror(errno));
|
|
|
|
}
|
|
|
|
}
|