2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 11:06:16 +00:00
|
|
|
|
|
|
|
# Allow direct execution
|
2014-10-06 10:58:25 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2022-04-12 00:01:54 +00:00
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
2022-06-24 11:06:16 +00:00
|
|
|
|
2021-02-24 18:45:56 +00:00
|
|
|
import yt_dlp
|
2014-10-06 10:58:25 +00:00
|
|
|
|
2024-06-11 23:09:58 +00:00
|
|
|
ZSH_COMPLETION_FILE = 'completions/zsh/_yt-dlp'
|
|
|
|
ZSH_COMPLETION_TEMPLATE = 'devscripts/zsh-completion.in'
|
2014-10-06 10:58:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
def build_completion(opt_parser):
|
|
|
|
opts = [opt for group in opt_parser.option_groups
|
|
|
|
for opt in group.option_list]
|
2024-06-11 23:09:58 +00:00
|
|
|
opts_file = [opt for opt in opts if opt.metavar == 'FILE']
|
|
|
|
opts_dir = [opt for opt in opts if opt.metavar == 'DIR']
|
2014-10-06 10:58:25 +00:00
|
|
|
|
|
|
|
fileopts = []
|
|
|
|
for opt in opts_file:
|
|
|
|
if opt._short_opts:
|
|
|
|
fileopts.extend(opt._short_opts)
|
|
|
|
if opt._long_opts:
|
|
|
|
fileopts.extend(opt._long_opts)
|
|
|
|
|
|
|
|
diropts = []
|
|
|
|
for opt in opts_dir:
|
|
|
|
if opt._short_opts:
|
|
|
|
diropts.extend(opt._short_opts)
|
|
|
|
if opt._long_opts:
|
|
|
|
diropts.extend(opt._long_opts)
|
|
|
|
|
|
|
|
flags = [opt.get_opt_string() for opt in opts]
|
|
|
|
|
|
|
|
with open(ZSH_COMPLETION_TEMPLATE) as f:
|
|
|
|
template = f.read()
|
|
|
|
|
2024-06-11 23:09:58 +00:00
|
|
|
template = template.replace('{{fileopts}}', '|'.join(fileopts))
|
|
|
|
template = template.replace('{{diropts}}', '|'.join(diropts))
|
|
|
|
template = template.replace('{{flags}}', ' '.join(flags))
|
2014-10-06 10:58:25 +00:00
|
|
|
|
2024-06-11 23:09:58 +00:00
|
|
|
with open(ZSH_COMPLETION_FILE, 'w') as f:
|
2014-10-06 10:58:25 +00:00
|
|
|
f.write(template)
|
|
|
|
|
2016-11-17 11:42:56 +00:00
|
|
|
|
2022-04-27 08:15:45 +00:00
|
|
|
parser = yt_dlp.parseOpts(ignore_config_files=True)[0]
|
2014-10-06 10:58:25 +00:00
|
|
|
build_completion(parser)
|