OnixS C++ Cboe CFE Multicast PITCH Market Data Handler  1.12.1
API documentation
FuturesVarianceSymbolMapping.h
Go to the documentation of this file.
1 /*
2 * Copyright Onix Solutions Limited [OnixS]. All rights reserved.
3 *
4 * This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
5 * and international copyright treaties.
6 *
7 * Access to and use of the software is governed by the terms of the applicable ONIXS Software
8 * Services Agreement (the Agreement) and Customer end user license agreements granting
9 * a non-assignable, non-transferable and non-exclusive license to use the software
10 * for it's own data processing purposes under the terms defined in the Agreement.
11 *
12 * Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
13 * of this source code or associated reference material to any other location for further reproduction
14 * or redistribution, and any amendments to this copyright notice, are expressly prohibited.
15 *
16 * Any reproduction or redistribution for sale or hiring of the Software not in accordance with
17 * the terms of the Agreement is a violation of copyright law.
18 */
19 
20 #pragma once
21 
22 #include <vector>
23 
28 
29 
30 namespace OnixS {
31 namespace CboeCFE {
32 namespace MarketData {
33 namespace Pitch {
34 
35  /// Included in a spin response
37  {
38  /// Nanosecond offset from last unit timestamp.
41  {
42  return ordinary<Binary4>(2);
43  }
44 
45  /// Unit timestamp expressed as number of whole seconds since the Epoch (Midnight, January 1, 1970 UTC).
48  {
49  return ordinary<Binary4>(6);
50  }
51 
52  /// Six character, base 62 symbol.
55  {
56  return fixedStr<6>(10);
57  }
58 
59  /// Twelve character textual definition of the symbol.
62  {
63  return fixedStr<12>(16);
64  }
65 
66  /// Accrued day variance
69  {
70  return ordinary<SignedBinary8>(28);
71  }
72 
73  /// Number of SnP 500 Index returns
76  {
77  return ordinary<Binary2>(36);
78  }
79 
80  /// Number of SnP 500 Index returns
83  {
84  return ordinary<Binary2>(38);
85  }
86 
87  /// Total message size.
89 
90  /// Check the given size.
91  static void validateSize(MessageSize size)
92  {
93  if (ONIXS_BATS_PITCH_CHECK_EXPECT((size < messageSize_), false))
94  throwIncorrectSize("FuturesVarianceSymbolMapping", size, messageSize_);
95  }
96 
97  /// Initializes instance over given memory block.
100  : BinaryMessage(data, size)
101  {
102  }
103  };
104 
105  /// Serializes object into string.
106  ONIXS_CBOECFE_PITCH_API void toStr(std::string&, const FuturesVarianceSymbolMappingMsg&);
107 
108  /// Serializes object into string.
109  inline std::string toStr(const FuturesVarianceSymbolMappingMsg& msg)
110  {
111  std::string str;
112  toStr(str, msg);
113  return str;
114  }
115 
116 }
117 }
118 }
119 }
StrRef feedSymbol() const ONIXS_BATS_PITCH_NOTHROW
Six character, base 62 symbol.
ONIXS_CBOECFE_PITCH_API ONIXS_BATS_PITCH_COLDPATH ONIXS_BATS_PITCH_NORETURN void throwIncorrectSize(const std::string &messageName, MessageSize receivedSize, MessageSize expectedSize)
Binary2 numElapsedReturns() const ONIXS_BATS_PITCH_NOTHROW
Number of SnP 500 Index returns.
#define ONIXS_BATS_PITCH_CONST_OR_CONSTEXPR
Definition: Compiler.h:110
StrRef futuresSymbol() const ONIXS_BATS_PITCH_NOTHROW
Twelve character textual definition of the symbol.
Provides efficient way of accessing text-based FIX field values.
Definition: String.h:45
Encapsulates services for manipulating little endian encoded messages.
Binary2 numFinalReturns() const ONIXS_BATS_PITCH_NOTHROW
Number of SnP 500 Index returns.
BinaryMessage() ONIXS_BATS_PITCH_NOTHROW
Initializes blank instance referencing to nothing.
static void validateSize(MessageSize size)
Check the given size.
Binary2 MessageSize
Aliases message length type.
Definition: Defines.h:90
FuturesVarianceSymbolMappingMsg(const void *data, MessageSize size) ONIXS_BATS_PITCH_NOTHROW
Initializes instance over given memory block.
Binary4 unitTimestamp() const ONIXS_BATS_PITCH_NOTHROW
Unit timestamp expressed as number of whole seconds since the Epoch (Midnight, January 1...
static ONIXS_BATS_PITCH_CONST_OR_CONSTEXPR MessageSize messageSize_
Total message size.
Binary4 timeOffset() const ONIXS_BATS_PITCH_NOTHROW
Nanosecond offset from last unit timestamp.
#define ONIXS_BATS_PITCH_NOTHROW
Definition: Compiler.h:107
ONIXS_CBOECFE_PITCH_API void toStr(std::string &, SideIndicator::Enum)
Appends string presentation of object.
SignedBinary8 accruedDayVariance() const ONIXS_BATS_PITCH_NOTHROW
Accrued day variance.