File: Rhythmbox.py

package info (click to toggle)
emesene 1.0-dist-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 4,596 kB
  • ctags: 3,006
  • sloc: python: 25,171; makefile: 14; sh: 1
file content (81 lines) | stat: -rw-r--r-- 2,732 bytes parent folder | download
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
# -*- coding: utf-8 -*-

#   This file is part of emesene.
#
#    Emesene is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    emesene is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with emesene; if not, write to the Free Software
#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

# signal code:
# self.bus.add_signal_receiver( self.on_playing_uri_changed, \
#     'playingUriChanged', PLAYER_NAME, None, PLAYER_PATH )
# self.bus.add_signal_receiver( self.on_playing_changed, \
#     'playingChanged', PLAYER_NAME, None, PLAYER_PATH)
# self.bus.remove_signal_receiver( ... )

# based on plugin by Alberto Talavera

VERSION = '0.2'

#HELL_NAME = 'OMGWTFBBQ'
OBJECT_NAME = 'org.gnome.Rhythmbox'
PLAYER_NAME = 'org.gnome.Rhythmbox.Player'
PLAYER_PATH = '/org/gnome/Rhythmbox/Player'
SHELL_NAME = 'org.gnome.Rhythmbox.Shell'
SHELL_PATH = '/org/gnome/Rhythmbox/Shell'

import CurrentSong

class Rhythmbox( CurrentSong.DbusBase ):
    '''Rhythmbox interface'''
    
    def __init__( self ):
        CurrentSong.DbusBase.__init__( self, OBJECT_NAME, self.setInterface )
        try: self.iface
        except: self.iface = None
        
        try: self.rbshell
        except: self.rbshell = None
        
        self.uri = ''
    
    def setInterface( self ):
        rbobj = self.bus.get_object( OBJECT_NAME, PLAYER_PATH )
        self.iface = self.module.Interface( rbobj, PLAYER_NAME )
        rbshellobj = self.bus.get_object( OBJECT_NAME, SHELL_PATH )
        self.rbshell = self.module.Interface( rbshellobj, SHELL_NAME )
        
    def setCurrentSongData( self, uri ):
        if not self.rbshell: return
        
        data = self.rbshell.getSongProperties( uri )
        self.title = data['title']
        self.artist = data['artist']
        self.album = data['album']
        self.uri = uri
    
    def check( self ):
        if not self.iface or not self.isNameActive(OBJECT_NAME):
            return
        
        uri = self.iface.getPlayingUri()
        if uri != self.uri:
            self.setCurrentSongData( uri )
            return True
        return False
    
    def isPlaying( self ):
        if not self.iface:
            return False
        else:
            return bool( self.iface.getPlaying() )