]> git.vomp.tv Git - vompclient.git/blob - eventdispatcher.h
Compile fix for MVP re: location change of hmsf
[vompclient.git] / eventdispatcher.h
1 /*
2     Copyright 2007 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP 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 2 of the License, or
9     (at your option) any later version.
10
11     VOMP 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 VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef EVENTDISPATCHER_H
22 #define EVENTDISPATCHER_H
23
24 #include <stdio.h>
25 #include <list>
26
27 #ifndef WIN32
28 #include "threadp.h"
29 #else
30 #include "threadwin.h"
31 #endif
32
33 #include "defines.h"
34
35 using namespace std;
36
37
38 class EDReceiver //(implementation in eventdispatcher.cc)
39 {
40   friend class EventDispatcher;
41
42   public:
43     EDReceiver();
44     virtual ~EDReceiver();
45
46   protected:
47     virtual void call(void* userTag, bool& r_deregisterEDR, bool& r_wakeThread, bool& deleteEDR)=0; // Implementor must override this and do the actual call
48                            // In the call set the following bools:
49                            // r_deregisterEDR: true = remove EDReceiver from list after call
50                            // r_wakeThread: true = wake up a RequestResponse thread which is waiting for a VDR response
51                            // r_deleteEDR: true = delete the EDReceiver object once the call has finished
52     bool nomorecalls;
53     bool callinprogress;
54   
55 #ifndef WIN32    
56     pthread_cond_t cond;
57 #else
58     HANDLE cond;
59 #endif
60 };
61
62 class EventDispatcher
63 {
64
65   public:
66     typedef list<EDReceiver*> EDRL;
67
68     EventDispatcher();
69     virtual ~EventDispatcher() {};
70
71   protected:
72     void edRegister(EDReceiver* edr);
73     void edUnregister(EDReceiver* edr);
74     bool edFindAndCall(void* userTag);
75     void edLock();
76     void edUnlock();
77     void edSleepThisReceiver(EDReceiver* edr);
78     
79     // EventDispatcher implementor must override the following. When edFindAndCall is called,
80     // The EventDispatcher class will call ed_cb_find() on each receiver until the implementor
81     // returns true = this is the receiver to call.
82     virtual bool ed_cb_find(EDReceiver* edr, void* userTag)=0;
83
84     EDRL receivers;
85     
86 #ifndef WIN32
87     pthread_mutex_t mutex;
88 #else
89     HANDLE mutex;
90 #endif
91 };
92
93 #endif