]> git.ipfire.org Git - thirdparty/systemd.git/blame - shell-completion/bash/coredumpctl
bash-completion: coredumpctl: add --json and -n options
[thirdparty/systemd.git] / shell-completion / bash / coredumpctl
CommitLineData
f4bab169 1# coredumpctl(1) completion -*- shell-script -*-
db9ecf05 2# SPDX-License-Identifier: LGPL-2.1-or-later
d611dadc
MB
3#
4# This file is part of systemd.
5#
96b2fb93 6# Copyright © 2010 Ran Benita
d611dadc
MB
7#
8# systemd is free software; you can redistribute it and/or modify it
9# under the terms of the GNU Lesser General Public License as published by
10# the Free Software Foundation; either version 2.1 of the License, or
11# (at your option) any later version.
12#
13# systemd is distributed in the hope that it will be useful, but
14# WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public License
19# along with systemd; If not, see <http://www.gnu.org/licenses/>.
20
21__contains_word () {
843cfcb1
ZJS
22 local w word=$1; shift
23 for w in "$@"; do
24 [[ $w = "$word" ]] && return
25 done
d611dadc
MB
26}
27
28__journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC}
29 ERRNO SYSLOG_{FACILITY,IDENTIFIER,PID} COREDUMP_EXE
30 _{P,U,G}ID _COMM _EXE _CMDLINE
31 _AUDIT_{SESSION,LOGINUID}
32 _SYSTEMD_{CGROUP,SESSION,UNIT,OWNER_UID}
33 _SELINUX_CONTEXT _SOURCE_REALTIME_TIMESTAMP
34 _{BOOT,MACHINE}_ID _HOSTNAME _TRANSPORT
35 _KERNEL_{DEVICE,SUBSYSTEM}
36 _UDEV_{SYSNAME,DEVNODE,DEVLINK}
37 __CURSOR __{REALTIME,MONOTONIC}_TIMESTAMP)
38_coredumpctl() {
843cfcb1
ZJS
39 local i verb comps
40 local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
41 local OPTS='-h --help --version --no-pager --no-legend -o --output -F --field -1
a2be8be2 42 -r --reverse -S --since -U --until -D --directory -q --quiet --debugger
e56aa170 43 -A --debugger-arguments --json -n'
d611dadc 44
843cfcb1
ZJS
45 local -A VERBS=(
46 [LIST]='list info'
47 [DUMP]='dump debug'
48 )
d611dadc 49
843cfcb1
ZJS
50 if __contains_word "$prev" '--output -o'; then
51 comps=$( compgen -A file -- "$cur" )
52 compopt -o filenames
53 elif __contains_word "$prev" '-D --directory'; then
54 comps=$( compgen -A directory -- "$cur" )
55 compopt -o filenames
56 elif __contains_word "$prev" '--debugger'; then
57 comps=$( compgen -A command -- "$cur" )
58 compopt -o filenames
59 elif __contains_word "$prev" '--field -F'; then
60 comps=$( compgen -W '${__journal_fields[*]}' -- "$cur" )
e56aa170
YW
61 elif __contains_word "$prev" '--json'; then
62 comps=$( compgen -W 'pretty short off' -- "$cur" )
843cfcb1
ZJS
63 elif [[ $cur = -* ]]; then
64 comps=${OPTS}
65 elif __contains_word "$prev" ${VERBS[*]} &&
66 ! __contains_word ${COMP_WORDS[COMP_CWORD-2]} \
67 '--output -o -D --directory -F --field --debugger'; then
68 compopt -o nospace
69 COMPREPLY=( $(compgen -W '${__journal_fields[*]}' -S= -- "$cur") )
70 return 0
71 elif [[ $cur = *=* ]]; then
72 mapfile -t field_vals < <(coredumpctl -F "${prev%=}" 2>/dev/null)
73 COMPREPLY=( $(compgen -W '${field_vals[*]}' -- "${cur#=}") )
74 return 0
75 elif [[ $prev = '=' ]]; then
76 mapfile -t field_vals < <(coredumpctl -F "${COMP_WORDS[COMP_CWORD-2]}" 2>/dev/null)
77 comps=${field_vals[*]}
78 else
79 for ((i=0; i <= COMP_CWORD; i++)); do
80 if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]}; then
81 verb=${COMP_WORDS[i]}
82 break
83 fi
84 done
d611dadc 85
843cfcb1
ZJS
86 if [[ -z $verb ]]; then
87 comps=${VERBS[*]}
88 elif __contains_word "$verb" ${VERBS[LIST]} ${VERBS[DUMP]}; then
89 comps=''
d611dadc 90 fi
843cfcb1 91 fi
d611dadc 92
843cfcb1
ZJS
93 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
94 return 0
d611dadc
MB
95}
96
f4bab169 97complete -F _coredumpctl coredumpctl