]> git.vomp.tv Git - vompclient.git/blob - messagequeue.h
Rename TCP class to TCPOld
[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 typedef std::deque<Message*>::iterator MQueueI;
31
32 class MessageQueue
33 {
34   public:
35     MessageQueue();
36     virtual ~MessageQueue();
37
38     static MessageQueue* getInstance();
39
40     virtual void postMessage(Message* m);
41
42   protected:
43     virtual void flushMessageQueue();
44     virtual void processMessage(Message* m)=0;
45
46     MQueue messages;
47     std::mutex messageQueueMutex;
48     std::condition_variable messageQueueCond;
49
50   private:
51     static MessageQueue* instance;
52 };
53
54 #endif