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/TaxRateDivisionDataFileRecord.h"
38
39#include <cstdlib>
40#include <sstream>
41#include <stdexcept>
42
43#include "input/Utilities.h"
44
45using namespace TPCE;
46
47TaxRateDivisionDataFileRecord::TaxRateDivisionDataFileRecord(const std::deque<std::string> &fields) {
48 if (fieldCount != fields.size()) {
49 throw std::runtime_error("Incorrect field count.");
50 }
51
52 DFRStringInit(fields[0], tx_id, tx_idCStr, maxTx_idLen);
53
54 DFRStringInit(fields[1], tx_name, tx_nameCStr, maxTx_nameLen);
55
56 tx_rate = std::atof(fields[2].c_str());
57}
58
59const std::string &TaxRateDivisionDataFileRecord::TX_ID() const {
60 return tx_id;
61}
62
63const char *TaxRateDivisionDataFileRecord::TX_ID_CSTR() const {
64 return tx_idCStr;
65}
66
67const std::string &TaxRateDivisionDataFileRecord::TX_NAME() const {
68 return tx_name;
69}
70
71const char *TaxRateDivisionDataFileRecord::TX_NAME_CSTR() const {
72 return tx_nameCStr;
73}
74
75double TaxRateDivisionDataFileRecord::TX_RATE() const {
76 return tx_rate;
77}
78
79std::string TaxRateDivisionDataFileRecord::ToString(char fieldSeparator) const {
80 // Facilitate encapsulation by using public interface to fields.
81 std::ostringstream msg;
82 msg << TX_ID() << fieldSeparator << TX_NAME() << fieldSeparator << TX_RATE();
83 return msg.str();
84}
85