OpenASIP  2.0
Informer.hh
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file Informer.hh
26  *
27  * Declaration of Informer class.
28  *
29  * @author Atte Oksman 2005 (oksman-no.spam-cs.tut.fi)
30  * @author Pekka Jääskeläinen 2005 (pjaaskel-no.spam-cs.tut.fi)
31  * @note rating: red
32  */
33 
34 #ifndef TTA_INFORMER_HH
35 #define TTA_INFORMER_HH
36 
37 #include <vector>
38 #include <utility>
39 
40 #include "Listener.hh"
41 
42 
43 /**
44  * The Informer class delivers notifications of events (represented by
45  * integers) to Listeners.
46  *
47  * A Listener can register to be notified of certain event(s) and will
48  * thereafter receive a notification every time the event takes place.
49  * Naturally, a Listener can also be unregistered to not receive any more
50  * notifications of the event.
51  */
52 class Informer {
53 
54 public:
55  Informer();
56  virtual ~Informer();
57 
58  void handleEvent(int event);
59  virtual bool registerListener(int event, Listener* listener);
60  virtual bool unregisterListener(int event, Listener* listener);
61 
62 private:
63  std::size_t findListenerSlot(int event, Listener* listener);
64  typedef std::vector<std::pair<int, Listener*> > ListenerList;
66 
67 };
68 
69 #include "Informer.icc"
70 
71 #endif
Informer::ListenerList
std::vector< std::pair< int, Listener * > > ListenerList
Definition: Informer.hh:64
Informer.icc
Listener
Definition: Listener.hh:40
Informer::unregisterListener
virtual bool unregisterListener(int event, Listener *listener)
Definition: Informer.cc:104
Informer::registerListener
virtual bool registerListener(int event, Listener *listener)
Definition: Informer.cc:87
Informer::~Informer
virtual ~Informer()
Definition: Informer.cc:51
Informer
Definition: Informer.hh:52
Informer::Informer
Informer()
Definition: Informer.cc:44
Informer::handleEvent
void handleEvent(int event)
Informer::eventListeners_
ListenerList eventListeners_
Definition: Informer.hh:65
Informer::findListenerSlot
std::size_t findListenerSlot(int event, Listener *listener)
Definition: Informer.cc:65
Listener.hh