/usr/lib/python3/dist-packages/libqtile/sh.py is in python3-qtile 0.10.7-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | # Copyright (c) 2008, Aldo Cortesi. All rights reserved.
#
# 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.
"""
A command shell for Qtile.
"""
from __future__ import division, print_function
import fcntl
import inspect
import pprint
import re
import readline
import sys
import struct
import six
import termios
from six.moves import input
from . import command
from . import ipc
def terminalWidth():
width = None
try:
cr = struct.unpack('hh', fcntl.ioctl(0, termios.TIOCGWINSZ, '1234'))
width = int(cr[1])
except (IOError, ImportError):
pass
return width or 80
class QSh(object):
"""Qtile shell instance"""
def __init__(self, client, completekey="tab"):
self.clientroot = client
self.current = client
self.completekey = completekey
self.builtins = [i[3:] for i in dir(self) if i.startswith("do_")]
self.termwidth = terminalWidth()
def _complete(self, buf, arg):
if not re.search(r" |\(", buf) or buf.startswith("help "):
options = self.builtins + self._commands
lst = [i for i in options if i.startswith(arg)]
return lst
elif buf.startswith("cd ") or buf.startswith("ls "):
path = [i for i in arg.split("/") if i]
if arg.endswith("/"):
last = ""
else:
last = path[-1]
path = path[:-1]
node = self._findNode(self.current, *path)
options = [str(i) for i in self._ls(node)]
lst = []
path = "/".join(path)
if path:
path += "/"
for i in options:
if i.startswith(last):
lst.append(path + i)
return lst
def complete(self, arg, state):
buf = readline.get_line_buffer()
completers = self._complete(buf, arg)
if completers and state < len(completers):
return completers[state]
@property
def prompt(self):
return "%s> " % self.current.path
def columnize(self, lst, update_termwidth=True):
if update_termwidth:
self.termwidth = terminalWidth()
ret = []
if lst:
lst = list(map(str, lst))
mx = max(map(len, lst))
cols = self.termwidth // (mx + 2) or 1
# We want `(n-1) * cols + 1 <= len(lst) <= n * cols` to return `n`
# If we subtract 1, then do `// cols`, we get `n - 1`, so we can then add 1
rows = (len(lst) - 1) // cols + 1
for i in range(rows):
# Because Python array slicing can go beyond the array bounds,
# we don't need to be careful with the values here
sl = lst[i * cols: (i + 1) * cols]
sl = [x + " " * (mx - len(x)) for x in sl]
ret.append(" ".join(sl))
return "\n".join(ret)
def _inspect(self, obj):
"""Returns an (attrs, keys) tuple"""
if obj.parent and obj.myselector is None:
t, itms = obj.parent.items(obj.name)
attrs = obj._contains if t else None
return (attrs, itms)
else:
return (obj._contains, [])
def _ls(self, obj):
attrs, itms = self._inspect(obj)
all = []
if attrs:
all.extend(attrs)
if itms:
all.extend(itms)
return all
@property
def _commands(self):
try:
# calling `.commands()` here triggers `CommandRoot.cmd_commands()`
return self.current.commands()
except command.CommandError:
return []
def _findNode(self, src, *path):
"""Returns a node, or None if no such node exists"""
if not path:
return src
attrs, itms = self._inspect(src)
next = None
if path[0] == "..":
next = src.parent or src
else:
for trans in [str, int]:
try:
tpath = trans(path[0])
except ValueError:
continue
if attrs and tpath in attrs:
next = getattr(src, tpath)
elif itms and tpath in itms:
next = src[tpath]
if next:
if path[1:]:
return self._findNode(next, *path[1:])
else:
return next
else:
return None
def do_cd(self, arg):
"""Change to another path.
Examples
========
cd layout/0
cd ../layout
"""
next = self._findNode(self.current, *[i for i in arg.split("/") if i])
if next:
self.current = next
return self.current.path or '/'
else:
return "No such path."
def do_ls(self, arg):
"""List contained items on a node.
Examples
========
> ls
> ls ../layout
"""
l = self._ls(self.current)
l = ["%s/" % i for i in l]
return self.columnize(l)
def do_pwd(self, arg):
"""Returns the current working location
This is the same information as presented in the qshell prompt, but is
very useful when running iqshell.
Examples
========
> pwd
/
> cd bar/top
bar['top']> pwd
bar['top']
"""
return self.current.path or '/'
def do_help(self, arg):
"""Give help on commands and builtins
When invoked without arguments, provides an overview of all commands.
When passed as an argument, also provides a detailed help on a specific command or builtin.
Examples
========
> help
> help command
"""
if not arg:
lst = [
"help command -- Help for a specific command.",
"",
"Builtins",
"========",
self.columnize(self.builtins),
]
cmds = self._commands
if cmds:
lst.extend([
"",
"Commands for this object",
"========================",
self.columnize(cmds),
])
return "\n".join(lst)
elif arg in self._commands:
return self._call("doc", "(\"%s\")" % arg)
elif arg in self.builtins:
c = getattr(self, "do_" + arg)
return inspect.getdoc(c)
else:
return "No such command: %s" % arg
def do_exit(self, args):
"""Exit qshell"""
sys.exit(0)
do_quit = do_exit
do_q = do_exit
def _call(self, cmd_name, args):
cmds = self._commands
if cmd_name not in cmds:
return "No such command: %s" % cmd_name
cmd = getattr(self.current, cmd_name)
if args:
args = "".join(args)
else:
args = "()"
try:
val = eval(
"cmd%s" % args,
{},
dict(cmd=cmd)
)
return val
except SyntaxError as v:
return "Syntax error in expression: %s" % v.text
except command.CommandException as val:
return "Command exception: %s\n" % val
except ipc.IPCError:
# on restart, try to reconnect
if cmd_name == 'restart':
client = command.Client(self.clientroot.client.fname)
self.clientroot = client
self.current = client
else:
raise
def process_command(self, line):
match = re.search(r"\W", line)
if match:
cmd = line[:match.start()].strip()
args = line[match.start():].strip()
else:
cmd = line
args = ''
builtin = getattr(self, "do_" + cmd, None)
if builtin:
val = builtin(args)
else:
val = self._call(cmd, args)
return val
def loop(self):
readline.set_completer(self.complete)
readline.parse_and_bind(self.completekey + ": complete")
readline.set_completer_delims(" ()|")
while True:
try:
line = input(self.prompt)
except (EOFError, KeyboardInterrupt):
print()
return
if not line:
continue
val = self.process_command(line)
if isinstance(val, six.string_types):
print(val)
elif val:
pprint.pprint(val)
|