| 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 interface for |
| 39 | * formatting logger entries. |
| 40 | ******************************************************************************/ |
| 41 | |
| 42 | #ifndef BASE_LOG_FORMATTER_H |
| 43 | #define BASE_LOG_FORMATTER_H |
| 44 | |
| 45 | #include <string> |
| 46 | #include "DriverParamSettings.h" |
| 47 | |
| 48 | namespace TPCE { |
| 49 | |
| 50 | enum eLogFormat { eLogTab, eLogCustom }; |
| 51 | |
| 52 | class CBaseLogFormatter { |
| 53 | public: |
| 54 | /* |
| 55 | * Virtual destructor. Provided so that a sponsor-specific |
| 56 | * destructor can be called on destruction from the base-class pointer. |
| 57 | * |
| 58 | * PARAMETERS: |
| 59 | * none. |
| 60 | * |
| 61 | * RETURNS: |
| 62 | * not applicable. |
| 63 | */ |
| 64 | virtual ~CBaseLogFormatter(){}; |
| 65 | |
| 66 | virtual string GetLogOutput(CBrokerVolumeSettings &parms) = 0; |
| 67 | virtual string GetLogOutput(CCustomerPositionSettings &parms) = 0; |
| 68 | virtual string GetLogOutput(CMarketWatchSettings &parms) = 0; |
| 69 | virtual string GetLogOutput(CSecurityDetailSettings &parms) = 0; |
| 70 | virtual string GetLogOutput(CTradeLookupSettings &parms) = 0; |
| 71 | virtual string GetLogOutput(CTradeOrderSettings &parms) = 0; |
| 72 | virtual string GetLogOutput(CTradeUpdateSettings &parms) = 0; |
| 73 | virtual string GetLogOutput(CTxnMixGeneratorSettings &parms) = 0; |
| 74 | virtual string GetLogOutput(CLoaderSettings &parms) = 0; |
| 75 | virtual string GetLogOutput(CDriverGlobalSettings &parms) = 0; |
| 76 | virtual string GetLogOutput(CDriverCESettings &parms) = 0; |
| 77 | virtual string GetLogOutput(CDriverCEPartitionSettings &parms) = 0; |
| 78 | virtual string GetLogOutput(CDriverMEESettings &parms) = 0; |
| 79 | virtual string GetLogOutput(CDriverDMSettings &parms) = 0; |
| 80 | }; |
| 81 | |
| 82 | } // namespace TPCE |
| 83 | |
| 84 | #endif // BASE_LOG_FORMATTER_H |
| 85 | |