MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mitkIGTLDevice.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef mitkIGTLDevice_h
14#define mitkIGTLDevice_h
15
16#include <mutex>
17#include <thread>
18
19#include "mitkCommon.h"
20
21//itk
22#include "itkObject.h"
23
24//igtl
25#include "igtlSocket.h"
26#include "igtlMessageBase.h"
27#include "igtlTransformMessage.h"
28
29//mitkIGTL
30#include "MitkOpenIGTLinkExports.h"
33#include "mitkIGTLMessage.h"
34
35#if !defined(MITK_WINDOWS_NO_UNDEF) && defined(SendMessage)
36 #undef SendMessage
37#endif
38
39namespace mitk {
62 class MITKOPENIGTLINK_EXPORT IGTLDevice : public itk::Object
63 {
64 public:
66
67 IGTLDevice(bool ReadFully);
68
74 enum IGTLDeviceState { Setup, Ready, Running };
75
83 virtual bool OpenConnection() = 0;
84
91 virtual bool CloseConnection();
92
98 virtual bool StopCommunication();
99
105 bool StartCommunication();
106
116 void RunCommunication(void (IGTLDevice::*ComFunction)(void), std::mutex& mutex);
117
118
127 void SendMessage(mitk::IGTLMessage::Pointer msg);
128
132 IGTLDeviceState GetState() const;
133
138 igtl::MessageBase::Pointer GetNextCommand();
139
144 igtl::ImageMessage::Pointer GetNextImage2dMessage();
145
146 igtl::ImageMessage::Pointer GetNextImage3dMessage();
147
148 igtl::TransformMessage::Pointer GetNextTransformMessage();
149
150 igtl::TrackingDataMessage::Pointer GetNextTrackingDataMessage();
151
152 igtl::StringMessage::Pointer GetNextStringMessage();
153
154 igtl::MessageBase::Pointer GetNextMiscMessage();
155
159 itkSetMacro(PortNumber, int);
160
164 itkGetMacro(PortNumber, int);
165
169 itkSetMacro(Hostname, std::string);
170
174 itkGetMacro(Hostname, std::string);
175
179 itkGetConstMacro(Name, std::string);
180
184 itkSetMacro(Name, std::string);
185
189 itkSetMacro(ReadFully, bool);
190
194 itkGetConstMacro(MessageQueue, mitk::IGTLMessageQueue::Pointer);
195
199 itkGetMacro(MessageFactory, mitk::IGTLMessageFactory::Pointer);
200
204 void ThreadStartSending();
205
209 void ThreadStartReceiving();
210
214 void ThreadStartConnecting();
215
230 virtual bool TestConnection();
231
235 bool SendRTSMessage(const char* type);
236
240 void EnableNoBufferingMode(mitk::IGTLMessageQueue::Pointer queue,
241 bool enable = true);
242
243 void EnableNoBufferingMode(bool enable = true);
244
248 virtual unsigned int GetNumberOfConnections() = 0;
249
250 itkGetMacro(LogMessages, bool);
251 itkSetMacro(LogMessages, bool);
252
253 protected:
268 unsigned int SendMessagePrivate(mitk::IGTLMessage::Pointer msg,
269 igtl::Socket::Pointer socket);
270
276 virtual void Receive() = 0;
277
292 unsigned int ReceivePrivate(igtl::Socket* device);
293
298 virtual void Send() = 0;
299
308 virtual void Connect();
309
314 virtual void StopCommunicationWithSocket(igtl::Socket* socket) = 0;
315
319 void SetState(IGTLDeviceState state);
320
322 ~IGTLDevice() override;
323
327 std::string m_Name;
328
340 mutable std::mutex m_StateMutex;
341
343 std::string m_Hostname;
347 igtl::Socket::Pointer m_Socket;
348
350 mitk::IGTLMessageQueue::Pointer m_MessageQueue;
351
353 mitk::IGTLMessageFactory::Pointer m_MessageFactory;
354
356
357 private:
358
360 std::thread m_SendThread;
362 std::thread m_ReceiveThread;
364 std::thread m_ConnectThread;
366 bool m_ReadFully;
367 };
368
375 itkEventMacroDeclaration(MessageSentEvent, itk::AnyEvent);
376
383 itkEventMacroDeclaration(MessageReceivedEvent, itk::AnyEvent);
384
391 itkEventMacroDeclaration(CommandReceivedEvent, itk::AnyEvent);
392
400 itkEventMacroDeclaration(NewClientConnectionEvent, itk::AnyEvent);
401
409 itkEventMacroDeclaration(LostConnectionEvent, itk::AnyEvent);
410} // namespace mitk
411
412#endif
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
std::string m_Hostname
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)
IGTLDeviceState m_State
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
std::mutex m_StateMutex
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
IGT Exceptions.
itkEventMacroDeclaration(MessageSentEvent, itk::AnyEvent)
connect to this Event to get notified when a message was successfully sent