gpt4 book ai didi

json - 如何将 shell 脚本用作 Chrome Native Messaging 主机应用程序

转载 作者:行者123 更新时间:2023-11-29 09:00:10 25 4
gpt4 key购买 nike

如何使用 bash 脚本处理 Chrome Native Messaging API 调用?

我用 python 成功地做到了 this example

当然,我可以使用 subprocess 从 python 代码中调用 bash,但是是否可以跳过 python 并直接在 bash 中处理消息?

有问题的部分是将 JSON 序列化消息读入变量。该消息使用 JSON、UTF-8 编码进行序列化,并通过标准输入在 native 字节顺序中以 32 位消息长度开头。

echo $* 只输出:chrome-extension://knldjmfmopnpolahpmmgbagdohdnhkik/

还有类似的东西

read
echo $REPLY

不输出任何东西。没有 JSON 消息的迹象。 Python 为此使用 struct.unpack。这可以在 bash 中完成吗?

最佳答案

我建议不要使用 (bash) shell 脚本作为 native 消息传递主机,因为 bash 太有限而无用。

read 不带任何参数在终止前读取整行,而 native messaging protocol指定前四个字节指定后续消息的长度(按 native 字节顺序)。

Bash 是处理二进制数据的糟糕工具。 read 命令的改进版本将指定 -n N 参数以在 N 个字符(注意:不是字节)和 -r 删除一些处理。例如。以下将前四个字符存储在名为 var_prefix 的变量中:

IFS= read -rn 4 var_prefix

即使您假设这将前四个字节存储在变量中(事实并非如此!),您也必须将这些字节转换为整数。我是否已经提到 bash 会自动删除所有 NUL 字节?这种特性使 Bash 作为一个功能齐全的本地消息传递主机毫无值(value)。

您可以通过忽略前几个字节来解决这个缺点,并在您发现 { 字符(JSON 格式请求的开头)时开始解析结果。在此之后,您必须读取所有输入,直到找到输入的末尾。您需要一个 JSON 解析器,它在遇到 JSON 字符串的末尾时停止读取输入。祝你写得好。

生成输出更简单,只需使用 echo -nprintf .

这是一个最小的例子,假设输入以 结尾,读取它(不处理)并回复结果。尽管此演示有效,但我强烈建议不要使用 bash,而应使用更丰富的(脚本)语言,例如 Python 或 C++。

#!/bin/bash
# Loop forever, to deal with chrome.runtime.connectNative
while IFS= read -r -n1 c; do
# Read the first message
# Assuming that the message ALWAYS ends with a },
# with no }s in the string. Adopt this piece of code if needed.
if [ "$c" != '}' ] ; then
continue
fi

message='{"message": "Hello world!"}'
# Calculate the byte size of the string.
# NOTE: This assumes that byte length is identical to the string length!
# Do not use multibyte (unicode) characters, escape them instead, e.g.
# message='"Some unicode character:\u1234"'
messagelen=${#message}

# Convert to an integer in native byte order.
# If you see an error message in Chrome's stdout with
# "Native Messaging host tried sending a message that is ... bytes long.",
# then just swap the order, i.e. messagelen1 <-> messagelen4 and
# messagelen2 <-> messagelen3
messagelen1=$(( ($messagelen ) & 0xFF ))
messagelen2=$(( ($messagelen >> 8) & 0xFF ))
messagelen3=$(( ($messagelen >> 16) & 0xFF ))
messagelen4=$(( ($messagelen >> 24) & 0xFF ))

# Print the message byte length followed by the actual message.
printf "$(printf '\\x%x\\x%x\\x%x\\x%x' \
$messagelen1 $messagelen2 $messagelen3 $messagelen4)%s" "$message"

done

关于json - 如何将 shell 脚本用作 Chrome Native Messaging 主机应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24764657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com