Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-11 13:40:22 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-09-11 13:40:22 +0400
commita1a97eb11e89c420b84a659a88a4e72c7f04367d (patch)
tree84b59196eb39fe845f182d88d0b34efef14db265
parentdee81b4f7902c5b59654f4e8fdbb153bb4f67c62 (diff)
jshn: support using characters in elements that do not conform to shell variable restrictions
-rw-r--r--jshn.c15
-rw-r--r--sh/jshn.sh8
2 files changed, 16 insertions, 7 deletions
diff --git a/jshn.c b/jshn.c
index 88e31d1..f7a46de 100644
--- a/jshn.c
+++ b/jshn.c
@@ -150,14 +150,19 @@ static char *get_keys(const char *prefix)
return getenv(keys);
}
-static void get_var(const char *prefix, const char *name, char **var, char **type)
+static void get_var(const char *prefix, const char **name, char **var, char **type)
{
- char *tmpname;
+ char *tmpname, *varname;
- tmpname = alloca(strlen(prefix) + 1 + strlen(name) + 1 + sizeof("TYPE_"));
- sprintf(tmpname, "TYPE_%s_%s", prefix, name);
+ tmpname = alloca(strlen(prefix) + 1 + strlen(*name) + 1 + sizeof("TYPE_"));
+ sprintf(tmpname, "TYPE_%s_%s", prefix, *name);
*var = getenv(tmpname + 5);
*type = getenv(tmpname);
+
+ memcpy(tmpname, "NAME", 4);
+ varname = getenv(tmpname);
+ if (varname)
+ *name = varname;
}
static json_object *jshn_add_objects(json_object *obj, const char *prefix, bool array);
@@ -167,7 +172,7 @@ static void jshn_add_object_var(json_object *obj, bool array, const char *prefix
json_object *new;
char *var, *type;
- get_var(prefix, name, &var, &type);
+ get_var(prefix, &name, &var, &type);
if (!var || !type)
return;
diff --git a/sh/jshn.sh b/sh/jshn.sh
index 7389f8c..8ecefcf 100644
--- a/sh/jshn.sh
+++ b/sh/jshn.sh
@@ -19,11 +19,15 @@ json_add_generic() {
local val="$3"
local cur="${4:-$JSON_CUR}"
- [ "${cur%%[0-9]*}" = "JSON_ARRAY" ] && {
+ if [ "${cur%%[0-9]*}" = "JSON_ARRAY" ]; then
eval "local aseq=\"\${SEQ_$cur}\""
var=$(( ${aseq:-0} + 1 ))
export -- "SEQ_$cur=$var"
- }
+ else
+ local name="$(echo -n "$var" | tr -C '[a-zA-Z_]' _)"
+ [[ "$name" == "$var" ]] || export -- "NAME_${cur}_${name}=$var"
+ var="$name"
+ fi
export -- "${cur}_$var=$val"
export -- "TYPE_${cur}_$var=$type"