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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
#compdef udisksctl
#
# ------------------------------------------------------------------------------
# The MIT License
#
# Copyright 2014 Damir Jelić
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# ------------------------------------------------------------------------------
# Description
# -----------
#
# Completion script for udisksctl (https://github.com/storaged-project/udisks)
#
# ------------------------------------------------------------------------------
# Authors
# -------
#
# * Damir Jelić <poljarinho at gmail.com> [1]
# * Ole Jørgen Brønner <olejorgenb at yahoo.no> (minor additions)
#
# [1] https://lists.freedesktop.org/archives/devkit-devel/2014-February/001554.html
#
# ------------------------------------------------------------------------------
# Notes
# -----
#
# udisksctl actually provide built-in support for completion: It accepts an
# special command 'complete' that returns completions. That is what drives the
# upstream bash completion. In the future one might consider rewriting using
# that. (but not sure how straight forward it would be to provide descriptions?)
#
# ------------------------------------------------------------------------------
(( $+functions[_udisksctl_paths] )) ||
_udisksctl_paths() {
local -a _path_list
for _path in $(_call_program paths "udisksctl complete \"udisksctl $words\" $CURSOR" | sed 's/:/\\:/g'); do
_path_list+=$_path
done
_describe 'path' _path_list
}
(( $+functions[_udisksctl_filesystems] )) ||
_udisksctl_filesystems() {
local -a _fs_types=(
'adfs' 'affs' 'autofs' 'btrfs' 'ceph' 'cifs' 'coda' 'coherent' 'cramfs'
'debugfs' 'devpts' 'efs' 'exfat' 'ext' 'ext2' 'ext3' 'ext4' 'hfs' 'hfsplus'
'hpfs' 'iso9660' 'jfs' 'minix' 'msdos' 'ncpfs' 'nfs' 'nfs4' 'ntfs' 'proc'
'qnx4' 'ramfs' 'reiserfs' 'romfs' 'squashfs' 'smbfs' 'sysv' 'tmpfs' 'ubifs'
'udf' 'ufs' 'umsdos' 'usbfs' 'vfat' 'xenix' 'xfs' 'xiafs'
)
_describe 'file system type' _fs_types
}
_udisksctl() {
typeset -A opt_args
local curcontext="$curcontext" state line ret=1
_arguments -C \
'1:udisksctl commands:->cmds' \
'*:: :->cmd_args' && ret=0
case $state in
cmds)
local commands; commands=(
'help:show help'
'info:show info about an object'
'dump:show info about all object'
'status:shows high-level status'
'monitor:monitor changes to objects'
'mount:mount a filesystem'
'unmount:unmount a filesystem'
'unlock:unlock an encrypted device'
'lock:lock an encrypted device'
'loop-setup:set-up a loop device'
'loop-delete:delete a loop device'
'power-off:safely power off a drive'
'smart-simulate:set SMART data for a drive'
)
_describe -t commands 'udisksctl command' commands && ret=0
;;
cmd_args)
case $words[1] in
info)
_arguments \
{-p,--object-path}'[specify object to get information about]:object path:_udisksctl_paths' \
{-b,--block-device}'[specify block device to get information about]:block device:_udisksctl_paths' \
{-d,--drive}'[specify drive to get information about]:drive:_udisksctl_paths' && ret=0
;;
mount)
_arguments \
{-p,--object-path}'[specify object to mount]:object path:_udisksctl_paths' \
{-b,--block-device}'[specify block device to mount]:block device:_udisksctl_paths' \
{-t,--filesystem-type}'[specify filesystem type to use]:fs type:_udisksctl_filesystems' \
{-o,--options}'[mount options]' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
unmount)
_arguments \
{-p,--object-path}'[object to unmount]:object path:_udisksctl_paths' \
{-b,--block-device}'[block device to unmount]:block device:_udisksctl_paths' \
{-f,--force}'[force/lazy unmount]' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
unlock|lock)
_arguments \
{-p,--object-path}'[object to lock/unlock]:object path:_udisksctl_paths' \
{-b,--block-device}'[block device to lock/unlock]:block device:_udisksctl_paths' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
loop-setup)
_arguments \
{-f,--file}'[specify file to set-up a loop device for]:files:_files' \
{-r,--read-only}'[setup read-only device]' \
{-o,--offset}'[start at specified offset into file]:offset (bytes)' \
{-s,--size}'[limit size]:limit (bytes)' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
loop-delete)
_arguments \
{-p,--object-path}'[object for loop device to delete]:object path:_udisksctl_paths' \
{-b,--block-device}'[loop device to delete]:block device:_udisksctl_paths' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
power-off)
_arguments \
{-p,--object-path}'[object path for ATA device]:object path:_udisksctl_paths' \
{-b,--block-device}'[device file for ATA device]:block device:_udisksctl_paths' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
smart-simulate)
_arguments \
{-f,--file}'[file with libatasmart blob]:files:_files' \
{-p,--object-path}'[object to get information about]:object path:_udisksctl_paths' \
{-b,--block-device}'[block device to get information about]:block device:_udisksctl_paths' \
"(--no-user-interaction)--no-user-interaction[don't authenticate the user if needed]" && ret=0
;;
esac
;;
esac
return ret
}
_udisksctl "$@"
# Local Variables:
# mode: Shell-Script
# sh-indentation: 2
# indent-tabs-mode: nil
# sh-basic-offset: 2
# End:
# vim: ft=zsh sw=2 ts=2 et
|