mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-19 11:31:26 +01:00
Merge new completions workers/2374{5,6,8,9} onto 4.2 branch.
This commit is contained in:
parent
ac91d07647
commit
a1b150c1f6
3 changed files with 696 additions and 0 deletions
305
Completion/Unix/Command/_cdrdao
Normal file
305
Completion/Unix/Command/_cdrdao
Normal file
|
@ -0,0 +1,305 @@
|
|||
#compdef cdrdao
|
||||
|
||||
# TODO: Options must come before parameters.
|
||||
|
||||
# Command completion and main loop {{{1
|
||||
|
||||
_cdrdao_commands () {
|
||||
local -a commands
|
||||
|
||||
commands=(
|
||||
'show-toc:print out a summary of a TOC'
|
||||
'read-toc:create a TOC file based on a CD'
|
||||
'read-cd:create a TOC file and image file based on a CD'
|
||||
'read-cddb:add CD-TEXT data from a CDDB server to a TOC'
|
||||
'show-data:print out samples that would be written to CD'
|
||||
'read-test:check if data described in a TOC can be read from a CD'
|
||||
'disk-info:show information about a CD'
|
||||
'msinfo:generate mkisofs command for creating multi-session CD'
|
||||
'unlock:try to unlock a recorder after a failed run'
|
||||
'blank:blank a CD-RW'
|
||||
'simulate:simulate a write'
|
||||
'write:write a CD based on a TOC'
|
||||
'copy:copy a CD'
|
||||
)
|
||||
|
||||
_describe -t commands 'cdrdao command' commands && ret=0
|
||||
}
|
||||
|
||||
_cdrdao () {
|
||||
local curcontext=$curcontext ret=1
|
||||
|
||||
local context state line
|
||||
typeset -A opt_args
|
||||
_arguments \
|
||||
':command:->command' \
|
||||
'*::options:->options' && ret=0
|
||||
case $state in
|
||||
(command)
|
||||
_cdrdao_commands
|
||||
;;
|
||||
(options)
|
||||
curcontext="${curcontext%:*:*}:cdrdao-$words[1]:"
|
||||
_call_function ret _cdrdao-$words[1]
|
||||
;;
|
||||
esac
|
||||
|
||||
}
|
||||
|
||||
# Common arguments {{{1
|
||||
|
||||
declare -ga tmpfile_args
|
||||
tmpfile_args=(
|
||||
'--tmpdir[directory to store temporary data in]:directory:_directories'
|
||||
'--keep[do not remove temporary data when done]')
|
||||
|
||||
declare -ga device_args
|
||||
device_args=(
|
||||
'--device[set SCSI address of the CD recorder]:device:__cdrdao-device'
|
||||
'--driver[use given driver for the CD recorder]:driver:__cdrdao-drivers')
|
||||
|
||||
# TODO: Gah! Fix a cddb server spec matcher
|
||||
declare -ga cddb_args
|
||||
cddb_args=(
|
||||
'--cddb-servers[specify list of CDDB servers to use]:CDDB servers:'
|
||||
'--cddb-timeout[specify timeout in seconds for connections to CDDB servers]: :_guard "[[\:digit\:]]" timeout'
|
||||
'--cddb-directory[directory where fetched CDDB records will be stored]:directory:_directories')
|
||||
|
||||
declare -g paranoiamode_arg=
|
||||
paranoiamode_arg='--paranoia-mode[set correction mode for digital audio extraction]:mode:(("0\:no checking" "1\:perform overlapped reading to avoid jitter" "2\:like 1 but with checks of read audio data" "3\:like 2 but with scratch detection/repair (default)"))'
|
||||
|
||||
declare -g fasttoc_arg=
|
||||
fasttoc_arg='--fast-toc[skip pre-gap-length and index-mark extraction]'
|
||||
|
||||
declare -g swap_arg=
|
||||
swap_arg='--swap[swap the byte order of samples]'
|
||||
|
||||
declare -g reload_arg=
|
||||
reload_arg='--reload[reload the disk if necessary]'
|
||||
|
||||
declare -g eject_arg=
|
||||
eject_arg='--eject[eject CD after completed operation]'
|
||||
|
||||
declare -g speed_arg=
|
||||
speed_arg='-speed[set writing speed]: :_guard "[[\:digit\:]]##" speed'
|
||||
|
||||
declare -ga common_args
|
||||
common_args=(
|
||||
'(*)'{-h,--help}'[display command/option summary]'
|
||||
'-v[set verbosity level]: :_guard "[[\:digit\:]]##" verbosity')
|
||||
|
||||
declare -ga common_toc_args
|
||||
common_toc_args=(
|
||||
$common_args
|
||||
':TOC file:_files -g "*.toc"')
|
||||
|
||||
declare -ga common_device_args
|
||||
common_device_args=(
|
||||
$common_args
|
||||
$device_args)
|
||||
|
||||
declare -ga common_toc_device_args
|
||||
common_toc_device_args=(
|
||||
$common_toc_args
|
||||
$common_device_args
|
||||
$force_arg)
|
||||
|
||||
declare -ga common_read_args
|
||||
common_read_args=(
|
||||
'--rspeed[set reading speed]: :_guard "[[\:digit\:]]##" speed'
|
||||
'--session[specify what session to process on multi-session CDs]: :_guard "[[\:digit\:]]##" "session number"'
|
||||
'--read-subchan[set sub-channel reading-mode]:mode:(("rw\:de-interleaved and error corrected" "rw_raw\:not de-interleaved, not error-corrected, and L-EC data included"))'
|
||||
'--tao-source[indicate that source CD was written in TAO mode]'
|
||||
'--with-cddb[retrieve CD-TEXT data from a CDDB server]')
|
||||
|
||||
# Sub-command completion {{{1
|
||||
|
||||
_cdrdao-show-toc () {
|
||||
__cdrdao-show-toc-or-toc-info-or-toc-size
|
||||
}
|
||||
|
||||
_cdrdao-toc-info () {
|
||||
__cdrdao-show-toc-or-toc-info-or-toc-size
|
||||
}
|
||||
|
||||
_cdrdao-toc-size () {
|
||||
__cdrdao-show-toc-or-toc-info-or-toc-size
|
||||
}
|
||||
|
||||
__cdrdao-show-toc-or-toc-info-or-toc-size () {
|
||||
_arguments \
|
||||
$common_toc_args \
|
||||
$tmpfile_args && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-read-toc () {
|
||||
__cdrdao-read-toc-or-read-cd \
|
||||
$fasttoc_arg
|
||||
}
|
||||
|
||||
_cdrdao-read-cd () {
|
||||
__cdrdao-read-toc-or-read-cd \
|
||||
$paranoiamode_arg
|
||||
}
|
||||
|
||||
__cdrdao-read-toc-or-read-cd () {
|
||||
local -a dependent_args
|
||||
|
||||
__cdrdao-read-toc-or-read-cd-or-copy-dependent-args
|
||||
|
||||
_arguments \
|
||||
$common_toc_device_args \
|
||||
$common_read_args \
|
||||
$dependent_args
|
||||
'--datafile[set name of data file placed in TOC file]:file:_files' \
|
||||
'--read-raw[read data in raw format from CD]' \
|
||||
'--no-mode2-mixed[if MODE2_FORM1 or MODE2_FORM2, do not extract as MODE2_FORM_MIX]' \
|
||||
$* && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-read-cddb () {
|
||||
_arguments \
|
||||
$common_toc_args \
|
||||
$cddb_args && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-show-data () {
|
||||
_arguments \
|
||||
$common_toc_args \
|
||||
$swap_arg && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-read-test () {
|
||||
_arguments \
|
||||
$common_toc_args && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-disk-info () {
|
||||
__cdrdao-disk-info-or-drive-info
|
||||
}
|
||||
|
||||
__cdrdao-disk-info-or-drive-info () {
|
||||
_arguments \
|
||||
$common_device_args && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-msinfo () {
|
||||
_arguments \
|
||||
$common_device_args \
|
||||
$reload_arg && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-drive-info () {
|
||||
__cdrdao-disk-info-or-drive-info
|
||||
}
|
||||
|
||||
_cdrdao-unlock () {
|
||||
_arguments \
|
||||
$common_device_args \
|
||||
$reload_arg \
|
||||
$eject_arg && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-blank () {
|
||||
_arguments \
|
||||
$common_device_args \
|
||||
$speed_arg \
|
||||
'--blank-mode[set the blanking mode]:blanking mode:(("full\:completely erase data" "minimal\:only dereference data"))' \
|
||||
$eject_arg && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-scanbus () {
|
||||
_arguments \
|
||||
$common_args && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-simulate () {
|
||||
__cdrdao-simulate-or-write
|
||||
}
|
||||
|
||||
__cdrdao-simulate-or-write () {
|
||||
local capacity_arg=
|
||||
|
||||
if (( $words[(I)--full-burn] )); then
|
||||
capacity_arg='--capacity[set disk capacity for --full-burn]: :_guard "[[\:digit\:]]" minutes'
|
||||
fi
|
||||
|
||||
_arguments \
|
||||
$common_toc_device_args \
|
||||
$speed_arg \
|
||||
'--multi[do not close the session after successful write]' \
|
||||
'--overburn[allow overburing of medium]' \
|
||||
'--full-burn[force burning to the outer disk edge]' \
|
||||
$capacity_arg \
|
||||
$eject_arg \
|
||||
$swap_arg \
|
||||
'--buffers[set fifo buffer size]: :_guard "[[\:digit\:]]" size' \
|
||||
$reload_arg \
|
||||
$tmpfile_args \
|
||||
'-n[do not pause before writing]' \
|
||||
$* && ret=0
|
||||
}
|
||||
|
||||
_cdrdao-write () {
|
||||
__cdrdao-simulate-or-write \
|
||||
'--simulate[only perform a write simulation]' \
|
||||
'--buffer-under-run-protection[whether to use buffer under-run protection]:buffer under-run protection setting:(("0\:disable buffer under-run protection" "1\:enable buffer under-run protection"))' \
|
||||
'--write-speed-control[whether to use writing-speed control]:writing-speed control setting:(("0\:disable writing-speed control" "1\:enable writing-speed control"))' \
|
||||
$*
|
||||
}
|
||||
|
||||
__cdrdao-read-toc-or-read-cd-or-copy-dependent-args () {
|
||||
if (( words[(I)--tao-source] )); then
|
||||
dependent_args+='--tao-source-adjust[specify number of link blocks for tracks written in TAO mode]: :_guard "[[\:digit\:]]##" "link blocks"'
|
||||
fi
|
||||
|
||||
if (( words[(I)--with-cddb] )); then
|
||||
dependent_args+=$cddb_args
|
||||
fi
|
||||
}
|
||||
|
||||
_cdrdao-copy () {
|
||||
local -ga dependent_args
|
||||
|
||||
__cdrdao-read-toc-or-read-cd-or-copy-dependent-args
|
||||
|
||||
_cdrdao-write \
|
||||
$dependent_args
|
||||
$common_read_args
|
||||
'--source-device[set SCSI address of the CD reader]:device:__cdrdao-device' \
|
||||
'--source-driver[use given driver for the CD reader]:driver:__cdrdao-drivers' \
|
||||
'--on-the-fly[perform on-the-fly copy of CD (no image created)]' \
|
||||
$fasttoc_arg \
|
||||
'--keepimage[do not remove generated image when done]' \
|
||||
$paranoiamode_arg && ret=0
|
||||
}
|
||||
|
||||
# Type completion {{{1
|
||||
|
||||
__cdrdao-device () {
|
||||
# Use cdrdao scanbus and also check what OS we’re running under and provide
|
||||
# additional stuff, like devices (/dev/sg0)
|
||||
local -a devices
|
||||
|
||||
devices=(${(f)"$(_call_program devices cdrdao scanbus -v 0 2>/dev/null)"})
|
||||
if (( ${#pipestatus:#0} > 0 )); then
|
||||
return 1
|
||||
fi
|
||||
|
||||
_wanted devices expl 'device' compadd - $devices
|
||||
}
|
||||
|
||||
__cdrdao-drivers () {
|
||||
local -a drivers
|
||||
|
||||
drivers=(${(f)"$(_call_program drivers cut -d'|' -f4 /usr/share/cdrdao/drivers -s 2>/dev/null | sort -u)"})
|
||||
if (( ${#pipestatus:#0} > 0 )); then
|
||||
return 1
|
||||
fi
|
||||
|
||||
_wanted drivers expl 'driver' compadd -qS: - $drivers
|
||||
}
|
||||
|
||||
# }}}1
|
||||
|
||||
_cdrdao
|
46
Completion/Unix/Command/_genisoimage
Normal file
46
Completion/Unix/Command/_genisoimage
Normal file
|
@ -0,0 +1,46 @@
|
|||
#compdef genisoimage
|
||||
|
||||
_arguments \
|
||||
'-nobak[do not include backup files]' \
|
||||
'-no-bak[do not include backup files]' \
|
||||
'-abstract:abstract filename:_files' \
|
||||
'(-A -appid)'{-A,-appid}':application ID:' \
|
||||
'-biblio:bibliographic filename:_files' \
|
||||
'-cache-inodes[cache inodes]' \
|
||||
'-no-cache-inodes[do not cache inodes]' \
|
||||
'-check-oldnames[check all imported ISO9660 names from old session]' \
|
||||
'-check-session[check all ISO9660 names from previous session]:_files' \
|
||||
'-copyright:copyright filename:_files' \
|
||||
'-debug[set debug flag]' \
|
||||
'(-b -eltorito-boot)'{-b,-eltorito-boot}':boot image:_files' \
|
||||
'-eltorito-alt-boot[start specifying alternative El Torito boot parameters]' \
|
||||
'(-B -sparc-boot)'{-B,-sparc-boot}':boot image:_files' \
|
||||
'-sunx86-boot:boot image:_files' \
|
||||
'(-G -generic-boot)'{-G,-generic-boot}':boot image:_files' \
|
||||
'-sparc-label:label text:' \
|
||||
'-sunx86-label:label text:' \
|
||||
'(-c -eltorito-catalog)'{-c,-eltorito-catalog}':catalog:_files' \
|
||||
'(-C -cdrecord-params)'{-C,-cdrecord-params}':params:' \
|
||||
'(-d -omit-period)'{-d,-omit-period}'[omit trailing periods from filenames]' \
|
||||
'-dir-mode:mode:' \
|
||||
'(-D -disable-deep-relocation)'{-D,-disable-deep-relocation}'[disable deep directory relocation]' \
|
||||
'-file-mode:mode:' \
|
||||
'(-f -follow-links)'{-f,-follow-links}'[follow symbolic links]' \
|
||||
'-gid:gid:' \
|
||||
'-graft-points[allow to use graft points for filenames]' \
|
||||
'-root:dir:_files -/' \
|
||||
'-old-root:dir:_files -/' \
|
||||
'-help[print option help]' \
|
||||
'-hide:globfile:_files' \
|
||||
'-hide-list:file list:_files' \
|
||||
'-hidden:globfile:_files' \
|
||||
'-hidden-list:file list:_files' \
|
||||
'-hide-joliet:globfile:_files' \
|
||||
'-hide-joliet-list:file list:_files' \
|
||||
'-hide-joliet-trans-tbl[hide TRANS.TBL from Joliet tree]' \
|
||||
'-hide-rr-moved[rename RR_MOVED to .rr_moved in Rock Ridge tree]' \
|
||||
'-gui[switch behaviour for GUI]' \
|
||||
'-input-charset:charset:' \
|
||||
'-output-charset:charset:' \
|
||||
'-iso-level:conformance level:(1 2 3 4)' \
|
||||
'*:pathspec:_files'
|
345
Completion/Unix/Command/_growisofs
Normal file
345
Completion/Unix/Command/_growisofs
Normal file
|
@ -0,0 +1,345 @@
|
|||
#compdef mkisofs growisofs
|
||||
|
||||
local context state line
|
||||
typeset -A opt_args
|
||||
|
||||
declare -a find_options
|
||||
|
||||
find_options=(
|
||||
'( -L -P)-H[follow symbolic links encountered on the command line]'
|
||||
'(-H -P)-L[follow all symbolic links]'
|
||||
'(-H -L )-P[do not follow symbolic links (default)]'
|
||||
'(- *)-help[print -find help]'
|
||||
'(- *)-version[print -find version]')
|
||||
|
||||
local find_paths
|
||||
find_paths='*: :_directories'
|
||||
|
||||
declare -a find_operators
|
||||
|
||||
find_operators=(
|
||||
'*-a[logical and of options]'
|
||||
'*-o[logical or of options]')
|
||||
|
||||
declare -a find_expressions
|
||||
|
||||
# TODO: Modes (see _chmod)
|
||||
# TODO: Ranges
|
||||
# TODO: The -type types should be documented correctly and only include D on
|
||||
# Solaris systems (?)
|
||||
# TODO: --sfm is only available on NT systems (i.e., cygwin?)
|
||||
find_expressions=(
|
||||
'*-acl[true if the file has additional ACLs defined]'
|
||||
'*-atime[true if the last-access time is in the specified range]:range'
|
||||
'*-chgrp[change group of file]:group:_group'
|
||||
'*-chmod[change mode of file]:mode'
|
||||
'*-chown[change user of file]:user:_user'
|
||||
'*-ctime[true if the inode-change time is in the specified range]:range'
|
||||
'*-depth[evaluate directory contents before directory itself]'
|
||||
'*-dostat[do not do stat optimization]'
|
||||
'*-exec[execute program on found file]:program: _command_names -e:*\;::program arguments: _normal'
|
||||
'*-false[always false]'
|
||||
'*-fstype[true if the file is on a file system of the given type]:file-system type:_file_systems'
|
||||
'*-group[true if the file is owned by the given group]:group:_groups'
|
||||
'*-inum[true if the inode of the file is in the specified range]:inode range'
|
||||
'*-linkedto[true if the file is linked to the given file]:file:_files'
|
||||
'*-links[true if the file has a number of links to it in the specified range]:number of links'
|
||||
'*-lname[true if symbolic-link name matches the given glob]:glob'
|
||||
'*-local[true if the file is on a local file-system]'
|
||||
'*-lpat[true if symbolic-link name matches the given pattern]:pattern'
|
||||
'*-ls[list found files]'
|
||||
'*-maxdepth[descend at most the given number of directories deep]:maximum search depth:'
|
||||
'*-mindepth[descend at least the given number of directories deep]:minimum search depth'
|
||||
'*-mtime[true if the last-modification time is in the specified range]:range'
|
||||
'*-name[true if file-name matches the given glob]:glob'
|
||||
'*-newer[true if last-modification time is newer than that of the given file]:file:_files'
|
||||
'*-neweraa[true if the last-access time is newer than that of the given file]:file:_files'
|
||||
'*-newerac[true if the last-access time is newer than the inode-change time of the given file]:file:_files'
|
||||
'*-neweram[true if the last-access time is newer than the last-modification time of the given file]:file:_files'
|
||||
'*-newerca[true if the inode-change time is newer than the last-access time of the given file]:file:_files'
|
||||
'*-newercc[true if the inode-change time is newer than that of the given file]:file:_files'
|
||||
'*-newercm[true if the inode-change time is newer than the last-modification time of the given file]:file:_files'
|
||||
'*-newerma[true if the last-modification time is newer than the last-access time of the given file]:file:_files'
|
||||
'*-newermc[true if the last-modification time is newer than the inode-change time of the given file]:file:_files'
|
||||
'*-newermm[true if the last-modification time is newer than that of the given file]:file:_files'
|
||||
'*-nogroup[true if the group of the file is not in the group database]'
|
||||
'*-nouser[true if the user of the file is not in the user database]'
|
||||
'*-ok[execute program on found file, after confirmation]:program: _command_names -e:*\;::program arguments: _normal'
|
||||
'*-pat[true if the file-name matches the given pattern]:pattern'
|
||||
'*-path[true if the full path matches the given glob]:glob'
|
||||
'*-perm[true if the given symbolic or octal permission matches that of the file]:mode'
|
||||
'*-ppat[true if the full path matches the given pattern]:pattern'
|
||||
'*-print[print filenames to stdout separated by newlines]'
|
||||
'*-printnnl[print filenames to stdout separated by spaces]'
|
||||
'*-prune[do not descend into found directory]'
|
||||
'*-size[true if the size of the file is in the given range]:range'
|
||||
'*-sparse[true if the file appears to be sparse]'
|
||||
'*-true[always true]'
|
||||
'*-type[true if the file is of the given type]:file type:((b\:"block (buffered) special" \
|
||||
c\:"character (unbuffered) special" \
|
||||
d\:directory \
|
||||
p\:"named pipe (FIFO)" \
|
||||
f\:"regular file" \
|
||||
l\:"symbolic link" \
|
||||
s\:socket \
|
||||
D\:"door (Solaris)"
|
||||
e\:unknown))'
|
||||
'*-user[true if the file is owned by the given user]:user:_users'
|
||||
'*-xattr[true if the file has extended attributes]'
|
||||
'*'{-xdev,-mount}'[restrict the search to the current file-system]')
|
||||
|
||||
(( $+_cache_mkisofs_find_primaries_not_taking_an_argument )) ||
|
||||
_cache_mkisofs_find_primaries_not_taking_an_argument=(\) ${${${find_expressions:#\*-*\[*\]:*}#\*}%%\[*})
|
||||
|
||||
(( $+_cache_mkisofs_find_primaries_taking_an_argument )) ||
|
||||
_cache_mkisofs_find_primaries_taking_an_argument=(${${${(M)find_expressions:#\*-*\[*\]:*}#\*}%%\[*})
|
||||
|
||||
(( $+functions[_mkisofs_character_sets] )) ||
|
||||
_mkisofs_character_sets () {
|
||||
local expl character_sets
|
||||
character_sets=${${(f)"$(_call_program character-sets mkisofs -input-charset help 2>&1)"}[3,-1]}
|
||||
_wanted character-sets expl 'character set' compadd - $character_sets
|
||||
}
|
||||
|
||||
(( $+functions[_mkisofs_sparc_boot_images] )) ||
|
||||
_mkisofs_sparc_boot_images () {
|
||||
compset -P '*,'
|
||||
sep='-qS,'
|
||||
[[ $words[CURRENT] == ?*,?*,?*,?*,?*,?*,* ]] && sep=
|
||||
_alternative \
|
||||
"boot-images:boot image:_files $sep" \
|
||||
'boot-image-replications:boot-image replication:((...\:"use the previous boot-image for the rest of the partitions"))'
|
||||
}
|
||||
|
||||
# TODO: Need to escape = in the result.
|
||||
(( $+functions[_mkisofs_pathspec] )) ||
|
||||
_mkisofs_pathspec () {
|
||||
local sep
|
||||
if (( $words[(I)-graft-points] )); then
|
||||
if ! compset -P '*[^\\]\='; then
|
||||
sep='-qS='
|
||||
fi
|
||||
fi
|
||||
_files $sep
|
||||
}
|
||||
|
||||
|
||||
integer index_of_find
|
||||
(( index_of_find = $words[(I)-find] ))
|
||||
|
||||
if (( index_of_find > 0 && index_of_find < CURRENT )); then
|
||||
if (( $words[(I)-help] || $words[(I)-version] )); then
|
||||
_message 'no more arguments'
|
||||
elif (( index_of_find == CURRENT - 1 )); then
|
||||
_arguments \
|
||||
$find_options \
|
||||
$find_paths \
|
||||
$find_expressions
|
||||
elif ((( index_of_find == CURRENT - 2 )) &&
|
||||
[[ $words[CURRENT-1] == -([HLP]|-(help|version)) ]]) ||
|
||||
[[ -d $words[CURRENT-1] ]]; then
|
||||
# TODO: all $words[index_of_find,CURRENT-1] must be -d.
|
||||
# But we can perhaps assume that the user hasn’t gone back and changed an
|
||||
# argument without thinking about it carefully…otherwise, all previous
|
||||
# words of interest will have passed the -d test.
|
||||
_arguments \
|
||||
$find_paths \
|
||||
$find_expressions
|
||||
else
|
||||
integer i
|
||||
(( i = index_of_find + 1 ))
|
||||
while [[ $words[i] == -([HLP]|-(help|version)) ]]; do
|
||||
(( i++ ))
|
||||
done
|
||||
while [[ -d $words[i] ]]; do
|
||||
(( i++ ))
|
||||
done
|
||||
words=($words[1,index_of_find] $words[i,-1])
|
||||
(( CURRENT -= i - index_of_find - 1 ))
|
||||
echo one: $i - $CURRENT - $words > /dev/pts/8
|
||||
integer old_words_length
|
||||
(( old_words_length = $#words ))
|
||||
words=(${words:#\\[()\!]})
|
||||
(( CURRENT -= old_words_length - $#words ))
|
||||
echo two: $i - $CURRENT - $words > /dev/pts/8
|
||||
_arguments \
|
||||
$find_operators \
|
||||
$find_expressions
|
||||
fi
|
||||
# elif (( $_cache_mkisofs_find_primaries_not_taking_an_argument[(I)$words[CURRENT-1]] ||
|
||||
# $_cache_mkisofs_find_primaries_taking_an_argument[(I)$words[CURRENT-2]] )); then
|
||||
# _arguments \
|
||||
# $find_operators \
|
||||
# $find_expressions \
|
||||
# '*:fuck: '
|
||||
# echo 3 > /dev/pts/7
|
||||
# else
|
||||
# _arguments \
|
||||
# $find_expressions \
|
||||
# '*:fuck: '
|
||||
# echo 4 > /dev/pts/7
|
||||
# fi
|
||||
else
|
||||
declare -a growisofs_options
|
||||
|
||||
if [[ $service == growisofs ]]; then
|
||||
growisofs_options=(
|
||||
'-Z[burn an initial session to the selected device]:device:->devimg'
|
||||
'-M[merge a session with an existing one on the selected device]:device:->devimg'
|
||||
'-dvd-compat[provide maximum compatibility with DVD-ROM/Video]'
|
||||
'-dry-run[do everything up to the actual burning process]'
|
||||
'-overburn[allow overburning of the media]'
|
||||
'-speed=-[set recording speed]:speed')
|
||||
fi
|
||||
|
||||
# TODO: -M device and -dev device
|
||||
_arguments \
|
||||
'-abstract[specify the abstract file-name]:file:_files' \
|
||||
'-A[specify application id]:application id' \
|
||||
{-allow-leading-dots,-ldots}'[allow ISO9660 filenames to begin with a period]' \
|
||||
'-allow-lowercase[allow lower-case characters in ISO9660 filenames]' \
|
||||
'-allow-multidot[allow more than one dot in ISO9660 filen-names]' \
|
||||
'-biblio[specify the bibliographic file-name]:file:_files' \
|
||||
'(-no-cache-inodes )-cache-inodes[cache inode and device numbers to find hard links to files]' \
|
||||
'( -cache-inodes)-no-cache-inodes[do not cache inode and device numbers]' \
|
||||
'-b[specify path and file-name of a el torito boot-image]:boot image:_files' \
|
||||
'-eltorito-alt-boot[start a new set of el torito boot parameters]' \
|
||||
{-B,-sparc-boot}'[specify comma-separated list of boot images needed for sparc systems]:boot image:_mkisofs_sparc_boot_images' \
|
||||
'-G[specify path and file-name of a generic boot-image]:boot image:_files' \
|
||||
'-hard-disk-boot[specify that the el torito boot-image is a hard-disk image]' \
|
||||
'-no-emul-boot[specify that the el torito boot-image is a "no emulation" image]' \
|
||||
'-no-boot[specify that the el torito CD should be markes an non-bootable]' \
|
||||
'-boot-load-seg[specify the load-segment address of the boot-image for a "no emulation" image]:segment address' \
|
||||
'-boot-lead-size[specify the number of 512-byte sectors to load in "no emulation" mode]:load sectors' \
|
||||
'-boot-info-table[specify that a 56-byte table of CD-ROM-layout information should be written]' \
|
||||
'-C[specify last session start and next session start addresses for CDextra]' \
|
||||
'-c[specify the path and file-name of a boot catalog to be used for an el torito bootable-CD]' \
|
||||
'-check-oldnames[check all filenames imported from an old session against current rules]' \
|
||||
'-check-session[check old session for compliance against current rules]' \
|
||||
'-copyright[specify the path and file-name of the copyright file]' \
|
||||
'-d[omit trailing period from files that do not have a period]' \
|
||||
'-D[do not use deep directory-realocation]' \
|
||||
'-dir-mode[specify the mode of directories]' \
|
||||
'-dvd-video[generate a DVD-Video compliant UDF file-system]' \
|
||||
'-f[follow symbolic links when generating the file system]' \
|
||||
'-file-mode[specify the mode of regular files]' \
|
||||
'-find[the rest of the command line is treated like a find expression]' \
|
||||
'-gid[use the given group-id for files in the image]:group:_groups' \
|
||||
'-gui[behave favorable towards a GUI]' \
|
||||
'-graft-points[allow graft-points in filenames]' \
|
||||
'*-hide[hide files and directories matching the given glob on the image]:glob' \
|
||||
'-hide-list[hide files and directories found in the given file]:file-list file:_files' \
|
||||
'-hide-joliet[hide files and directories matching the given glob in the Joliet tree of the image]:glob' \
|
||||
'-hide-joliet-trans-tbl[hide the TRANS.TBL files from the Joliet tree]' \
|
||||
'-hide-rr-moved[rename the RR_MOVED directory to .rr_moved in the Rock Ridge tree]' \
|
||||
'-input-charset[specify the character set of source files]:character set:_mkisofs_character_sets' \
|
||||
'-output-charset[specify the character set of files in the Rock Ridge tree]:_mkisofs_character_sets' \
|
||||
'-iso-level[specify ISO9660 conformance level]:ISO9660 conformance level:(1 2 3 4)' \
|
||||
'-J[generate a Joliet tree]' \
|
||||
'-joliet-long[generate a Joliet tree allowing filenames up to 103 characters long]' \
|
||||
'-jcharset[specify the character set of files in the Joliet tree]:_mkisofs_character_sets' \
|
||||
'-l[allow full 31-character filenames]' \
|
||||
'-log-file[write all output to the given file]:log file:_files' \
|
||||
'-m[exclude files matching the given glob from the image]:glob' \
|
||||
'-exclude-list[exclude files matching globs in the given file]:glob file:_files' \
|
||||
'-max-iso9660-filenames[allow 37-character ISO9660-filenames]' \
|
||||
'-M[specify path or device to existing ISO9660 image to merge with]:ISO9660 image:_files' \
|
||||
'-dev[specify device of existing ISO9660 image to merge with]:ISO9660 device' \
|
||||
'-N[omit version numbers from ISO9660 filenames]' \
|
||||
'-new-dir-mode[mode to use when creating directories in the ISO9660 image]:mode' \
|
||||
{-nobak,-no-bak}'[do not include backup files on the ISO9660 file-system]' \
|
||||
'-force-rr[do not use the automatic Rock Ridge attribute-recognition for previous sessions]' \
|
||||
'-no-rr[do not use use the Rock Ridge attributes from previous sessions]' \
|
||||
'-no-split-symlink-components[do not split the symbolic-link compontents]' \
|
||||
'-no-split-symlink-fields[do not split the symbolic-link fields]' \
|
||||
'-o[output the ISO9660-file-system image to the given file]:ISO9660 image:_files' \
|
||||
'-pad[pad the end of the image by 150 sectors]' \
|
||||
'-no-pad[do not pad the end of the image by 150 sectors]' \
|
||||
'-path-list[read directory and file-name pathspecs from the given file]' \
|
||||
'-publisher[specify what should be written in the publisher volume-header]' \
|
||||
'-p[specify what should be written in the preparer volume-header]' \
|
||||
'-print-size[print estimated file-system-size in multiples of the sector size and exit]' \
|
||||
'-quiet[output even less information than usual]' \
|
||||
'-R[generate SUSP and RR records using the Rock-Ridge protocol]' \
|
||||
'-r[same as -R, but with more useful UID and GID values]' \
|
||||
'-relaxed-filenames[allow more characters in ISO9660 filenames]' \
|
||||
'-root[move all files and directories into the given directory on the image]:root directory:_directories' \
|
||||
'-rrip110[create ISO9660-file-system images that follow the Rrip v1.10 standard]' \
|
||||
'-rrip112[create ISO9660-file-system images that follow the Rrip v1.12 standard]' \
|
||||
'-old-root[specify the root directory used in a previous session]:old root-directory:_directories' \
|
||||
'-sort[sort files on the image based on weights defined in the given file]:sort-weighting file:_files' \
|
||||
'-sparc-label[set the sun disk-label-name used for the -sparc-boot option]:label' \
|
||||
'-split-output[split the output image into several files ~1GiB in size]' \
|
||||
'-stream-media-size[enable streaming operation and set media size to given number of sectors]:media size in sectors' \
|
||||
'-stream-file-name[reserved for future use]:name' \
|
||||
'-sunx86-boot[specify a comma-separated list of file-system images needed to make a bootable Solaris-x86-CD]:list' \
|
||||
'-sunx86-label[specify the SVr4 disk-label-name for the SVr4 disk-label created with the -sunx86-boot option]:label' \
|
||||
'-sysid[specify the system ID]' \
|
||||
'-T[generate a TRANS.TBL file in each directory on the image]' \
|
||||
'-table-name[alternative translation-table filename]:translation-table filename:_files' \
|
||||
'-ucs-level[specify Unicode conformance-level in the Joliet directory]:Unicode conformance-level:(1 2 3)' \
|
||||
'-udf[include UDF support in the generated file-system image]' \
|
||||
'-uid[use the given user-id for files in the image]:user:_users' \
|
||||
'-use-fileversions[use version numbers found on the file system for files included in the image]' \
|
||||
'-U[allow basically any characters in filenames in the ISO9660 image]' \
|
||||
"-no-iso-translate[do not translate invalid characters '#' and '~' for ISO9660 filenames]" \
|
||||
'-V[specify the volume ID]:volume ID' \
|
||||
'-volset[specify the volume-set ID]:volume-set ID' \
|
||||
'-volset-size[specify the size of the volume-set]:volume-set size' \
|
||||
'-volset-seqno[specify the volume-set sequence-number]:volume-set sequence-number' \
|
||||
'*-v[enable verbose execution (given twice produces additional output)]' \
|
||||
'*-x[exclude complete pathname from the image]:path:_directories' \
|
||||
'-z[generate special RRIP records for transparently compressed files]' \
|
||||
'-hfs[create a ISO9660/HFS-hybrid CD]' \
|
||||
'-apple[create an ISO9660 CD with apple extensions]' \
|
||||
'-map[use the given file to map CREATOR and TYPE information for a file based on extension]:mapping file:_files' \
|
||||
'-magic[the CREATOR and TYPE information is set using the magic number of the file]:magic file:_files' \
|
||||
'-hfs-creator[specify the default CREATOR for all files in the image]:creator' \
|
||||
'-hfs-type[specify the default TYPE for all files in the image]:type' \
|
||||
'-probe[search the contents of files for known Apple/Unix file-formats]' \
|
||||
'-no-desktop[do not create (empty) Desktop files]' \
|
||||
'-map-name[use the HFS filename as the starting point for the image filenames]' \
|
||||
'-boot-hfs-file[use the given file as a boot driver]:boot-driver file:_files' \
|
||||
'-part[generate an HFS partition table]' \
|
||||
'-auto[make the HFS CD auto-start with the given file]:auto-start file:_files' \
|
||||
'-cluster-size[set the size in bytes of allocation units of PC-Exchange files]:cluster size' \
|
||||
'-hide-hfs[hide files matching the given glob from the HFS volume]:glob' \
|
||||
'-hide-hfs-list[hide files matching any of the globs found in the given file]:glob file:_files' \
|
||||
'-hfs-volid[volume name for the HFS partition]:HFS volume-name' \
|
||||
'-icon-position[use the icon-position information from the Apple/Unix file]' \
|
||||
'-root-info[set metadata for the root folder of the HFS volume]' \
|
||||
'*-prep-boot[specify the PReP boot-image-file]:PReP boot-image-file:_files' \
|
||||
'-input--hfs-charset[specify the character set used in HFS filenames]:character set:_mkisofs_character_sets' \
|
||||
'-output-hfs-charset[specify the character set of files in the HFS volume]:_mkisofs_character_sets' \
|
||||
'-hfs-unlock[do not lock the HFS volume]' \
|
||||
'-hfs-bless["bless" the given directory/folder]' \
|
||||
'-hfs-params[override certain parameters used to create the HFS file system]:parameters' \
|
||||
'--cap[look for AUFS CAP Macintosh files]' \
|
||||
'--netatalk[look for NETATALK Macintosh files]' \
|
||||
'--double[look for AppleDouble Macintosh files]' \
|
||||
'--ethershare[look for Helios EtherShare Macintosh files]' \
|
||||
'--ushare[look for IPT UShare Macintosh files]' \
|
||||
'--exchange[look for PC Exchange Macintosh files]' \
|
||||
'--sgi[look for SGI Macintosh files]' \
|
||||
'--xinet[look for XINET Macintosh files]' \
|
||||
'--macbin[look for MacBinary Macintosh files]' \
|
||||
'--single[look for AppleSingle Macintosh files]' \
|
||||
'--dave[look for Thursby Software Systems DAVE Macintosh files]' \
|
||||
"--sfm[look for Microsoft's Services for Macintosh files]" \
|
||||
'--osx-double[look for MacOS X AppleDouble Macintosh files]' \
|
||||
'--osx-hfs[look for MacOS X HFS Macintosh files]' \
|
||||
'(- *)-help[display help message]' \
|
||||
'(- *)-version[display version information]' \
|
||||
$growisofs_options \
|
||||
'*:pathspec:_mkisofs_pathspec' && return 0
|
||||
|
||||
case "$state" in
|
||||
(devimg)
|
||||
if compset -P \*=; then
|
||||
_files
|
||||
else
|
||||
_files -g "*(%,@)"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
Loading…
Reference in a new issue