]> kaliko git repositories - mpd-sima.git/blob - sima/plugins/core/uniq.py
Fixed code smell
[mpd-sima.git] / sima / plugins / core / uniq.py
1 # -*- coding: utf-8 -*-
2 # Copyright (c) 2014, 2020 kaliko <kaliko@azylum.org>
3 #
4 #  This file is part of sima
5 #
6 #  sima is free software: you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation, either version 3 of the License, or
9 #  (at your option) any later version.
10 #
11 #  sima is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
15 #
16 #  You should have received a copy of the GNU General Public License
17 #  along with sima.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 #
20 """
21     Publish presence on the MPD host message bus
22
23     Notifies when concurrent instance run on the same host.
24 """
25
26 # standard library import
27 from os import  getpid
28 from socket import getfqdn
29
30 # third parties components
31
32 # local import
33 from ...mpdclient import PlayerError
34 from ...lib.plugin import Plugin
35
36
37 class Uniq(Plugin):
38     """
39     Publish presence on the MPD host message bus
40     """
41
42     def __init__(self, daemon):
43         Plugin.__init__(self, daemon)
44         self.chan = 'mpd_sima:{0}.{1}'.format(getfqdn(), getpid())
45         self.channels = []
46         self._registred = False
47
48     def start(self):
49         if not self.is_capable():
50             self.log.warning('MPD does not provide client to client')
51             return
52         self.is_uniq()
53         if not self._registred:
54             self.sub_chan()
55
56     def is_capable(self):
57         # Groove Basin compatibility
58         # For some reason Groove Basin have channels command but no
59         # subscribe command‽
60         return {'channels', 'subscribe'}.issubset(set(self.player.commands()))
61
62     def get_channels(self):
63         return [chan for chan in self.player.channels() if
64                 chan.startswith('mpd_sima') and chan != self.chan]
65
66     def is_uniq(self):
67         channels = self.get_channels()
68         if channels:
69             self.log.warning('Another instance is queueing on this MPD host')
70             self.log.warning(' '.join(channels))
71
72     def sub_chan(self):
73         self.log.debug('Registering as %s', self.chan)
74         try:
75             self.player.subscribe(self.chan)
76             self._registred = True
77         except PlayerError as err:
78             self.log.error('Failed to register: %s', err)
79
80     def callback_need_track(self):
81         if self.is_capable():
82             self.is_uniq()
83
84
85 # VIM MODLINE
86 # vim: ai ts=4 sw=4 sts=4 expandtab