#ifndef COMPANY_DATA_FILE_RECORD_H #define COMPANY_DATA_FILE_RECORD_H /* * Legal Notice * * This document and associated source code (the "Work") is a part of a * benchmark specification maintained by the TPC. * * The TPC reserves all right, title, and interest to the Work as provided * under U.S. and international laws, including without limitation all patent * and trademark rights therein. * * No Warranty * * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT * WITH REGARD TO THE WORK. * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. * * Contributors * - Doug Johnson */ #include #include #include "utilities/EGenStandardTypes.h" namespace TPCE { // // Description: // A class to represent a single record in the Company data file. // // Exception Safety: // The Basic guarantee is provided. // // Copy Behavior: // Copying is allowed. // class CompanyDataFileRecord { private: TIdent co_id; static const int maxCo_st_idLen = 4; char co_st_idCStr[maxCo_st_idLen + 1]; std::string co_st_id; static const int maxCo_nameLen = 60; char co_nameCStr[maxCo_nameLen + 1]; std::string co_name; static const int maxCo_in_idLen = 2; char co_in_idCStr[maxCo_in_idLen + 1]; std::string co_in_id; static const int maxCo_descLen = 150; char co_descCStr[maxCo_descLen + 1]; std::string co_desc; static const unsigned int fieldCount = 5; public: explicit CompanyDataFileRecord(const std::deque &fields); // // Default copies and destructor are ok. // // ~CompanyDataFileRecord() // CompanyDataFileRecord(const CompanyDataFileRecord&); // CompanyDataFileRecord& operator=(const CompanyDataFileRecord&); // TIdent CO_ID() const; const std::string &CO_ST_ID() const; const char *CO_ST_ID_CSTR() const; const std::string &CO_NAME() const; const char *CO_NAME_CSTR() const; const std::string &CO_IN_ID() const; const char *CO_IN_ID_CSTR() const; const std::string &CO_DESC() const; const char *CO_DESC_CSTR() const; std::string ToString(char fieldSeparator = '\t') const; }; } // namespace TPCE #endif // COMPANY_DATA_FILE_RECORD_H