public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH] improve autocompletion of network zone new
Date: Wed, 07 Jun 2017 08:20:28 +0200	[thread overview]
Message-ID: <1496816428-6275-1-git-send-email-jonatan.schlag@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 2283 bytes --]

Fixes: #11386

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/bash-completion/network  | 22 ++++++++++++++++++++--
 src/functions/functions.zone | 20 ++++++++++++++++++++
 src/network                  |  6 ++++++
 3 files changed, 46 insertions(+), 2 deletions(-)

diff --git a/src/bash-completion/network b/src/bash-completion/network
index 6f63f1b..fd74027 100644
--- a/src/bash-completion/network
+++ b/src/bash-completion/network
@@ -299,11 +299,11 @@ _network_zone() {
 		return 0
 	fi
 
+
 	local args="${words[@]:1}"
 	case "${cmd}" in
 		new)
-			# TODO
-			return 0
+			_network_zone_new ${args}
 			;;
 		destroy)
 			_network_complete_zones
@@ -316,6 +316,24 @@ _network_zone() {
 	esac
 }
 
+_network_zone_new() {
+	local words=( $@ )
+	local cmd=${words[@]:0:1}
+
+	# Suggest useful zone names
+	if [[ -z "${cmd}" ]]; then
+		local commands="$(network raw list-next-free-zones)"
+		COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
+
+	# If a valid zone name was entered, we can move on
+	elif network raw zone-name-is-valid ${cmd}; then
+		local args="${words[@]:1}"
+		_network_complete_hooks zone ${args}
+	fi
+
+	return 0
+}
+
 _network_zone_subcommand() {
 	local zone="${1}"
 	shift
diff --git a/src/functions/functions.zone b/src/functions/functions.zone
index c727506..88c81a8 100644
--- a/src/functions/functions.zone
+++ b/src/functions/functions.zone
@@ -629,6 +629,26 @@ zones_get_all() {
 	done
 }
 
+zones_get_next_free() {
+	# This function return the next free zones.
+	# Example net0 upl0 upl1 are configured so the next free zones are:
+	# net1 upl2
+	local i
+	local zone_name
+	for zone_name in ${VALID_ZONES}; do
+		i=0
+
+		while true; do
+			local zone="${zone_name}${i}"
+			if ! zone_exists ${zone}; then
+				echo "${zone}"
+				break
+			fi
+			i=$(( i + 1 ))
+		done
+	done
+}
+
 zones_get_local() {
 	local zone
 	for zone in $(zones_get_all); do
diff --git a/src/network b/src/network
index e65eb6b..34faa36 100644
--- a/src/network
+++ b/src/network
@@ -1320,6 +1320,12 @@ cli_raw() {
 		list-zones)
 			zones_get_all
 			;;
+		list-next-free-zones)
+			zones_get_next_free
+			;;
+		zone-name-is-valid)
+			zone_name_is_valid $@
+			;;
 		*)
 			error "No such command: ${cmd}"
 			exit ${EXIT_ERROR}
-- 
2.6.3


                 reply	other threads:[~2017-06-07  6:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1496816428-6275-1-git-send-email-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@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