author | František Kučera <franta-hg@frantovo.cz> |
Tue, 20 Oct 2020 23:48:50 +0200 | |
branch | v_0 |
changeset 48 | 610b6baca7f9 |
parent 46 | ab27422a34b0 |
permissions | -rw-r--r-- |
43
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
1 |
# Relational pipes |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
2 |
# Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info) |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
3 |
# |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
4 |
# This program is free software: you can redistribute it and/or modify |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
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 |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
6 |
# the Free Software Foundation, version 3 of the License. |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
7 |
# |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
8 |
# This program is distributed in the hope that it will be useful, |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
11 |
# GNU General Public License for more details. |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
12 |
# |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
13 |
# You should have received a copy of the GNU General Public License |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
14 |
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
15 |
|
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
16 |
_relpipe_in_cli_completion() { |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
17 |
local w0 w1 w2 w3 |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
18 |
|
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
19 |
COMPREPLY=() |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
20 |
w0=${COMP_WORDS[COMP_CWORD]} |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
21 |
w1=${COMP_WORDS[COMP_CWORD-1]} |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
22 |
w2=${COMP_WORDS[COMP_CWORD-2]} |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
23 |
w3=${COMP_WORDS[COMP_CWORD-3]} |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
24 |
|
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
25 |
DATA_TYPE=( |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
26 |
"string" |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
27 |
"integer" |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
28 |
"boolean" |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
29 |
) |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
30 |
|
46
ab27422a34b0
rename --records-from-stdin to --records-on-stdin and add boolean parameter
František Kučera <franta-hg@frantovo.cz>
parents:
45
diff
changeset
|
31 |
BOOLEAN_VALUES=( |
44
dd7094457e44
add option: --write-header
František Kučera <franta-hg@frantovo.cz>
parents:
43
diff
changeset
|
32 |
"true" |
dd7094457e44
add option: --write-header
František Kučera <franta-hg@frantovo.cz>
parents:
43
diff
changeset
|
33 |
"false" |
dd7094457e44
add option: --write-header
František Kučera <franta-hg@frantovo.cz>
parents:
43
diff
changeset
|
34 |
) |
dd7094457e44
add option: --write-header
František Kučera <franta-hg@frantovo.cz>
parents:
43
diff
changeset
|
35 |
|
43
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
36 |
if [[ "$w1" == "--relation" && "x$w0" == "x" ]]; then COMPREPLY=("''") |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
37 |
elif [[ "$w1" == "--attribute" && "x$w0" == "x" ]]; then COMPREPLY=("''") |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
38 |
elif [[ "$w2" == "--attribute" ]]; then COMPREPLY=($(compgen -W "${DATA_TYPE[*]}" -- "$w0")) |
46
ab27422a34b0
rename --records-from-stdin to --records-on-stdin and add boolean parameter
František Kučera <franta-hg@frantovo.cz>
parents:
45
diff
changeset
|
39 |
elif [[ "$w1" == "--write-header" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) |
ab27422a34b0
rename --records-from-stdin to --records-on-stdin and add boolean parameter
František Kučera <franta-hg@frantovo.cz>
parents:
45
diff
changeset
|
40 |
elif [[ "$w1" == "--records-on-stdin" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) |
43
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
41 |
else |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
42 |
OPTIONS=( |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
43 |
"--relation" |
44
dd7094457e44
add option: --write-header
František Kučera <franta-hg@frantovo.cz>
parents:
43
diff
changeset
|
44 |
"--write-header" |
43
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
45 |
"--attribute" |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
46 |
"--record" |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
47 |
"--records" |
46
ab27422a34b0
rename --records-from-stdin to --records-on-stdin and add boolean parameter
František Kučera <franta-hg@frantovo.cz>
parents:
45
diff
changeset
|
48 |
"--records-on-stdin" |
43
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
49 |
) |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
50 |
COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0")) |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
51 |
fi |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
52 |
} |
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
53 |
|
3c8ea5dcf793
change CLI interface: options: --relation --attribute --record --records --records-from-stdin
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
54 |
complete -F _relpipe_in_cli_completion relpipe-in-cli |