/usr/lib/python2.7/dist-packages/quodlibet/commands.py is in exfalso 3.9.1-1.2.
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 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 | # -*- coding: utf-8 -*-
# Copyright 2004-2005 Joe Wreschnig, Michael Urman, IƱigo Serna,
# 2011-2013,2016 Nick Boultbee
# 2014 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation
import os
from senf import uri2fsn, fsnative, fsn2text, text2fsn
from quodlibet.util.string import split_escape
from quodlibet import browsers
from quodlibet.compat import listfilter, text_type
from quodlibet import util
from quodlibet.util import print_d, print_e
from quodlibet.qltk.browser import LibraryBrowser
from quodlibet.qltk.properties import SongProperties
from quodlibet.util.library import scan_library
class CommandError(Exception):
pass
class CommandRegistry(object):
"""Knows about all commands and handles parsing/executing them"""
def __init__(self):
self._commands = {}
def register(self, name, args=0, optional=0):
"""Register a new command function
The functions gets zero or more arguments as `fsnative`
and should return `None` or `fsnative`. In case an error
occured the command should raise `CommandError`.
Args:
name (str): the command name
args (int): amount of required arguments
optional (int): amoutn of additional optional arguments
Returns:
Callable
"""
def wrap(func):
self._commands[name] = (func, args, optional)
return func
return wrap
def handle_line(self, app, line):
"""Parses a command line and executes the command.
Can not fail.
Args:
app (Application)
line (fsnative)
Returns:
fsnative or None
"""
assert isinstance(line, fsnative)
# only one arg supported atm
parts = line.split(" ", 1)
command = parts[0]
args = parts[1:]
print_d("command: %r(*%r)" % (command, args))
try:
return self.run(app, command, *args)
except CommandError as e:
print_e(e)
except:
util.print_exc()
def run(self, app, name, *args):
"""Execute the command `name` passing args
May raise CommandError
"""
if name not in self._commands:
raise CommandError("Unknown command %r" % name)
cmd, argcount, optcount = self._commands[name]
if len(args) < argcount:
raise CommandError("Not enough arguments for %r" % name)
if len(args) > argcount + optcount:
raise CommandError("Too many arguments for %r" % name)
print_d("Running %r with params %s " % (cmd.__name__, args))
try:
result = cmd(app, *args)
except CommandError as e:
raise CommandError("%s: %s" % (name, str(e)))
else:
if result is not None and not isinstance(result, fsnative):
raise CommandError(
"%s: returned %r which is not fsnative" % (name, result))
return result
def arg2text(arg):
"""Like fsn2text but is strict by default and raises CommandError"""
try:
return fsn2text(arg, strict=True)
except ValueError as e:
raise CommandError(e)
registry = CommandRegistry()
@registry.register("previous")
def _previous(app):
app.player.previous()
@registry.register("force-previous")
def _force_previous(app):
app.player.previous(True)
@registry.register("next")
def _next(app):
app.player.next()
@registry.register("pause")
def _pause(app):
app.player.paused = True
@registry.register("play")
def _play(app):
player = app.player
if player.song:
player.paused = False
@registry.register("play-pause")
def _play_pause(app):
player = app.player
if player.song is None:
player.reset()
else:
player.paused ^= True
@registry.register("stop")
def _stop(app):
app.player.stop()
@registry.register("focus")
def _focus(app):
app.present()
@registry.register("volume", args=1)
def _volume(app, value):
if not value:
raise CommandError("invalid arg")
if value[0] in ('+', '-'):
if len(value) > 1:
try:
change = (int(value[1:]) / 100.0)
except ValueError:
return
else:
change = 0.05
if value[0] == '-':
change = -change
volume = app.player.volume + change
else:
try:
volume = (int(value) / 100.0)
except ValueError:
return
app.player.volume = min(1.0, max(0.0, volume))
@registry.register("stop-after", args=1)
def _stop_after(app, value):
po = app.player_options
if value == "0":
po.stop_after = False
elif value == "1":
po.stop_after = True
elif value == "t":
po.stop_after = not po.stop_after
else:
raise CommandError("Invalid value %r" % value)
@registry.register("shuffle", args=1)
def _shuffle(app, value):
po = app.player_options
if value in ["0", "off"]:
po.shuffle = False
elif value in ["1", "on"]:
po.shuffle = True
elif value in ["t", "toggle"]:
po.shuffle = not po.shuffle
@registry.register("repeat", args=1)
def _repeat(app, value):
po = app.player_options
if value in ["0", "off"]:
po.repeat = False
elif value in ["1", "on"]:
print_d("Enabling repeat")
po.repeat = True
elif value in ["t", "toggle"]:
po.repeat = not po.repeat
@registry.register("seek", args=1)
def _seek(app, time):
player = app.player
if not player.song:
return
seek_to = player.get_position()
if time[0] == "+":
seek_to += util.parse_time(time[1:]) * 1000
elif time[0] == "-":
seek_to -= util.parse_time(time[1:]) * 1000
else:
seek_to = util.parse_time(time) * 1000
seek_to = min(player.song.get("~#length", 0) * 1000 - 1,
max(0, seek_to))
player.seek(seek_to)
@registry.register("play-file", args=1)
def _play_file(app, value):
app.window.open_file(value)
@registry.register("toggle-window")
def _toggle_window(app):
if app.window.get_property('visible'):
app.hide()
else:
app.show()
@registry.register("hide-window")
def _hide_window(app):
app.hide()
@registry.register("show-window")
def _show_window(app):
app.show()
@registry.register("set-rating", args=1)
def _set_rating(app, value):
song = app.player.song
if not song:
return
value = arg2text(value)
try:
song["~#rating"] = max(0.0, min(1.0, float(value)))
except (ValueError, TypeError):
pass
else:
app.library.changed([song])
@registry.register("dump-browsers")
def _dump_browsers(app):
response = u""
for i, b in enumerate(browsers.browsers):
response += u"%d. %s\n" % (i, browsers.name(b))
return text2fsn(response)
@registry.register("set-browser", args=1)
def _set_browser(app, value):
if not app.window.select_browser(value, app.library, app.player):
raise CommandError("Unknown browser %r" % value)
@registry.register("open-browser", args=1)
def _open_browser(app, value):
value = arg2text(value)
try:
Kind = browsers.get(value)
except ValueError:
raise CommandError("Unknown browser %r" % value)
LibraryBrowser.open(Kind, app.library, app.player)
@registry.register("random", args=1)
def _random(app, tag):
tag = arg2text(tag)
if app.browser.can_filter(tag):
app.browser.filter_random(tag)
@registry.register("filter", args=1)
def _filter(app, value):
value = arg2text(value)
try:
tag, value = value.split('=', 1)
except ValueError:
raise CommandError("invalid argument")
if app.browser.can_filter(tag):
app.browser.filter(tag, [value])
@registry.register("query", args=1)
def _query(app, value):
value = arg2text(value)
if app.browser.can_filter_text():
app.browser.filter_text(value)
@registry.register("unfilter")
def _unfilter(app):
app.browser.unfilter()
@registry.register("properties", optional=1)
def _properties(app, value=None):
library = app.library
player = app.player
window = app.window
if value is not None:
value = arg2text(value)
if value in library:
songs = [library[value]]
else:
songs = library.query(value)
else:
songs = [player.song]
songs = listfilter(None, songs)
if songs:
window = SongProperties(library, songs, parent=window)
window.show()
@registry.register("enqueue", args=1)
def _enqueue(app, value):
playlist = app.window.playlist
library = app.library
if value in library:
songs = [library[value]]
elif os.path.isfile(value):
songs = [library.add_filename(os.path.realpath(value))]
else:
songs = library.query(arg2text(value))
songs.sort()
playlist.enqueue(songs)
@registry.register("enqueue-files", args=1)
def _enqueue_files(app, value):
"""Enqueues comma-separated filenames or song names.
Commas in filenames should be backslash-escaped"""
library = app.library
window = app.window
songs = []
for param in split_escape(value, ","):
try:
song_path = uri2fsn(param)
except ValueError:
song_path = param
if song_path in library:
songs.append(library[song_path])
elif os.path.isfile(song_path):
songs.append(library.add_filename(os.path.realpath(value)))
if songs:
window.playlist.enqueue(songs)
@registry.register("unqueue", args=1)
def _unqueue(app, value):
window = app.window
library = app.library
playlist = window.playlist
if value in library:
songs = [library[value]]
else:
songs = library.query(arg2text(value))
playlist.unqueue(songs)
@registry.register("quit")
def _quit(app):
app.quit()
@registry.register("status")
def _status(app):
player = app.player
if player.paused:
strings = ["paused"]
else:
strings = ["playing"]
strings.append(type(app.browser).__name__)
po = app.player_options
strings.append("%0.3f" % player.volume)
strings.append("shuffle" if po.shuffle else "inorder")
strings.append("on" if po.repeat else "off")
progress = 0
if player.info:
length = player.info.get("~#length", 0)
if length:
progress = player.get_position() / (length * 1000.0)
strings.append("%0.3f" % progress)
status = u" ".join(strings) + u"\n"
return text2fsn(status)
@registry.register("song-list", args=1)
def _song_list(app, value):
# deprecated
return
@registry.register("queue", args=1)
def _queue(app, value):
window = app.window
value = arg2text(value)
if value.startswith("t"):
value = not window.qexpander.get_property('visible')
else:
value = value not in ['0', 'off', 'false']
window.qexpander.set_property('visible', value)
@registry.register("dump-playlist")
def _dump_playlist(app):
window = app.window
uris = []
for song in window.playlist.pl.get():
uris.append(song("~uri"))
return text2fsn(u"\n".join(uris) + u"\n")
@registry.register("dump-queue")
def _dump_queue(app):
window = app.window
uris = []
for song in window.playlist.q.get():
uris.append(song("~uri"))
return text2fsn(u"\n".join(uris) + u"\n")
@registry.register("refresh")
def _refresh(app):
scan_library(app.library, False)
@registry.register("print-query", args=1)
def _print_query(app, query):
"""Queries library, dumping filenames of matches to stdout
See Issue 716
"""
query = arg2text(query)
songs = app.library.query(query)
return "\n".join([song("~filename") for song in songs]) + "\n"
@registry.register("print-query-text")
def _print_query_text(app):
if app.browser.can_filter_text():
return text2fsn(text_type(app.browser.get_filter_text()) + u"\n")
@registry.register("print-playing", optional=1)
def _print_playing(app, fstring=None):
from quodlibet.formats import AudioFile
from quodlibet.pattern import Pattern
if fstring is None:
fstring = u"<artist~album~tracknumber~title>"
else:
fstring = arg2text(fstring)
song = app.player.info
if song is None:
song = AudioFile({"~filename": fsnative(u"/")})
song.sanitize()
return text2fsn(Pattern(fstring).format(song) + u"\n")
@registry.register("uri-received", args=1)
def _uri_received(app, uri):
uri = arg2text(uri)
app.browser.emit("uri-received", uri)
|