代码拉取完成,页面将自动刷新
import subprocess
import time
import os
# 要执行的命令
# command = "echo '输出1\n输出2\n<end>\n输出4'" # 示例命令,实际使用时请替换为你的命令
def call_actuator(input: str) -> None:
print(f"--------call actutor: {str}------------")
command = [
"kylin-actuator",
f"\"{input}\"",
]
# 创建子进程并传入参数
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
# 设置一个标志,用于检查是否已经找到<end>
output = ""
while True:
line = process.stdout.readline()
if line:
print(line)
if '<AI>' in line:
output += line[4:]
elif '<end>' in line:
break
elif process.poll() is not None:
break
else:
# 如果没有新的输出,等待一段时间再检查
time.sleep(0.5)
if output == "":
output = "出现异常"
return output
# if gvar.scene_name(session_id) == "任务执行":
# # matches = re.findall(':(.*)', output)
# matches = re.findall(r'\{.*\}', output)
# # 将所有匹配的子串拼接起来
# result = '\n'.join(matches)
# record["order"] = result
# print(result) # 输出:"open 蓝牙\nreboot"
# out_file = "/home/lhh/.kylin-actuator/output"
# if "{find " in result:
# if os.path.exists(out_file):
# try:
# # 删除文件
# os.remove(out_file)
# except PermissionError:
# print(f"没有权限删除文件 {out_file}。")
# except Exception as e:
# print(f"删除文件时发生错误: {e}")
# else:
# print(f"文件 {out_file} 不存在,无需删除。")
# with open('/home/lhh/.kylin-actuator/input', 'w') as file:
# # 将文本写入到文件中
# file.write(result)
# # subprocess.run("kylin-actuator", capture_output=False, text=True, shell=True)
# # 使用subprocess.Popen()执行命令,不等待命令完成
# subprocess.Popen("kylin-actuator", shell=True)
# output = re.sub(r'\{(.*)\}', r'\1', output)
# if "{find " in result:
# time.sleep(2)
# if os.path.exists(out_file):
# try:
# with open(out_file, 'r') as file:
# content = file.read()
# if content != "":
# output = output + "\n\n执行结果:\n" + content
# except PermissionError:
# print(f"没有权限删除文件 {out_file}。")
# except Exception as e:
# print(f"删除文件时发生错误: {e}")
# else:
# print(f"文件 {out_file} 不存在")
# matches = re.findall(r'\{(.*)\}', output)
# # 将匹配的部分用换行符连接起来
# orders = '\n'.join(matches)
# # 打印结果
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。