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/ZipCodeDataFileRecord.h" |
38 | |
39 | #include <sstream> |
40 | #include <stdexcept> |
41 | #include <cstdlib> // for atoi |
42 | // #include <string> // C++11 for stoi |
43 | |
44 | #include "input/Utilities.h" |
45 | |
46 | using namespace TPCE; |
47 | |
48 | ZipCodeDataFileRecord::ZipCodeDataFileRecord(const std::deque<std::string> &fields) { |
49 | if (fieldCount != fields.size()) { |
50 | throw std::runtime_error("Incorrect field count." ); |
51 | } |
52 | |
53 | divisionTaxKey = std::atoi(fields[0].c_str()); |
54 | // divisionTaxKey = std::stoi(fields[0]); // C++11 |
55 | |
56 | DFRStringInit(fields[1], zc_code, zc_codeCStr, maxZc_codeLen); |
57 | |
58 | DFRStringInit(fields[2], zc_town, zc_townCStr, maxZc_townLen); |
59 | |
60 | DFRStringInit(fields[3], zc_div, zc_divCStr, maxZc_divLen); |
61 | } |
62 | |
63 | int ZipCodeDataFileRecord::DivisionTaxKey() const { |
64 | return divisionTaxKey; |
65 | } |
66 | |
67 | const std::string &ZipCodeDataFileRecord::ZC_CODE() const { |
68 | return zc_code; |
69 | } |
70 | |
71 | const char *ZipCodeDataFileRecord::ZC_CODE_CSTR() const { |
72 | return zc_codeCStr; |
73 | } |
74 | |
75 | const std::string &ZipCodeDataFileRecord::ZC_TOWN() const { |
76 | return zc_town; |
77 | } |
78 | |
79 | const char *ZipCodeDataFileRecord::ZC_TOWN_CSTR() const { |
80 | return zc_townCStr; |
81 | } |
82 | |
83 | const std::string &ZipCodeDataFileRecord::ZC_DIV() const { |
84 | return zc_div; |
85 | } |
86 | |
87 | const char *ZipCodeDataFileRecord::ZC_DIV_CSTR() const { |
88 | return zc_divCStr; |
89 | } |
90 | |
91 | std::string ZipCodeDataFileRecord::ToString(char fieldSeparator) const { |
92 | // Facilitate encapsulation by using public interface to fields. |
93 | std::ostringstream msg; |
94 | msg << DivisionTaxKey() << fieldSeparator << ZC_CODE() << fieldSeparator << ZC_TOWN() << fieldSeparator << ZC_DIV(); |
95 | return msg.str(); |
96 | } |
97 | |