1/*
2 * Legal Notice
3 *
4 * This document and associated source code (the "Work") is a part of a
5 * benchmark specification maintained by the TPC.
6 *
7 * The TPC reserves all right, title, and interest to the Work as provided
8 * under U.S. and international laws, including without limitation all patent
9 * and trademark rights therein.
10 *
11 * No Warranty
12 *
13 * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION
14 * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE
15 * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER
16 * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
17 * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,
18 * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR
19 * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF
20 * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE.
21 * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,
22 * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT
23 * WITH REGARD TO THE WORK.
24 * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO
25 * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE
26 * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS
27 * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT,
28 * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY,
29 * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT
30 * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD
31 * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
32 *
33 * Contributors
34 * - Matt Emmerton
35 */
36
37/******************************************************************************
38 * Description: This file implements the methods for formatting
39 * log entries in TSV or CSV format.
40 ******************************************************************************/
41
42#ifndef EGEN_LOG_FORMATTER_H
43#define EGEN_LOG_FORMATTER_H
44
45#include <iostream>
46#include <iomanip> // for log message formatting
47#include <sstream> // for log message construction
48
49#include "utilities/EGenUtilities_stdafx.h"
50#include "DriverParamSettings.h"
51#include "BaseLogFormatter.h"
52
53namespace TPCE {
54
55class CLogFormatTab : public CBaseLogFormatter {
56 friend class EGenLogger;
57
58private:
59 ostringstream logmsg;
60 string emptyString;
61
62public:
63 ////////////////////////////////////////////////////////////////
64 // Constructor
65 ////////////////////////////////////////////////////////////////
66
67 CLogFormatTab() : emptyString("") {
68 }
69
70 ////////////////////////////////////////////////////////////////
71 // CE Transaction Settings
72 ////////////////////////////////////////////////////////////////
73
74 string GetLogOutput(CBrokerVolumeSettings &parms);
75
76 string GetLogOutput(CCustomerPositionSettings &parms);
77
78 string GetLogOutput(CMarketWatchSettings &parms);
79
80 string GetLogOutput(CSecurityDetailSettings &parms);
81
82 string GetLogOutput(CTradeLookupSettings &parms);
83
84 string GetLogOutput(CTradeOrderSettings &parms);
85
86 string GetLogOutput(CTradeUpdateSettings &parms);
87
88 ////////////////////////////////////////////////////////////////
89 // CE Transaction Mix Settings
90 ////////////////////////////////////////////////////////////////
91
92 string GetLogOutput(CTxnMixGeneratorSettings &parms);
93
94 ////////////////////////////////////////////////////////////////
95 // Loader Settings
96 ////////////////////////////////////////////////////////////////
97
98 string GetLogOutput(CLoaderSettings &parms);
99
100 ////////////////////////////////////////////////////////////////
101 // Driver Settings
102 ////////////////////////////////////////////////////////////////
103
104 string GetLogOutput(CDriverGlobalSettings &parms);
105
106 string GetLogOutput(CDriverCESettings &parms);
107
108 string GetLogOutput(CDriverCEPartitionSettings &parms);
109
110 string GetLogOutput(CDriverMEESettings &parms);
111
112 string GetLogOutput(CDriverDMSettings &parms);
113};
114
115} // namespace TPCE
116
117#endif // EGEN_LOG_FORMATTER_H
118