如何使用QuickFixJ将String FIX消息转换为FIX FIX50SP2格式

时间:2013-08-07 12:34:06

标签: java quickfix fix-protocol

需要快速帮助。我是QuickFixJ的新手。我在txt文件中有一条FIX消息。我需要将其转换为FIX50SP2格式。我附上了代码段。

String fixMsg = "1128=99=25535=X49=CME34=47134052=20100318-03:21:11.36475=20120904268=2279=122=848=336683=607400107=ESU2269=1270=140575271=152273=121014000336=2346=521023=1279=122=848=336683=607401107=ESU2269=1270=140600271=206273=121014000336=2346=681023=210=159";

System.out.println("FixMsg String:"+fixMsg);
Message FIXMessage = new Message();
DataDictionary dd = new DataDictionary("FIX50SP2.xml");
FIXMessage.fromString(fixMsg, dd, false);
System.out.println("FIXMessage Output:" + FIXMessage.toString()); // Print message after parsing
MsgType msgType = new MsgType();
System.out.println(FIXMessage.getField(msgType));

这是输出:

FixMsg String:1128=99=15835=X49=CME34=47164052=2012090312102051175=20120904268=1279=122=848=336683=607745107=ESU2269=1270=140575271=123273=121020000336=2346=501023=110=205
FIXMessage Output:9=6135=X34=47164049=CME52=2012090312102051175=20120904268=110=117
quickfix.FieldNotFound: Field [35] was not found in message.
    at quickfix.FieldMap.getField(FieldMap.java:216)
    at quickfix.FieldMap.getFieldInternal(FieldMap.java:353)
    at quickfix.FieldMap.getField(FieldMap.java:349)
    at MainApp.main(MainApp.java:52)

我想提取MsgType字段(字段35)。你能告诉我我哪里错了吗?我观察到的是,在解析为FIX50SP2格式后,转换FIX消息缺少许多数据元素(详见输出)

谢谢

4 个答案:

答案 0 :(得分:1)

与其他提到的一样,MsgType是一个标题字段,您可以使用以下

获取它
String msgType = null;
if(FIXMessage.getHeader().isSetField(MsgType.FIELD)) {
    msgType = FIXMessage.getHeader().getString(MsgType.FIELD);
}
System.out.println("MsgType is " + msgType);`

解析后丢失许多数据元素的原因可能是您的消息有一些自定义标记(如标记2346),这些标记未在数据字典(FIXSP02.xml)中定义。因此,这些标签的解析在输出中失败并丢失。

要解决此问题,请从发送邮件的一方获取数据字典并使用它来解析邮件

答案 1 :(得分:0)

我不熟悉FIX消息和QuickFixJ,但是看了Javadoc,看起来你应该使用identifyType方法:

String fixMsg = "1128=99=25535=X49=CME34=47134052=20100318-03:21:11.36475=20120904268=2279=122=848=336683=607400107=ESU2269=1270=140575271=152273=121014000336=2346=521023=1279=122=848=336683=607401107=ESU2269=1270=140600271=206273=121014000336=2346=681023=210=159";
MsgType msgType = Message.identifyType(fixMsg);

答案 2 :(得分:0)

您可能会发现FixB框架很有用,因为它可以很好地处理FIX的非标准用例。

在您的情况下,要仅提取您感兴趣的数据,您需要定义一个表示此数据的类,并使用注释将其绑定到FIX。 E.g:

@FixBlock
public class MDEntry {    
    @FixField(tag=269) public int    entryType; // you could define an enum type for it as well
    @FixField(tag=278) public String entryId;
    @FixField(tag=55)  public String symbol;
}
...

FixFieldExtractor fixExtractor = new NativeFixFieldExtractor();
List<MDEntry> mdEntries = fixExtractor.getGroups(fixMsg, List.class, 268, FixMetaScanner.scanClass(MDEntry.class))

在更常见的情况下,应该使用FixSerializer接口,但它需要一条带有MsgType(35)标记的消息和一个用@FixMessage(type =“...”)注释的类。 E.g:

@FixMessage(type="X")
public class MarketData {
    @FixGroup(tag=268) public List<MDEntry> entries;
}
...

FixMetaDictionary fixMetaDictionary = FixMetaScanner.scanClassesIn("my.fix.classes.package");
FixSerializer fixSerializer = new NativeFixSerializer("FIX.5.0.SP2", fixMetaDictionary);
MarketData marketData = fixSerializer.deserialize(fixMsg);

我希望你会发现它很有用。

答案 3 :(得分:0)

如果您只需要一个MsgTyp,您确定该消息是正确的,并且您不需要该消息中的任何其他字段,那么我建议使用regexp从字符串中提取MsgType。

例如:\u000135=(\w+)\u0001

比通过QuickFix解析(和验证)字符串更快