| 
									
										
										
										
											2015-08-14 05:00:28 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2015 F4EXB                                                      //
 | 
					
						
							|  |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #ifndef INCLUDE_MESSAGE_H
 | 
					
						
							|  |  |  | #define INCLUDE_MESSAGE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include "util/export.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SDRANGELOVE_API Message { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	Message(); | 
					
						
							|  |  |  | 	virtual ~Message(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual const char* getIdentifier() const; | 
					
						
							|  |  |  | 	virtual bool matchIdentifier(const char* identifier) const; | 
					
						
							| 
									
										
										
										
											2015-08-14 05:00:28 +02:00
										 |  |  | 	static bool match(const Message* message); | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void* getDestination() const { return m_destination; } | 
					
						
							| 
									
										
										
										
											2015-08-14 05:00:28 +02:00
										 |  |  | 	void setDestination(void *destination) { m_destination = destination; } | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	// addressing
 | 
					
						
							|  |  |  | 	static const char* m_identifier; | 
					
						
							|  |  |  | 	void* m_destination; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MESSAGE_CLASS_DECLARATION \
 | 
					
						
							|  |  |  | 	public: \ | 
					
						
							|  |  |  | 		const char* getIdentifier() const; \ | 
					
						
							|  |  |  | 		bool matchIdentifier(const char* identifier) const; \ | 
					
						
							| 
									
										
										
										
											2015-08-17 08:29:34 +02:00
										 |  |  | 		static bool match(const Message& message); \ | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 	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); \ | 
					
						
							|  |  |  | 	} \ | 
					
						
							| 
									
										
										
										
											2015-08-17 08:29:34 +02:00
										 |  |  | 	bool Name::match(const Message& message) { return message.matchIdentifier(m_identifier); } | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_MESSAGE_H
 |