about summary refs log tree commit diff
path: root/Completion/Unix/Command/_xz
blob: 028285a35ebb17b835efcbf877d60f22d35cd66b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#compdef xz unxz xzcat=unxz lzma=xz unlzma=unxz lzcat=unxz -redirect-,<,unxz=unxz -redirect-,>,xz=unxz -redirect-,<,xz=xz -value-,XZ_OPT,-default- -value-,XZ_DEFAULTS,-default-

local decompress files expl state line curcontext="$curcontext" ret=1
typeset -A opt_args
local decomp="(-z --compress --decompress -d --test -t --list -l --single-stream --no-sparse)"

files=( '(--files --files0)*:files:->files' )
case "$service" in
  *XZ_*)
    compset -q
    words=( fake "$words[@]" )
    (( CURRENT++ ))
    files=()
  ;&
  xz) decompress=no;&
  unxz) _arguments -C -s -S "$files[@]" \
    '(- *)'{-h,--help}'[display help message]' \
    '(- *)'{-H,--long-help}'[display the long help (lists also the advanced options)]' \
    '(-d --decompress --compress -z --test -t --list -l)'{-d,--decompress}'[decompress]' \
    "${decomp}"{-z,--compress}'[compress]' \
    '(-k --keep)'{-k,--keep}"[keep (don't delete) input files]" \
    '(-f --force)'{-f,--force}'[force overwrite]' \
    '(-t --test --decompress -d --compress -z --list -l)'{-t,--test}'[test compressed file integrity]' \
    '(-t --test --decompress -d --compress -z --list -l)'{-l,--list}'[list information about .xz files]' \
    '(-c --stdout)'{-c,--stdout}'[write on standard output]' \
    \*{-q,--quiet}'[suppress all warnings]' \
    \*{-v,--verbose}'[verbose mode]' \
    '(- *)'{-V,--version}'[display version number]' \
    '(-e --extreme)'{-e,--extreme}'[try to improve compression ratio by using more CPU time]' \
    '(-1 -2 -3 -4 -5 -6 -7 -8 -9 --fast       )--best' \
    '(-1 -2 -3 -4 -5 -6 -7 -8 -9        --best)--fast' \
    '(   -2 -3 -4 -5 -6 -7 -8 -9 --fast --best)-1' \
    '(-1    -3 -4 -5 -6 -7 -8 -9 --fast --best)-2' \
    '(-1 -2    -4 -5 -6 -7 -8 -9 --fast --best)-3' \
    '(-1 -2 -3    -5 -6 -7 -8 -9 --fast --best)-4' \
    '(-1 -2 -3 -4    -6 -7 -8 -9 --fast --best)-5' \
    '(-1 -2 -3 -4 -5	-7 -8 -9 --fast --best)-6' \
    '(-1 -2 -3 -4 -5 -6    -8 -9 --fast --best)-7' \
    '(-1 -2 -3 -4 -5 -6 -7    -9 --fast --best)-8' \
    '(-1 -2 -3 -4 -5 -6 -7 -8	 --fast --best)-9' \
    "${decomp}--single-stream[decompress only the first stream]" \
    "${decomp}--no-sparse[do not create sparse files when decompressing]" \
    '(* --files --files0)--files=-[read list of files to process from file]::file:_files' \
    '(* --files --files0)--files0=-[read null terminated list of files to process from file]::file:_files' \
    '(-F --format)'{-F,--format}'=[specify file format]:format;(auto xz lzma raw)' \
    '(-C --check)'{-C,--check}'=[integrity check type]:check type:(none crc32 crc64 sha256)' \
    '--memlimit-compress=[set memory usage limit for compression]:memory usage' \
    '--memlimit-decompress=[set memory usage limit for decompression]:memory usage' \
    '(-M --memlimit --memory)'{-M+,--memlimit=,--memory=}'[set memory usage limit]:memory usage' \
    '--no-adjust[give error if settings exceed memory limit]' \
    '(-Q --no-warn)'{-Q,--no-warn}'[make warnings not affect exit status]' \
    '--robot[use machine-parsable messages]' \
    --{x86,powerpc,ia64,arm,armthumb,sparc}=-'[add a branch/call/jump filter]::option:->bcj-options' \
    --lzma{1,2}=-'[add lzma filter]::option:->lzma-options' \
    '--delta=-[add delta filter]::option:->delta-options' \
    '(- *)--info-memory[display amount of RAM and memory usage limits]' && ret=0
  ;;
esac

case $state in
  files)
    (( $+opt_args[-z] || $+opt_args[--compress] )) && decompress=no
    [[ -n $opt_args[(i)-([dtl]|-decompress|-test|-list)] ]] && unset decompress
    if [[ -z "$decompress" ]]; then
      _description files expl 'compressed file'
      _files "$expl[@]" -g '*.(xz|txz|lzma|tlz)(-.)' && return
    else
      _description files expl 'file to compress'
      _files "$expl[@]" -g '^*.(xz|txz|lzma|tlz)(-.)' && return
    fi
  ;;
  lzma-options)
    _values -s , options 'preset:preset' 'dict:size' 'lc:context bits' \
      'lp:position bits' 'mf:matchfinder:(hc3 hc4 bt2 bt3 bt4)' \
      'mode:mode:(fast normal)' 'nice:length' 'depth:depth' && ret=0
  ;;
  bcj-options)
    _values options 'start:offset' && return
  ;;
  delta-options)
    _values options 'dist:distance' && return
  ;;
esac

return ret