Main MRPT website > C++ reference for MRPT 1.5.6
List of all members | Public Member Functions | Protected Member Functions
IoInterface Class Referenceabstract

Detailed Description

An abstract IO interface.

An IoInterface provides a generic interface for dealing with an interface device such as a file, a com port or a USB port.

Note
The class is not thread safe.

Definition at line 42 of file iointerface.h.

#include <xSens_MT4/xcommunication/include/xsens/iointerface.h>

Inheritance diagram for IoInterface:
Inheritance graph

Public Member Functions

virtual ~IoInterface ()
 Destructor. More...
 
virtual XsResultValue close (void)=0
 Close the connection to the device. More...
 
virtual XsResultValue flushData (void)=0
 Flush all data in the buffers to and from the device. More...
 
virtual bool isOpen (void) const =0
 Returns true if the object has a connection to a device. More...
 
virtual XsResultValue getLastResult (void) const =0
 Returns the last result value produced by this interface. More...
 
virtual XsResultValue writeData (const XsByteArray &data, XsSize *written=NULL)=0
 Write the data contained in data to the device. More...
 
virtual XsResultValue readData (XsSize maxLength, XsByteArray &data)=0
 Read at most maxLength bytes from the device into data. More...
 
virtual XsResultValue open (const XsPortInfo &portInfo, uint32_t readBufSize=XS_DEFAULT_READ_BUFFER_SIZE, uint32_t writeBufSize=XS_DEFAULT_WRITE_BUFFER_SIZE)
 Open a communication channel to the given port info.
More...
 
virtual XsResultValue setTimeout (uint32_t ms)
 Set the default timeout value to use in blocking operations.
More...
 
virtual XsResultValue waitForData (XsSize maxLength, XsByteArray &data)
 Wait for data to arrive or a timeout to occur.
More...
 
virtual void cancelIo (void) const
 Cancel any pending io requests.
More...
 
virtual XsResultValue appendData (const XsByteArray &bdata)
 Write data to the end of the file.
More...
 
virtual XsResultValue closeAndDelete (void)
 Close the file and delete it.
More...
 
virtual XsResultValue create (const XsString &filename)
 Create an empty file.
More...
 
virtual XsResultValue deleteData (XsFilePos start, XsSize length)
 Delete the given data from the file.
More...
 
virtual XsResultValue find (const XsByteArray &needleV, XsFilePos &pos)
 Find a string of bytes in the file.
More...
 
virtual XsFilePos getFileSize (void) const
 Return the size of the file.
More...
 
virtual XsResultValue getName (XsString &filename) const
 Retrieve the filename that was last successfully opened.
More...
 
virtual XsFilePos getReadPosition (void) const
 Return the current read position.
More...
 
virtual XsFilePos getWritePosition (void) const
 Return the current write position.
More...
 
virtual XsResultValue insertData (XsFilePos start, const XsByteArray &data)
 Insert the given data into the file.
More...
 
virtual bool isReadOnly (void) const
 Return whether the file is readonly or not.
More...
 
virtual XsResultValue open (const XsString &filename, bool createNew, bool readOnly)
 Open a file.
More...
 
virtual XsResultValue setReadPosition (XsFilePos pos)
 Set the new absolute read position.
More...
 
virtual XsResultValue setWritePosition (XsFilePos pos=-1)
 Set the new absolute write position.
More...
 

Protected Member Functions

 IoInterface ()
 Constructor. More...
 

Constructor & Destructor Documentation

◆ ~IoInterface()

virtual IoInterface::~IoInterface ( )
inlinevirtual

Destructor.

Definition at line 45 of file iointerface.h.

◆ IoInterface()

IoInterface::IoInterface ( )
inlineprotected

Constructor.

Definition at line 109 of file iointerface.h.

Member Function Documentation

◆ appendData()

XsResultValue IoInterface::appendData ( const XsByteArray bdata)
virtual

Write data to the end of the file.

The function writes the given data to the file at the end. The current write position is also moved to the end of the file.

Parameters
bdataThe byte data to append to the file
Returns
XRV_OK if the write was successful

Reimplemented in IoInterfaceFile.

Definition at line 79 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ cancelIo()

void IoInterface::cancelIo ( void  ) const
virtual

Cancel any pending io requests.

Reimplemented in SerialInterface.

Definition at line 72 of file iointerface.cpp.

◆ close()

virtual XsResultValue IoInterface::close ( void  )
pure virtual

Close the connection to the device.

Returns
XRV_OK if the connection was closed successfully

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.

◆ closeAndDelete()

XsResultValue IoInterface::closeAndDelete ( void  )
virtual

Close the file and delete it.

Returns
XRV_OK if the file was closed and deleted successfully

Reimplemented in IoInterfaceFile.

Definition at line 85 of file iointerface.cpp.

References XRV_INVALIDOPERATION.

◆ create()

XsResultValue IoInterface::create ( const XsString filename)
virtual

Create an empty file.

Parameters
filenameThe desired (path+)name of the file
Returns
XRV_OK if the file was created successfully

Reimplemented in IoInterfaceFile.

Definition at line 90 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ deleteData()

XsResultValue IoInterface::deleteData ( XsFilePos  start,
XsSize  length 
)
virtual

Delete the given data from the file.

The function erases the given data from the file at the given write position. This operation may take a while to complete, but is faster than insertData.

The write position is not changed and the read position is checked for validity upon function exit.

Parameters
startThe offset of the first byte to delete
lengthThe total number of bytes to delete
Returns
XRV_OK if the data was deleted successfully

Reimplemented in IoInterfaceFile.

Definition at line 96 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ find()

XsResultValue IoInterface::find ( const XsByteArray needleV,
XsFilePos pos 
)
virtual

Find a string of bytes in the file.

The function searches from the current read position until the given needle is found. If the needle is not found, XsResultValue::NOT_FOUND is returned. The function will update the seek position to the first character of the found needle.

Parameters
needleVThe byte string to find.
posThe position where needleV was found. This will point to the first character of the found needleV.
Returns
XRV_OK if the data was found, XRV_ENDOFFILE if it wasn't found

Reimplemented in IoInterfaceFile.

Definition at line 103 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ flushData()

virtual XsResultValue IoInterface::flushData ( void  )
pure virtual

Flush all data in the buffers to and from the device.

Returns
XRV_OK if the data was flushed successfully

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.

◆ getFileSize()

XsFilePos IoInterface::getFileSize ( void  ) const
virtual

Return the size of the file.

Returns
The size of the file.

Reimplemented in IoInterfaceFile.

Definition at line 110 of file iointerface.cpp.

◆ getLastResult()

virtual XsResultValue IoInterface::getLastResult ( void  ) const
pure virtual

Returns the last result value produced by this interface.

Returns
The last result value produced by this interface.

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.

◆ getName()

XsResultValue IoInterface::getName ( XsString filename) const
virtual

Retrieve the filename that was last successfully opened.

Parameters
filenameThe XsString which will contain the filename.
Returns
XRV_OK

Reimplemented in IoInterfaceFile.

Definition at line 115 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ getReadPosition()

XsFilePos IoInterface::getReadPosition ( void  ) const
virtual

Return the current read position.

Returns
The current read position.

Reimplemented in IoInterfaceFile.

Definition at line 121 of file iointerface.cpp.

◆ getWritePosition()

XsFilePos IoInterface::getWritePosition ( void  ) const
virtual

Return the current write position.

Returns
The current write position.

Reimplemented in IoInterfaceFile.

Definition at line 126 of file iointerface.cpp.

◆ insertData()

XsResultValue IoInterface::insertData ( XsFilePos  start,
const XsByteArray data 
)
virtual

Insert the given data into the file.

The function writes the given data to the file at the current write position. This operation may take a while to complete.

The write position is placed at the end of the inserted data.

Parameters
startThe offset in the file to write the first byte
dataThe data to insert in the file
Returns
XRV_OK if the data was inserted successfully

Reimplemented in IoInterfaceFile.

Definition at line 131 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ isOpen()

virtual bool IoInterface::isOpen ( void  ) const
pure virtual

Returns true if the object has a connection to a device.

Returns
true if the object has a connection to a device

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.

◆ isReadOnly()

bool IoInterface::isReadOnly ( void  ) const
virtual

Return whether the file is readonly or not.

Returns
true if the file is readonly

Reimplemented in IoInterfaceFile.

Definition at line 138 of file iointerface.cpp.

◆ open() [1/2]

XsResultValue IoInterface::open ( const XsPortInfo portInfo,
uint32_t  readBufSize = XS_DEFAULT_READ_BUFFER_SIZE,
uint32_t  writeBufSize = XS_DEFAULT_WRITE_BUFFER_SIZE 
)
virtual

Open a communication channel to the given port info.

If the baudrate in portInfo is set to XBR_Invalid, the baud rate is automatically detected if possible.

Parameters
portInfoThe details of the port that should be opened. Depending on the type of interface, parts of this parameter may be ignored.
readBufSizeThe size of the read buffer in bytes (if appliccable to the device)
writeBufSizeThe size of the write buffer in bytes (if appliccable to the device)
Returns
XRV_OK if the device was opened successfully

Reimplemented in SerialInterface, and UsbInterface.

Definition at line 52 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ open() [2/2]

XsResultValue IoInterface::open ( const XsString filename,
bool  createNew,
bool  readOnly 
)
virtual

Open a file.

Parameters
filenameThe name of the file to open
createNewWhen true, the file will be created if it doesn't exist yet
readOnlyWhen true, the file will be marked as read only for IoInterfaceFile, preventing accidental writes to the file.
Returns
XRV_OK if the file was opened successfully
See also
createFile

Reimplemented in IoInterfaceFile.

Definition at line 143 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ readData()

virtual XsResultValue IoInterface::readData ( XsSize  maxLength,
XsByteArray data 
)
pure virtual

Read at most maxLength bytes from the device into data.

Parameters
maxLengthThe maximum number of bytes to read. Depending on the device type and timeout settings, the function may return with less than this number of bytes read.
dataA buffer that will contain the read data.
Returns
XRV_OK if all data was read successfully, XRV_TIMEOUT if some data was read, but not maxLength, XRV_TIMEOUTNODATA if no data was read at all.

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.

◆ setReadPosition()

XsResultValue IoInterface::setReadPosition ( XsFilePos  pos)
virtual

Set the new absolute read position.

The read position is checked against the filesize first.

Parameters
posThe new read position
Returns
XRV_OK if the read position was updated successfully

Reimplemented in IoInterfaceFile.

Definition at line 151 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ setTimeout()

XsResultValue IoInterface::setTimeout ( uint32_t  ms)
virtual

Set the default timeout value to use in blocking operations.

This function sets the value of m_timeout. There is no infinity value. The value 0 means that all blocking operations now become polling (non-blocking) operations. If the value is set to or from 0, the low-level serial port settings may be changed in addition to the m_timeout value.

Parameters
msThe new timeout in milliseconds
Returns
XRV_OK if the function succeeded

Reimplemented in SerialInterface, UsbInterface, and StreamInterface.

Definition at line 59 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ setWritePosition()

XsResultValue IoInterface::setWritePosition ( XsFilePos  pos = -1)
virtual

Set the new absolute write position.

The write position is checked against the filesize first.

Parameters
posThe new write position
Returns
XRV_OK if the write position was updated successfully

Reimplemented in IoInterfaceFile.

Definition at line 157 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ waitForData()

XsResultValue IoInterface::waitForData ( XsSize  maxLength,
XsByteArray data 
)
virtual

Wait for data to arrive or a timeout to occur.

The function waits until maxLength data is available or until a timeout occurs. The function returns success if data is available or XsResultValue::TIMEOUT if a timeout occurred. A timeout value of 0 indicates that the default timeout stored in the class should be used.

Parameters
maxLengthThe maximum number of bytes to read before returning
dataThe buffer to put the read data in.
Returns
XRV_OK if maxLength bytes were read, XRV_TIMEOUT if less was read, XRV_TIMEOUTNODATA if nothing was read

Reimplemented in SerialInterface.

Definition at line 65 of file iointerface.cpp.

References void(), and XRV_INVALIDOPERATION.

◆ writeData()

virtual XsResultValue IoInterface::writeData ( const XsByteArray data,
XsSize written = NULL 
)
pure virtual

Write the data contained in data to the device.

Parameters
dataThe data to write to the device.
writtenAn optional XsSize value that will receive the number of bytes that were actually written.
Returns
XRV_OK if the data was written successfully

Implemented in SerialInterface, IoInterfaceFile, and UsbInterface.




Page generated by Doxygen 1.8.14 for MRPT 1.5.6 Git: 4c65e8431 Tue Apr 24 08:18:17 2018 +0200 at lun oct 28 01:35:26 CET 2019