]> kaliko git repositories - mpd-goodies.git/blob - crop
* [mfade] convert mfade to use the new framework
[mpd-goodies.git] / crop
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # Copyright (c) 2009, 2010 Efrim <efrim@azylum.org> {{{
5 #
6 #   This program 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 #   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 #  }}}
20
21
22 import sys
23
24 from lib.mpdclass import MPDClass
25 from lib.startop import StartOpt
26
27 NAME = 'crop'
28 VERSION = '0.1'
29
30 CROP_OPTS = list([
31     {
32         'sw': ['-n', '--nbtracks'],
33         'type': 'int',
34         'dest': 'nb_tracks',
35         'default': 6,
36         'metavar': '<n>',
37         'help': 'keep <n> tracks before currently played.'},
38     ])
39
40 class Crop(StartOpt, MPDClass):
41     """
42     """
43     script_info = dict({
44         'version': VERSION,
45         'prog_name': NAME,
46         'description': 'Keep <n> tracks before currently played, removed others.',
47         })
48
49     def __init__(self):
50         """"""
51         StartOpt.__init__(self, self.__class__.script_info, CROP_OPTS)
52         MPDClass.__init__(self)
53         self._run()
54
55     def _run(self):
56         """"""
57         print 'Connecting %s:%i' % (self.cli_options.host, self.cli_options.port)
58         self.mpdConnect()
59         current_pos = int(self.client.currentsong().get('pos'))
60         if current_pos <=  self.cli_options.nb_tracks:
61             self.client.disconnect()
62             sys.exit(0)
63         while current_pos > self.cli_options.nb_tracks:
64             self.client.delete(0)
65             current_pos = int(self.client.currentsong().get('pos'))
66         self.client.disconnect()
67         sys.exit(0)
68
69
70 # Script starts here
71 if __name__ == '__main__':
72     try:
73         Crop()
74     except KeyboardInterrupt:
75         sys.stdout.write('exit')
76
77 # VIM MODLINE
78 # vim: ai ts=4 sw=4 sts=4 expandtab