| 1 | #ifndef COMPANY_DATA_FILE_RECORD_H |
| 2 | #define COMPANY_DATA_FILE_RECORD_H |
| 3 | |
| 4 | /* |
| 5 | * Legal Notice |
| 6 | * |
| 7 | * This document and associated source code (the "Work") is a part of a |
| 8 | * benchmark specification maintained by the TPC. |
| 9 | * |
| 10 | * The TPC reserves all right, title, and interest to the Work as provided |
| 11 | * under U.S. and international laws, including without limitation all patent |
| 12 | * and trademark rights therein. |
| 13 | * |
| 14 | * No Warranty |
| 15 | * |
| 16 | * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION |
| 17 | * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE |
| 18 | * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER |
| 19 | * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, |
| 20 | * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, |
| 21 | * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR |
| 22 | * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF |
| 23 | * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. |
| 24 | * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, |
| 25 | * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT |
| 26 | * WITH REGARD TO THE WORK. |
| 27 | * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO |
| 28 | * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE |
| 29 | * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS |
| 30 | * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, |
| 31 | * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, |
| 32 | * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT |
| 33 | * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD |
| 34 | * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. |
| 35 | * |
| 36 | * Contributors |
| 37 | * - Doug Johnson |
| 38 | */ |
| 39 | |
| 40 | #include <deque> |
| 41 | #include <string> |
| 42 | |
| 43 | #include "utilities/EGenStandardTypes.h" |
| 44 | |
| 45 | namespace TPCE { |
| 46 | // |
| 47 | // Description: |
| 48 | // A class to represent a single record in the Company data file. |
| 49 | // |
| 50 | // Exception Safety: |
| 51 | // The Basic guarantee is provided. |
| 52 | // |
| 53 | // Copy Behavior: |
| 54 | // Copying is allowed. |
| 55 | // |
| 56 | |
| 57 | class CompanyDataFileRecord { |
| 58 | private: |
| 59 | TIdent co_id; |
| 60 | |
| 61 | static const int maxCo_st_idLen = 4; |
| 62 | char co_st_idCStr[maxCo_st_idLen + 1]; |
| 63 | std::string co_st_id; |
| 64 | |
| 65 | static const int maxCo_nameLen = 60; |
| 66 | char co_nameCStr[maxCo_nameLen + 1]; |
| 67 | std::string co_name; |
| 68 | |
| 69 | static const int maxCo_in_idLen = 2; |
| 70 | char co_in_idCStr[maxCo_in_idLen + 1]; |
| 71 | std::string co_in_id; |
| 72 | |
| 73 | static const int maxCo_descLen = 150; |
| 74 | char co_descCStr[maxCo_descLen + 1]; |
| 75 | std::string co_desc; |
| 76 | |
| 77 | static const unsigned int fieldCount = 5; |
| 78 | |
| 79 | public: |
| 80 | explicit CompanyDataFileRecord(const std::deque<std::string> &fields); |
| 81 | |
| 82 | // |
| 83 | // Default copies and destructor are ok. |
| 84 | // |
| 85 | // ~CompanyDataFileRecord() |
| 86 | // CompanyDataFileRecord(const CompanyDataFileRecord&); |
| 87 | // CompanyDataFileRecord& operator=(const CompanyDataFileRecord&); |
| 88 | // |
| 89 | |
| 90 | TIdent CO_ID() const; |
| 91 | |
| 92 | const std::string &CO_ST_ID() const; |
| 93 | const char *CO_ST_ID_CSTR() const; |
| 94 | |
| 95 | const std::string &CO_NAME() const; |
| 96 | const char *CO_NAME_CSTR() const; |
| 97 | |
| 98 | const std::string &CO_IN_ID() const; |
| 99 | const char *CO_IN_ID_CSTR() const; |
| 100 | |
| 101 | const std::string &CO_DESC() const; |
| 102 | const char *CO_DESC_CSTR() const; |
| 103 | |
| 104 | std::string ToString(char fieldSeparator = '\t') const; |
| 105 | }; |
| 106 | |
| 107 | } // namespace TPCE |
| 108 | #endif // COMPANY_DATA_FILE_RECORD_H |
| 109 | |