bash-completion.sh
author František Kučera <franta-hg@frantovo.cz>
Sat, 04 Dec 2021 21:14:52 +0100
branchv_0
changeset 32 1eb6d178a737
parent 26 a6d332fa816c
permissions -rw-r--r--
Added tag v0.18 for changeset 259bf64e5ddc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
# Relational pipes
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
# Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info)
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
# This program is free software: you can redistribute it and/or modify
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
# it under the terms of the GNU General Public License as published by
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
# the Free Software Foundation, version 3 of the License.
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
#
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
# This program is distributed in the hope that it will be useful,
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
# GNU General Public License for more details.
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
#
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
# You should have received a copy of the GNU General Public License
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
22
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    16
_relpipe_out_jack_completion_read_nullbyte() { local IFS=; for v in "$@"; do export "$v"; read -r -d '' "$v"; done }
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    17
15
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    18
_relpipe_out_jack_completion_ports() {
22
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    19
	if type relpipe-in-jack &> /dev/null && type relpipe-out-nullbyte &> /dev/null; then
23
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    20
		relpipe-in-jack --list-ports true --list-midi-messages false 2>/dev/null \
22
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    21
			| relpipe-out-nullbyte \
26
a6d332fa816c fix bash-completion (uuid)
František Kučera <franta-hg@frantovo.cz>
parents: 23
diff changeset
    22
			| while _relpipe_out_jack_completion_read_nullbyte "name" "uuid" "input" "output" "physical" "terminal" "mine" "midi" "type"; do
22
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    23
				 if [[ "$midi" = "true" && "$input" = "true" && "$mine" = "false" ]]; then echo "$name"; fi; done
eebc16b7c3e4 use relpipe-in-jack --list-jack-ports for bash-completion
František Kučera <franta-hg@frantovo.cz>
parents: 15
diff changeset
    24
	fi
15
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    25
}
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    26
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
_relpipe_out_jack_completion() {
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
	local w0 w1 w2 w3
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
	COMPREPLY=()
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
	w0=${COMP_WORDS[COMP_CWORD]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	w1=${COMP_WORDS[COMP_CWORD-1]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
	w2=${COMP_WORDS[COMP_CWORD-2]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
	w3=${COMP_WORDS[COMP_CWORD-3]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
23
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    36
	  if [[ "$w1" == "--client"                       && "x$w0" == "x" ]];    then COMPREPLY=("'relpipe-out-jack'")
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    37
	elif [[ "$w1" == "--port"                         && "x$w0" == "x" ]];    then COMPREPLY=("'midi-out'")
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    38
	elif [[ "$w1" == "--connect-to"                                    ]];    then COMPREPLY=($(compgen -W "$(_relpipe_out_jack_completion_ports)" -- "$w0"))
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    39
	elif [[ "$w1" == "--required-connections"         && "x$w0" == "x" ]];    then COMPREPLY=("1")
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	else
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
		OPTIONS=(
23
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    42
			"--client"
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    43
			"--port"
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    44
			"--connect-to"
d2ad84dcf249 simplify CLI options: --client --connect-to --required-connections + add --port
František Kučera <franta-hg@frantovo.cz>
parents: 22
diff changeset
    45
			"--required-connections"
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
		)
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
	fi
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    50
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
complete -F _relpipe_out_jack_completion relpipe-out-jack