Message ID | 1455358106-18326-1-git-send-email-yszhou4tech@gmail.com |
---|---|
State | Changes Requested |
Headers | show |
On 2016-02-13 11:08, Yousong Zhou wrote: > Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> > --- > This is intended for use by hotplug system to check whether > /etc/hotplug.d/%SUBSYSTEM% is a directory > > examples/json_script-example.json | 5 +++++ > json_script.c | 26 ++++++++++++++++++++++++++ > 2 files changed, 31 insertions(+) > > diff --git a/examples/json_script-example.json b/examples/json_script-example.json > index 45636b7..5328e59 100644 > --- a/examples/json_script-example.json > +++ b/examples/json_script-example.json > @@ -27,6 +27,11 @@ > [ "exec_if_or", "%ORVAR%" ] > ], > > + [ "if", > + [ "isdir", "%ISDIRVAR%" ], > + [ "exec_isdir", "%ISDIRVAR%" ] This exec line looks wrong, please fix. - Felix
On 15 February 2016 at 05:00, Felix Fietkau <nbd@openwrt.org> wrote: > On 2016-02-13 11:08, Yousong Zhou wrote: >> Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> >> --- >> This is intended for use by hotplug system to check whether >> /etc/hotplug.d/%SUBSYSTEM% is a directory >> >> examples/json_script-example.json | 5 +++++ >> json_script.c | 26 ++++++++++++++++++++++++++ >> 2 files changed, 31 insertions(+) >> >> diff --git a/examples/json_script-example.json b/examples/json_script-example.json >> index 45636b7..5328e59 100644 >> --- a/examples/json_script-example.json >> +++ b/examples/json_script-example.json >> @@ -27,6 +27,11 @@ >> [ "exec_if_or", "%ORVAR%" ] >> ], >> >> + [ "if", >> + [ "isdir", "%ISDIRVAR%" ], >> + [ "exec_isdir", "%ISDIRVAR%" ] > This exec line looks wrong, please fix. > It should be fine. handle_command cb from examples/json_script-example.c will just print `exec_isdir` and its eval'ed arguments. yousong
diff --git a/examples/json_script-example.json b/examples/json_script-example.json index 45636b7..5328e59 100644 --- a/examples/json_script-example.json +++ b/examples/json_script-example.json @@ -27,6 +27,11 @@ [ "exec_if_or", "%ORVAR%" ] ], + [ "if", + [ "isdir", "%ISDIRVAR%" ], + [ "exec_isdir", "%ISDIRVAR%" ] + ], + [ "return", "foobar" ], [ "exec_non_reachable", "Arghhh" ] diff --git a/json_script.c b/json_script.c index 73c2502..ab876a0 100644 --- a/json_script.c +++ b/json_script.c @@ -32,6 +32,7 @@ struct json_handler { static int json_process_expr(struct json_call *call, struct blob_attr *cur); static int json_process_cmd(struct json_call *call, struct blob_attr *cur); +static int eval_string(struct json_call *call, struct blob_buf *buf, const char *name, const char *pattern); struct json_script_file * json_script_file_from_blobmsg(const char *name, void *data, int len) @@ -345,6 +346,30 @@ static int handle_expr_not(struct json_call *call, struct blob_attr *expr) return !ret; } +static int handle_expr_isdir(struct json_call *call, struct blob_attr *expr) +{ + static struct blob_buf b; + struct blob_attr *tb[3]; + const char *pattern, *path; + struct stat s; + int ret; + + json_get_tuple(expr, tb, BLOBMSG_TYPE_STRING, 0); + if (!tb[1] || blobmsg_type(tb[1]) != BLOBMSG_TYPE_STRING) + return -1; + pattern = blobmsg_data(tb[1]); + + blob_buf_init(&b, 0); + ret = eval_string(call, &b, NULL, pattern); + if (ret < 0) + return ret; + path = blobmsg_data(blob_data(b.head)); + ret = stat(path, &s); + if (ret < 0) + return ret; + return S_ISDIR(s.st_mode); +} + static const struct json_handler expr[] = { { "eq", handle_expr_eq }, { "regex", handle_expr_regex }, @@ -352,6 +377,7 @@ static const struct json_handler expr[] = { { "and", handle_expr_and }, { "or", handle_expr_or }, { "not", handle_expr_not }, + { "isdir", handle_expr_isdir }, }; static int
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> --- This is intended for use by hotplug system to check whether /etc/hotplug.d/%SUBSYSTEM% is a directory examples/json_script-example.json | 5 +++++ json_script.c | 26 ++++++++++++++++++++++++++ 2 files changed, 31 insertions(+)