OnixS C++ Euronext Optiq MDG Handler 1.3.3
API documentation
Loading...
Searching...
No Matches
Replay.h
Go to the documentation of this file.
1// Copyright 2005-2012 Onix Solutions Limited [OnixS]. All rights reserved.
2//
3// This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
4// and international copyright treaties.
5//
6// Access to and use of the software is governed by the terms of the applicable ONIXS Software
7// Services Agreement (the Agreement) and Customer end user license agreements granting
8// a non-assignable, non-transferable and non-exclusive license to use the software
9// for it's own data processing purposes under the terms defined in the Agreement.
10//
11// Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
12// of this source code or associated reference material to any other location for further reproduction
13// or redistribution, and any amendments to this copyright notice, are expressly prohibited.
14//
15// Any reproduction or redistribution for sale or hiring of the Software not in accordance with
16// the terms of the Agreement is a violation of copyright law.
17//
18#pragma once
19
21
22#include <vector>
23#include <string>
24
25namespace OnixS
26{
27 namespace Euronext
28 {
29 namespace MarketData
30 {
31 namespace OptiqMdg
32 {
34 typedef std::vector<std::string> HandlerLogs;
35
37 typedef std::vector<std::string>::iterator HandlerLogsEntry;
38
40 class ONIXS_EURONEXT_OPTIQMDG_API ReplayListener
41 {
42 public:
44 virtual void onReplayError (const std::string& errorDescription) = 0;
45
47 virtual void onReplayFinished() = 0;
48
49 protected:
52 virtual ~ReplayListener() {};
53 };
54
56 void ONIXS_EURONEXT_OPTIQMDG_API gatherLogs(HandlerLogs* gatheredLogs, const std::string& root);
57
60 {
64
67
71 unsigned int packetReplayDelay;
72
79
82 explicit
83 ReplayOptions(const std::string& logsRoot)
86 {
87 gatherLogs(&logs, logsRoot);
88 }
89 };
90 }
91 }
92 }
93}
#define ONIXS_EURONEXT_OPTIQMDG_NULLPTR
Definition Compiler.h:192
Listening interface for log replay-related events.
Definition Replay.h:41
virtual void onReplayFinished()=0
Is called once all the logs are replayed.
virtual void onReplayError(const std::string &errorDescription)=0
Is called once error occurs while replaying logs.
virtual ~ReplayListener()
Deletion is not supposed through interface of this class.
Definition Replay.h:52
std::vector< std::string > HandlerLogs
Ordered list of logs to be replayed.
Definition Replay.h:34
void ONIXS_EURONEXT_OPTIQMDG_API gatherLogs(HandlerLogs *gatheredLogs, const std::string &root)
Gathers log files logs which are stored in a given folder.
std::vector< std::string >::iterator HandlerLogsEntry
Read-write iterator over ordered list of logs to be replayed.
Definition Replay.h:37
ReplayOptions(const std::string &logsRoot)
Initializes with all the logs which are available and are stored in a given folder.
Definition Replay.h:83
HandlerLogs logs
List of instruments logs to be replayed.
Definition Replay.h:63
unsigned int packetReplayDelay
Specifies the time delay (milliseconds) between replayed packets.
Definition Replay.h:71
ReplayListener * listener
Instance to notify about replay events.
Definition Replay.h:66
ReplayOptions()
Initializes instance with default values.
Definition Replay.h:74