From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [PATCH 2/8] zone: accept also hids in zone_config()
Date: Tue, 25 Jul 2017 23:27:22 +0100 [thread overview]
Message-ID: <1501021642.20312.33.camel@ipfire.org> (raw)
In-Reply-To: <1500998833-10543-3-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3257 bytes --]
Hi,
On Tue, 2017-07-25 at 18:07 +0200, Jonatan Schlag wrote:
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
> src/functions/functions.zone | 33 ++++++++++++++++++++++++---------
> 1 file changed, 24 insertions(+), 9 deletions(-)
>
> diff --git a/src/functions/functions.zone b/src/functions/functions.zone
> index 28a22fe..091bcd6 100644
> --- a/src/functions/functions.zone
> +++ b/src/functions/functions.zone
> @@ -550,28 +550,43 @@ zone_config() {
> zone_config_new "${zone}" "$@"
> ;;
> destroy)
> + # id could be also a valid hid
> local id=${1}
> - if zone_config_id_is_valid ${zone} ${id}; then
> + # usually we will get a hid so we check first if we
> get one
> + if zone_config_hid_is_valid ${zone} ${id}; then
> + # Convert the hid into an id
> + id=$(zone_config_convert_hid_to_id ${zone}
> ${id})
> zone_config_destroy "${zone}" "$@"
Could we not just call "zone_config_convert_hid_to_id" (maybe the name would be
better without "convert") and if it does not return an ID, we assume that the
HID does not exist?
That would save us running through all the hooks twice which is quite an
expensive thing to do.
> else
> - log ERROR "${id} is not a valid id"
> + # We get no valid hid so we check if we get a
> valid id
> + if zone_config_id_is_valid ${zone} ${id};
> then
> + zone_config_destroy "${zone}" "$@"
> + else
> + log ERROR "${id} is not a valid id or
> hid"
> + fi
> fi
> ;;
> list)
> zone_config_list "${zone}" "$@"
> ;;
> *)
> - # Check is we get a valid id
> - # TODO This could be also a valid hid
> + # id could be also a valid hid
> local id=${cmd}
> -
> - if zone_config_id_is_valid ${zone} ${id} && [[ ${1}
> == "edit" ]]; then
> + # usually we will get a hid so we check first if we
> get one
> + if zone_config_hid_is_valid ${zone} ${id} && [[ ${1}
> == "edit" ]]; then
> + id=$(zone_config_convert_hid_to_id ${zone}
> ${id})
Can we also remove this ${1} == edit thing. That has confused me quite a few
times and doesn't make the code very obvious to read.
But same thing here as above. Could be something like:
local id = $(hid to id ${hid}
if ! isset id; then
... check if HID is an ID
fi
... assume that we have a valid ID from here on ...
This would have a little bit of a performance penalty if the user has given an
ID or an invalid HID. But I think it is rather likely that someone will give a
HID than an ID. Mainly because auto-completion will give a HID instead of an ID.
> shift 1
> zone_config_edit "${zone}" "${id}" "$@"
> else
> - error "Unrecognized argument: ${cmd}"
> - cli_usage root-zone-config-subcommands
> - exit ${EXIT_ERROR}
> + # We get no valid hid so we check if we get a
> valid id
> + if zone_config_id_is_valid ${zone} ${id} &&
> [[ ${1} == "edit" ]]; then
> + shift 1
> + zone_config_edit "${zone}" "${id}"
> "$@"
> + else
> + error "Unrecognized argument: ${cmd}"
> + cli_usage root-zone-config-
> subcommands
> + exit ${EXIT_ERROR}
> + fi
> fi
> ;;
> esac
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2017-07-25 22:27 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-25 16:07 Add hids Jonatan Schlag
2017-07-25 16:07 ` [PATCH 1/8] zone: add config hid functions Jonatan Schlag
2017-07-25 22:22 ` Michael Tremer
2017-07-25 16:07 ` [PATCH 2/8] zone: accept also hids in zone_config() Jonatan Schlag
2017-07-25 22:27 ` Michael Tremer [this message]
2017-07-25 16:07 ` [PATCH 3/8] zone: config list print also hids Jonatan Schlag
2017-07-25 22:28 ` Michael Tremer
2017-07-25 16:07 ` [PATCH 4/8] hook: also hook_hid is a valid command Jonatan Schlag
2017-07-25 16:07 ` [PATCH 5/8] header-config: add generic hhok_hid function Jonatan Schlag
2017-07-25 22:29 ` Michael Tremer
2017-07-25 16:07 ` [PATCH 6/8] raw: add command list-zone-config-hids Jonatan Schlag
2017-07-25 16:07 ` [PATCH 7/8] raw: add command zone-config-hid-is-valid Jonatan Schlag
2017-07-25 16:07 ` [PATCH 8/8] autocompletion: use hids instead of ids Jonatan Schlag
2017-07-25 22:30 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1501021642.20312.33.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox