Skip to content
is 4.19 KiB
Newer Older
Sebastien Luttringer's avatar
Sebastien Luttringer committed
# bash completion for installsytems

# list local repositories
_repo() {
Sebastien Luttringer's avatar
Sebastien Luttringer committed
    COMPREPLY=("${COMPREPLY[@]}" $(compgen -W "$(is --no-color repo -lS)"  -- "$cur"))
Sebastien Luttringer's avatar
Sebastien Luttringer committed
}

# list all images available in any online repositories
_image() {
    COMPREPLY=("${COMPREPLY[@]}" $(compgen -W "$(is -q --no-color list -p '*')" -- "$cur") $(compgen -f -X '!*.isimage' -- "$cur"))
Sebastien Luttringer's avatar
Sebastien Luttringer committed
}

# generate completion from optional arguments
_opt() {
    COMPREPLY=("${COMPREPLY[@]}" $(compgen -W "$*" -- "${cur}"))
}

_is() {
    local cur prev cword
    local -a cmds opts
    COMPREPLY=()
    COMP_WORDBREAKS="${COMP_WORDBREAKS//:}"
    _get_comp_words_by_ref cur prev cword
    _get_first_arg
    cmds=('add' 'build' 'cat' 'changelog' 'check' 'chroot' 'clean' 'copy' 'del'
Sebastien Luttringer's avatar
Sebastien Luttringer committed
	'extract' 'get' 'help' 'info' 'init' 'install' 'list' 'move' 'new' 'repo' 'search' 'version' 'diff')
Sebastien Luttringer's avatar
Sebastien Luttringer committed
    opts=('-h'  '--help'
	'-V'  '--version'
	'-d'  '--debug'
	'-q'  '--quiet'
	'-R'  '--repo-config'
	'-f'  '--repo-filter'
	'-r'  '--repo-config'
	'-c'  '--config'
	'-C'  '--cache'
	'-t'  '--timeout'
	'--no-cache'  '--no-color')

    case "$arg" in
	'')
	    [[ "$cur" == -* ]] && _opt "${opts[@]}" || _opt "${cmds[@]}"
	    ;;
	add)
	    [[ "$cur" == -* ]] && _opt "-h --help -p --preserve" && return 0
	    _count_args
	    (( args == 2 )) && _repo
            (( args > 2 )) && _filedir '?(u)isimage'
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	build)
            [[ "$cur" == -* ]] && _opt '-h --help -f --force -c --no-check' && return 0
	    _count_args
            (( args == 2 )) && _filedir -d
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	cat)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best' && return 0
	    _count_args
            (( args == 2 )) && _image
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
        changelog)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best -v --all-version' && return 0
            _image
            ;;
        check)
	    [[ "$cur" == -* ]] && _opt '-h --help' && return 0
            _repo
            ;;
	chroot)
            [[ "$cur" == -* ]] && _opt '-h --help -m --no-mount -s --shell' && return 0
            _filedir -d
            ;;
        clean)
	    [[ "$cur" == -* ]] && _opt '-h --help' && return 0
            _repo
            ;;
	copy)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best' && return 0
	    _count_args
	    (( args == 2 )) && _image
	    (( args > 2 )) && _image && _repo
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	del)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best -f --force -p --preserve' && return 0
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            _image
            ;;
	diff)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best' && return 0
	    _count_args
            (( args < 4 )) && c_args=$(images)
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	extract)
            [[ "$cur" == -* ]] && _opt '-h --help -f --force -b --best -p --payload -g --gen-description' && return 0
	    _count_args
	    (( args == 2 )) && _image
            (( args == 3 )) && _filedir -d
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	get)
            [[ "$cur" == -* ]] && _opt '-h --help -f --force -b --best --payload -I --no-image' && return 0
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            _image
            ;;
	help)
	    _count_args
	    (( args == 2 )) && _opt "${cmds[@]}"
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	info)
            [[ "$cur" == -* ]] && _opt '-v --verbose -c --changelog -b --best' && return 0
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            _image
            ;;
	init)
	    [[ "$cur" == -* ]] && _opt '-h --help' && return 0
	    _filedir -d
	    ;;
	install)
            [[ "$cur" == -* ]] && _opt '-b --best' && return 0
	    _count_args
            (( args == 2 )) && _image
	    (( args > 2 )) && _filedir
Sebastien Luttringer's avatar
Sebastien Luttringer committed
            ;;
	list)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best --verbose -c --changelog -p --as-path' && return 0
Sebastien Luttringer's avatar
Sebastien Luttringer committed
	    _repo
	    _image
            ;;
	move)
            [[ "$cur" == -* ]] && _opt '-h --help -b --best -f --force' && return 0
            _image
            ;;
	new)
	    [[ "$cur" == -* ]] && _opt '-h --help -f --force' && return 0
            _filedir -d
            ;;
Sebastien Luttringer's avatar
Sebastien Luttringer committed
	repo)
            [[ "$cur" == -* ]] && _opt '-h --help -v --verbose -o --online -O --offline -l --local -S --no-state' && return 0
	    _repo
	    ;;
Sebastien Luttringer's avatar
Sebastien Luttringer committed
	search)
	    [[ "$cur" == -* ]] && _opt '-h --help' && return 0
            ;;
	version)
	    [[ "$cur" == -* ]] && _opt '-h --help' && return 0
	    ;;
        esac
    return 0
}

complete -F _is is

# ex: ts=4 sw=4 et filetype=sh