]> kaliko git repositories - mpd-goodies.git/commitdiff
* add Goodie class (wraps mpdclass and startop together)
authorkaliko <kaliko@azylum.org>
Wed, 4 Apr 2012 14:40:46 +0000 (14:40 +0000)
committerkaliko <kaliko@azylum.org>
Wed, 4 Apr 2012 14:40:46 +0000 (14:40 +0000)
src/crop
src/lib/goodies.py [new file with mode: 0755]
src/lib/mpdclass.py
src/lib/mpdutils.py [deleted file]
src/lib/startop.py
src/mfade
src/mtopls
src/nalbum
src/wakeup

index 5f7dde568d1ec3ccc42510cb0fd084253aa61097..4829a65faf2e82a9d924ec1d2b4a7c06647b823b 100755 (executable)
--- a/src/crop
+++ b/src/crop
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org>
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <efrim@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 
 import sys
 
-from lib.mpdclass import MPDClass
-from lib.startop import StartOpt
+from lib.goodies import Goodie
 
 NAME = 'crop'
 VERSION = '0.1'
 USAGE = 'USAGE:  %prog [--help] | [ <n> ]'
 
 
-class Crop(StartOpt, MPDClass):
+class Crop(Goodie):
     """
     """
     script_info = dict({
@@ -39,8 +38,7 @@ class Crop(StartOpt, MPDClass):
 
     def __init__(self):
         """"""
-        StartOpt.__init__(self, self.__class__.script_info, [])
-        MPDClass.__init__(self)
+        Goodie.__init__(self, self.__class__.script_info)
         self.nb_tracks = 6
         self._get_arg()
         self._run()
diff --git a/src/lib/goodies.py b/src/lib/goodies.py
new file mode 100755 (executable)
index 0000000..3cda566
--- /dev/null
@@ -0,0 +1,50 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2012 Kaliko Jack <kaliko.jack@azylum.org>
+#
+#   This program 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 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+"""
+DOC:
+    All goodies inherit from Goodie which in turn inherits from StartOpt and
+    MPDClass.
+
+    StartOpt deals with command line argument and options, it will look for env.
+    var. $MPD_HOST and $MPD_PORT as well
+
+    MPDClass is a plain MPD client
+"""
+
+from lib.mpdclass import MPDClass
+from lib.startop import StartOpt
+
+
+class Goodie(StartOpt, MPDClass):
+    """"""
+
+    def __init__(self, script_info, extra_options=[]):
+        """"""
+        StartOpt.__init__(self, script_info, extra_options)
+        self.con_id = dict({'host': self.cli_options.host,
+                       'port': self.cli_options.port})
+        MPDClass.__init__(self)
+
+
+# Script starts here
+if __name__ == '__main__':
+    pass
+
+# VIM MODLINE
+# vim: ai ts=4 sw=4 sts=4 expandtab
index 8ea0191212f26cf80bfef63a2bbd0ddb836f866f..d20b022fed5a12f8151228f19f70468cf6749508 100755 (executable)
@@ -1,6 +1,22 @@
-#!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
+#
+#   This program 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 3 of the License, or
+#   (at your option) any later version.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+
+
 import sys
 from socket import error as SocketError
 
@@ -22,10 +38,8 @@ class MPDClass(object):
         """
         Simple wrapper to connect MPD.
         """
-        con_id = dict({'host': self.cli_options.host,
-                       'port': self.cli_options.port})
         try:
-            self.client.connect(**con_id)
+            self.client.connect(**self.con_id)
         except SocketError:
             return False
         return True
diff --git a/src/lib/mpdutils.py b/src/lib/mpdutils.py
deleted file mode 100644 (file)
index ce1b38d..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright (c) 2009 Efrim <efrim@azylum.org> {{{
-#
-#   This program 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 3 of the License, or
-#   (at your option) any later version.
-#
-#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-#  }}}
-
-import sys
-
-from os import environ
-from socket import error as SocketError
-
-try:
-    from mpd import (MPDClient, CommandError)
-except ImportError, err:
-    print 'ERROR: "%s"\n\nPlease install python-mpd module.\n' % err
-    sys.exit(1)
-
-
-def get_mpd_environ():#{{{
-    """
-    Retrieve MPD env. var.
-    """
-    con_id = dict({'host': 'localhost',
-                   'port': int(6600)})
-    passwd = None
-    mpd_host_env = environ.get('MPD_HOST')
-    if mpd_host_env:
-        # If password is set:
-        # mpd_host_env = ['pass', 'host'] because MPD_HOST=pass@host
-        mpd_host_env = mpd_host_env.split('@')
-        mpd_host_env.reverse()
-        con_id.update({'host': mpd_host_env[0]})
-        if len(mpd_host_env) > 1:
-            print 'passwd set in MPD_HOST'
-            passwd = mpd_host_env[1]
-
-    con_id.update({'port': int(environ.get('MPD_PORT', con_id.get('port')))})
-    return (con_id, passwd)#}}}
-
-
-def mpdConnect(client, con_id):#{{{
-    """
-    Simple wrapper to connect MPD.
-    """
-    try:
-        client.connect(**con_id)
-    except SocketError:
-        return False
-    return True#}}}
-
-
-def mpdAuth(client, secret):#{{{
-    """
-    Authenticate
-    """
-    try:
-        client.password(secret)
-    except CommandError:
-        return False
-    return True#}}}
-
-
-def mconnect(host=None, port=None):#{{{
-    """"""
-    ## get connection id from ENV VAR
-    con_id, passwd = get_mpd_environ()
-    if host:
-        con_id.update({'host': host})
-    if port:
-        con_id.update({'port': port})
-    ## MPD object instance
-    client = MPDClient()
-    if mpdConnect(client, con_id):
-        #print 'Got connected!'
-        True
-    else:
-        print 'ERROR: fail to connect MPD server.'
-        sys.exit(1)
-
-    ## Auth if password is set non False
-    if passwd:
-        if mpdAuth(client, passwd):
-            #print 'Pass auth!'
-            True
-        else:
-            print 'ERROR: fail trying to pass auth. Check password?'
-            client.disconnect()
-            sys.exit(1)
-    return client#}}}
-
-def collapse_tags(value):
-    if isinstance(value, list):
-        #self.__dict__[tag] = ", ".join(set(value))
-        self.collapse_tags_bool = True
-        return ', '.join(set(value))
-    return value#}}}
-
-# Script starts here
-if __name__ == '__main__':
-    cli = mconnect()
-    cli.disconnect()
-
-# VIM MODLINE
-# vim: ai ts=4 sw=4 sts=4 expandtab
-
index b73160b3aaf742656d8985efa96ccafce3b28611..c44159f8586a975544915b6019d2339322f35206 100644 (file)
@@ -6,7 +6,6 @@ from os import environ
 
 # Options list
 # pop out 'sw' value before creating OptionParser object.
-##{{{
 OPTS = list([
     {
         'sw': ['-S', '--hostname'],
@@ -19,12 +18,11 @@ OPTS = list([
         'dest': 'port',
         'help': 'Port MPD in listening on (default: 6600 or MPD_PORT if set)'},
 ])
-#}}}
 
 USAGE = u"""USAGE:  %prog [--help] [options]"""
 
 
-def get_mpd_environ():#{{{
+def get_mpd_environ():
     """
     Retrieve MPD env. var.
     """
@@ -43,16 +41,17 @@ def get_mpd_environ():#{{{
         if len(mpd_host_env) > 1:
             print 'passwd set in MPD_HOST'
             passwd = mpd_host_env[1]
+            con_id.update({'passwd': passwd})
     if mpd_port:
         con_id.update({'port': int(mpd_port)})
-    return (con_id, passwd)#}}}
+    return (con_id, passwd)
 
 
 class StartOpt(object):
     """
     """
 
-    def __init__(self, script_info, child_options):#{{{
+    def __init__(self, script_info, child_options):
         # Strong assumption?
         self.localencoding = 'utf8'
         self.parser = None
@@ -63,17 +62,17 @@ class StartOpt(object):
         # options allows to add new cli options within child objects calling
         # parent __init__()
         self.options = list(child_options + OPTS)
-        self.main()#}}}
+        self.main()
 
-    def _get_encoding(self):#{{{
+    def _get_encoding(self):
         """Get local encoding"""
-        self.localencoding = getpreferredencoding()#}}}
+        self.localencoding = getpreferredencoding()
 
     def _u8_convert(self, string):
         """Convert CLI input string to UTF8 (mpd standart)"""
         return unicode(string, self.localencoding).encode('UTF-8')
 
-    def declare_opts(self):#{{{
+    def declare_opts(self):
         """
         Declare options in OptionParser object.
         """
@@ -98,7 +97,7 @@ class StartOpt(object):
             if dest in ['host']:
                 self.parser.set_defaults(host=con_id.get('host'))
             if dest in ['port']:
-                self.parser.set_defaults(port=con_id.get('port'))#}}}
+                self.parser.set_defaults(port=con_id.get('port'))
 
     def main(self):
         """declare options, parse command line"""
@@ -116,4 +115,3 @@ if __name__ == '__main__':
 
 # VIM MODLINE
 # vim: ai ts=4 sw=4 sts=4 expandtab
-
index 0ffd9dfd452184331e720c0ef8aaefc4a943b8ef..2a791caa72ce1fd33a4bb9af3cea766a434a1c3b 100755 (executable)
--- a/src/mfade
+++ b/src/mfade
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org>
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
@@ -28,8 +28,8 @@ import sys
 
 from time import sleep
 
-from lib.mpdclass import MPDClass
-from lib.startop import StartOpt
+from lib.goodies import Goodie
+
 
 NAME = 'mfade'
 VERSION = '0.1'
@@ -39,7 +39,7 @@ to 50% when paused or stopped and from current volume to 10th of it if playing,
 both over 10 minutes."""
 
 
-class Sleep(StartOpt, MPDClass):
+class Sleep(Goodie):
     """"""
     script_info = dict({
         'version': VERSION,
@@ -50,8 +50,7 @@ class Sleep(StartOpt, MPDClass):
 
     def __init__(self):
         """"""
-        StartOpt.__init__(self, self.__class__.script_info, [])
-        MPDClass.__init__(self)
+        Goodie.__init__(self, self.__class__.script_info)
         self.tempo = int(10)
         self.volum = None
         self._consume_args()
index 1210fd67421d039cdc2768cd3913530841ff686e..6a845ad3d0af2e15f2eb38c8db390634ced5cf58 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org>
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 import sys
 
 from os import(access, W_OK)
-from os.path import (dirname, isfile, join, basename, abspath)
+from os.path import (dirname, isfile, basename)
+
+from lib.goodies import Goodie
 
-from lib.mpdclass import MPDClass
-from lib.startop import StartOpt
 
 NAME = 'mtopls'
 VERSION = '0.1'
 USAGE = 'USAGE:  %prog [--help] | /path/to/the/playlist/file/'
 
 
-class MtoPls(StartOpt, MPDClass):
+class MtoPls(Goodie):
     """
     """
     script_info = dict({
@@ -43,8 +43,7 @@ class MtoPls(StartOpt, MPDClass):
 
     def __init__(self):
         """"""
-        StartOpt.__init__(self, self.__class__.script_info, [])
-        MPDClass.__init__(self)
+        Goodie.__init__(self, self.__class__.script_info)
         self.playlist = None
         self._run()
 
index e48ad68ed1baf2309ba5873dc80b89bd5279190b..ae53c79947cc3f937fc84dd95fe44439cda5b405 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org> {{{
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 #   You should have received a copy of the GNU General Public License
 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
-#  }}}
 
 
 import sys
 
 from time import sleep
 
-from lib.mpdclass import MPDClass
-from lib.startop import StartOpt
+from lib.goodies import Goodie
+
 
 NAME = 'nalbum'
 VERSION = '0.1'
@@ -39,7 +38,7 @@ NALBUM_OPTS = list([
     ])
 
 
-class Nalbum(StartOpt, MPDClass):
+class Nalbum(Goodie):
     """
     """
     script_info = dict({
@@ -50,8 +49,8 @@ class Nalbum(StartOpt, MPDClass):
 
     def __init__(self):
         """"""
-        StartOpt.__init__(self, self.__class__.script_info, NALBUM_OPTS)
-        MPDClass.__init__(self)
+        Goodie.__init__(self, self.__class__.script_info,
+                extra_options=NALBUM_OPTS)
         self._run()
 
     def _fade(self, io='out'):
index 7009081978a72ed4bbb459960a6764e6a50461a0..79013f075cfd9ff9a09f2ab1b710195f8361d31c 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org> {{{
+# Copyright (c) 2009, 2010, 2012 Kaliko Jack <kaliko.jack@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
 #   You should have received a copy of the GNU General Public License
 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
-#  }}}
 
 
 import sys
 
 from random import choice
 
-from lib.mpdclass import MPDClass
-from lib.startop import StartOpt
+from lib.goodies import Goodie
+
 
 NAME = 'wakeup'
 VERSION = '0.1'
@@ -40,7 +39,7 @@ WAKEUP_OPTS = list([
     ])
 
 
-class WakeUp(StartOpt, MPDClass):
+class WakeUp(Goodie):
     """
     """
     script_info = dict({
@@ -52,8 +51,8 @@ class WakeUp(StartOpt, MPDClass):
 
     def __init__(self):
         """"""
-        StartOpt.__init__(self, self.__class__.script_info, WAKEUP_OPTS)
-        MPDClass.__init__(self)
+        Goodie.__init__(self, self.__class__.script_info,
+                extra_options=WAKEUP_OPTS)
         self._get_arg()
         self._run()