~krunal267/almisnad/client

« back to all changes in this revision

Viewing changes to bin/observator.py

  • Committer: creative
  • Date: 2011-01-18 13:03:16 UTC
  • Revision ID: creative@creative-desktop-20110118130316-3536enm7w5ch8hrr
Initial Importing

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution   
 
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    $Id$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
try:
 
24
    set
 
25
except NameError:
 
26
    from sets import Set as set
 
27
 
 
28
 
 
29
class ObservatorRegistry(object):
 
30
    def __new__(cls):
 
31
        if not hasattr(cls, '_inst'):
 
32
            cls._inst = object.__new__(cls)
 
33
        return cls._inst
 
34
 
 
35
    def __init__(self):
 
36
        self._observables = {}
 
37
        self._receivers = {}
 
38
 
 
39
    def add_observable(self, oid, obj):
 
40
        self._observables[oid] = obj
 
41
 
 
42
    def add_receiver(self, signal, callable):
 
43
        if signal not in self._receivers:
 
44
            self._receivers[signal] = []
 
45
        self._receivers[signal].append(callable)
 
46
    
 
47
    def remove_receiver(self, signal, callable):
 
48
        self._receivers[signal].remove(callable)
 
49
 
 
50
    def warn(self, *args):
 
51
        for receiver in self._receivers.get(args[0], []):
 
52
            receiver(*args[1:])
 
53
 
 
54
oregistry = ObservatorRegistry()
 
55
 
 
56
 
 
57
class Observable(object):
 
58
    def __init__(self):
 
59
        oregistry.add_observable(id(self), self)
 
60
 
 
61
    def warn(self, *args):
 
62
        oregistry.warn(args[0], self, *args[1:])
 
63
 
 
64
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
65