OnixS C++ SGX Titan ITCH Market Data Handler  1.2.2
API documentation
OrderDeleteMsg.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 
25 
26 ONIXS_SGXTITAN_ITCH_NAMESPACE_BEGIN
27 
28  /// This message is sent whenever an order on the book
29  /// is being deleted.
30  struct ONIXS_SGXTITAN_ITCH_API OrderDeleteMsg : public IncomingMessage
31  {
32  /// Nanoseconds portion of the timestamp
33  UInt32 nanoseconds() const
34  {
35  return ordinary<UInt32>(1);
36  }
37 
38  /// The ID of the order being deleted
39  OrderId orderId() const
40  {
41  return ordinary<UInt64>(5);
42  }
43 
44  /// The Order Book ID
46  {
47  return ordinary<UInt32>(13);
48  }
49 
50  /// The type of order being added
51  Side::Enum side() const
53  {
54  return enumeration<Side>(17);
55  }
56 
57  /// Total message size.
59 
60  /// Check the given size.
61  static void validateSize(MessageSize size)
62  {
63  if(size < messageSize_)
64  throwIncorrectSize("OrderDeleteMsg", size, messageSize_);
65  }
66 
67  /// Initializes instance over given memory block.
68  OrderDeleteMsg(const void* data, MessageSize size)
70  : IncomingMessage(data, size)
71  {
72  }
73  };
74 
75  /// Serializes object into string.
76  ONIXS_SGXTITAN_ITCH_API void toStr(std::string&, const OrderDeleteMsg&);
77 
78  /// Serializes object into string.
79  inline std::string toStr(const OrderDeleteMsg& msg)
80  {
81  std::string str;
82  toStr(str, msg);
83  return str;
84  }
85 
86  ///
87  inline std::ostream& operator<<(std::ostream& stream, const OrderDeleteMsg& msg)
88  {
89  stream << toStr(msg);
90  return stream;
91  }
92 
93 ONIXS_SGXTITAN_ITCH_NAMESPACE_END
UInt32 nanoseconds() const
Nanoseconds portion of the timestamp.
UInt64 OrderId
Alias for OrderId type.
Definition: Defines.h:40
#define ONIXS_SGXTITAN_ITCH_CONST_OR_CONSTEXPR
Definition: Compiler.h:46
OrderDeleteMsg(const void *data, MessageSize size)
Initializes instance over given memory block.
OrderBookId orderBookId() const
The Order Book ID.
#define ONIXS_SGXTITAN_ITCH_NOTHROW
Definition: Compiler.h:27
UInt32 OrderBookId
Alias for Security Id type.
Definition: Defines.h:43
IncomingMessage(const void *data, MessageSize size)
UInt16 MessageSize
Aliases message length type.
Definition: Defines.h:34
ONIXS_SGXTITAN_ITCH_API void toStr(std::string &, MessageType::Enum)
Appends string presentation of object.
ONIXS_SGXTITAN_ITCH_API std::ostream & operator<<(std::ostream &stream, const ServiceDescriptor &descriptor)
static void validateSize(MessageSize size)
Check the given size.
ONIXS_SGXTITAN_ITCH_API void throwIncorrectSize(const std::string &messageName, MessageSize receivedSize, MessageSize expectedSize)
OrderId orderId() const
The ID of the order being deleted.
Side::Enum side() const
The type of order being added.