Human readable data from captured data?

If I capture data to file, using rsslIoctl (channel, RSSL_TRACE,...), the file contains entries like:

<fieldEntry fieldId="16" data="1309 07E3"/>

I'm looking for a tool to convert this into something more human readable, i.e more like:

<fieldEntry fid="TRADE_DATE" data="...">. It would be really great if the data could be translated to the appropriate format depending on the data type specified for the FID.

Best Answer

  • Hello @svante.lindahl1

    You may use rmdstestclient tool to capture data from Elektron to the xml file which is human readable then you can replay this data later using sink_driven_src tools.

    The example captured data in the xml file:

    <fieldEntry fieldId="1" dataType="RSSL_DT_UINT" data="852"/>
    <fieldEntry fieldId="2" dataType="RSSL_DT_UINT" data="151"/>
    <fieldEntry fieldId="259" dataType="RSSL_DT_UINT" data="249"/>

    For more details to use the tools to record and play data, please refer to Quick Start Guide to Recording and Playback of Elektron Data

Answers