about summary refs log tree commit diff
path: root/Completion/Linux/Command/_chrt
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2017-09-18 15:58:14 +0200
committerOliver Kiddle <opk@zsh.org>2017-09-18 15:58:14 +0200
commitda085b7a20729401c725f91ae930200d0deda64f (patch)
treed4c3e73d351769ba3f14bc51f34e296db3175b1d /Completion/Linux/Command/_chrt
parentb138acf42e52dcdf470f5001aa7ffa1e70eb60f3 (diff)
downloadzsh-da085b7a20729401c725f91ae930200d0deda64f.tar.gz
zsh-da085b7a20729401c725f91ae930200d0deda64f.tar.xz
zsh-da085b7a20729401c725f91ae930200d0deda64f.zip
update completion of options for util-linux 2.30.1
Diffstat (limited to 'Completion/Linux/Command/_chrt')
-rw-r--r--Completion/Linux/Command/_chrt99
1 files changed, 53 insertions, 46 deletions
diff --git a/Completion/Linux/Command/_chrt b/Completion/Linux/Command/_chrt
index f82ec8b81..6789b66cf 100644
--- a/Completion/Linux/Command/_chrt
+++ b/Completion/Linux/Command/_chrt
@@ -1,61 +1,68 @@
 #compdef chrt
 
-local context state line
+local curcontext="$curcontext" cmd="$words[1]" ret=1
+local -a state line expl
 typeset -A opt_args
 
-_arguments \
+_arguments -C -s -S -A "-*" \
+  '(H -a --all-tasks)'{-a,--all-tasks}'[operate on all tasks (threads) for a given pid]' \
+  '(H)'{-v,--verbose}'[display status information]' \
+  '(H)'{-p,--pid}'[interpret args as process ID]' \
+  '(H -R --reset-on-fork -b --batch -d --deadline -i --idle -o --other)'{-R,--reset-on-fork}'[set SCHED_RESET_ON_FORK for FIFO or RR]' \
+  '(H)*::command or priority:->cmd_or_prio' \
+  + 'H' \
+  '(* -)'{-m,--max}'[show minimum and maximum valid priorities, then exit]' \
   '(* -)'{-h,--help}'[display usage information]' \
   '(* -)'{-V,--version}'[output version information]' \
-  {-v,--verbose}'[display status information]' \
-  {-p,--pid}'[interpret args as process ID]' \
-  '(-b --batch -f --fifo -o --other -r --rr)'{-b,--batch}'[set scheduling policy to SCHED_BATCH]' \
-  '(-b --batch -f --fifo -o --other -r --rr)'{-f,--fifo}'[set scheduling policy to SCHED_FIFO]' \
-  '(-b --batch -f --fifo -o --other -r --rr)'{-o,--other}'[set policy scheduling policy to SCHED_OTHER]' \
-  '(-b --batch -f --fifo -o --other -r --rr)'{-r,--rr}'[set scheduling policy to SCHED_RR]' \
-  '(* -)'{-m,--max}'[show minimum and maximum valid priorities, then exit]' \
-  '*::command or priority:->cmd_or_prio' \
-  && return 0
+  + 'dline' \
+  '(H -T --sched-runtime -b --batch -f --fifo -i --idle -o --other -r --rr)'{-T,--sched-runtime}'[runtime parameter for DEADLINE]' \
+  '(H -P --sched-period -b --batch -f --fifo -i --idle -o --other -r --rr)'{-P,--sched-period}'[period parameter for DEADLINE]' \
+  '(H -D --sched-deadline -b --batch -f --fifo -i --idle -o --other -r --rr)'{-D,--sched-deadline}'[deadline parameter for DEADLINE]' \
+  + '(policy)' \
+  '(H dline -R --reset-on-fork)'{-b,--batch}'[set scheduling policy to SCHED_BATCH]' \
+  '(H -R --reset-on-fork)'{-d,--deadline}'[set scheduling policy to SCHED_DEADLINE]' \
+  '(H dline)'{-f,--fifo}'[set scheduling policy to SCHED_FIFO]' \
+  '(H dline -R --reset-on-fork)'{-i,--idle}'[set scheduling policy to SCHED_IDLE]' \
+  '(H dline -R --reset-on-fork)'{-o,--other}'[set scheduling policy to SCHED_OTHER]' \
+  '(H dline)'{-r,--rr}'[set scheduling policy to SCHED_RR (default)]' && ret=0
 
 _chrt_priority()
 {
-    local ty
-    if (( $+opt_args[-b] || $+opt_args[--batch] ))
-    then
-        ty=BATCH
-    elif (( $+opt_args[-f] || $+opt_args[--fifo] ))
-    then
-        ty=FIFO
-    elif (( $+opt_args[-o] || $+opt_args[--other] ))
-    then
-        ty=OTHER
-    else
-        ty=RR
-    fi
-    local range
-    range=${${"$(_call_program priorities chrt --max)"#*SCHED_$ty*: }%$'\n'*}
-    if [[ $range = 0/0 ]]
-    then
-        compadd 0
-    else
-        _message -e priority "priority in the range $range"
-    fi
+  local ty
+  [[ -prefix - ]] && return 1
+  if (( $+opt_args[policy--b] || $+opt_args[policy---batch] )); then
+    ty=BATCH
+  elif (( $+opt_args[policy--f] || $+opt_args[policy---fifo] )); then
+    ty=FIFO
+  elif (( $+opt_args[policy--o] || $+opt_args[policy---other] )); then
+    ty=OTHER
+  else
+    ty=RR
+  fi
+  local range
+  range=${${(M)${(f)"$(_call_program priorities $cmd --max)"}:#*_${ty}*}#*: }
+  if [[ $range = 0/0 ]]; then
+    _wanted priorites expl 'priority' compadd 0
+  else
+    _message -e priorities "priority (range $range)"
+  fi
 }
 
 if (( $+opt_args[-p] || $+opt_args[--pid] ))
 then
-    if [[ $CURRENT -eq 1 ]]
-    then
-        _alternative \
-          'priority:priority:_chrt_priority' \
-          'processes:process IDs:_pids'
-    else
-        _pids
-    fi
-elif [[ $CURRENT -eq 1 ]]
-then
-    _chrt_priority
+  if (( CURRENT == 1 )); then
+    _alternative \
+      'priority:priority:_chrt_priority' \
+      'processes:process IDs:_pids' && ret=0
+  else
+    _pids && ret=0
+  fi
+elif (( CURRENT == 1 )); then
+  _chrt_priority && ret=0
 else
-    shift words
-    (( CURRENT-- ))
-    _normal
+  shift words
+  (( CURRENT-- ))
+  _normal && ret=0
 fi
+
+return ret