
org.sackfix.fix44.MarketDataSnapshotFullRefreshMessage.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sackfix-messages-fix44_2.13 Show documentation
Show all versions of sackfix-messages-fix44_2.13 Show documentation
All Fix 4.4 strongly typed messages, purely generated code, do not edit.
The newest version!
package org.sackfix.fix44
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 20210314
* Source specification was read from:
* /quickfixj1.6.0/FIX44.xml
*/
case class MarketDataSnapshotFullRefreshMessage(mDReqIDField:Option[MDReqIDField]=None,
instrumentComponent:InstrumentComponent,
noUnderlyingsField:Option[NoUnderlyingsField]=None,
underlyingsGroups: Option[List[UnderlyingsGroup]]=None,
noLegsField:Option[NoLegsField]=None,
legsGroups: Option[List[LegsGroup]]=None,
financialStatusField:Option[FinancialStatusField]=None,
corporateActionField:Option[CorporateActionField]=None,
netChgPrevDayField:Option[NetChgPrevDayField]=None,
noMDEntriesField:NoMDEntriesField,
mDEntriesGroups: List[MDEntriesGroup],
applQueueDepthField:Option[ApplQueueDepthField]=None,
applQueueResolutionField:Option[ApplQueueResolutionField]=None) extends SfFixMessageBody("W") with SfFixRenderable with SfFixFieldsToAscii {
if (noUnderlyingsField.map(_.value).getOrElse(0) != underlyingsGroups.map(_.size).getOrElse(0))
throw SfRepeatingGroupCountException(NoUnderlyingsField.TagId,noUnderlyingsField.map(_.value).getOrElse(0), underlyingsGroups.map(_.size).getOrElse(0))
if (noLegsField.map(_.value).getOrElse(0) != legsGroups.map(_.size).getOrElse(0))
throw SfRepeatingGroupCountException(NoLegsField.TagId,noLegsField.map(_.value).getOrElse(0), legsGroups.map(_.size).getOrElse(0))
if (noMDEntriesField.value != mDEntriesGroups.size)
throw SfRepeatingGroupCountException(NoMDEntriesField.TagId,noMDEntriesField.value, mDEntriesGroups.size)
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 = {
mDReqIDField.foreach(fmt(b,_))
fmt(b,instrumentComponent)
noUnderlyingsField.foreach(fmt(b,_))
underlyingsGroups.getOrElse(List.empty).foreach(fmt(b,_))
noLegsField.foreach(fmt(b,_))
legsGroups.getOrElse(List.empty).foreach(fmt(b,_))
financialStatusField.foreach(fmt(b,_))
corporateActionField.foreach(fmt(b,_))
netChgPrevDayField.foreach(fmt(b,_))
fmt(b,noMDEntriesField)
applQueueDepthField.foreach(fmt(b,_))
applQueueResolutionField.foreach(fmt(b,_))
b
}
}
object MarketDataSnapshotFullRefreshMessage extends SfFixMessageDecoder {
val MsgType="W"
val MsgName="MarketDataSnapshotFullRefresh"
override val MandatoryFields = HashSet[Int](
NoMDEntriesField.TagId)
override def isMandatoryField(tagId:Int) : Boolean = {
MandatoryFields.contains(tagId) ||
InstrumentComponent.isMandatoryField(tagId) || UnderlyingsGroup.isMandatoryField(tagId) || LegsGroup.isMandatoryField(tagId) || MDEntriesGroup.isMandatoryField(tagId)
}
override val OptionalFields = HashSet[Int](
MDReqIDField.TagId, NoUnderlyingsField.TagId, NoLegsField.TagId, FinancialStatusField.TagId, CorporateActionField.TagId,
NetChgPrevDayField.TagId, ApplQueueDepthField.TagId, ApplQueueResolutionField.TagId)
override def isOptionalField(tagId:Int) : Boolean = {
OptionalFields.contains(tagId) ||
InstrumentComponent.isOptionalField(tagId) || UnderlyingsGroup.isOptionalField(tagId) || LegsGroup.isOptionalField(tagId) || MDEntriesGroup.isOptionalField(tagId)
}
override def isFieldOf(tagId:Int) : Boolean = isMandatoryField(tagId) || isOptionalField(tagId) ||
InstrumentComponent.isFieldOf(tagId) || UnderlyingsGroup.isFieldOf(tagId) || LegsGroup.isFieldOf(tagId) ||
MDEntriesGroup.isFieldOf(tagId)
override lazy val RepeatingGroupsTags = HashSet[Int](
NoUnderlyingsField.TagId, NoLegsField.TagId, NoMDEntriesField.TagId)
override def isFirstField(tagId:Int) : Boolean = tagId==MDReqIDField.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(MarketDataSnapshotFullRefreshMessage(myFields.get(MDReqIDField.TagId).flatMap(f=>MDReqIDField.decode(f)),
InstrumentComponent.decode(flds, startPos).get,
myFields.get(NoUnderlyingsField.TagId).flatMap(f=>NoUnderlyingsField.decode(f)),
if (nextTagPosLookup.contains(NoUnderlyingsField.TagId)) UnderlyingsGroup.decode(flds, nextTagPosLookup(NoUnderlyingsField.TagId)) else None,
myFields.get(NoLegsField.TagId).flatMap(f=>NoLegsField.decode(f)),
if (nextTagPosLookup.contains(NoLegsField.TagId)) LegsGroup.decode(flds, nextTagPosLookup(NoLegsField.TagId)) else None,
myFields.get(FinancialStatusField.TagId).flatMap(f=>FinancialStatusField.decode(f)),
myFields.get(CorporateActionField.TagId).flatMap(f=>CorporateActionField.decode(f)),
myFields.get(NetChgPrevDayField.TagId).flatMap(f=>NetChgPrevDayField.decode(f)),
NoMDEntriesField.decode(myFields.get(NoMDEntriesField.TagId)).get,
if (nextTagPosLookup.contains(NoMDEntriesField.TagId)) MDEntriesGroup.decode(flds, nextTagPosLookup(NoMDEntriesField.TagId)).get else List.empty,
myFields.get(ApplQueueDepthField.TagId).flatMap(f=>ApplQueueDepthField.decode(f)),
myFields.get(ApplQueueResolutionField.TagId).flatMap(f=>ApplQueueResolutionField.decode(f))))
} else None
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy