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 | * - Doug Johnson |
35 | */ |
36 | |
37 | #include "input/CompanyDataFileRecord.h" |
38 | |
39 | #include <sstream> |
40 | #include <stdexcept> |
41 | #include <cstdlib> // for atoi, atof |
42 | // #include <string> // C++11 for stoi, stod |
43 | |
44 | #include "input/Utilities.h" |
45 | |
46 | using namespace TPCE; |
47 | |
48 | CompanyDataFileRecord::CompanyDataFileRecord(const std::deque<std::string> &fields) { |
49 | if (fieldCount != fields.size()) { |
50 | throw std::runtime_error("Incorrect field count." ); |
51 | } |
52 | |
53 | co_id = std::atoi(fields[0].c_str()); |
54 | // co_id = std::stoi(fields[0]); // C++11 |
55 | |
56 | DFRStringInit(fields[1], co_st_id, co_st_idCStr, maxCo_st_idLen); |
57 | |
58 | DFRStringInit(fields[2], co_name, co_nameCStr, maxCo_nameLen); |
59 | |
60 | DFRStringInit(fields[3], co_in_id, co_in_idCStr, maxCo_in_idLen); |
61 | |
62 | DFRStringInit(fields[4], co_desc, co_descCStr, maxCo_descLen); |
63 | } |
64 | |
65 | TIdent CompanyDataFileRecord::CO_ID() const { |
66 | return co_id; |
67 | } |
68 | |
69 | const std::string &CompanyDataFileRecord::CO_ST_ID() const { |
70 | return co_st_id; |
71 | } |
72 | |
73 | const char *CompanyDataFileRecord::CO_ST_ID_CSTR() const { |
74 | return co_st_idCStr; |
75 | } |
76 | |
77 | const std::string &CompanyDataFileRecord::CO_NAME() const { |
78 | return co_name; |
79 | } |
80 | |
81 | const char *CompanyDataFileRecord::CO_NAME_CSTR() const { |
82 | return co_nameCStr; |
83 | } |
84 | |
85 | const std::string &CompanyDataFileRecord::CO_IN_ID() const { |
86 | return co_in_id; |
87 | } |
88 | |
89 | const char *CompanyDataFileRecord::CO_IN_ID_CSTR() const { |
90 | return co_in_idCStr; |
91 | } |
92 | |
93 | const std::string &CompanyDataFileRecord::CO_DESC() const { |
94 | return co_desc; |
95 | } |
96 | |
97 | const char *CompanyDataFileRecord::CO_DESC_CSTR() const { |
98 | return co_descCStr; |
99 | } |
100 | |
101 | std::string CompanyDataFileRecord::ToString(char fieldSeparator) const { |
102 | // Facilitate encapsulation by using public interface to fields. |
103 | std::ostringstream msg; |
104 | msg << CO_ID() << fieldSeparator << CO_ST_ID() << fieldSeparator << CO_NAME() << fieldSeparator << CO_IN_ID() |
105 | << fieldSeparator << CO_DESC(); |
106 | return msg.str(); |
107 | } |
108 | |