org.sackfix.fix50sp2modified.AllocationReportAckMessage.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sackfix-messages-fix50sp2modified_2.11 Show documentation
Show all versions of sackfix-messages-fix50sp2modified_2.11 Show documentation
All Fix 5.0sp2modified strongly typed messages, purely generated code, do not edit.
The newest version!
package org.sackfix.fix50sp2modified
import org.sackfix.field._
import org.sackfix.common.validated.fields.{SfFixMessageBody, SfFixMessageDecoder, SfFixFieldsToAscii, SfFixRenderable}
import org.sackfix.common.message.SfRepeatingGroupCountException
import scala.annotation.tailrec
import scala.collection.immutable.HashSet
import scala.collection.mutable.ArrayBuffer
/**
* Generated by SackFix code generator on 20170404
* Source specification was read from:
* /quickfixj1.6.0/FIX50SP2.modified.xml
*/
case class AllocationReportAckMessage(allocReportIDField:AllocReportIDField,
allocIDField:Option[AllocIDField]=None,
clearingBusinessDateField:Option[ClearingBusinessDateField]=None,
avgPxIndicatorField:Option[AvgPxIndicatorField]=None,
quantityField:Option[QuantityField]=None,
allocTransTypeField:Option[AllocTransTypeField]=None,
partiesComponent:Option[PartiesComponent]=None,
secondaryAllocIDField:Option[SecondaryAllocIDField]=None,
tradeDateField:Option[TradeDateField]=None,
transactTimeField:Option[TransactTimeField]=None,
allocStatusField:Option[AllocStatusField]=None,
allocRejCodeField:Option[AllocRejCodeField]=None,
allocReportTypeField:Option[AllocReportTypeField]=None,
allocIntermedReqTypeField:Option[AllocIntermedReqTypeField]=None,
matchStatusField:Option[MatchStatusField]=None,
productField:Option[ProductField]=None,
securityTypeField:Option[SecurityTypeField]=None,
textField:Option[TextField]=None,
encodedTextLenField:Option[EncodedTextLenField]=None,
encodedTextField:Option[EncodedTextField]=None,
allocAckGrpComponent:Option[AllocAckGrpComponent]=None) extends SfFixMessageBody("AT") with SfFixRenderable with SfFixFieldsToAscii {
override lazy val fixStr : String = appendFixStr().toString
override def appendFixStr(b:StringBuilder = new StringBuilder): StringBuilder = format(formatForFix, b)
override def toString():String = appendStringBuilder().toString()
def appendStringBuilder(b:StringBuilder = new StringBuilder) : StringBuilder = format(formatForToString, b)
def format( fmt: ((StringBuilder,SfFixRenderable)=>Unit), b:StringBuilder = new StringBuilder()): StringBuilder = {
fmt(b,allocReportIDField)
allocIDField.foreach(fmt(b,_))
clearingBusinessDateField.foreach(fmt(b,_))
avgPxIndicatorField.foreach(fmt(b,_))
quantityField.foreach(fmt(b,_))
allocTransTypeField.foreach(fmt(b,_))
partiesComponent.foreach(fmt(b,_))
secondaryAllocIDField.foreach(fmt(b,_))
tradeDateField.foreach(fmt(b,_))
transactTimeField.foreach(fmt(b,_))
allocStatusField.foreach(fmt(b,_))
allocRejCodeField.foreach(fmt(b,_))
allocReportTypeField.foreach(fmt(b,_))
allocIntermedReqTypeField.foreach(fmt(b,_))
matchStatusField.foreach(fmt(b,_))
productField.foreach(fmt(b,_))
securityTypeField.foreach(fmt(b,_))
textField.foreach(fmt(b,_))
encodedTextLenField.foreach(fmt(b,_))
encodedTextField.foreach(fmt(b,_))
allocAckGrpComponent.foreach(fmt(b,_))
b
}
}
object AllocationReportAckMessage extends SfFixMessageDecoder {
val MsgType="AT"
val MsgName="AllocationReportAck"
override val MandatoryFields = HashSet[Int](
AllocReportIDField.TagId)
override def isMandatoryField(tagId:Int) : Boolean = {
MandatoryFields.contains(tagId) ||
PartiesComponent.isMandatoryField(tagId) || AllocAckGrpComponent.isMandatoryField(tagId)
}
override val OptionalFields = HashSet[Int](
AllocIDField.TagId, ClearingBusinessDateField.TagId, AvgPxIndicatorField.TagId, QuantityField.TagId, AllocTransTypeField.TagId,
SecondaryAllocIDField.TagId, TradeDateField.TagId, TransactTimeField.TagId, AllocStatusField.TagId, AllocRejCodeField.TagId,
AllocReportTypeField.TagId, AllocIntermedReqTypeField.TagId, MatchStatusField.TagId, ProductField.TagId, SecurityTypeField.TagId,
TextField.TagId, EncodedTextLenField.TagId, EncodedTextField.TagId)
override def isOptionalField(tagId:Int) : Boolean = {
OptionalFields.contains(tagId) ||
PartiesComponent.isOptionalField(tagId) || AllocAckGrpComponent.isOptionalField(tagId)
}
override def isFieldOf(tagId:Int) : Boolean = isMandatoryField(tagId) || isOptionalField(tagId) ||
PartiesComponent.isFieldOf(tagId) || AllocAckGrpComponent.isFieldOf(tagId)
override lazy val RepeatingGroupsTags = HashSet[Int]()
override def isFirstField(tagId:Int) : Boolean = tagId==AllocReportIDField.TagId
override def decode(flds: Seq[Tuple2[Int, Any]], startPos:Int = 0):Option[SfFixMessageBody] = {
val (pos, myFields, nextTagPosLookup) = extractMyFieldsAndPopulatePositions(false, flds, startPos)
validateMandatoryFieldsPresent(myFields)
if (MandatoryFields.isEmpty || myFields.nonEmpty) {
Some(AllocationReportAckMessage(AllocReportIDField.decode(myFields.get(AllocReportIDField.TagId)).get,
myFields.get(AllocIDField.TagId).flatMap(f=>AllocIDField.decode(f)),
myFields.get(ClearingBusinessDateField.TagId).flatMap(f=>ClearingBusinessDateField.decode(f)),
myFields.get(AvgPxIndicatorField.TagId).flatMap(f=>AvgPxIndicatorField.decode(f)),
myFields.get(QuantityField.TagId).flatMap(f=>QuantityField.decode(f)),
myFields.get(AllocTransTypeField.TagId).flatMap(f=>AllocTransTypeField.decode(f)),
PartiesComponent.decode(flds, startPos),
myFields.get(SecondaryAllocIDField.TagId).flatMap(f=>SecondaryAllocIDField.decode(f)),
myFields.get(TradeDateField.TagId).flatMap(f=>TradeDateField.decode(f)),
myFields.get(TransactTimeField.TagId).flatMap(f=>TransactTimeField.decode(f)),
myFields.get(AllocStatusField.TagId).flatMap(f=>AllocStatusField.decode(f)),
myFields.get(AllocRejCodeField.TagId).flatMap(f=>AllocRejCodeField.decode(f)),
myFields.get(AllocReportTypeField.TagId).flatMap(f=>AllocReportTypeField.decode(f)),
myFields.get(AllocIntermedReqTypeField.TagId).flatMap(f=>AllocIntermedReqTypeField.decode(f)),
myFields.get(MatchStatusField.TagId).flatMap(f=>MatchStatusField.decode(f)),
myFields.get(ProductField.TagId).flatMap(f=>ProductField.decode(f)),
myFields.get(SecurityTypeField.TagId).flatMap(f=>SecurityTypeField.decode(f)),
myFields.get(TextField.TagId).flatMap(f=>TextField.decode(f)),
myFields.get(EncodedTextLenField.TagId).flatMap(f=>EncodedTextLenField.decode(f)),
myFields.get(EncodedTextField.TagId).flatMap(f=>EncodedTextField.decode(f)),
AllocAckGrpComponent.decode(flds, startPos)))
} else None
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy