org.sackfix.fix50sp2modified.SecurityStatusRequestMessage.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 SecurityStatusRequestMessage(securityStatusReqIDField:SecurityStatusReqIDField,
instrumentComponent:InstrumentComponent,
instrumentExtensionComponent:Option[InstrumentExtensionComponent]=None,
undInstrmtGrpComponent:Option[UndInstrmtGrpComponent]=None,
instrmtLegGrpComponent:Option[InstrmtLegGrpComponent]=None,
currencyField:Option[CurrencyField]=None,
subscriptionRequestTypeField:SubscriptionRequestTypeField,
marketIDField:Option[MarketIDField]=None,
marketSegmentIDField:Option[MarketSegmentIDField]=None,
tradingSessionIDField:Option[TradingSessionIDField]=None,
tradingSessionSubIDField:Option[TradingSessionSubIDField]=None) extends SfFixMessageBody("e") 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,securityStatusReqIDField)
fmt(b,instrumentComponent)
instrumentExtensionComponent.foreach(fmt(b,_))
undInstrmtGrpComponent.foreach(fmt(b,_))
instrmtLegGrpComponent.foreach(fmt(b,_))
currencyField.foreach(fmt(b,_))
fmt(b,subscriptionRequestTypeField)
marketIDField.foreach(fmt(b,_))
marketSegmentIDField.foreach(fmt(b,_))
tradingSessionIDField.foreach(fmt(b,_))
tradingSessionSubIDField.foreach(fmt(b,_))
b
}
}
object SecurityStatusRequestMessage extends SfFixMessageDecoder {
val MsgType="e"
val MsgName="SecurityStatusRequest"
override val MandatoryFields = HashSet[Int](
SecurityStatusReqIDField.TagId, SubscriptionRequestTypeField.TagId)
override def isMandatoryField(tagId:Int) : Boolean = {
MandatoryFields.contains(tagId) ||
InstrumentComponent.isMandatoryField(tagId) || InstrumentExtensionComponent.isMandatoryField(tagId) || UndInstrmtGrpComponent.isMandatoryField(tagId) || InstrmtLegGrpComponent.isMandatoryField(tagId)
}
override val OptionalFields = HashSet[Int](
CurrencyField.TagId, MarketIDField.TagId, MarketSegmentIDField.TagId, TradingSessionIDField.TagId, TradingSessionSubIDField.TagId)
override def isOptionalField(tagId:Int) : Boolean = {
OptionalFields.contains(tagId) ||
InstrumentComponent.isOptionalField(tagId) || InstrumentExtensionComponent.isOptionalField(tagId) || UndInstrmtGrpComponent.isOptionalField(tagId) || InstrmtLegGrpComponent.isOptionalField(tagId)
}
override def isFieldOf(tagId:Int) : Boolean = isMandatoryField(tagId) || isOptionalField(tagId) ||
InstrumentComponent.isFieldOf(tagId) || InstrumentExtensionComponent.isFieldOf(tagId) || UndInstrmtGrpComponent.isFieldOf(tagId) ||
InstrmtLegGrpComponent.isFieldOf(tagId)
override lazy val RepeatingGroupsTags = HashSet[Int]()
override def isFirstField(tagId:Int) : Boolean = tagId==SecurityStatusReqIDField.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(SecurityStatusRequestMessage(SecurityStatusReqIDField.decode(myFields.get(SecurityStatusReqIDField.TagId)).get,
InstrumentComponent.decode(flds, startPos).get,
InstrumentExtensionComponent.decode(flds, startPos),
UndInstrmtGrpComponent.decode(flds, startPos),
InstrmtLegGrpComponent.decode(flds, startPos),
myFields.get(CurrencyField.TagId).flatMap(f=>CurrencyField.decode(f)),
SubscriptionRequestTypeField.decode(myFields.get(SubscriptionRequestTypeField.TagId)).get,
myFields.get(MarketIDField.TagId).flatMap(f=>MarketIDField.decode(f)),
myFields.get(MarketSegmentIDField.TagId).flatMap(f=>MarketSegmentIDField.decode(f)),
myFields.get(TradingSessionIDField.TagId).flatMap(f=>TradingSessionIDField.decode(f)),
myFields.get(TradingSessionSubIDField.TagId).flatMap(f=>TradingSessionSubIDField.decode(f))))
} else None
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy