OnixS C++ Fenics UST BIMP Market Data Handler  1.1.0
API documentation
SystemEvent.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 FenicsUST {
32 namespace MarketData {
33 namespace Bimp {
34 
35  /// System Event
36  struct SystemEventMsg : public BinaryMessage
37  {
38  /// Always zero.
41  {
42  return ordinary<Integer4>(1);
43  }
44 
45  /// Timestamp for this message. Expressed as the number of nanoseconds since Unix Epoch (00:00:00 UTC on
46  /// 1 January 1970).
49  {
50  return ordinary<Integer8>(5);
51  }
52 
53  /// Event Code
56  {
57  return enumeration<EventCode>(13);
58  }
59 
60  /// Total message size.
62 
63  /// Check the given size.
64  static void validateSize(MessageSize size)
65  {
66  if (ONIXS_FENICSUST_BIMP_CHECK_EXPECT((size < messageSize_), false))
67  throwIncorrectSize("SystemEvent", size, messageSize_);
68  }
69 
70  /// Initializes instance over given memory block.
71  SystemEventMsg(const void* data, MessageSize size)
73  : BinaryMessage(data, size)
74  {
75  }
76  };
77 
78  /// Serializes object into string.
79  ONIXS_FENICSUST_BIMP_API void toStr(std::string&, const SystemEventMsg&);
80 
81  /// Serializes object into string.
82  inline std::string toStr(const SystemEventMsg& msg)
83  {
84  std::string str;
85  toStr(str, msg);
86  return str;
87  }
88 
89 }
90 }
91 }
92 }
EventCode::Enum eventCode() const ONIXS_FENICSUST_BIMP_NOTHROW
Event Code.
Definition: SystemEvent.h:54
static ONIXS_FENICSUST_BIMP_CONST_OR_CONSTEXPR MessageSize messageSize_
Total message size.
Definition: SystemEvent.h:61
ONIXS_FENICSUST_BIMP_API ONIXS_FENICSUST_BIMP_COLD_PATH ONIXS_FENICSUST_BIMP_NORETURN void throwIncorrectSize(const std::string &messageName, MessageSize receivedSize, MessageSize expectedSize)
Integer4 instrumentLocate() const ONIXS_FENICSUST_BIMP_NOTHROW
Always zero.
Definition: SystemEvent.h:39
BinaryMessage() ONIXS_FENICSUST_BIMP_NOTHROW
Initializes blank instance referencing to nothing.
#define ONIXS_FENICSUST_BIMP_CHECK_EXPECT(exp, c)
Definition: Compiler.h:52
#define ONIXS_FENICSUST_BIMP_CONST_OR_CONSTEXPR
Definition: Compiler.h:46
#define ONIXS_FENICSUST_BIMP_NOTHROW
Definition: Compiler.h:27
Encapsulates services for manipulating little endian encoded messages.
SystemEventMsg(const void *data, MessageSize size) ONIXS_FENICSUST_BIMP_NOTHROW
Initializes instance over given memory block.
Definition: SystemEvent.h:71
static void validateSize(MessageSize size)
Check the given size.
Definition: SystemEvent.h:64
ONIXS_FENICSUST_BIMP_API void toStr(std::string &, EventCode::Enum)
Appends string presentation of object.
Integer2 MessageSize
Aliases message length type.
Definition: Defines.h:100
Integer8 timestamp() const ONIXS_FENICSUST_BIMP_NOTHROW
Definition: SystemEvent.h:47