Skip to content

Instantly share code, notes, and snippets.

@loochek
Last active October 18, 2022 22:28
Show Gist options
  • Save loochek/f0d875fb8c2adcb92431e13868cbd079 to your computer and use it in GitHub Desktop.
Save loochek/f0d875fb8c2adcb92431e13868cbd079 to your computer and use it in GitHub Desktop.
Vpad integration in selkies-gstreamer (modified src/selkies_gstreamer/webrtc_input.py, commit 238bcc7438ae781a7d55bc7c1ebdad51dd4adb55)
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from Xlib import display
from Xlib.ext import xfixes
import base64
import pynput
import io
import uinput
import msgpack
import re
import os
import subprocess
from subprocess import Popen, PIPE, STDOUT
import socket
import time
import stat
import struct
from PIL import Image
import logging
logger = logging.getLogger("webrtc_input")
logger.setLevel(logging.INFO)
JS_BTNS = (
uinput.BTN_GAMEPAD,
uinput.BTN_EAST,
uinput.BTN_NORTH,
uinput.BTN_WEST,
uinput.BTN_TL,
uinput.BTN_TR,
uinput.BTN_SELECT,
uinput.BTN_START,
uinput.BTN_THUMBL,
uinput.BTN_THUMBR,
uinput.BTN_MODE,
)
JS_AXES = (
uinput.ABS_X + (-32768, 32767, 0, 0),
uinput.ABS_Y + (-32768, 32767, 0, 0),
uinput.ABS_RX + (-32768, 32767, 0, 0),
uinput.ABS_RY + (-32768, 32767, 0, 0),
uinput.ABS_Z + (-32768, 32767, 0, 0),
uinput.ABS_RZ + (-32768, 32767, 0, 0),
uinput.ABS_HAT0X + (-1, 1, 0, 0),
uinput.ABS_HAT0Y + (-1, 1, 0, 0),
)
# Local enumerations for mouse actions.
MOUSE_POSITION = 10
MOUSE_MOVE = 11
MOUSE_SCROLL_UP = 20
MOUSE_SCROLL_DOWN = 21
MOUSE_BUTTON_PRESS = 30
MOUSE_BUTTON_RELEASE = 31
MOUSE_BUTTON = 40
MOUSE_BUTTON_LEFT = 41
MOUSE_BUTTON_MIDDLE = 42
MOUSE_BUTTON_RIGHT = 43
# Local map for uinput and pynput buttons
MOUSE_BUTTON_MAP = {
MOUSE_BUTTON_LEFT: {
"uinput": uinput.BTN_LEFT,
"pynput": pynput.mouse.Button.left,
},
MOUSE_BUTTON_MIDDLE: {
"uinput": uinput.BTN_MIDDLE,
"pynput": pynput.mouse.Button.middle,
},
MOUSE_BUTTON_RIGHT: {
"uinput": uinput.BTN_RIGHT,
"pynput": pynput.mouse.Button.right,
},
}
# ---------------------------------------
# Vpad defines
# ---------------------------------------
FIFO_PATH = "/tmp/vpad"
# Vpad buttons masks
VPAD_BUTTON_UP = 0x0001
VPAD_BUTTON_DOWN = 0x0002
VPAD_BUTTON_LEFT = 0x0004
VPAD_BUTTON_RIGHT = 0x0008
VPAD_BUTTON_START = 0x0010
VPAD_BUTTON_BACK = 0x0020
VPAD_BUTTON_LEFT_THUMB = 0x0040
VPAD_BUTTON_RIGHT_THUMB = 0x0080
VPAD_BUTTON_LEFT_SHOULDER = 0x0100
VPAD_BUTTON_RIGHT_SHOULDER = 0x0200
VPAD_BUTTON_GUIDE = 0x0400
VPAD_BUTTON_A = 0x1000
VPAD_BUTTON_B = 0x2000
VPAD_BUTTON_Y = 0x8000
VPAD_BUTTON_X = 0x4000
# Vpad events
VPAD_DUMMY_EVENT = 0
VPAD_BUTTONS_PRESS = 1
VPAD_BUTTONS_RELEASE = 2
VPAD_LEFT_TRIGGER_MOVE = 3
VPAD_RIGHT_TRIGGER_MOVE = 4
VPAD_STICK_LX_MOVE = 5
VPAD_STICK_LY_MOVE = 6
VPAD_STICK_RX_MOVE = 7
VPAD_STICK_RY_MOVE = 8
# Vpad mapping
js2vpad_buttons = {
304: VPAD_BUTTON_A,
305: VPAD_BUTTON_B,
308: VPAD_BUTTON_Y,
307: VPAD_BUTTON_X,
310: VPAD_BUTTON_LEFT_SHOULDER,
311: VPAD_BUTTON_RIGHT_SHOULDER,
314: VPAD_BUTTON_BACK,
315: VPAD_BUTTON_START,
316: VPAD_BUTTON_GUIDE,
317: VPAD_BUTTON_LEFT_THUMB,
318: VPAD_BUTTON_RIGHT_THUMB
}
js2vpad_axis_st = {
0: VPAD_STICK_LX_MOVE,
3: VPAD_STICK_RX_MOVE
}
js2vpad_axis_bw = {
1: VPAD_STICK_LY_MOVE,
4: VPAD_STICK_RY_MOVE
}
js2vpad_triggers = {
2: VPAD_LEFT_TRIGGER_MOVE,
5: VPAD_RIGHT_TRIGGER_MOVE,
}
ds2vpad_hat = [
{
-1: VPAD_BUTTON_LEFT,
1: VPAD_BUTTON_RIGHT
},
{
-1: VPAD_BUTTON_UP,
1: VPAD_BUTTON_DOWN
}
]
# ---------------------------------------
class WebRTCInputError(Exception):
pass
class WebRTCInput:
# Translates [0; 32767] to [0; 255]
@staticmethod
def vpad_translate_trigger(value):
return int(value / 32767 * 255)
# Translates [-32768; 32767] to [32767; -32768]
@staticmethod
def vpad_flip_axis(value):
return int(-1 - value)
def __init__(self, uinput_mouse_socket_path="", uinput_js_socket_path="", enable_clipboard="", enable_cursors=True):
"""Initializes WebRTC input instance
"""
self.clipboard_running = False
self.uinput_mouse_socket_path = uinput_mouse_socket_path
self.uinput_mouse_socket = None
self.uinput_js_socket_path = uinput_js_socket_path
self.uinput_js_socket = None
self.enable_clipboard = enable_clipboard
self.enable_cursors = enable_cursors
self.cursors_running = False
self.cursor_cache = {}
self.cursor_resize_width = 24
self.cursor_resize_height = 24
self.cursor_debug = os.environ.get("DEBUG_CURSORS", "false").lower() == "true"
self.keyboard = None
self.mouse = None
self.joystick = None
self.xdisplay = None
self.button_mask = 0
self.vpad_pipe_file = None
self.vpad_dpad_last_state = [0, 0]
self.ping_start = None
self.on_video_encoder_bit_rate = lambda bitrate: logger.warn(
'unhandled on_video_encoder_bit_rate')
self.on_audio_encoder_bit_rate = lambda bitrate: logger.warn(
'unhandled on_audio_encoder_bit_rate')
self.on_mouse_pointer_visible = lambda visible: logger.warn(
'unhandled on_mouse_pointer_visible')
self.on_clipboard_read = lambda data: logger.warn(
'unhandled on_clipboard_read')
self.on_set_fps = lambda fps: logger.warn(
'unhandled on_set_fps')
self.on_set_enable_audio = lambda enable_audio: logger.warn(
'unhandled on_set_enable_audio')
self.on_set_enable_resize = lambda enable_resize, res: logger.warn(
'unhandled on_set_enable_resize')
self.on_client_fps = lambda fps: logger.warn(
'unhandled on_client_fps')
self.on_client_latency = lambda latency: logger.warn(
'unhandled on_client_latency')
self.on_resize = lambda res: logger.warn(
'unhandled on_resize')
self.on_ping_response = lambda latency: logger.warn(
'unhandled on_ping_response')
self.on_cursor_change = lambda msg: logger.warn(
'unhandled on_cursor_change')
def __keyboard_connect(self):
self.keyboard = pynput.keyboard.Controller()
def __mouse_connect(self):
if self.uinput_mouse_socket_path:
# Proxy uinput mouse commands through unix domain socket.
logger.info("Connecting to uinput mouse socket: %s" % self.uinput_mouse_socket_path)
self.uinput_mouse_socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
self.mouse = pynput.mouse.Controller()
def __mouse_disconnect(self):
if self.mouse:
del self.mouse
self.mouse = None
def __mouse_emit(self, *args, **kwargs):
if self.uinput_mouse_socket_path:
cmd = {"args": args, "kwargs": kwargs}
data = msgpack.packb(cmd, use_bin_type=True)
self.uinput_mouse_socket.sendto(data, self.uinput_mouse_socket_path)
def __js_connect(self, num_axes, num_buttons):
"""Connect virtual joystick
Arguments:
num_axes {integer} -- number of joystick axes
num_buttons {integer} -- number of joystick buttons\
"""
if not os.path.exists(FIFO_PATH):
logger.error(f"{FIFO_PATH} is not exist!")
logger.error("Seems that Vpad DLL side is not running yet")
logger.error("Start target application in Wine and try again")
raise WebRTCInputError("Unable to initialize Vpad client")
if not stat.S_ISFIFO(os.stat(FIFO_PATH).st_mode):
logger.error(f"{FIFO_PATH} is not a pipe! Make sure that there is no file with that path")
raise WebRTCInputError("Unable to initialize Vpad client")
self.vpad_pipe_file = open(FIFO_PATH, "wb")
logger.info(f"Opened Vpad pipe {FIFO_PATH}")
def __js_disconnect(self):
if self.joystick:
del self.joystick
if self.vpad_pipe_file:
self.vpad_pipe_file.close()
def __js_vpad_send(self, bytes):
self.vpad_pipe_file.write(bytes)
self.vpad_pipe_file.flush()
def __js_emit(self, **kwargs):
if not self.vpad_pipe_file:
return
if "btn_num" in kwargs and "btn_on" in kwargs:
btn_num = kwargs["btn_num"]
btn_on = kwargs["btn_on"]
if btn_on:
self.__js_vpad_send(struct.pack("iHH", VPAD_BUTTONS_PRESS, js2vpad_buttons[btn_num], 0))
else:
self.__js_vpad_send(struct.pack("iHH", VPAD_BUTTONS_RELEASE, js2vpad_buttons[btn_num], 0))
if "axis_num" in kwargs and "axis_val" in kwargs:
axis_num = kwargs["axis_num"]
axis_val = kwargs["axis_val"]
if axis_num in js2vpad_axis_st:
self.__js_vpad_send(struct.pack("ihH", js2vpad_axis_st[axis_num], axis_val, 0))
elif axis_num in js2vpad_axis_bw:
self.__js_vpad_send(struct.pack("ihH", js2vpad_axis_bw[axis_num], self.vpad_flip_axis(axis_val), 0))
elif axis_num in js2vpad_triggers:
self.__js_vpad_send(struct.pack("iBBH", js2vpad_triggers[axis_num], self.vpad_translate_trigger(axis_val), 0, 0))
elif axis_num in [16, 17]:
# dpad axes ^^^^^^
axis_idx = axis_num - 16
if self.vpad_dpad_last_state[axis_idx] != axis_val:
if self.vpad_dpad_last_state[axis_idx] != 0:
self.__js_vpad_send(struct.pack("iHH", VPAD_BUTTONS_RELEASE, ds2vpad_hat[axis_idx][self.vpad_dpad_last_state[axis_idx]], 0))
if axis_val != 0:
self.__js_vpad_send(struct.pack("iHH", VPAD_BUTTONS_PRESS, ds2vpad_hat[axis_idx][axis_val], 0))
self.vpad_dpad_last_state[axis_idx] = axis_val
async def connect(self):
"""Connects to X server
The target X server is determined by the DISPLAY environment variable.
"""
self.xdisplay = display.Display()
self.__keyboard_connect()
# Clear any stuck modifier keys
self.reset_keyboard()
self.__mouse_connect()
def disconnect(self):
self.__js_disconnect()
self.__mouse_disconnect()
def reset_keyboard(self):
"""Resets any stuck modifier keys
"""
logger.info("Resetting keyboard modifiers.")
lctrl = 65507
lshift = 65505
lalt = 65513
rctrl = 65508
rshift = 65506
ralt = 65027
lmeta = 65511
rmeta = 65512
keyf = 102
keyF = 70
keym = 109
keyM = 77
escape = 65307
for k in [lctrl, lshift, lalt, rctrl, rshift, ralt, lmeta, rmeta, keyf, keyF, keym, keyM, escape]:
self.send_x11_keypress(k, down=False)
def send_mouse(self, action, data):
if action == MOUSE_POSITION:
# data is a tuple of (x, y)
# using X11 mouse even when virtual mouse is enabled for non-relative actions.
if self.mouse:
self.mouse.position = data
elif action == MOUSE_MOVE:
# data is a tuple of (x, y)
x, y = data
if self.uinput_mouse_socket_path:
# Send relative motion to uinput device.
# syn=False delays the sync until the second command.
self.__mouse_emit(uinput.REL_X, x, syn=False)
self.__mouse_emit(uinput.REL_Y, y)
else:
self.mouse.move(x, y)
elif action == MOUSE_SCROLL_UP:
# Scroll up
if self.uinput_mouse_socket_path:
self.__mouse_emit(uinput.REL_WHEEL, 1)
else:
self.mouse.scroll(0, -1)
elif action == MOUSE_SCROLL_DOWN:
# Scroll down
if self.uinput_mouse_socket_path:
self.__mouse_emit(uinput.REL_WHEEL, -1)
else:
self.mouse.scroll(0, 1)
elif action == MOUSE_BUTTON:
# Button press/release, data is a tuple of (MOUSE_BUTTON_PRESS|MOUSE_BUTTON_RELEASE, MOUSE_BUTTON_enum)
if self.uinput_mouse_socket_path:
btn = MOUSE_BUTTON_MAP[data[1]]["uinput"]
else:
btn = MOUSE_BUTTON_MAP[data[1]]["pynput"]
if data[0] == MOUSE_BUTTON_PRESS:
if self.uinput_mouse_socket_path:
self.__mouse_emit(btn, 1)
else:
self.mouse.press(btn)
else:
if self.uinput_mouse_socket_path:
self.__mouse_emit(btn, 0)
else:
self.mouse.release(btn)
def send_x11_keypress(self, keysym, down=True):
"""Sends keypress to X server
The key sym is converted to a keycode using the X server library.
Arguments:
keysym {integer} -- the key symbol to send
Keyword Arguments:
down {bool} -- toggle key down or up (default: {True})
"""
# With the Generic 105-key PC layout (default in Linux without a real keyboard), the key '<' is redirected to keycode 94
# Because keycode 94 with Shift pressed is instead the key '>', the keysym for '<' should instead be redirected to ','
# Although prevented in most cases, this fix may present issues in some keyboard layouts
if keysym == 60 and self.keyboard._display.keysym_to_keycode(keysym) == 94:
keysym = 44
keycode = pynput.keyboard.KeyCode(keysym)
if down:
self.keyboard.press(keycode)
else:
self.keyboard.release(keycode)
def send_x11_mouse(self, x, y, button_mask, relative=False):
"""Sends mouse events to the X server.
The mouse button mask is stored locally to keep track of press/release state.
Relative motion is sent to the uninput device for improved tracking.
Arguments:
x {integer} -- mouse position X
y {integer} -- mouse position Y
button_mask {integer} -- mask of 5 mouse buttons, button 1 is at the LSB.
"""
# Mouse motion
if relative:
self.send_mouse(MOUSE_MOVE, (x, y))
else:
self.send_mouse(MOUSE_POSITION, (x, y))
# Button press and release
if button_mask != self.button_mask:
max_buttons = 5
for i in range(0, max_buttons):
if (button_mask ^ self.button_mask) & (1 << i):
action = MOUSE_BUTTON
btn_action = MOUSE_BUTTON_PRESS
btn_num = MOUSE_BUTTON_LEFT
if (button_mask & (1 << i)):
btn_action = MOUSE_BUTTON_PRESS
else:
btn_action = MOUSE_BUTTON_RELEASE
# Remap middle and right buttons in relative mode.
if i == 1:
btn_num = MOUSE_BUTTON_MIDDLE
elif i == 2:
btn_num = MOUSE_BUTTON_RIGHT
elif i == 3:
# Wheel up
action = MOUSE_SCROLL_UP
elif i == 4:
# Wheel down
action = MOUSE_SCROLL_DOWN
data = (btn_action, btn_num)
self.send_mouse(action, data)
# Update the button mask to remember positions.
self.button_mask = button_mask
if not relative:
self.xdisplay.sync()
def read_clipboard(self):
return subprocess.getoutput("xclip -out")
def write_clipboard(self, data):
cmd = ['xclip', '-selection', 'clipboard', '-in']
p = Popen(cmd, stdin=PIPE)
p.communicate(input=data.encode())
p.wait()
def start_clipboard(self):
if self.enable_clipboard in ["true", "out"]:
logger.info("starting clipboard monitor")
self.clipboard_running = True
last_data = ""
while self.clipboard_running:
curr_data = self.read_clipboard()
if curr_data and curr_data != last_data:
logger.info("sending clipboard content, length: %d" % len(curr_data))
self.on_clipboard_read(curr_data)
last_data = curr_data
time.sleep(0.5)
else:
logger.info("skipping outbound clipboard service.")
def stop_clipboard(self):
logger.info("stopping clipboard monitor")
self.clipboard_running = False
def start_cursor_monitor(self):
if not self.xdisplay.has_extension('XFIXES'):
if self.xdisplay.query_extension('XFIXES') is None:
logger.error('XFIXES extension not supported, cannot watch cursor changes')
return
# Ensure patched python-xlib with xfixes support is installed.
# Remove after this PR is merged:
# https://github.com/python-xlib/python-xlib/pull/218
try:
assert self.xdisplay.xfixes_select_cursor_input
except Exception as e:
logger.warning("missing patched python-xlib, remote cursors not available.")
return
xfixes_version = self.xdisplay.xfixes_query_version()
logger.info('Found XFIXES version %s.%s' % (
xfixes_version.major_version,
xfixes_version.minor_version,
))
logger.info("starting cursor monitor")
self.cursor_cache = {}
self.cursors_running = True
screen = self.xdisplay.screen()
self.xdisplay.xfixes_select_cursor_input(screen.root, xfixes.XFixesDisplayCursorNotifyMask)
logger.info("watching for cursor changes")
# Fetch initial cursor
image = self.xdisplay.xfixes_get_cursor_image(screen.root)
self.cursor_cache[image.cursor_serial] = self.cursor_to_msg(image, self.cursor_resize_width, self.cursor_resize_height)
self.on_cursor_change(self.cursor_cache[image.cursor_serial])
while self.cursors_running:
e = self.xdisplay.next_event()
if (e.type, 0) == self.xdisplay.extension_event.DisplayCursorNotify:
cache_key = e.cursor_serial
if cache_key in self.cursor_cache:
if self.cursor_debug:
logger.warning("cursor changed to cached serial: {}".format(cache_key))
else:
# Request the cursor image.
cursor = self.xdisplay.xfixes_get_cursor_image(screen.root)
# Convert cursor image and cache.
self.cursor_cache[cache_key] = self.cursor_to_msg(cursor, self.cursor_resize_width, self.cursor_resize_height)
if self.cursor_debug:
logger.warning("New cursor: position={},{}, size={}x{}, length={}, xyhot={},{}, cursor_serial={}".format(cursor.x, cursor.y, cursor.width,cursor.height, len(cursor.cursor_image), cursor.xhot, cursor.yhot, cursor.cursor_serial))
self.on_cursor_change(self.cursor_cache.get(cache_key))
logger.info("exiting cursor monitor")
def stop_cursor_monitor(self):
logger.info("stopping cursor monitor")
self.cursors_running = False
def cursor_to_msg(self, cursor, target_width, target_height):
png_data_b64 = base64.b64encode(self.cursor_to_png(cursor, target_width, target_height))
xhot_scaled = int(target_width/cursor.width * cursor.xhot)
yhot_scaled = int(target_height/cursor.height * cursor.yhot)
override = None
if sum(cursor.cursor_image) == 0:
override = "none"
return {
"curdata": png_data_b64.decode(),
"handle": cursor.cursor_serial,
"override": override,
"hotspot": {
"x": xhot_scaled,
"y": yhot_scaled,
},
}
def cursor_to_png(self, cursor, resize_width, resize_height):
with io.BytesIO() as f:
# Extract each component to RGBA bytes.
s = [((i >> b) & 0xFF) for i in cursor.cursor_image for b in [16,8,0,24]]
# Create raw image from pixel bytes
im = Image.frombytes('RGBA', (cursor.width,cursor.height), bytes(s), 'raw')
if cursor.width != resize_width or cursor.height != resize_height:
# Resize cursor to target size.
im = im.resize((resize_width, resize_height))
# Save image as PNG
im.save(f, "PNG")
data = f.getvalue()
if self.cursor_debug:
with open("/tmp/cursor_%d.png" % cursor.cursor_serial, 'wb') as debugf:
debugf.write(data)
return data
def on_message(self, msg):
"""Handles incoming input messages
Bound to a data channel, handles input messages.
Message format: <command>,<data>
Supported message commands:
kd: key down event, data is keysym
ku: key up event, data is keysym
m: mouse event, data is csv of: x,y,button mask
b: bitrate event, data is the desired encoder bitrate in bps.
js: joystick connect/disconnect/button/axis event
Arguments:
msg {string} -- the raw data channel message packed in the <command>,<data> format.
"""
toks = msg.split(",")
if toks[0] == "pong":
if self.ping_start is None:
logger.warning('received pong before ping')
return
roundtrip = time.time() - self.ping_start
latency = (roundtrip / 2) * 1000
latency = float("%.3f" % latency)
self.on_ping_response(latency)
elif toks[0] == "kd":
# Key down
self.send_x11_keypress(int(toks[1]), down=True)
elif toks[0] == "ku":
# Key up
self.send_x11_keypress(int(toks[1]), down=False)
elif toks[0] == "kr":
# Keyboard reset
self.reset_keyboard()
elif toks[0] in ["m", "m2"]:
# Mouse action
# x,y,button_mask
relative = False
if toks[0] == "m2":
relative = True
try:
x, y, button_mask = [int(i) for i in toks[1:]]
except:
x, y, button_mask = 0, 0, self.button_mask
relative = False
self.send_x11_mouse(x, y, button_mask, relative)
elif toks[0] == "p":
# toggle mouse pointer visibility
visible = bool(int(toks[1]))
logger.info("Setting pointer visibility to: %s" % str(visible))
self.on_mouse_pointer_visible(visible)
elif toks[0] == "vb":
# Set video bitrate
bitrate = int(toks[1])
logger.info("Setting video bitrate to: %d" % bitrate)
self.on_video_encoder_bit_rate(bitrate)
elif toks[0] == "ab":
# Set audio bitrate
bitrate = int(toks[1])
logger.info("Setting audio bitrate to: %d" % bitrate)
self.on_audio_encoder_bit_rate(bitrate)
elif toks[0] == "js":
# Joystick
# init: i,<type>,<num axes>,<num buttons>
# button: b,<btn_num>,<value>
# axis: a,<axis_num>,<value>
if toks[1] == 'c':
num_axes = int(toks[2])
num_btns = int(toks[3])
try:
self.__js_connect(num_axes, num_btns)
except Exception as e:
logger.error("Failed to initialize joystick: %s", e)
elif toks[1] == 'd':
self.__js_disconnect()
elif toks[1] == 'b':
btn_num = int(toks[2])
btn_on = toks[3] == '1'
self.__js_emit(btn_num=btn_num, btn_on=btn_on)
elif toks[1] == 'a':
axis_num = int(toks[2])
axis_val = int(toks[3])
self.__js_emit(axis_num=axis_num, axis_val=axis_val)
else:
logger.warning('unhandled joystick command: %s' % toks[1])
elif toks[0] == "cr":
# Clipboard read
if self.enable_clipboard in ["true", "out"]:
data = self.read_clipboard()
if data:
logger.info("read clipboard content, length: %d" % len(data))
self.on_clipboard_read(data)
else:
logger.warning("no clipboard content to send")
else:
logger.warning("rejecting clipboard read because outbound clipboard is disabled.")
elif toks[0] == "cw":
# Clipboard write
if self.enable_clipboard in ["true", "in"]:
data = base64.b64decode(toks[1]).decode()
self.write_clipboard(data)
logger.info("set clipboard content, length: %d" % len(data))
else:
logger.warning("rejecting clipboard write because inbound clipboard is disabled.")
elif toks[0] == "r":
# resize event
res = toks[1]
if not re.match(re.compile(r'^\d+x\d+$'), res):
logger.warning("rejecting resolution change, invalid WxH resolution: %s" % res)
# Make sure resolution is divisible by 2
w, h = [int(i) + int(i)%2 for i in res.split("x")]
self.on_resize("%dx%d" % (w, h))
elif toks[0] == "_arg_fps":
# Set framerate
fps = int(toks[1])
logger.info("Setting framerate to: %d" % fps)
self.on_set_fps(fps)
elif toks[0] == "_arg_audio":
# Set audio enabled
enabled = toks[1].lower() == "true"
logger.info("Setting enable_audio to: %s" % str(enabled))
self.on_set_enable_audio(enabled)
elif toks[0] == "_arg_resize":
if len(toks) != 3:
logger.error("invalid _arg_resize commnad, expected 2 arguments <enabled>,<resolution>")
else:
# Set resizing enabled
enabled = toks[1].lower() == "true"
logger.info("Setting enable_resize to : %s" % str(enabled))
res = toks[2]
if re.match(re.compile(r'^\d+x\d+$'), res):
# Make sure resolution is divisible by 2
w, h = [int(i) + int(i)%2 for i in res.split("x")]
enable_res = "%dx%d" % (w, h)
else:
logger.warning("rejecting enable resize with resolution change to invalid resolution: %s" % res)
enable_res = None
self.on_set_enable_resize(enabled, enable_res)
elif toks[0] == "_f":
# Reported FPS from client.
try:
fps = int(toks[1])
self.on_client_fps(fps)
except:
logger.error("failed to parse fps from client: " + str(toks))
elif toks[0] == "_l":
# Reported latency from client.
try:
latencty_ms = int(toks[1])
self.on_client_latency(latencty_ms)
except:
logger.error("failed to parse latency report from client" + str(toks))
else:
logger.info('unknown data channel message: %s' % msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment