| 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 | * - Sergey Vasilevskiy |
| 35 | */ |
| 36 | |
| 37 | /* |
| 38 | * Class for generation and load output to stdout. |
| 39 | */ |
| 40 | |
| 41 | #ifndef EGEN_GENERATE_AND_LOAD_STANDARD_OUTPUT_H |
| 42 | #define EGEN_GENERATE_AND_LOAD_STANDARD_OUTPUT_H |
| 43 | |
| 44 | #include <cstdio> |
| 45 | #include <string> |
| 46 | #include "EGenGenerateAndLoadBaseOutput.h" |
| 47 | |
| 48 | using namespace std; |
| 49 | |
| 50 | namespace TPCE { |
| 51 | |
| 52 | class CGenerateAndLoadStandardOutput : public CGenerateAndLoadBaseOutput { |
| 53 | public: |
| 54 | /* |
| 55 | * Output beginning of table generation. |
| 56 | * |
| 57 | * PARAMETERS: |
| 58 | * IN szMsg - string to output to the user |
| 59 | * |
| 60 | * RETURNS: |
| 61 | * none. |
| 62 | */ |
| 63 | void OutputStart(string szMsg) { |
| 64 | // printf("%s", szMsg.c_str()); |
| 65 | // fflush(stdout); // in case there is no newline character in szMsg |
| 66 | } |
| 67 | |
| 68 | /* |
| 69 | * Output progress of table generation. |
| 70 | * |
| 71 | * PARAMETERS: |
| 72 | * IN szMsg - string to output to the user |
| 73 | * |
| 74 | * RETURNS: |
| 75 | * none. |
| 76 | */ |
| 77 | void OutputProgress(string szMsg) { |
| 78 | // printf("%s", szMsg.c_str()); |
| 79 | // fflush(stdout); // in case there is no newline character in szMsg |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Output completion of table generation. |
| 84 | * |
| 85 | * PARAMETERS: |
| 86 | * IN szMsg - string to output to the user |
| 87 | * |
| 88 | * RETURNS: |
| 89 | * none. |
| 90 | */ |
| 91 | void OutputComplete(string szMsg) { |
| 92 | // printf("%s", szMsg.c_str()); |
| 93 | // fflush(stdout); // in case there is no newline character in szMsg |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Output end-of-line. |
| 98 | * |
| 99 | * PARAMETERS: |
| 100 | * IN szMsg - string to output to the user |
| 101 | * |
| 102 | * RETURNS: |
| 103 | * none. |
| 104 | */ |
| 105 | void OutputNewline() { |
| 106 | // printf("\n"); |
| 107 | } |
| 108 | }; |
| 109 | |
| 110 | } // namespace TPCE |
| 111 | |
| 112 | #endif // EGEN_GENERATE_AND_LOAD_STANDARD_OUTPUT_H |
| 113 | |