summaryrefslogtreecommitdiffstats
path: root/include/util/message.h
blob: 29dadaeba26c6022eca28995627be619549a4d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef INCLUDE_MESSAGE_H
#define INCLUDE_MESSAGE_H

#include <stdlib.h>
#include <QAtomicInt>
#include "util/export.h"

class MessageQueue;
class QWaitCondition;
class QMutex;

class SDRANGELOVE_API Message {
public:
	Message();
	virtual ~Message();

	virtual const char* getIdentifier() const;
	virtual bool matchIdentifier(const char* identifier) const;
	static bool match(Message* message);

	void* getDestination() const { return m_destination; }

	void submit(MessageQueue* queue, void* destination = NULL);
	int execute(MessageQueue* queue, void* destination = NULL);

	void completed(int result = 0);

protected:
	// addressing
	static const char* m_identifier;
	void* m_destination;

	// stuff for synchronous messages
	bool m_synchronous;
	QWaitCondition* m_waitCondition;
	QMutex* m_mutex;
	QAtomicInt m_complete;
	int m_result;

	void prepareSync();
};

#define MESSAGE_CLASS_DECLARATION \
	public: \
		const char* getIdentifier() const; \
		bool matchIdentifier(const char* identifier) const; \
		static bool match(Message* message); \
	protected: \
		static const char* m_identifier; \
	private:

#define MESSAGE_CLASS_DEFINITION(Name, BaseClass) \
	const char* Name::m_identifier = #Name; \
	const char* Name::getIdentifier() const { return m_identifier; } \
	bool Name::matchIdentifier(const char* identifier) const {\
		return (m_identifier == identifier) ? true : BaseClass::matchIdentifier(identifier); \
	} \
	bool Name::match(Message* message) { return message->matchIdentifier(m_identifier); }

#endif // INCLUDE_MESSAGE_H