bash-completion.sh
author František Kučera <franta-hg@frantovo.cz>
Tue, 06 Oct 2020 16:24:57 +0200
branchv_0
changeset 21 70b252d02a92
parent 15 b3239e4ad328
child 22 eebc16b7c3e4
permissions -rw-r--r--
refactoring of includes, fix locking
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
15
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    16
_relpipe_out_jack_completion_ports() {
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    17
	# TODO: simpler and faster implementation in relpipe-out-jack or relpipe-in-jack C++ code
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    18
	jack_lsp -tp 2>/dev/null \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    19
		| tr -d \\t \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    20
		| tr \\n \\0 \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    21
		| relpipe-in-cli \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    22
			--relation "jack_midi_port" \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    23
			--attribute "name" string \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    24
			--attribute "properties" string \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    25
			--attribute "type" string \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    26
			--records-on-stdin true \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    27
		| relpipe-tr-grep '.*' 'properties' 'input' \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    28
		| relpipe-tr-grep '.*' 'type' 'midi' \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    29
		| relpipe-tr-cut '.*' 'name' \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    30
		| relpipe-out-nullbyte \
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    31
		| tr \\0 \\n
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    32
}
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    33
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
_relpipe_out_jack_completion() {
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
	local w0 w1 w2 w3
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
	COMPREPLY=()
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
	w0=${COMP_WORDS[COMP_CWORD]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
	w1=${COMP_WORDS[COMP_CWORD-1]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
	w2=${COMP_WORDS[COMP_CWORD-2]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
	w3=${COMP_WORDS[COMP_CWORD-3]}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
15
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    43
	  if [[ "$w1" == "--jack-client-name"             && "x$w0" == "x" ]];    then COMPREPLY=("'relpipe-out-jack'")
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    44
	elif [[ "$w1" == "--jack-connect-to-port"                          ]];    then COMPREPLY=($(compgen -W "$(_relpipe_out_jack_completion_ports)" -- "$w0"))
9
14cf28d7681c option: --required-jack-connections (start after given number of port connections)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    45
	elif [[ "$w1" == "--required-jack-connections"    && "x$w0" == "x" ]];    then COMPREPLY=("1")
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
	else
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
		OPTIONS=(
2
01553c2ffa1d configurable JACK client name
František Kučera <franta-hg@frantovo.cz>
parents: 0
diff changeset
    48
			"--jack-client-name"
15
b3239e4ad328 connect to configured destination ports + syncCallback
František Kučera <franta-hg@frantovo.cz>
parents: 9
diff changeset
    49
			"--jack-connect-to-port"
9
14cf28d7681c option: --required-jack-connections (start after given number of port connections)
František Kučera <franta-hg@frantovo.cz>
parents: 2
diff changeset
    50
			"--required-jack-connections"
0
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
		)
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    52
		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
	fi
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
}
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
3bc3b33ccb02 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    56
complete -F _relpipe_out_jack_completion relpipe-out-jack