You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/scripts/completion_bash.py

57 lines
1.4 KiB

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2019 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Generate bash completion script from gallery-dl's argument parser"""
import util
from gallery_dl import option
TEMPLATE = """_gallery_dl()
{
local cur prev
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ "${prev}" =~ ^(%(fileopts)s)$ ]]; then
COMPREPLY=( $(compgen -f -- "${cur}") )
elif [[ "${prev}" =~ ^(%(diropts)s)$ ]]; then
COMPREPLY=( $(compgen -d -- "${cur}") )
else
COMPREPLY=( $(compgen -W "%(opts)s" -- "${cur}") )
fi
}
complete -F _gallery_dl gallery-dl
"""
opts = []
diropts = []
fileopts = []
for action in option.build_parser()._actions:
if action.metavar in ("DEST",):
diropts.extend(action.option_strings)
elif action.metavar in ("FILE", "CFG"):
fileopts.extend(action.option_strings)
for opt in action.option_strings:
if opt.startswith("--"):
opts.append(opt)
PATH = util.path("data/completion/gallery-dl")
with util.lazy(PATH) as fp:
fp.write(TEMPLATE % {
"opts" : " ".join(opts),
"diropts" : "|".join(diropts),
"fileopts": "|".join(fileopts),
})