OnixS C++ EuroTLX GTP Market Data Handler  1.4.0
API documentation
Handler.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 namespace OnixS
27 {
28  namespace EuroTLX
29  {
30  namespace MarketData
31  {
32  namespace GTP
33  {
34  class ErrorListener;
35  class FeedEngine;
36  class WarningListener;
37  class MessageListener;
38  class ProtocolListener;
39 
40  struct HandlerSettings;
41  struct ReplayOptions;
42 
43  ///EuroTLX GTP Market Data Handler class.
44  class ONIXS_EUROTLX_GTP_API Handler
45  {
46  public:
47  /// Performs instance initialization.
48  /// @param settings defines values for various options
49  /// which affect handler behavior like enabling logging
50  /// during execution of the handler.
51  explicit
52  Handler (const HandlerSettings& settings);
53 
54  /// Finalizes the Handler.
55  virtual ~Handler();
56 
57  /// Assigns listener for errors occurred while executing handler.
58  /// It's permissible to change the listener multiple times during
59  /// handler's life-time, but only when handler is in disconnected state.
60  /// @throw OperationException if handler not disconnected
61  void registerErrorListener (ErrorListener* listener);
62 
63  /// Assigns listener for warnings occurred while executing handler.
64  /// It's permissible to change the listener multiple times during
65  /// handler's life-time, but only when handler is in disconnected state.
66  /// @throw OperationException if handler not disconnected
67  void registerWarningListener (WarningListener* listener);
68 
69  /// Assigns listener for state change events occurred while executing handler.
70  /// It's permissible to change the listener multiple times during
71  /// handler's life-time, but only when handler is in disconnected state.
72  /// @throw OperationException if handler not disconnected.
73  void registerHandlerStateListener (HandlerStateListener* listener);
74 
75  /// Assigns listener to receive notification when messages is received while executing handler.
76  /// It's permissible to change the listener multiple times during
77  /// handler's life-time, but only when handler is in disconnected state.
78  /// @throw OperationException if handler not disconnected.
79  void registerMessageListener (MessageListener* listener);
80 
81  /// Assigns listener to receive notifications about message processing while executing handler.
82  /// It's permissible to change the listener multiple times during
83  /// handler's life-time, but only when handler is in disconnected state.
84  /// @throw OperationException if handler not disconnected.
85  void registerProtocolListener (ProtocolListener* listener);
86 
87  /// Binds Feed Engine to the Handler.
88  ///
89  /// Handler must be in stopped state.
90  ///
91  /// @throw OperationException in case when handler is not in configurable state.
92  void bindFeedEngine(FeedEngine& feedEngine);
93 
94  /// Start handler.
95  ///
96  /// @note This action is asynchronous.
97  /// @throw std::exception in case of unable to start.
98  void start ();
99 
100  /// Starts replaying previously logged data.
101  void start (const ReplayOptions& options);
102 
103  /// Stop handler.
104  void stop (bool wait);
105 
106  /// Returns handler state.
107  HandlerState::Enum state () const;
108 
109  /// Logs the given user-level message to the handler log.
110  void log (LogLevel::Enum logLevel, const char* logMessage, size_t length);
111 
112  /// Logs the given user-level message to the handler log
113  void log (LogLevel::Enum logLevel, const char* logMessage);
114 
115  /// Logs the given user-level message to the handler log.
116  void log (LogLevel::Enum logLevel, const std::string& str);
117 
118  /// Returns the license expiration date.
119  std::string licenseExpirationDate () const;
120 
121  /// Returns Handler's version.
122  static const char* version () ONIXS_EUROTLX_GTP_NOTHROW;
123 
124  private:
125  Handler (const Handler&); //no implementation
126  Handler& operator = (const Handler&); //no implementation
127 
128  private:
129  struct Impl;
130  Impl* impl_;
131  };
132  }
133  }
134  }
135 }
136 
137 
138 
139 
EuroTLX GTP Market Data Handler class.
Definition: Handler.h:44
Manages processing machinery for market data received from feeds.
Definition: FeedEngine.h:258
#define ONIXS_EUROTLX_GTP_NOTHROW
Definition: Compiler.h:27
Defines ONIXS_EUROTLX_GTP_API which affect logs replay.
Definition: Replay.h:59
Enum
Defines the state that the handler is in.