bumblebee-status/modules/core/cmus.py

132 lines
5.1 KiB
Python
Raw Normal View History

2020-04-28 20:16:15 +02:00
# pylint: disable=C0111,R0903
"""Displays information about the current song in cmus.
Requires the following executable:
* cmus-remote
Parameters:
* cmus.format: Format string for the song information. Tag values can be put in curly brackets (i.e. {artist})
Additional tags:
* {file} - full song file name
* {file1} - song file name without path prefix
if {file} = '/foo/bar.baz', then {file1} = 'bar.baz'
* {file2} - song file name without path prefix and extension suffix
if {file} = '/foo/bar.baz', then {file2} = 'bar'
* cmus.layout: Space-separated list of widgets to add. Possible widgets are the buttons/toggles cmus.prev, cmus.next, cmus.shuffle and cmus.repeat, and the main display with play/pause function cmus.main.
* cmus.server: The address of the cmus server, either a UNIX socket or host[:port]. Connects to the local instance by default.
* cmus.passwd: The password to use for the TCP/IP connection.
"""
from collections import defaultdict
import os
import string
2020-04-28 20:25:28 +02:00
import core.module
import core.widget
import core.input
import core.decorators
2020-04-28 20:16:15 +02:00
2020-04-28 20:25:28 +02:00
import util.cli
import util.format
2020-04-28 20:16:15 +02:00
2020-04-28 20:25:28 +02:00
class Module(core.module.Module):
def __init__(self, config, theme):
super().__init__(config, theme, [])
2020-04-28 20:16:15 +02:00
2020-04-28 20:16:29 +02:00
self._layout = self.parameter('layout', 'cmus.prev cmus.main cmus.next cmus.shuffle cmus.repeat')
self._fmt = self.parameter('format', '{artist} - {title} {position}/{duration}')
self._server = self.parameter('server', None)
self._passwd = self.parameter('passwd', None)
2020-04-28 20:16:15 +02:00
self._status = None
self._shuffle = False
self._repeat = False
self._tags = defaultdict(lambda: '')
# Create widgets
widget_list = []
widget_map = {}
for widget_name in self._layout.split():
2020-04-28 20:25:28 +02:00
widget = core.widget.Widget(name=widget_name)
2020-04-28 20:16:15 +02:00
widget_list.append(widget)
2020-04-28 20:16:29 +02:00
self._cmd = 'cmus-remote'
2020-04-28 20:16:15 +02:00
if self._server is not None:
2020-04-28 20:16:29 +02:00
self._cmd = '{cmd} --server {server}'.format(cmd=self._cmd, server=self._server)
2020-04-28 20:16:15 +02:00
if self._passwd is not None:
2020-04-28 20:16:29 +02:00
self._cmd = '{cmd} --passwd {passwd}'.format(cmd=self._cmd, passwd=self._passwd)
2020-04-28 20:16:15 +02:00
2020-04-28 20:16:29 +02:00
if widget_name == 'cmus.prev':
2020-04-28 20:25:28 +02:00
widget_map[widget] = {'button': core.input.LEFT_MOUSE, 'cmd': '{cmd} -r'.format(cmd=self._cmd)}
2020-04-28 20:16:29 +02:00
elif widget_name == 'cmus.main':
2020-04-28 20:25:28 +02:00
widget_map[widget] = {'button': core.input.LEFT_MOUSE, 'cmd': '{cmd} -u'.format(cmd=self._cmd)}
2020-04-28 20:16:15 +02:00
widget.full_text(self.description)
2020-04-28 20:16:29 +02:00
elif widget_name == 'cmus.next':
2020-04-28 20:25:28 +02:00
widget_map[widget] = {'button': core.input.LEFT_MOUSE, 'cmd': '{cmd} -n'.format(cmd=self._cmd)}
2020-04-28 20:16:29 +02:00
elif widget_name == 'cmus.shuffle':
2020-04-28 20:25:28 +02:00
widget_map[widget] = {'button': core.input.LEFT_MOUSE, 'cmd': '{cmd} -S'.format(cmd=self._cmd)}
2020-04-28 20:16:29 +02:00
elif widget_name == 'cmus.repeat':
2020-04-28 20:25:28 +02:00
widget_map[widget] = {'button': core.input.LEFT_MOUSE, 'cmd': '{cmd} -R'.format(cmd=self._cmd)}
2020-04-28 20:16:15 +02:00
else:
2020-04-28 20:16:29 +02:00
raise KeyError('The cmus module does not support a {widget_name!r} widget'.format(widget_name=widget_name))
2020-04-28 20:16:15 +02:00
self.widgets(widget_list)
# Register input callbacks
for widget, callback_options in widget_map.items():
2020-04-28 20:25:28 +02:00
core.input.register(widget, **callback_options)
2020-04-28 20:16:15 +02:00
def hidden(self):
return self._status is None
2020-04-28 20:25:28 +02:00
@core.decorators.scrollable
2020-04-28 20:16:15 +02:00
def description(self, widget):
return string.Formatter().vformat(self._fmt, (), self._tags)
2020-04-28 20:25:28 +02:00
def update(self):
2020-04-28 20:16:15 +02:00
self._load_song()
def state(self, widget):
returns = {
2020-04-28 20:16:29 +02:00
'cmus.shuffle': 'shuffle-on' if self._shuffle else 'shuffle-off',
'cmus.repeat': 'repeat-on' if self._repeat else 'repeat-off',
'cmus.prev': 'prev',
'cmus.next': 'next',
2020-04-28 20:16:15 +02:00
}
return returns.get(widget.name, self._status)
def _eval_line(self, line):
2020-04-28 20:16:29 +02:00
if line.startswith('file '):
2020-04-28 20:16:15 +02:00
full_file = line[5:]
file1 = os.path.basename(full_file)
file2 = os.path.splitext(file1)[0]
2020-04-28 20:16:29 +02:00
self._tags.update({'file': full_file})
self._tags.update({'file1': file1})
self._tags.update({'file2': file2})
2020-04-28 20:16:15 +02:00
return
2020-04-28 20:16:29 +02:00
name, key, value = (line.split(' ', 2) + [None, None])[:3]
2020-04-28 20:16:15 +02:00
2020-04-28 20:16:29 +02:00
if name == 'status':
2020-04-28 20:16:15 +02:00
self._status = key
2020-04-28 20:16:29 +02:00
if name == 'tag':
2020-04-28 20:16:15 +02:00
self._tags.update({key: value})
2020-04-28 20:16:29 +02:00
if name in ['duration', 'position']:
2020-04-28 20:25:28 +02:00
self._tags.update({name: util.format.duration(int(key))})
2020-04-28 20:16:29 +02:00
if name == 'set' and key == 'repeat':
self._repeat = value == 'true'
if name == 'set' and key == 'shuffle':
self._shuffle = value == 'true'
2020-04-28 20:16:15 +02:00
def _load_song(self):
2020-04-28 20:16:29 +02:00
info = ''
2020-04-28 20:16:15 +02:00
try:
2020-04-28 20:25:28 +02:00
info = util.cli.execute('{cmd} -Q'.format(cmd=self._cmd))
2020-04-28 20:16:15 +02:00
except RuntimeError:
self._status = None
self._tags = defaultdict(lambda: '')
2020-04-28 20:16:29 +02:00
for line in info.split('\n'):
2020-04-28 20:16:15 +02:00
self._eval_line(line)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4