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
|
# -*- 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
# Audacious subplugin for CurrentSong plugin
# by rescbr, Patrick Dessalle
VERSION = '0.2'
IFACE_NAME = 'org.atheme.audacious'
IFACE_PATH = '/org/atheme/audacious'
# Documentation for the dbus: http://svn.atheme.org/audacious/trunk/src/audacious/objects.xml
import os
import commands
import CurrentSong
class Audacious( CurrentSong.DbusBase ):
def __init__( self ):
# init for this class
CurrentSong.DbusBase.__init__( self, IFACE_NAME, self.setInterface )
try:
self.iface
except:
self.iface = None # We don't run a recent Audacious with dbus support
self.playingNow = '' # We'll use that variable to hold the filename as returned by Audacious
def setInterface( self ):
self.iface = self.bus.get_object( IFACE_NAME, IFACE_PATH )
def isPlaying( self ):
if self.iface:
return self.iface.Status() == "playing" #Note: self.iface.Playing() returns True even if it's paused
else:
return commands.getoutput("audtool playback-status") == "playing"
def getStatus( self ):
'''check if everything is OK to start the plugin
return a tuple whith a boolean and a message
if OK -> ( True , 'some message' )
else -> ( False , 'error message' )'''
if os.name != 'posix':
return ( False, _( 'This plugin only works in posix systems' ) ) #no posix here
if not self.is_on_path( 'audtool' ) and not self.iface:
return ( False, _( 'audtool is not on the path and you don\'t have dbus enabled.' ) ) #no audtool here
return ( True, 'Ok' ) #ok, run baby!
def getCurrentSong( self ):
if not self.iface:
if self.isPlaying():
song = commands.getoutput( "audtool current-song" )
fsong = '\\0Music\\01\\0' + song + '\\0\\0'
return fsong
else:
return ''
else: #Use the parseStyle from the super class
return self.parseStyle()
def check( self ):
if self.iface:
if self.isPlaying():
songPosition = self.iface.Position()
artist = self.iface.SongTuple(songPosition, "artist")
title = self.iface.SongTuple(songPosition, "title")
album = self.iface.SongTuple(songPosition, "album")
if self.artist != artist or self.title != title or self.album != album:
self.artist = artist
self.title = title
self.album = album
self.filename = self.iface.SongTitle(songPosition)
return True
else: # Just stopped, paused, ... set the data as empty strings
if self.artist != "" or self.title != "" or self.album != "":
self.artist = ""
self.title = ""
self.album = ""
self.filename = ""
return True
elif self.isPlaying():
currentSong = self.getCurrentSong()
if self.playingNow != currentSong:
self.playingNow = currentSong
return True
elif self.playingNow != "": # Just stopped, paused ... set to an empty string
self.playingNow = ""
return True
# Not playing or no changes
return False
|