2019-12-09 04:35:19 +08:00
|
|
|
#include "cli.h"
|
|
|
|
|
2020-03-27 00:54:06 +08:00
|
|
|
#include <assert.h>
|
2019-12-09 04:35:19 +08:00
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdint.h>
|
2020-06-20 04:04:06 +08:00
|
|
|
#include <stdio.h>
|
2019-12-09 04:35:19 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2020-06-20 04:04:06 +08:00
|
|
|
#include "scrcpy.h"
|
2019-12-09 04:35:19 +08:00
|
|
|
#include "util/log.h"
|
|
|
|
#include "util/str_util.h"
|
|
|
|
|
2021-02-23 05:03:50 +08:00
|
|
|
#define STR_IMPL_(x) #x
|
|
|
|
#define STR(x) STR_IMPL_(x)
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
void
|
|
|
|
scrcpy_print_usage(const char *arg0) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Usage: %s [options]\n"
|
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
"\n"
|
|
|
|
" --always-on-top\n"
|
|
|
|
" Make scrcpy window always on top (above other windows).\n"
|
|
|
|
"\n"
|
|
|
|
" -b, --bit-rate value\n"
|
|
|
|
" Encode the video at the given bit-rate, expressed in bits/s.\n"
|
|
|
|
" Unit suffixes are supported: 'K' (x1000) and 'M' (x1000000).\n"
|
2021-02-23 05:03:50 +08:00
|
|
|
" Default is " STR(DEFAULT_BIT_RATE) ".\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-04-26 20:22:08 +08:00
|
|
|
" --codec-options key[:type]=value[,...]\n"
|
|
|
|
" Set a list of comma-separated key:type=value options for the\n"
|
|
|
|
" device encoder.\n"
|
|
|
|
" The possible values for 'type' are 'int' (default), 'long',\n"
|
|
|
|
" 'float' and 'string'.\n"
|
|
|
|
" The list of possible codec options is available in the\n"
|
|
|
|
" Android documentation:\n"
|
|
|
|
" <https://d.android.com/reference/android/media/MediaFormat>\n"
|
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" --crop width:height:x:y\n"
|
|
|
|
" Crop the device screen on the server.\n"
|
|
|
|
" The values are expressed in the device natural orientation\n"
|
|
|
|
" (typically, portrait for a phone, landscape for a tablet).\n"
|
|
|
|
" Any --max-size value is computed on the cropped size.\n"
|
|
|
|
"\n"
|
2020-06-13 20:10:41 +08:00
|
|
|
" --disable-screensaver\n"
|
|
|
|
" Disable screensaver while scrcpy is running.\n"
|
|
|
|
"\n"
|
2020-02-24 19:16:38 +08:00
|
|
|
" --display id\n"
|
|
|
|
" Specify the display id to mirror.\n"
|
|
|
|
"\n"
|
|
|
|
" The list of possible display ids can be listed by:\n"
|
|
|
|
" adb shell dumpsys display\n"
|
|
|
|
" (search \"mDisplayId=\" in the output)\n"
|
|
|
|
"\n"
|
|
|
|
" Default is 0.\n"
|
|
|
|
"\n"
|
2020-10-12 17:23:06 +08:00
|
|
|
" --encoder name\n"
|
|
|
|
" Use a specific MediaCodec encoder (must be a H.264 encoder).\n"
|
|
|
|
"\n"
|
2020-05-25 05:27:34 +08:00
|
|
|
" --force-adb-forward\n"
|
|
|
|
" Do not attempt to use \"adb reverse\" to connect to the\n"
|
|
|
|
" the device.\n"
|
|
|
|
"\n"
|
2020-10-06 02:45:53 +08:00
|
|
|
" --forward-all-clicks\n"
|
|
|
|
" By default, right-click triggers BACK (or POWER on) and\n"
|
|
|
|
" middle-click triggers HOME. This option disables these\n"
|
|
|
|
" shortcuts and forward the clicks to the device instead.\n"
|
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" -f, --fullscreen\n"
|
|
|
|
" Start in fullscreen.\n"
|
|
|
|
"\n"
|
|
|
|
" -h, --help\n"
|
|
|
|
" Print this help.\n"
|
|
|
|
"\n"
|
2020-10-07 03:30:10 +08:00
|
|
|
" --legacy-paste\n"
|
|
|
|
" Inject computer clipboard text as a sequence of key events\n"
|
|
|
|
" on Ctrl+v (like MOD+Shift+v).\n"
|
|
|
|
" This is a workaround for some devices not behaving as\n"
|
|
|
|
" expected when setting the device clipboard programmatically.\n"
|
|
|
|
"\n"
|
2021-04-20 00:40:48 +08:00
|
|
|
" --lock-video-orientation [value]\n"
|
2020-04-08 18:04:57 +08:00
|
|
|
" Lock video orientation to value.\n"
|
2021-04-20 00:42:20 +08:00
|
|
|
" Possible values are \"unlocked\", \"initial\" (locked to the\n"
|
|
|
|
" initial orientation), 0, 1, 2 and 3.\n"
|
2020-04-08 18:04:57 +08:00
|
|
|
" Natural device orientation is 0, and each increment adds a\n"
|
|
|
|
" 90 degrees rotation counterclockwise.\n"
|
2021-04-20 00:42:20 +08:00
|
|
|
" Default is \"unlocked\".\n"
|
2021-04-20 00:40:48 +08:00
|
|
|
" Passing the option without argument is equivalent to passing\n"
|
|
|
|
" \"initial\".\n"
|
2020-02-16 19:30:36 +08:00
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" --max-fps value\n"
|
2019-12-19 18:49:50 +08:00
|
|
|
" Limit the frame rate of screen capture (officially supported\n"
|
|
|
|
" since Android 10, but may work on earlier versions).\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" -m, --max-size value\n"
|
|
|
|
" Limit both the width and height of the video to value. The\n"
|
|
|
|
" other dimension is computed so that the device aspect-ratio\n"
|
|
|
|
" is preserved.\n"
|
2021-02-23 16:37:16 +08:00
|
|
|
" Default is 0 (unlimited).\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" -n, --no-control\n"
|
|
|
|
" Disable device control (mirror the device in read-only).\n"
|
|
|
|
"\n"
|
|
|
|
" -N, --no-display\n"
|
|
|
|
" Do not display device (only when screen recording is\n"
|
|
|
|
" enabled).\n"
|
|
|
|
"\n"
|
2020-10-01 21:06:34 +08:00
|
|
|
" --no-key-repeat\n"
|
|
|
|
" Do not forward repeated key events when a key is held down.\n"
|
|
|
|
"\n"
|
2020-04-12 05:55:29 +08:00
|
|
|
" --no-mipmaps\n"
|
|
|
|
" If the renderer is OpenGL 3.0+ or OpenGL ES 2.0+, then\n"
|
|
|
|
" mipmaps are automatically generated to improve downscaling\n"
|
|
|
|
" quality. This option disables the generation of mipmaps.\n"
|
|
|
|
"\n"
|
2019-12-10 04:16:09 +08:00
|
|
|
" -p, --port port[:port]\n"
|
|
|
|
" Set the TCP port (range) used by the client to listen.\n"
|
2021-02-23 05:03:50 +08:00
|
|
|
" Default is " STR(DEFAULT_LOCAL_PORT_RANGE_FIRST) ":"
|
|
|
|
STR(DEFAULT_LOCAL_PORT_RANGE_LAST) ".\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" --prefer-text\n"
|
|
|
|
" Inject alpha characters and space as text events instead of\n"
|
|
|
|
" key events.\n"
|
|
|
|
" This avoids issues when combining multiple keys to enter a\n"
|
|
|
|
" special character, but breaks the expected behavior of alpha\n"
|
|
|
|
" keys in games (typically WASD).\n"
|
|
|
|
"\n"
|
|
|
|
" --push-target path\n"
|
|
|
|
" Set the target directory for pushing files to the device by\n"
|
|
|
|
" drag & drop. It is passed as-is to \"adb push\".\n"
|
|
|
|
" Default is \"/sdcard/\".\n"
|
|
|
|
"\n"
|
|
|
|
" -r, --record file.mp4\n"
|
|
|
|
" Record screen to file.\n"
|
|
|
|
" The format is determined by the --record-format option if\n"
|
|
|
|
" set, or by the file extension (.mp4 or .mkv).\n"
|
|
|
|
"\n"
|
|
|
|
" --record-format format\n"
|
|
|
|
" Force recording format (either mp4 or mkv).\n"
|
|
|
|
"\n"
|
2020-04-11 20:34:41 +08:00
|
|
|
" --render-driver name\n"
|
|
|
|
" Request SDL to use the given render driver (this is just a\n"
|
|
|
|
" hint).\n"
|
|
|
|
" Supported names are currently \"direct3d\", \"opengl\",\n"
|
|
|
|
" \"opengles2\", \"opengles\", \"metal\" and \"software\".\n"
|
|
|
|
" <https://wiki.libsdl.org/SDL_HINT_RENDER_DRIVER>\n"
|
|
|
|
"\n"
|
2020-04-08 16:17:12 +08:00
|
|
|
" --rotation value\n"
|
|
|
|
" Set the initial display rotation.\n"
|
|
|
|
" Possibles values are 0, 1, 2 and 3. Each increment adds a 90\n"
|
|
|
|
" degrees rotation counterclockwise.\n"
|
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" -s, --serial serial\n"
|
|
|
|
" The device serial number. Mandatory only if several devices\n"
|
|
|
|
" are connected to adb.\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" --shortcut-mod key[+...]][,...]\n"
|
|
|
|
" Specify the modifiers to use for scrcpy shortcuts.\n"
|
|
|
|
" Possible keys are \"lctrl\", \"rctrl\", \"lalt\", \"ralt\",\n"
|
|
|
|
" \"lsuper\" and \"rsuper\".\n"
|
|
|
|
"\n"
|
|
|
|
" A shortcut can consist in several keys, separated by '+'.\n"
|
|
|
|
" Several shortcuts can be specified, separated by ','.\n"
|
|
|
|
"\n"
|
|
|
|
" For example, to use either LCtrl+LAlt or LSuper for scrcpy\n"
|
|
|
|
" shortcuts, pass \"lctrl+lalt,lsuper\".\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" Default is \"lalt,lsuper\" (left-Alt or left-Super).\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" -S, --turn-screen-off\n"
|
|
|
|
" Turn the device screen off immediately.\n"
|
|
|
|
"\n"
|
|
|
|
" -t, --show-touches\n"
|
2020-05-02 05:49:37 +08:00
|
|
|
" Enable \"show touches\" on start, restore the initial value\n"
|
|
|
|
" on exit.\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" It only shows physical touches (not clicks from scrcpy).\n"
|
|
|
|
"\n"
|
2021-04-04 06:10:44 +08:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
" --v4l2_sink /dev/videoN\n"
|
|
|
|
" Output to v4l2loopback device.\n"
|
|
|
|
" It requires to lock the video orientation (see\n"
|
|
|
|
" --lock-video-orientation).\n"
|
|
|
|
"\n"
|
|
|
|
#endif
|
2020-05-25 03:51:40 +08:00
|
|
|
" -V, --verbosity value\n"
|
|
|
|
" Set the log level (debug, info, warn or error).\n"
|
|
|
|
#ifndef NDEBUG
|
|
|
|
" Default is debug.\n"
|
|
|
|
#else
|
|
|
|
" Default is info.\n"
|
|
|
|
#endif
|
2021-04-16 23:40:39 +08:00
|
|
|
"\n"
|
|
|
|
" -v, --version\n"
|
|
|
|
" Print the version of scrcpy.\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-05-02 07:54:48 +08:00
|
|
|
" -w, --stay-awake\n"
|
2020-05-29 05:07:28 +08:00
|
|
|
" Keep the device on while scrcpy is running, when the device\n"
|
|
|
|
" is plugged in.\n"
|
2020-05-02 07:54:48 +08:00
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" --window-borderless\n"
|
|
|
|
" Disable window decorations (display borderless window).\n"
|
|
|
|
"\n"
|
|
|
|
" --window-title text\n"
|
|
|
|
" Set a custom window title.\n"
|
|
|
|
"\n"
|
|
|
|
" --window-x value\n"
|
|
|
|
" Set the initial window horizontal position.\n"
|
2020-03-27 00:54:06 +08:00
|
|
|
" Default is \"auto\".\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" --window-y value\n"
|
|
|
|
" Set the initial window vertical position.\n"
|
2020-03-27 00:54:06 +08:00
|
|
|
" Default is \"auto\".\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" --window-width value\n"
|
|
|
|
" Set the initial window width.\n"
|
|
|
|
" Default is 0 (automatic).\n"
|
|
|
|
"\n"
|
|
|
|
" --window-height value\n"
|
|
|
|
" Set the initial window width.\n"
|
|
|
|
" Default is 0 (automatic).\n"
|
|
|
|
"\n"
|
|
|
|
"Shortcuts:\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" In the following list, MOD is the shortcut modifier. By default,\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" it's (left) Alt or (left) Super, but it can be configured by\n"
|
2020-08-16 19:44:42 +08:00
|
|
|
" --shortcut-mod (see above).\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
"\n"
|
|
|
|
" MOD+f\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Switch fullscreen mode\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Left\n"
|
2020-04-08 05:03:23 +08:00
|
|
|
" Rotate display left\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Right\n"
|
2020-04-08 05:03:23 +08:00
|
|
|
" Rotate display right\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+g\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Resize window to 1:1 (pixel-perfect)\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+w\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" Double-click on black borders\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Resize window to remove black borders\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+h\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" Middle-click\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on HOME\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+b\n"
|
|
|
|
" MOD+Backspace\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" Right-click (when screen is on)\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on BACK\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+s\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on APP_SWITCH\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+m\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on MENU\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Up\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on VOLUME_UP\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Down\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on VOLUME_DOWN\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+p\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Click on POWER (turn screen on/off)\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
|
|
|
" Right-click (when screen is off)\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Power on\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+o\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Turn device screen off (keep mirroring)\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Shift+o\n"
|
2020-05-28 00:18:39 +08:00
|
|
|
" Turn device screen on\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+r\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Rotate device screen\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+n\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Expand notification panel\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Shift+n\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Collapse notification panel\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+c\n"
|
|
|
|
" Copy to clipboard (inject COPY keycode, Android >= 7 only)\n"
|
|
|
|
"\n"
|
|
|
|
" MOD+x\n"
|
|
|
|
" Cut to clipboard (inject CUT keycode, Android >= 7 only)\n"
|
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+v\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" Copy computer clipboard to device, then paste (inject PASTE\n"
|
|
|
|
" keycode, Android >= 7 only)\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+Shift+v\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" Inject computer clipboard text as a sequence of key events\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-07-17 06:00:42 +08:00
|
|
|
" MOD+i\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Enable/disable FPS counter (print frames/second in logs)\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
"\n"
|
2020-08-09 22:04:02 +08:00
|
|
|
" Ctrl+click-and-move\n"
|
|
|
|
" Pinch-to-zoom from the center of the screen\n"
|
|
|
|
"\n"
|
2019-12-09 04:35:19 +08:00
|
|
|
" Drag & drop APK file\n"
|
2020-04-08 18:02:15 +08:00
|
|
|
" Install APK from computer\n"
|
2021-02-23 05:03:50 +08:00
|
|
|
"\n", arg0);
|
2019-12-09 04:35:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
parse_integer_arg(const char *s, long *out, bool accept_suffix, long min,
|
|
|
|
long max, const char *name) {
|
|
|
|
long value;
|
|
|
|
bool ok;
|
|
|
|
if (accept_suffix) {
|
|
|
|
ok = parse_integer_with_suffix(s, &value);
|
|
|
|
} else {
|
|
|
|
ok = parse_integer(s, &value);
|
|
|
|
}
|
|
|
|
if (!ok) {
|
|
|
|
LOGE("Could not parse %s: %s", name, s);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value < min || value > max) {
|
|
|
|
LOGE("Could not parse %s: value (%ld) out-of-range (%ld; %ld)",
|
|
|
|
name, value, min, max);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-10 04:16:09 +08:00
|
|
|
static size_t
|
|
|
|
parse_integers_arg(const char *s, size_t max_items, long *out, long min,
|
|
|
|
long max, const char *name) {
|
|
|
|
size_t count = parse_integers(s, ':', max_items, out);
|
|
|
|
if (!count) {
|
|
|
|
LOGE("Could not parse %s: %s", name, s);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < count; ++i) {
|
|
|
|
long value = out[i];
|
|
|
|
if (value < min || value > max) {
|
|
|
|
LOGE("Could not parse %s: value (%ld) out-of-range (%ld; %ld)",
|
|
|
|
name, value, min, max);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
static bool
|
|
|
|
parse_bit_rate(const char *s, uint32_t *bit_rate) {
|
|
|
|
long value;
|
2019-12-10 16:28:27 +08:00
|
|
|
// long may be 32 bits (it is the case on mingw), so do not use more than
|
|
|
|
// 31 bits (long is signed)
|
|
|
|
bool ok = parse_integer_arg(s, &value, true, 0, 0x7FFFFFFF, "bit-rate");
|
2019-12-09 04:35:19 +08:00
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bit_rate = (uint32_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2019-12-10 04:01:14 +08:00
|
|
|
parse_max_size(const char *s, uint16_t *max_size) {
|
2019-12-09 04:35:19 +08:00
|
|
|
long value;
|
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 0xFFFF, "max size");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*max_size = (uint16_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
parse_max_fps(const char *s, uint16_t *max_fps) {
|
|
|
|
long value;
|
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 1000, "max fps");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*max_fps = (uint16_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-16 19:30:36 +08:00
|
|
|
static bool
|
2021-04-20 00:42:20 +08:00
|
|
|
parse_lock_video_orientation(const char *s,
|
|
|
|
enum sc_lock_video_orientation *lock_mode) {
|
2021-04-20 00:40:48 +08:00
|
|
|
if (!s || !strcmp(s, "initial")) {
|
2021-04-20 00:42:20 +08:00
|
|
|
// Without argument, lock the initial orientation
|
|
|
|
*lock_mode = SC_LOCK_VIDEO_ORIENTATION_INITIAL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(s, "unlocked")) {
|
|
|
|
*lock_mode = SC_LOCK_VIDEO_ORIENTATION_UNLOCKED;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-16 19:30:36 +08:00
|
|
|
long value;
|
2021-04-20 00:42:20 +08:00
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 3,
|
2020-02-16 19:30:36 +08:00
|
|
|
"lock video orientation");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-04-20 00:42:20 +08:00
|
|
|
*lock_mode = (enum sc_lock_video_orientation) value;
|
2020-02-16 19:30:36 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-04-08 16:17:12 +08:00
|
|
|
static bool
|
|
|
|
parse_rotation(const char *s, uint8_t *rotation) {
|
|
|
|
long value;
|
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 3, "rotation");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*rotation = (uint8_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
static bool
|
2019-12-10 04:01:14 +08:00
|
|
|
parse_window_position(const char *s, int16_t *position) {
|
2020-03-27 00:54:06 +08:00
|
|
|
// special value for "auto"
|
2020-06-20 04:04:06 +08:00
|
|
|
static_assert(SC_WINDOW_POSITION_UNDEFINED == -0x8000, "unexpected value");
|
2020-03-27 00:54:06 +08:00
|
|
|
|
|
|
|
if (!strcmp(s, "auto")) {
|
2020-06-20 04:04:06 +08:00
|
|
|
*position = SC_WINDOW_POSITION_UNDEFINED;
|
2020-03-27 00:54:06 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
long value;
|
2020-03-27 00:54:06 +08:00
|
|
|
bool ok = parse_integer_arg(s, &value, false, -0x7FFF, 0x7FFF,
|
2019-12-09 04:35:19 +08:00
|
|
|
"window position");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*position = (int16_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2019-12-10 04:01:14 +08:00
|
|
|
parse_window_dimension(const char *s, uint16_t *dimension) {
|
2019-12-09 04:35:19 +08:00
|
|
|
long value;
|
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 0xFFFF,
|
|
|
|
"window dimension");
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dimension = (uint16_t) value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2020-06-20 04:04:06 +08:00
|
|
|
parse_port_range(const char *s, struct sc_port_range *port_range) {
|
2019-12-10 04:16:09 +08:00
|
|
|
long values[2];
|
|
|
|
size_t count = parse_integers_arg(s, 2, values, 0, 0xFFFF, "port");
|
|
|
|
if (!count) {
|
2019-12-09 04:35:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-10 04:16:09 +08:00
|
|
|
uint16_t v0 = (uint16_t) values[0];
|
|
|
|
if (count == 1) {
|
|
|
|
port_range->first = v0;
|
|
|
|
port_range->last = v0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(count == 2);
|
|
|
|
uint16_t v1 = (uint16_t) values[1];
|
|
|
|
if (v0 < v1) {
|
|
|
|
port_range->first = v0;
|
|
|
|
port_range->last = v1;
|
|
|
|
} else {
|
|
|
|
port_range->first = v1;
|
|
|
|
port_range->last = v0;
|
|
|
|
}
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-24 19:16:38 +08:00
|
|
|
static bool
|
2021-01-04 15:16:32 +08:00
|
|
|
parse_display_id(const char *s, uint32_t *display_id) {
|
2020-02-24 19:16:38 +08:00
|
|
|
long value;
|
2021-01-04 15:16:32 +08:00
|
|
|
bool ok = parse_integer_arg(s, &value, false, 0, 0x7FFFFFFF, "display id");
|
2020-02-24 19:16:38 +08:00
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-01-04 15:16:32 +08:00
|
|
|
*display_id = (uint32_t) value;
|
2020-02-24 19:16:38 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-05-25 03:51:40 +08:00
|
|
|
static bool
|
|
|
|
parse_log_level(const char *s, enum sc_log_level *log_level) {
|
|
|
|
if (!strcmp(s, "debug")) {
|
|
|
|
*log_level = SC_LOG_LEVEL_DEBUG;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(s, "info")) {
|
|
|
|
*log_level = SC_LOG_LEVEL_INFO;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(s, "warn")) {
|
|
|
|
*log_level = SC_LOG_LEVEL_WARN;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(s, "error")) {
|
|
|
|
*log_level = SC_LOG_LEVEL_ERROR;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGE("Could not parse log level: %s", s);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-17 06:00:42 +08:00
|
|
|
// item is a list of mod keys separated by '+' (e.g. "lctrl+lalt")
|
|
|
|
// returns a bitwise-or of SC_MOD_* constants (or 0 on error)
|
|
|
|
static unsigned
|
|
|
|
parse_shortcut_mods_item(const char *item, size_t len) {
|
|
|
|
unsigned mod = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
char *plus = strchr(item, '+');
|
|
|
|
// strchr() does not consider the "len" parameter, to it could find an
|
|
|
|
// occurrence too far in the string (there is no strnchr())
|
|
|
|
bool has_plus = plus && plus < item + len;
|
|
|
|
|
|
|
|
assert(!has_plus || plus > item);
|
|
|
|
size_t key_len = has_plus ? (size_t) (plus - item) : len;
|
|
|
|
|
|
|
|
#define STREQ(literal, s, len) \
|
|
|
|
((sizeof(literal)-1 == len) && !memcmp(literal, s, len))
|
|
|
|
|
|
|
|
if (STREQ("lctrl", item, key_len)) {
|
|
|
|
mod |= SC_MOD_LCTRL;
|
|
|
|
} else if (STREQ("rctrl", item, key_len)) {
|
|
|
|
mod |= SC_MOD_RCTRL;
|
|
|
|
} else if (STREQ("lalt", item, key_len)) {
|
|
|
|
mod |= SC_MOD_LALT;
|
|
|
|
} else if (STREQ("ralt", item, key_len)) {
|
|
|
|
mod |= SC_MOD_RALT;
|
|
|
|
} else if (STREQ("lsuper", item, key_len)) {
|
|
|
|
mod |= SC_MOD_LSUPER;
|
|
|
|
} else if (STREQ("rsuper", item, key_len)) {
|
|
|
|
mod |= SC_MOD_RSUPER;
|
|
|
|
} else {
|
2020-08-16 19:52:01 +08:00
|
|
|
LOGE("Unknown modifier key: %.*s "
|
|
|
|
"(must be one of: lctrl, rctrl, lalt, ralt, lsuper, rsuper)",
|
|
|
|
(int) key_len, item);
|
2020-07-17 06:00:42 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#undef STREQ
|
|
|
|
|
|
|
|
if (!has_plus) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
item = plus + 1;
|
|
|
|
assert(len >= key_len + 1);
|
|
|
|
len -= key_len + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
parse_shortcut_mods(const char *s, struct sc_shortcut_mods *mods) {
|
|
|
|
unsigned count = 0;
|
|
|
|
unsigned current = 0;
|
|
|
|
|
|
|
|
// LCtrl+LAlt or RCtrl or LCtrl+RSuper: "lctrl+lalt,rctrl,lctrl+rsuper"
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
char *comma = strchr(s, ',');
|
|
|
|
if (comma && count == SC_MAX_SHORTCUT_MODS - 1) {
|
|
|
|
assert(count < SC_MAX_SHORTCUT_MODS);
|
|
|
|
LOGW("Too many shortcut modifiers alternatives");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(!comma || comma > s);
|
|
|
|
size_t limit = comma ? (size_t) (comma - s) : strlen(s);
|
|
|
|
|
|
|
|
unsigned mod = parse_shortcut_mods_item(s, limit);
|
|
|
|
if (!mod) {
|
|
|
|
LOGE("Invalid modifier keys: %.*s", (int) limit, s);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
mods->data[current++] = mod;
|
|
|
|
++count;
|
|
|
|
|
|
|
|
if (!comma) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = comma + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mods->count = count;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SC_TEST
|
|
|
|
// expose the function to unit-tests
|
|
|
|
bool
|
|
|
|
sc_parse_shortcut_mods(const char *s, struct sc_shortcut_mods *mods) {
|
|
|
|
return parse_shortcut_mods(s, mods);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
static bool
|
2020-06-20 04:04:06 +08:00
|
|
|
parse_record_format(const char *optarg, enum sc_record_format *format) {
|
2019-12-09 04:35:19 +08:00
|
|
|
if (!strcmp(optarg, "mp4")) {
|
2020-06-20 04:04:06 +08:00
|
|
|
*format = SC_RECORD_FORMAT_MP4;
|
2019-12-09 04:35:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!strcmp(optarg, "mkv")) {
|
2020-06-20 04:04:06 +08:00
|
|
|
*format = SC_RECORD_FORMAT_MKV;
|
2019-12-09 04:35:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
LOGE("Unsupported format: %s (expected mp4 or mkv)", optarg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-06-20 04:04:06 +08:00
|
|
|
static enum sc_record_format
|
2019-12-09 04:35:19 +08:00
|
|
|
guess_record_format(const char *filename) {
|
|
|
|
size_t len = strlen(filename);
|
|
|
|
if (len < 4) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
const char *ext = &filename[len - 4];
|
|
|
|
if (!strcmp(ext, ".mp4")) {
|
2020-06-20 04:04:06 +08:00
|
|
|
return SC_RECORD_FORMAT_MP4;
|
2019-12-09 04:35:19 +08:00
|
|
|
}
|
|
|
|
if (!strcmp(ext, ".mkv")) {
|
2020-06-20 04:04:06 +08:00
|
|
|
return SC_RECORD_FORMAT_MKV;
|
2019-12-09 04:35:19 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-02-16 19:30:36 +08:00
|
|
|
#define OPT_RENDER_EXPIRED_FRAMES 1000
|
|
|
|
#define OPT_WINDOW_TITLE 1001
|
|
|
|
#define OPT_PUSH_TARGET 1002
|
|
|
|
#define OPT_ALWAYS_ON_TOP 1003
|
|
|
|
#define OPT_CROP 1004
|
|
|
|
#define OPT_RECORD_FORMAT 1005
|
|
|
|
#define OPT_PREFER_TEXT 1006
|
|
|
|
#define OPT_WINDOW_X 1007
|
|
|
|
#define OPT_WINDOW_Y 1008
|
|
|
|
#define OPT_WINDOW_WIDTH 1009
|
|
|
|
#define OPT_WINDOW_HEIGHT 1010
|
|
|
|
#define OPT_WINDOW_BORDERLESS 1011
|
|
|
|
#define OPT_MAX_FPS 1012
|
|
|
|
#define OPT_LOCK_VIDEO_ORIENTATION 1013
|
2020-02-24 19:16:38 +08:00
|
|
|
#define OPT_DISPLAY_ID 1014
|
2020-04-08 16:17:12 +08:00
|
|
|
#define OPT_ROTATION 1015
|
2020-04-11 20:34:41 +08:00
|
|
|
#define OPT_RENDER_DRIVER 1016
|
2020-04-12 05:55:29 +08:00
|
|
|
#define OPT_NO_MIPMAPS 1017
|
2020-04-26 20:22:08 +08:00
|
|
|
#define OPT_CODEC_OPTIONS 1018
|
2020-05-25 05:27:34 +08:00
|
|
|
#define OPT_FORCE_ADB_FORWARD 1019
|
2020-06-13 20:10:41 +08:00
|
|
|
#define OPT_DISABLE_SCREENSAVER 1020
|
2020-07-17 06:00:42 +08:00
|
|
|
#define OPT_SHORTCUT_MOD 1021
|
2020-07-27 14:26:25 +08:00
|
|
|
#define OPT_NO_KEY_REPEAT 1022
|
2020-10-06 02:45:53 +08:00
|
|
|
#define OPT_FORWARD_ALL_CLICKS 1023
|
2020-10-07 03:30:10 +08:00
|
|
|
#define OPT_LEGACY_PASTE 1024
|
2020-10-12 17:23:06 +08:00
|
|
|
#define OPT_ENCODER_NAME 1025
|
2021-02-21 08:42:04 +08:00
|
|
|
#define OPT_POWER_OFF_ON_CLOSE 1026
|
2021-04-04 06:10:44 +08:00
|
|
|
#define OPT_V4L2_SINK 1027
|
2019-12-09 04:35:19 +08:00
|
|
|
|
|
|
|
bool
|
|
|
|
scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
|
|
|
|
static const struct option long_options[] = {
|
2020-02-16 19:30:36 +08:00
|
|
|
{"always-on-top", no_argument, NULL, OPT_ALWAYS_ON_TOP},
|
|
|
|
{"bit-rate", required_argument, NULL, 'b'},
|
2020-04-26 20:22:08 +08:00
|
|
|
{"codec-options", required_argument, NULL, OPT_CODEC_OPTIONS},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"crop", required_argument, NULL, OPT_CROP},
|
2020-06-13 20:10:41 +08:00
|
|
|
{"disable-screensaver", no_argument, NULL,
|
|
|
|
OPT_DISABLE_SCREENSAVER},
|
2020-02-24 19:16:38 +08:00
|
|
|
{"display", required_argument, NULL, OPT_DISPLAY_ID},
|
2020-10-12 17:23:06 +08:00
|
|
|
{"encoder", required_argument, NULL, OPT_ENCODER_NAME},
|
2020-05-25 05:27:34 +08:00
|
|
|
{"force-adb-forward", no_argument, NULL,
|
|
|
|
OPT_FORCE_ADB_FORWARD},
|
2020-10-06 02:45:53 +08:00
|
|
|
{"forward-all-clicks", no_argument, NULL,
|
|
|
|
OPT_FORWARD_ALL_CLICKS},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"fullscreen", no_argument, NULL, 'f'},
|
|
|
|
{"help", no_argument, NULL, 'h'},
|
2020-10-07 03:30:10 +08:00
|
|
|
{"legacy-paste", no_argument, NULL, OPT_LEGACY_PASTE},
|
2021-04-20 00:40:48 +08:00
|
|
|
{"lock-video-orientation", optional_argument, NULL,
|
2020-02-16 19:30:36 +08:00
|
|
|
OPT_LOCK_VIDEO_ORIENTATION},
|
|
|
|
{"max-fps", required_argument, NULL, OPT_MAX_FPS},
|
|
|
|
{"max-size", required_argument, NULL, 'm'},
|
|
|
|
{"no-control", no_argument, NULL, 'n'},
|
|
|
|
{"no-display", no_argument, NULL, 'N'},
|
2020-07-27 14:26:25 +08:00
|
|
|
{"no-key-repeat", no_argument, NULL, OPT_NO_KEY_REPEAT},
|
2020-10-01 21:06:34 +08:00
|
|
|
{"no-mipmaps", no_argument, NULL, OPT_NO_MIPMAPS},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"port", required_argument, NULL, 'p'},
|
2020-05-02 07:51:35 +08:00
|
|
|
{"prefer-text", no_argument, NULL, OPT_PREFER_TEXT},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"push-target", required_argument, NULL, OPT_PUSH_TARGET},
|
|
|
|
{"record", required_argument, NULL, 'r'},
|
|
|
|
{"record-format", required_argument, NULL, OPT_RECORD_FORMAT},
|
2020-04-11 20:34:41 +08:00
|
|
|
{"render-driver", required_argument, NULL, OPT_RENDER_DRIVER},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"render-expired-frames", no_argument, NULL,
|
|
|
|
OPT_RENDER_EXPIRED_FRAMES},
|
2020-04-11 20:31:14 +08:00
|
|
|
{"rotation", required_argument, NULL, OPT_ROTATION},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"serial", required_argument, NULL, 's'},
|
2020-07-17 06:00:42 +08:00
|
|
|
{"shortcut-mod", required_argument, NULL, OPT_SHORTCUT_MOD},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"show-touches", no_argument, NULL, 't'},
|
2020-05-02 07:54:48 +08:00
|
|
|
{"stay-awake", no_argument, NULL, 'w'},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"turn-screen-off", no_argument, NULL, 'S'},
|
2021-04-04 06:10:44 +08:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
{"v4l2_sink", required_argument, NULL, OPT_V4L2_SINK},
|
|
|
|
#endif
|
2020-05-25 03:51:40 +08:00
|
|
|
{"verbosity", required_argument, NULL, 'V'},
|
2020-02-16 19:30:36 +08:00
|
|
|
{"version", no_argument, NULL, 'v'},
|
|
|
|
{"window-title", required_argument, NULL, OPT_WINDOW_TITLE},
|
|
|
|
{"window-x", required_argument, NULL, OPT_WINDOW_X},
|
|
|
|
{"window-y", required_argument, NULL, OPT_WINDOW_Y},
|
|
|
|
{"window-width", required_argument, NULL, OPT_WINDOW_WIDTH},
|
|
|
|
{"window-height", required_argument, NULL, OPT_WINDOW_HEIGHT},
|
|
|
|
{"window-borderless", no_argument, NULL,
|
|
|
|
OPT_WINDOW_BORDERLESS},
|
2021-02-21 08:42:04 +08:00
|
|
|
{"power-off-on-close", no_argument, NULL,
|
|
|
|
OPT_POWER_OFF_ON_CLOSE},
|
2020-02-16 19:30:36 +08:00
|
|
|
{NULL, 0, NULL, 0 },
|
2019-12-09 04:35:19 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct scrcpy_options *opts = &args->opts;
|
|
|
|
|
2019-12-09 05:11:54 +08:00
|
|
|
optind = 0; // reset to start from the first argument in tests
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
int c;
|
2020-05-25 03:51:40 +08:00
|
|
|
while ((c = getopt_long(argc, argv, "b:c:fF:hm:nNp:r:s:StTvV:w",
|
|
|
|
long_options, NULL)) != -1) {
|
2019-12-09 04:35:19 +08:00
|
|
|
switch (c) {
|
|
|
|
case 'b':
|
|
|
|
if (!parse_bit_rate(optarg, &opts->bit_rate)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
LOGW("Deprecated option -c. Use --crop instead.");
|
|
|
|
// fall through
|
|
|
|
case OPT_CROP:
|
|
|
|
opts->crop = optarg;
|
|
|
|
break;
|
2020-02-24 19:16:38 +08:00
|
|
|
case OPT_DISPLAY_ID:
|
|
|
|
if (!parse_display_id(optarg, &opts->display_id)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2019-12-09 04:35:19 +08:00
|
|
|
case 'f':
|
|
|
|
opts->fullscreen = true;
|
|
|
|
break;
|
|
|
|
case 'F':
|
|
|
|
LOGW("Deprecated option -F. Use --record-format instead.");
|
|
|
|
// fall through
|
|
|
|
case OPT_RECORD_FORMAT:
|
|
|
|
if (!parse_record_format(optarg, &opts->record_format)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
args->help = true;
|
|
|
|
break;
|
|
|
|
case OPT_MAX_FPS:
|
|
|
|
if (!parse_max_fps(optarg, &opts->max_fps)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
if (!parse_max_size(optarg, &opts->max_size)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2020-02-16 19:30:36 +08:00
|
|
|
case OPT_LOCK_VIDEO_ORIENTATION:
|
2021-04-20 00:42:20 +08:00
|
|
|
if (!parse_lock_video_orientation(optarg,
|
|
|
|
&opts->lock_video_orientation)) {
|
2020-02-16 19:30:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2019-12-09 04:35:19 +08:00
|
|
|
case 'n':
|
|
|
|
opts->control = false;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
opts->display = false;
|
|
|
|
break;
|
|
|
|
case 'p':
|
2019-12-10 04:16:09 +08:00
|
|
|
if (!parse_port_range(optarg, &opts->port_range)) {
|
2019-12-09 04:35:19 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
opts->record_filename = optarg;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
opts->serial = optarg;
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
opts->turn_screen_off = true;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
opts->show_touches = true;
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
LOGW("Deprecated option -T. Use --always-on-top instead.");
|
|
|
|
// fall through
|
|
|
|
case OPT_ALWAYS_ON_TOP:
|
|
|
|
opts->always_on_top = true;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
args->version = true;
|
|
|
|
break;
|
2020-05-25 03:51:40 +08:00
|
|
|
case 'V':
|
|
|
|
if (!parse_log_level(optarg, &opts->log_level)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2020-05-02 07:54:48 +08:00
|
|
|
case 'w':
|
|
|
|
opts->stay_awake = true;
|
|
|
|
break;
|
2019-12-09 04:35:19 +08:00
|
|
|
case OPT_RENDER_EXPIRED_FRAMES:
|
2021-04-11 21:01:05 +08:00
|
|
|
LOGW("Option --render-expired-frames has been removed. This "
|
|
|
|
"flag has been ignored.");
|
2019-12-09 04:35:19 +08:00
|
|
|
break;
|
|
|
|
case OPT_WINDOW_TITLE:
|
|
|
|
opts->window_title = optarg;
|
|
|
|
break;
|
|
|
|
case OPT_WINDOW_X:
|
|
|
|
if (!parse_window_position(optarg, &opts->window_x)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OPT_WINDOW_Y:
|
|
|
|
if (!parse_window_position(optarg, &opts->window_y)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OPT_WINDOW_WIDTH:
|
|
|
|
if (!parse_window_dimension(optarg, &opts->window_width)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OPT_WINDOW_HEIGHT:
|
|
|
|
if (!parse_window_dimension(optarg, &opts->window_height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OPT_WINDOW_BORDERLESS:
|
|
|
|
opts->window_borderless = true;
|
|
|
|
break;
|
|
|
|
case OPT_PUSH_TARGET:
|
|
|
|
opts->push_target = optarg;
|
|
|
|
break;
|
|
|
|
case OPT_PREFER_TEXT:
|
|
|
|
opts->prefer_text = true;
|
|
|
|
break;
|
2020-04-08 16:17:12 +08:00
|
|
|
case OPT_ROTATION:
|
|
|
|
if (!parse_rotation(optarg, &opts->rotation)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2020-04-11 20:34:41 +08:00
|
|
|
case OPT_RENDER_DRIVER:
|
|
|
|
opts->render_driver = optarg;
|
|
|
|
break;
|
2020-04-12 05:55:29 +08:00
|
|
|
case OPT_NO_MIPMAPS:
|
|
|
|
opts->mipmaps = false;
|
|
|
|
break;
|
2020-07-27 14:26:25 +08:00
|
|
|
case OPT_NO_KEY_REPEAT:
|
|
|
|
opts->forward_key_repeat = false;
|
|
|
|
break;
|
2020-04-26 20:22:08 +08:00
|
|
|
case OPT_CODEC_OPTIONS:
|
|
|
|
opts->codec_options = optarg;
|
|
|
|
break;
|
2020-10-12 17:23:06 +08:00
|
|
|
case OPT_ENCODER_NAME:
|
|
|
|
opts->encoder_name = optarg;
|
|
|
|
break;
|
2020-05-25 05:27:34 +08:00
|
|
|
case OPT_FORCE_ADB_FORWARD:
|
|
|
|
opts->force_adb_forward = true;
|
|
|
|
break;
|
2020-06-13 20:10:41 +08:00
|
|
|
case OPT_DISABLE_SCREENSAVER:
|
|
|
|
opts->disable_screensaver = true;
|
|
|
|
break;
|
2020-07-17 06:00:42 +08:00
|
|
|
case OPT_SHORTCUT_MOD:
|
|
|
|
if (!parse_shortcut_mods(optarg, &opts->shortcut_mods)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
2020-10-06 02:45:53 +08:00
|
|
|
case OPT_FORWARD_ALL_CLICKS:
|
|
|
|
opts->forward_all_clicks = true;
|
|
|
|
break;
|
2020-10-07 03:30:10 +08:00
|
|
|
case OPT_LEGACY_PASTE:
|
|
|
|
opts->legacy_paste = true;
|
|
|
|
break;
|
2021-02-21 08:42:04 +08:00
|
|
|
case OPT_POWER_OFF_ON_CLOSE:
|
|
|
|
opts->power_off_on_close = true;
|
|
|
|
break;
|
2021-04-04 06:10:44 +08:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
case OPT_V4L2_SINK:
|
|
|
|
opts->v4l2_device = optarg;
|
|
|
|
break;
|
|
|
|
#endif
|
2019-12-09 04:35:19 +08:00
|
|
|
default:
|
|
|
|
// getopt prints the error message on stderr
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-04 06:10:44 +08:00
|
|
|
#ifdef HAVE_V4L2
|
|
|
|
if (!opts->display && !opts->record_filename && !opts->v4l2_device) {
|
|
|
|
LOGE("-N/--no-display requires either screen recording (-r/--record)"
|
|
|
|
" or sink to v4l2loopback device (--v4l2_sink)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts->v4l2_device && opts->lock_video_orientation
|
|
|
|
== SC_LOCK_VIDEO_ORIENTATION_UNLOCKED) {
|
|
|
|
LOGI("Video orientation is locked for v4l2 sink. "
|
|
|
|
"See --lock-video-orientation.");
|
|
|
|
opts->lock_video_orientation = SC_LOCK_VIDEO_ORIENTATION_INITIAL;
|
|
|
|
}
|
|
|
|
#else
|
2019-12-09 04:35:19 +08:00
|
|
|
if (!opts->display && !opts->record_filename) {
|
|
|
|
LOGE("-N/--no-display requires screen recording (-r/--record)");
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-04 06:10:44 +08:00
|
|
|
#endif
|
2019-12-09 04:35:19 +08:00
|
|
|
|
|
|
|
int index = optind;
|
|
|
|
if (index < argc) {
|
|
|
|
LOGE("Unexpected additional argument: %s", argv[index]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts->record_format && !opts->record_filename) {
|
|
|
|
LOGE("Record format specified without recording");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts->record_filename && !opts->record_format) {
|
|
|
|
opts->record_format = guess_record_format(opts->record_filename);
|
|
|
|
if (!opts->record_format) {
|
|
|
|
LOGE("No format specified for \"%s\" (try with -F mkv)",
|
|
|
|
opts->record_filename);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!opts->control && opts->turn_screen_off) {
|
|
|
|
LOGE("Could not request to turn screen off if control is disabled");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-02 07:54:48 +08:00
|
|
|
if (!opts->control && opts->stay_awake) {
|
|
|
|
LOGE("Could not request to stay awake if control is disabled");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-09 04:35:19 +08:00
|
|
|
return true;
|
|
|
|
}
|