kotones-auto-assistant/kotonebot/client/implements/adb_raw.py

104 lines
3.9 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import os
import time
import subprocess
import struct
from threading import Thread
from functools import cached_property
from typing_extensions import override
import cv2
import numpy as np
from cv2.typing import MatLike
from adbutils._utils import adb_path
from .adb import AdbImpl
from ..device import Device
from kotonebot import logging
logger = logging.getLogger(__name__)
WAIT_TIMEOUT = 10
SCRIPT = """#!/bin/sh
while true; do
screencap
sleep 0.3
done
"""
class AdbRawImpl(AdbImpl):
def __init__(self, device: Device):
super().__init__(device)
self.__worker: Thread | None = None
self.__process: subprocess.Popen | None = None
self.__data: MatLike | None = None
def __worker_thread(self) -> None:
with open('screenshot.sh', 'w', encoding='utf-8', newline='\n') as f:
f.write(SCRIPT)
self.adb.push('screenshot.sh', '/data/local/tmp/screenshot.sh')
self.adb.shell(f'chmod 755 /data/local/tmp/screenshot.sh')
os.remove('screenshot.sh')
cmd = fr'{adb_path()} -s {self.adb.serial} exec-out "sh /data/local/tmp/screenshot.sh"'
self.__process = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True)
while self.__process.poll() is None:
if self.__process.stdout is None:
logger.error("Failed to get stdout from process")
continue
# 解析 header
# https://stackoverflow.com/questions/22034959/what-format-does-adb-screencap-sdcard-screenshot-raw-produce-without-p-f
if self.__api_level >= 26:
metadata = self.__process.stdout.read(16)
w, h, p, c = struct.unpack('<IIII', metadata)
# w=width, h=height, p=pixel_format, c=color_space
# 详见https://android.googlesource.com/platform/frameworks/base/+/26a2b97dbe48ee45e9ae70110714048f2f360f97/cmds/screencap/screencap.cpp#209
else:
metadata = self.__process.stdout.read(12)
w, h, p = struct.unpack('<III', metadata)
if p == 1: # PixelFormat.RGBA_8888
channel = 4
else:
raise ValueError(f"Unsupported pixel format: {p}")
data_size = w * h * channel
if (data_size < 100 * 100 * 4) or (data_size > 3000 * 3000 * 4):
raise ValueError(f"Invaild data_size: {w}x{h}.")
# 读取图像数据
# logger.verbose(f"receiving image data: {w}x{h} {data_size} bytes")
image_data = self.__process.stdout.read(data_size)
if not isinstance(image_data, bytes) or len(image_data) != data_size:
logger.error(f"Failed to read image data, expected {data_size} bytes but got {len(image_data) if isinstance(image_data, bytes) else 'non-bytes'}")
continue
np_data = np.frombuffer(image_data, np.uint8)
np_data = np_data.reshape(h, w, channel)
self.__data = cv2.cvtColor(np_data, cv2.COLOR_RGBA2BGR)
@cached_property
def __api_level(self) -> int:
try:
output = self.adb.shell("getprop ro.build.version.sdk")
assert isinstance(output, str)
return int(output.strip())
except Exception as e:
logger.error(f"Failed to get API level: {e}")
return 0
@override
def screenshot(self) -> MatLike:
if not self.__worker:
self.__worker = Thread(target=self.__worker_thread, daemon=True)
self.__worker.start()
start_time = time.time()
while self.__data is None:
time.sleep(0.01)
if time.time() - start_time > WAIT_TIMEOUT:
raise TimeoutError("Failed to get screenshot from device.")
logger.verbose(f"adb raw screenshot wait time: {time.time() - start_time:.4f}s")
data = self.__data
self.__data = None
return data