078316c0dfc22866925fa7f3c266c819523c9a98
[jamaendo] / jamaui / postoffice.py
1 #!/usr/bin/env python
2 #
3 # This file is part of Jamaendo.
4 # Copyright (c) 2010 Kristoffer Gronlund
5 #
6 # Jamaendo 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 # Jamaendo 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 Jamaendo.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Player code heavily based on http://thpinfo.com/2008/panucci/:
20 #  A resuming media player for Podcasts and Audiobooks
21 #  Copyright (c) 2008-05-26 Thomas Perl <thpinfo.com>
22 #  (based on http://pygstdocs.berlios.de/pygst-tutorial/seeking.html)
23 #
24 # message central
25
26 import logging
27
28 log = logging.getLogger(__name__)
29
30 class PostOffice(object):
31
32     def __init__(self):
33         self.tags = {} # tag -> [callback]
34
35     def notify(self, tag, *data):
36         clients = self.tags.get(tag)
37         if clients:
38             for ref, client in clients:
39                 client(*data)
40
41     def connect(self, tag, ref, callback):
42         if not isinstance(tag, list):
43             tag = [tag]
44         for t in tag:
45             if t not in self.tags:
46                 self.tags[t] = []
47             clients = self.tags[t]
48             if callback not in clients:
49                 clients.append((ref, callback))
50
51     def disconnect(self, tag, ref):
52         if not isinstance(tag, list):
53             tag = [tag]
54         for t in tag:
55             if t not in self.tags:
56                 self.tags[t] = []
57             self.tags[t] = [(_ref, cb) for _ref, cb in self.tags[t] if _ref != ref]
58
59 postoffice = PostOffice()
60
61