]> git.vomp.tv Git - vompclient.git/blob - messagequeue.h
Change WSelectList option data to void*. About 65 CWFs
[vompclient.git] / messagequeue.h
1 /*
2     Copyright 2004-2005 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, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef MESSAGEQUEUE_H
21 #define MESSAGEQUEUE_H
22
23 #include <deque>
24 #include <mutex>
25 #include <condition_variable>
26
27 class Message;
28
29 typedef std::deque<Message*> MQueue;
30
31 class MessageQueue
32 {
33   public:
34     MessageQueue();
35     virtual ~MessageQueue();
36
37     static MessageQueue* getInstance();
38
39     virtual void postMessage(Message* m);
40
41   protected:
42     virtual void flushMessageQueue();
43     virtual void processMessage(Message* m)=0;
44
45     MQueue messages;
46     std::mutex messageQueueMutex;
47     std::condition_variable messageQueueCond;
48
49   private:
50     static MessageQueue* instance;
51 };
52
53 #endif