These chapters describe the creation of a simple application that shows how to use the FastCodec, step-by step with samples. Follow these instructions to get it working:
- Initialize FAST codec
- Create new FAST coder
- Create new FAST decoder
- Create new FIX message
- Encode
- Decode
Initialize FAST codec
Execute the following instruction to initialize the FastCodec.
A factory for FastCoder and FastDecoder.
Definition B2BITS_FastCodec.h:76
In the call above you should specify a path to a license file. If the specified file doesn't exist or the license isn't valid, an exception will be thrown.
try
{
}
{
cout <<
"ERROR: " << error.
what() << endl;
}
Generic application exception.
Definition B2BITS_Exception.h:76
virtual const char * what() const
Returns the reason for this exception.
Create new FAST coder
To create new instance of FastCoder, execute the following instruction.
std::auto_ptr<Engine::FastCoder> fastCoder(
fastCodec.createFastCoder(
"additional.xml",
"templates.xml",
@ FIXT11
FIXT 1.1.
Definition B2BITS_PubEngineDefines.h:89
@ FIX50SP2
FIX 5.0 SP2.
Definition B2BITS_PubEngineDefines.h:87
Create new FAST decoder
To create new instance of FastDecoder, execute the following instruction.
std::auto_ptr<Engine::FastDecoder> fastDecoder(
fastCodec.createFastDecoder(
"additional.xml",
"templates.xml",
Create new FIX message
To create new FIX message, execute the following instruction.
fixMessages[i] = fastCoder->newSkel("X");
The next step is to fill the message fields.
{
char mdEntryId[2] = {0};
mdEntryId[0] = (char) i + '0';
char symbol[] = "symbol_";
symbol[sizeof(symbol) - 2] = (char) i + '0';
}
Encapsulates float type.
Definition B2BITS_Decimal.h:64
FIX Repeating Group interface.
Definition B2BITS_FIXGroup.h:70
virtual TagValue * getEntry(int index)=0
Returns group entry by index.
virtual FIXGroup * getGroup(int tag, int index)=0
Returns nested repeating group.
Represents tag-value structure.
Definition B2BITS_TagValue.h:315
virtual bool set(int tag, MonthYear value)=0
Updates field value by tag number.
static UTCTimeOnly now()
Returns current system time in UTC.
static UTCTimestamp now(bool withMilliseconds=false)
Returns UTCTimestamp with current time.
static const int NoMDEntries
Definition B2BITS_FIXFields.h:282
static const int SendingTime
Definition B2BITS_FIXFields.h:106
static const int ApplVerID
Definition B2BITS_FIXFields.h:1202
static const int MsgSeqNum
Definition B2BITS_FIXFields.h:89
static const int RptSeq
Definition B2BITS_FIXFields.h:137
static const int MDEntryType
Definition B2BITS_FIXFields.h:283
static const int SenderCompID
Definition B2BITS_FIXFields.h:104
static const int MDEntryPx
Definition B2BITS_FIXFields.h:284
static const int MDEntrySize
Definition B2BITS_FIXFields.h:285
static const int Symbol
Definition B2BITS_FIXFields.h:109
static const int MDEntryTime
Definition B2BITS_FIXFields.h:287
static const int MDUpdateAction
Definition B2BITS_FIXFields.h:293
static const int MDEntryID
Definition B2BITS_FIXFields.h:292
Encode
To encode the FIX message, execute the following instruction.
fastCoder->encode(fixMessages[i].get(), &buffer);
Decode
To decode the FAST message, execute the following instruction.
std::auto_ptr<Engine::FIXMessage> decodedFixMessage(fastDecoder->decode(buffer.getPtr(), buffer.getSize()));
Full sample
The sample below illustrates all above mentioned instructions combined in one application.
#include <iostream>
#include <B2BITS_FIXFields.h>
#include <B2BITS_FIXGroup.h>
#include <B2BITS_FastCodec.h>
namespace
{
const int TEMPLATE_ID = 4;
const int COUNT_FIX_MESSAGES = 3;
}
{
std::auto_ptr<Engine::FastCoder> fastCoder(
"additional.xml",
"templates.xml",
std::auto_ptr<Engine::FastDecoder> fastDecoder(
"additional.xml",
"templates.xml",
std::auto_ptr<Engine::FIXMessage> fixMessages[COUNT_FIX_MESSAGES];
for (int i = 0; i < COUNT_FIX_MESSAGES; ++i)
{
fixMessages[i] = fastCoder->newSkel("X");
{
char mdEntryId[2] = {0};
mdEntryId[0] = (char) i + '0';
char symbol[] = "symbol_";
symbol[sizeof(symbol) - 2] = (char) i + '0';
}
}
for (int i = 0; i < COUNT_FIX_MESSAGES; ++i)
{
int size(0);
char const* raw = fixMessages[i]->toRaw(&size);
try
{
fastCoder->tryEncode(fixMessages[i].get(), TEMPLATE_ID);
}
{
std::cerr <<
"TryEncode Error: " << error.
what() << std::endl;
}
fastCoder->resetDictionary();
fastCoder->encode(fixMessages[i].get(), &buffer);
fastDecoder->resetDictionary();
std::auto_ptr<Engine::FIXMessage> decodedFixMessage(fastDecoder->decode(buffer.
getPtr(), buffer.
getSize()));
raw = decodedFixMessage->toRaw(&size);
}
}
int main()
{
try
{
runSample();
}
{
std::cerr <<
"ERROR: " << error.
what() << std::endl;
}
}
std::unique_ptr< FastCoder > createFastCoder(const std::string &pathToAdditionalXml, const std::string &pathToTemplatesXml, FIXVersion scpVer, FIXVersion appVer, const FastMappingOptions &mappingOptions=FastMappingOptions())
Creates FastCoder.
std::unique_ptr< FastDecoder > createFastDecoder(const std::string &pathToAdditionalXml, const std::string &pathToTemplatesXml, FIXVersion scpVer, FIXVersion appVer, const FastMappingOptions &mappingOptions=FastMappingOptions())
Creates FastDecoder.
Buffer.
Definition B2BITS_FastCoder.h:74
char const * getPtr() const
Returns a pointer to the buffer.
Definition B2BITS_FastCoder.h:100
std::size_t getSize() const
Returns size of the buffer.
Definition B2BITS_FastCoder.h:109
static FixEngine * init(InitParameters const ¶ms)
Initializes the Engine.
BasicString< char > AsciiString
AsciiString.
Definition B2BITS_String.h:519