bash-completion.sh
author František Kučera <franta-hg@frantovo.cz>
Sun, 23 May 2021 17:17:33 +0200
branchv_0
changeset 4 66c8a1783884
parent 0 5d1c556ff7db
permissions -rw-r--r--
do not keep Mode from previous relation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
# Relational pipes
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
# Copyright © 2021 František Kučera (Frantovo.cz, GlobalCode.info)
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#
5d1c556ff7db 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
5d1c556ff7db 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
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
# the Free Software Foundation, version 3 of the License.
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
#
5d1c556ff7db 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,
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
# GNU General Public License for more details.
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
#
5d1c556ff7db 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
5d1c556ff7db 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/>.
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
_relpipe_tr_infertypes_completion() {
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
	local w0 w1 w2 w3
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
	COMPREPLY=()
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
	w0=${COMP_WORDS[COMP_CWORD]}
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
	w1=${COMP_WORDS[COMP_CWORD-1]}
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
	w2=${COMP_WORDS[COMP_CWORD-2]}
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
	w3=${COMP_WORDS[COMP_CWORD-3]}
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
	MODES=(
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
		"auto"
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
		"metadata"
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
		"data"
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
	)
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
	if   [[ "$w1" == "--relation"                      && "x$w0" == "x" ]];    then COMPREPLY=("'.+'")
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	elif [[ "$w1" == "--mode"                                           ]];    then COMPREPLY=($(compgen -W "${MODES[*]}"  -- "$w0"))
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
	else
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
		OPTIONS=(
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
			"--relation"
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
			"--mode"
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
		)
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
		COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0"))
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
	fi
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
}
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
5d1c556ff7db project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
complete -F _relpipe_tr_infertypes_completion relpipe-tr-infertypes