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/TaxRateFile.h" |
38 | |
39 | using namespace TPCE; |
40 | |
41 | CTaxRateFile::CTaxRateFile(const TaxRateCountryDataFile_t &countryDataFile, |
42 | const TaxRateDivisionDataFile_t &divisionDataFile) |
43 | : cdf(&countryDataFile), ddf(&divisionDataFile) { |
44 | locations.reserve(cdf->size() + ddf->size()); |
45 | |
46 | int maxBucketIdx = cdf->size(cdf->BucketsOnly); |
47 | for (int bucketIdx = 0; bucketIdx < maxBucketIdx; ++bucketIdx) { |
48 | int maxRecordIdx = (*cdf)[bucketIdx].size(); |
49 | for (int recordIdx = 0; recordIdx < maxRecordIdx; ++recordIdx) { |
50 | locations.push_back(RecordLocation(bucketIdx, recordIdx)); |
51 | } |
52 | } |
53 | |
54 | maxBucketIdx = ddf->size(ddf->BucketsOnly); |
55 | for (int bucketIdx = 0; bucketIdx < maxBucketIdx; ++bucketIdx) { |
56 | int maxRecordIdx = (*ddf)[bucketIdx].size(); |
57 | for (int recordIdx = 0; recordIdx < maxRecordIdx; ++recordIdx) { |
58 | locations.push_back(RecordLocation(bucketIdx, recordIdx)); |
59 | } |
60 | } |
61 | } |
62 | |
63 | // Provide range-checked access to the records. |
64 | const ITaxRateFileRecord &CTaxRateFile::operator[](unsigned int idx) const { |
65 | if (0 == size()) { |
66 | // This is an attempt to access an empty container. |
67 | throw std::out_of_range("Attemt to index into an emtpy DataFile." ); |
68 | } |
69 | |
70 | unsigned int maxIdx = size() - 1; |
71 | |
72 | if (maxIdx < idx) { |
73 | std::ostringstream msg; |
74 | msg << "Provided index (" << idx << ") is outside the legal range (0:" << maxIdx << ")." ; |
75 | throw std::out_of_range(msg.str()); |
76 | } |
77 | |
78 | if (idx < cdf->size()) { |
79 | return (*cdf)[locations[idx].bucketIdx][locations[idx].recordIdx]; |
80 | } else { |
81 | return (*ddf)[locations[idx].bucketIdx][locations[idx].recordIdx]; |
82 | } |
83 | } |
84 | |
85 | CTaxRateFile::size_type CTaxRateFile::size() const { |
86 | return locations.size(); |
87 | } |
88 | |