Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#include "FieldMapFileProvider.h"
#include <cmath>
#include <string>
#include <map>
#include <vector>
#include <iostream>
#include <fstream>
#include <sstream>
FieldMapFileProvider::FieldMapFileProvider(const std::string& url_)
: m_url(url_), rBinMax(-1), zBinMax(-1), drBin(-1), dzBin(-1) {
init();
}
int FieldMapFileProvider::rBinIdx(double r) {
double absr = std::fabs(r);
return -1;
}
int FieldMapFileProvider::zBinIdx(double z) {
double absz = std::fabs(z);
return -1;
}
void FieldMapFileProvider::access(int rbin, int zbin, double& Br, double& Bz) {
}
// ======================
// Below are private impl
// ======================
void FieldMapFileProvider::init() {
// parse the url
// Br=/tmp/lint/CEPCSW/Br.csv;Bz=/tmp/lint/CEPCSW/Bz.csv
std::map<std::string, std::string> url_parsed;
size_t idx_begin = 0;
size_t idx_end = m_url.find(";");
while (true) {
std::string keyval = m_url.substr(idx_begin, idx_end-idx_begin);
if (keyval.size()) {
std::cout << "---> keyval: " << keyval << std::endl;
// separate by '='
size_t idx_sep = keyval.find("=");
if (idx_sep == std::string::npos) {
std::string error_msg = "[ERROR] FieldMapFileProvider: Pleaes specify label=path. ";
throw std::runtime_error(error_msg);
}
std::string key = keyval.substr(0, idx_sep);
std::string val = keyval.substr(idx_sep+1);
std::cout << "-----> key: " << key << std::endl;
std::cout << "-----> val: " << val << std::endl;
// insert into map
// duplicated
if (url_parsed.count(key)) {
std::string error_msg = "[ERROR] FieldMapFileProvider: duplicated key '" + key + "'";
throw std::runtime_error(error_msg);
}
url_parsed[key] = val;
}
if (idx_end == std::string::npos) {
break;
}
idx_begin = idx_end+1;
idx_end = m_url.find(';', idx_begin);
}
// access the map 'url_parsed'
std::string key;
// load Br
key = "Br";
if (url_parsed.count(key) == 0) {
std::string error_msg = "[ERROR] FieldMapFileProvider: missing key '" + key + "'";
throw std::runtime_error(error_msg);
}
loadBr(url_parsed[key]);
// load Bz
key = "Bz";
if (url_parsed.count(key) == 0) {
std::string error_msg = "[ERROR] FieldMapFileProvider: missing key '" + key + "'";
throw std::runtime_error(error_msg);
}
loadBz(url_parsed[key]);
}
bool FieldMapFileProvider::loadBr(const std::string& fn) {
// ----> r
// |
// v
// z
// the shape
int ncol = -1;
int nrow = -1;
// load data
bool st = loadCSV(fn, Brdata, ncol, nrow);
// update the metadata
// for (int i = 0; i < ncol; ++i) {
// std::cout << "i: " << i << " data[i]: " << data[i] << std::endl;
// }
nr = ncol-1; // skip the top row and left col
nz = nrow-1;
rBinMax = Brdata[ncol-1];
zBinMax = Brdata[ncol*(nrow-1)];
drBin = rBinMax / (nr-1);
dzBin = zBinMax / (nz-1);
std::cout << "nr: " << nr << std::endl;
std::cout << "nz: " << nz << std::endl;
std::cout << "rBinMax: " << rBinMax << std::endl;
std::cout << "zBinMax: " << zBinMax << std::endl;
std::cout << "drBin: " << drBin << std::endl;
std::cout << "dzBin: " << dzBin << std::endl;
return true;
}
bool FieldMapFileProvider::loadBz(const std::string& fn) {
// the shape
int ncol = -1;
int nrow = -1;
bool st = loadCSV(fn, Bzdata, ncol, nrow);
return true;
}
bool FieldMapFileProvider::loadCSV(const std::string& fn,
std::vector<double>& data,
int& ncol, int& nrow) {
std::ifstream input(fn);
std::string tmpline;
ncol = 0;
nrow = 0;
while(std::getline(input, tmpline)) {
std::cout << "------> " << tmpline << std::endl;
++nrow;
// split by ,
int col_per_line = 0;
size_t idx_begin = 0;
size_t idx_end = tmpline.find(",");
while (true) {
std::cout << "----------------> idx: "
<< idx_begin << "->" << idx_end << std::endl;
std::string val = tmpline.substr(idx_begin, idx_end-idx_begin);
double v = 0.0;
// parse val
std::stringstream ss;
ss << val;
ss >> v;
// if (not ss.good()) {
// v = 0;
// ss.clear();
// }
std::cout << "----------------> v: " << v << std::endl;
// if (val.size()==0 || ) { // if it is empty or not number, use 0
// data.push_back(0.0);
// } else {
// }
data.push_back(v);
++col_per_line;
// break
if (idx_end == std::string::npos) {
break;
}
// goto next val
idx_begin = idx_end+1;
idx_end = tmpline.find(',', idx_begin);
}
// if it is the first line, we need to store the column sizes
if (ncol == 0) {
ncol = col_per_line;
}
std::cout << "--> ncol: " << ncol
<< " col_per_line: " << col_per_line
<< std::endl;
if (ncol != col_per_line) {
std::string error_msg = "[ERROR] FieldMapFileProvider: Mismatch columns. ";
throw std::runtime_error(error_msg);
}
}
std::cout << "SUMMARY: "
<< " size of the data: " << data.size()
<< " shape (ncol: " << ncol
<< " , nrow: " << nrow
<< ")" << std::endl;
return true;
}