opensurgsim
Public Member Functions | Protected Member Functions | List of all members
SurgSim::Devices::TrackIRThread Class Reference

A class implementing the thread context for sampling TrackIR devices. More...

#include <TrackIRThread.h>

Inheritance diagram for SurgSim::Devices::TrackIRThread:
SurgSim::Framework::BasicThread

Public Member Functions

 TrackIRThread (TrackIRScaffold *scaffold, TrackIRScaffold::DeviceData *deviceData)
 Constructor TrackIR sample rate: 120FPS. More...
 
virtual ~TrackIRThread ()
 Destructor.
 
- Public Member Functions inherited from SurgSim::Framework::BasicThread
 BasicThread (const std::string &name="Unknown Thread")
 
virtual ~BasicThread () noexcept(false)
 C++11 introduced noexcept.
 
void start (std::shared_ptr< Barrier > startupBarrier=nullptr, bool isSynchronous=false)
 Live cycle functions, public implementation. More...
 
void stop ()
 Stopping the execution, blocks until the running thread has actually stopped,. More...
 
void setIdle (bool isIdle)
 Set/Unset the thread in an idle state (doUpdate() called or not in the update() method) More...
 
bool isIdle ()
 Query if this thread is in idle state or not. More...
 
bool isInitialized ()
 Query if this object is initialized. More...
 
bool isRunning () const
 Query if this object is running. More...
 
void operator() ()
 This is what boost::thread executes on thread creation.
 
boost::thread & getThread ()
 
std::string getName () const
 
void setRate (double val)
 Set the update rate of the thread. More...
 
bool setSynchronous (bool val)
 Sets the thread to synchronized execution in concert with the startup barrier, the startup barrier has to exist for this call to succeed. More...
 
bool isSynchronous ()
 Query if this object is synchronized. More...
 
double getCpuTime () const
 
size_t getUpdateCount () const
 
void resetCpuTimeAndUpdateCount ()
 Reset the cpu time and the update count to 0.
 
bool ignoresExceptions () const
 
void setIgnoreExceptions (bool val)
 

Protected Member Functions

bool doInitialize () override
 Initialize this thread. More...
 
bool doStartUp () override
 Start up this thread. More...
 
bool doUpdate (double dt) override
 Update work of this thread. More...
 
- Protected Member Functions inherited from SurgSim::Framework::BasicThread
bool initialize ()
 Trigger the initialization of this object, this will be called before all other threads doStartup() are called. More...
 
bool startUp ()
 Trigger the startup of this object, this will be called after all other threads doInit() was called the thread will only enter the run loop triggering upated() if all threads doInit() and doStartup() returned true. More...
 
bool waitForBarrier (bool success)
 
virtual bool executeInitialization ()
 

Additional Inherited Members

- Protected Attributes inherited from SurgSim::Framework::BasicThread
Timer m_timer
 Timer to measure the actual time taken to doUpdate.
 
std::shared_ptr< SurgSim::Framework::Loggerm_logger
 Logger for this thread.
 

Detailed Description

A class implementing the thread context for sampling TrackIR devices.

See also
SurgSim::Devices::TrackIRScaffold

Constructor & Destructor Documentation

§ TrackIRThread()

SurgSim::Devices::TrackIRThread::TrackIRThread ( TrackIRScaffold scaffold,
TrackIRScaffold::DeviceData deviceData 
)

Constructor TrackIR sample rate: 120FPS.

Default update rate is set by BasicThread constructor to 30Hz

Parameters
scaffoldThe TrackIRScaffold updated by this thread
deviceDataCorresponds to the TrackIRScaffold::DeviceData updated by this thread

Member Function Documentation

§ doInitialize()

bool SurgSim::Devices::TrackIRThread::doInitialize ( )
overrideprotectedvirtual

Initialize this thread.

Returns
True on success, false otherwise.

Implements SurgSim::Framework::BasicThread.

§ doStartUp()

bool SurgSim::Devices::TrackIRThread::doStartUp ( )
overrideprotectedvirtual

Start up this thread.

Returns
True on success, false otherwise.

Implements SurgSim::Framework::BasicThread.

§ doUpdate()

bool SurgSim::Devices::TrackIRThread::doUpdate ( double  dt)
overrideprotectedvirtual

Update work of this thread.

Parameters
dtThe time step.
Returns
True on success, false otherwise.

Reimplemented from SurgSim::Framework::BasicThread.


The documentation for this class was generated from the following files: