about summary refs log tree commit diff
path: root/Completion/openSUSE
diff options
context:
space:
mode:
authorThomas Mitterfellner <thomas.mitterfellner@gmail.com>2014-01-16 21:52:12 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2014-01-16 21:52:12 -0800
commit70af7dd18ad57b6aee445da95dd656339de7f3f7 (patch)
tree3ac7240d6711ce6315abbcfe5914a31d6cc0ff16 /Completion/openSUSE
parent41c68d5ef9caca6780aa9ab0a87da3d36c81f1ea (diff)
downloadzsh-70af7dd18ad57b6aee445da95dd656339de7f3f7.tar.gz
zsh-70af7dd18ad57b6aee445da95dd656339de7f3f7.tar.xz
zsh-70af7dd18ad57b6aee445da95dd656339de7f3f7.zip
32265: better handling of large package lists.
Diffstat (limited to 'Completion/openSUSE')
-rw-r--r--Completion/openSUSE/Command/_zypper184
1 files changed, 92 insertions, 92 deletions
diff --git a/Completion/openSUSE/Command/_zypper b/Completion/openSUSE/Command/_zypper
index 83ad0bfe0..ef8ca203c 100644
--- a/Completion/openSUSE/Command/_zypper
+++ b/Completion/openSUSE/Command/_zypper
@@ -1,7 +1,7 @@
 #compdef zypper
 #
 # Copyright (C) 2009 Holger Macht <holger@homac.de>
-# Copyright (C) 2013 Thomas Mitterfellner <thomas.mitterfellner@gmail.com>
+# Copyright (C) 2014 Thomas Mitterfellner <thomas.mitterfellner@gmail.com>
 #
 # This file is released under the GPLv2.
 #
@@ -10,17 +10,17 @@
 # Toggle verbose completions: zstyle ':completion:*:zypper:*' verbose no
 #                             zstyle ':completion:*:zypper-subcommand:*' verbose no
 #
-#  version 0.2
+#  version 0.3
 #
 # Main dispatcher
 
 function _zypper_caching_policy () {
-   # rebuild if cache is more than a week old
-   if test /var/cache/zypp/raw -nt "$1"; then
-     return 0
-   else
-     return 1
-   fi
+    # rebuild if zsh's cache is older than zypper's
+    if test /var/cache/zypp/raw -nt "$1"; then
+        return 0
+    else
+        return 1
+    fi
 }
 
 _zypper() {
@@ -29,33 +29,33 @@ _zypper() {
 
     if (( CURRENT > 2 )) && [[ ${words[2]} != "help" ]]; then
         # Remember the subcommand name
-	local cmd=${words[2]}
+        local cmd=${words[2]}
         # Set the context for the subcommand.
-	curcontext="${curcontext%:*:*}:zypper-subcommand"
+        curcontext="${curcontext%:*:*}:zypper-subcommand"
         # Narrow the range of words we are looking at to exclude `zypper'
-	(( CURRENT-- ))
-	shift words
-	
-	_zypper_cmd_do $cmd
+        (( CURRENT-- ))
+        shift words
+
+        _zypper_cmd_do $cmd
     else
-	local hline
-	local -a cmdlist
-	local tag=0
-	_call_program help-commands LANG=C zypper help | sed -e ':a;N;$!ba;s/\n\t\t\t\t/ /g' | while read -A hline; do
-	    # start parsing with "Global Options:"
-	    [[ $hline =~ "^Global Options:" ]] && tag=1
-	    [[ $tag = 0 ]] && continue
-	    # all commands have to start with lower case letters
-	    [[ $hline[1] =~ ^[A-Z] ]] && continue
-	    (( ${#hline} < 2 )) && continue
-
-	    # cut comma at end of command
-	    hline[1]=`echo $hline[1] | sed -e 's/\(^.*\),/\1/'`
-
-	    # ${hline[1]%,} truncates the last ','
-	    cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}")
-	done
-	_describe -t zypper-commands 'zypper command' cmdlist
+        local hline
+        local -a cmdlist
+        local tag=0
+        _call_program help-commands LANG=C zypper help | sed -e ':a;N;$!ba;s/\n\t\t\t\t/ /g' | while read -A hline; do
+            # start parsing with "Global Options:"
+            [[ $hline =~ "^Global Options:" ]] && tag=1
+            [[ $tag = 0 ]] && continue
+            # all commands have to start with lower case letters
+            [[ $hline[1] =~ ^[A-Z] ]] && continue
+            (( ${#hline} < 2 )) && continue
+
+            # cut comma at end of command
+            hline[1]=`echo $hline[1] | sed -e 's/\(^.*\),/\1/'`
+
+            # ${hline[1]%,} truncates the last ','
+            cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}")
+        done
+        _describe -t zypper-commands 'zypper command' cmdlist
     fi
 }
 
@@ -87,14 +87,14 @@ _zypper_cmd_do() {
     zstyle ":completion:${curcontext}:" cache-policy _zypper_caching_policy
 
     _call_program help-commands LANG=C zypper help $cmd | while read -A hline; do
-	# start parsing from "Options:"
-	[[ $hline =~ "^Command options:" ]] && tag=1
-	[[ $tag = 0 ]] && continue
-	# Option has to start with a '-'
-	[[ $hline[1] =~ ^- ]] || continue
-	(( ${#hline} < 2 )) && continue
-
-	cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}")
+        # start parsing from "Options:"
+        [[ $hline =~ "^Command options:" ]] && tag=1
+        [[ $tag = 0 ]] && continue
+        # Option has to start with a '-'
+        [[ $hline[1] =~ ^- ]] || continue
+        (( ${#hline} < 2 )) && continue
+
+        cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}")
     done
 
     if [ -n "$cmdlist" ]; then
@@ -102,47 +102,47 @@ _zypper_cmd_do() {
 
         # special completion lists for certain options (mainly repos)
         case ${words[CURRENT - 1]} in
-          --from)
-            repos=( $(zypper -x lr | grep 'enabled="1"' | cut -d\" -f 2) )
-            _describe -t repos 'Available repositories' repos && return
-            ;;
-          (--enable|-e)
-            case $cmd in
-              (mr|modifyrepo) 
-                _disabled_repos && return
-              ;;
-            esac
-            ;;
-          (--disable|-d)
-            case $cmd in
-              (mr|modifyrepo) 
-                _enabled_repos && return
-              ;;
-            esac
-            ;;
-          (--type|-t)
-            local -a types
-            case $cmd in
-              (if|info|se|search|in|install) 
-                types=( pattern srcpackage package patch )
-                _describe -t types 'Package types' types && return
-              ;;
-            esac
-            ;;
+            --from)
+                repos=( $(zypper -x lr | grep 'enabled="1"' | cut -d\" -f 2) )
+                _describe -t repos 'Available repositories' repos && return
+               ;;
+            (--enable|-e)
+                case $cmd in
+                    (mr|modifyrepo) 
+                        _disabled_repos && return
+                    ;;
+                esac
+                ;;
+            (--disable|-d)
+                case $cmd in
+                    (mr|modifyrepo) 
+                        _enabled_repos && return
+                    ;;
+                esac
+                ;;
+            (--type|-t)
+                local -a types
+                case $cmd in
+                    (if|info|se|search|in|install) 
+                        types=( pattern srcpackage package patch )
+                        _describe -t types 'Package types' types && return
+                    ;;
+                esac
+                ;;
         esac
 
         # all options available for the active main command
 	_describe -t zypper-commands 'zypper command' cmdlist
 
         case $cmd in
-          (lr|repos)
-            _all_repos
-            ;;
-          (in|install)
-            local expl
-            _description files expl 'RPM files' 
-            _files "$expl[@]" -g '*.(#i)rpm(.)'
-            ;;
+            (lr|repos)
+                _all_repos
+                ;;
+            (in|install)
+                local expl
+                _description files expl 'RPM files' 
+                _files "$expl[@]" -g '*.(#i)rpm(.)'
+                ;;
         esac
         
         # only suggest packages if at least one character is given
@@ -151,26 +151,26 @@ _zypper_cmd_do() {
 
           if ( [[ ${+_zypp_all_raw} -eq 0 ]] || _cache_invalid ZYPPER_ALL_RAW ) && ! _retrieve_cache ZYPPER_ALL_RAW;
           then
-            _zypp_all_raw=$(zypper -x -q se | grep '<solvable ')
-            _zypp_all=( $(echo $_zypp_all_raw | grep 'installed' | cut -d\" -f 4) )
-            _zypp_not_installed=( $(echo $_zypp_all_raw | grep 'not-installed' | cut -d\" -f 4 ) )
-            _zypp_installed=( $(echo $_zypp_all_raw | grep '"installed"' | cut -d\" -f 4 ) )
-            _store_cache ZYPPER_ALL_RAW _zypp_all_raw _zypp_all _zypp_not_installed _zypp_installed
+              _zypp_all_raw=$(zypper -x -q se | grep '<solvable' | cut -d \" -f 2,4)
+              _zypp_all=( $(echo $_zypp_all_raw | grep 'installed' | cut -d\" -f 2) )
+              _zypp_not_installed=( $(echo $_zypp_all_raw | grep 'not-installed' | cut -d\" -f 2 ) )
+              _zypp_installed=( $(echo $_zypp_all_raw | grep '^installed' | cut -d\" -f 2 ) )
+              _store_cache ZYPPER_ALL_RAW _zypp_all_raw _zypp_all _zypp_not_installed _zypp_installed
           fi
 
           case $cmd in
-            (in|install)
-              pkglist=( $_zypp_not_installed )
-              compadd $pkglist && return
-            ;;
-            (rm|remove|up|update)
-              pkglist=( $_zypp_installed )
-              compadd $pkglist && return
-            ;;
-            (if|info|se|search)
-              pkglist=( $_zypp_all )
-              compadd $pkglist && return
-            ;;
+              (in|install)
+                  pkglist=( $_zypp_not_installed )
+                  compadd $pkglist && return
+                  ;;
+              (rm|remove|up|update)
+                  pkglist=( $_zypp_installed )
+                  compadd $pkglist && return
+                  ;;
+              (if|info|se|search)
+                  pkglist=( $_zypp_all )
+                  compadd $pkglist && return
+                  ;;
           esac
         fi
     else