gpt4 book ai didi

bash - 如何在通过参数传递它的函数中更新关联数组?

转载 作者:行者123 更新时间:2023-12-04 12:15:18 25 4
gpt4 key购买 nike

我有以下代码可以读取所有 fields一个 Json 文件(路径为 PRIVATE_REGISTRATION_FILE 并将它们存储到关联数组( PRIVATE_FIELDS )中,稍后我会在代码中查询该数组:

declare -A PRIVATE_FIELDS
for PRICING_FIELD in $(jq -c -r '.fields[]' "${PRIVATE_REGISTRATION_FILE}")
do
FIELD_KEY=$(jq -r '.label' <<< "${PRICING_FIELD}")
PRIVATE_FIELDS["${FIELD_KEY}"]=${PRICING_FIELD}
done
问题是我对多个文件执行了多次此操作,即使逻辑始终相同。
因此,我想将这个逻辑提取到一个函数中,但我很难将 map 参数传递给它。
这是我尝试的:
function update_array
{
FILE_NAME=$1
eval "declare -A MAP="${2#*=}
for PRICING_FIELD in $(jq -c -r '.fields[]' "${FILE_NAME}")
do
FIELD_KEY=$(jq -r '.label' <<< "${PRICING_FIELD}")
MAP["${FIELD_KEY}"]=${PRICING_FIELD}
done
}
我这样称呼它:
declare -A PRIVATE_FIELDS
update_array "myFile.json" "$(declare -p PRIVATE_FIELDS)"
但是它不起作用, map 仍然是空的。
echo ${PRIVATE_FIELDS["someKey"]}
>>> (empty)
我已经尝试了每个提出的解决方案 in this answer但他们都没有工作。我究竟做错了什么?
Bash 版本: 4.2.46(2)-release
附加说明,Json 文件如下所示(显然对 jq 的调用可能会减少):
{
"name": "Something",
"fields": [
{
"label": "key1",
"value": "value1",
"other": "other1"
},
{
"label": "key2",
"value": "value2",
"other": "other2"
}
]
}

最佳答案

当您使用 declare在函数中,您实际上是在创建变量 本地 .见 help declare在 bash 提示符下。
使用 nameref(需要 bash 版本 4.3 +):

function update_array
{
local FILE_NAME=$1
local -n MAP=$2 # MAP is now a _reference_ to the caller's variable
# the rest stays the same
for PRICING_FIELD in $(jq -c -r '.fields[]' "${FILE_NAME}")
do
FIELD_KEY=$(jq -r '.label' <<< "${PRICING_FIELD}")
MAP["${FIELD_KEY}"]=${PRICING_FIELD}
done
}
然后你只需传递数组 姓名
declare -A PRIVATE_FIELDS
update_array "myFile.json" PRIVATE_FIELDS

declare -p PRIVATE_FIELDS

要更有效地遍历 JSON 文件:
$ jq -c -r '.fields[] | "\(.label)\t\(.)"' file.json
key1 {"label":"key1","value":"value1","other":"other1"}
key2 {"label":"key2","value":"value2","other":"other2"}
这是假设标签不包含任何制表符。

使用它,加上你的旧 bash 版本,你可以做到这一点
假设结果数组将在 中全局范围
update_array() {
local filename=$1 varname=$2
local -A map
while IFS=$'\t' read -r label json; do
map[$label]=$json
done < <(
jq -c -r '.fields[] | "\(.label)\t\(.)"' "$filename"
)
eval declare -gA "$varname=$(declare -p map | cut -d= -f2-)"
}
你会这样称呼它
$ echo $BASH_VERSION
4.2.45(1)-release

$ update_array tmp/file.json myArray

$ declare -p myArray
declare -A myArray='([key2]="{\"label\":\"key2\",\"value\":\"value2\",\"other\":\"other2\"}" [key1]="{\"label\":\"key1\",\"value\":\"value1\",\"other\":\"other1\"}" )'

$ for label in "${!myArray[@]}"; do
> printf '"%s" => >>%s<<\n' "$label" "${myArray[$label]}"
> done
"key2" => >>{"label":"key2","value":"value2","other":"other2"}<<
"key1" => >>{"label":"key1","value":"value1","other":"other1"}<<

关于bash - 如何在通过参数传递它的函数中更新关联数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68488464/

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