13#ifndef mitkIGTLDevice_h
14#define mitkIGTLDevice_h
19#include "mitkCommon.h"
25#include "igtlSocket.h"
26#include "igtlMessageBase.h"
27#include "igtlTransformMessage.h"
30#include "MitkOpenIGTLinkExports.h"
35#if !defined(MITK_WINDOWS_NO_UNDEF) && defined(SendMessage)
62 class MITKOPENIGTLINK_EXPORT
IGTLDevice :
public itk::Object
91 virtual bool CloseConnection();
98 virtual bool StopCommunication();
105 bool StartCommunication();
116 void RunCommunication(
void (
IGTLDevice::*ComFunction)(
void), std::mutex& mutex);
127 void SendMessage(mitk::IGTLMessage::Pointer msg);
138 igtl::MessageBase::Pointer GetNextCommand();
144 igtl::ImageMessage::Pointer GetNextImage2dMessage();
146 igtl::ImageMessage::Pointer GetNextImage3dMessage();
148 igtl::TransformMessage::Pointer GetNextTransformMessage();
150 igtl::TrackingDataMessage::Pointer GetNextTrackingDataMessage();
152 igtl::StringMessage::Pointer GetNextStringMessage();
154 igtl::MessageBase::Pointer GetNextMiscMessage();
204 void ThreadStartSending();
209 void ThreadStartReceiving();
214 void ThreadStartConnecting();
230 virtual bool TestConnection();
235 bool SendRTSMessage(
const char* type);
240 void EnableNoBufferingMode(mitk::IGTLMessageQueue::Pointer queue,
243 void EnableNoBufferingMode(
bool enable =
true);
268 unsigned int SendMessagePrivate(mitk::IGTLMessage::Pointer msg,
269 igtl::Socket::Pointer socket);
292 unsigned int ReceivePrivate(igtl::Socket* device);
308 virtual void Connect();
360 std::thread m_SendThread;
362 std::thread m_ReceiveThread;
364 std::thread m_ConnectThread;
62 class MITKOPENIGTLINK_EXPORT
IGTLDevice :
public itk::Object {
…};
Interface for all OpenIGTLink Devices.
itkGetMacro(PortNumber, int)
Returns the port number of the device.
std::mutex m_ReceivingFinishedMutex
itkSetMacro(LogMessages, bool)
std::mutex m_SendingFinishedMutex
itkGetMacro(MessageFactory, mitk::IGTLMessageFactory::Pointer)
Returns the message factory.
itkGetConstMacro(Name, std::string)
Returns the name of this device.
std::mutex m_StopCommunicationMutex
itkGetMacro(Hostname, std::string)
Returns the ip/hostname of the device.
virtual void StopCommunicationWithSocket(igtl::Socket *socket)=0
Stops the communication with the given socket.
itkSetMacro(Name, std::string)
Sets the name of this device.
virtual unsigned int GetNumberOfConnections()=0
Returns the number of connections of this device.
itkSetMacro(ReadFully, bool)
Advises this IGTL Device to always block until the whole message is read.
mitk::IGTLMessageQueue::Pointer m_MessageQueue
virtual bool OpenConnection()=0
Opens a connection to the device.
itkGetConstMacro(MessageQueue, mitk::IGTLMessageQueue::Pointer)
Returns a const reference to the receive queue.
std::mutex m_ConnectingFinishedMutex
itkSetMacro(PortNumber, int)
Sets the port number of the device.
itkGetMacro(LogMessages, bool)
virtual void Receive()=0
Call this method to receive a message.
virtual void Send()=0
Call this method to send a message. The message will be read from the queue.
igtl::Socket::Pointer m_Socket
itkSetMacro(Hostname, std::string)
Sets the ip/hostname of the device.
mitkClassMacroItkParent(IGTLDevice, itk::Object)
IGTLDeviceState
Type for state variable. The IGTLDevice is always in one of these states.
mitk::IGTLMessageFactory::Pointer m_MessageFactory
itkEventMacroDeclaration(MessageSentEvent, itk::AnyEvent)
connect to this Event to get notified when a message was successfully sent