-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCNdlInterfaces.h
455 lines (434 loc) · 15 KB
/
CNdlInterfaces.h
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
#ifndef CNdlInterfaces_H
#define CNdlInterfaces_H
#include <string>
#include <iostream>
#include <sstream>
#include "ndlexceptions.h"
#include "ndlstrutil.h"
#ifdef _NDLMATLAB
#include "mex.h"
#include "mat.h"
#endif
const double MINVERSION=0.2;
const double VERSION=0.2;
using namespace std;
class CStreamInterface
{
public:
virtual ~CStreamInterface() {}
virtual void toStream(ostream& out) const
{
out << setiosflags(ios::fixed);
out << setprecision(6);
writeToStream(out, "version", getCurrentVersion());
out << setiosflags(ios::scientific);
out << setprecision(17);
writeParamsToStream(out);
}
static double readVersionFromStream(istream& in) throw(ndlexceptions::StreamVersionError&)
{
double ver = readDoubleFromStream(in, "version");
if(ver<getMinCompatVersion())
throw ndlexceptions::StreamVersionError();
return ver;
}
static int readIntFromStream(istream& in, const std::string fieldName)
{
string str = readStringFromStream(in, fieldName);
return atol(str.c_str());
}
static double readDoubleFromStream(istream& in, const std::string fieldName)
{
string str = readStringFromStream(in, fieldName);
return atof(str.c_str());
}
static bool readBoolFromStream(istream& in, const std::string fieldName)
{
string str = readStringFromStream(in, fieldName);
if(atol(str.c_str())!=0)
return true;
else
return false;
}
static vector<int> readVectorIntFromStream(istream& in, const std::string fieldName) throw(ndlexceptions::StreamFormatError&)
{
vector<int> vals;
string str = readStringFromStream(in, fieldName);
vector<string> tokens;
ndlstrutil::tokenise(tokens, str, " ");
if(tokens.size()==0)
throw ndlexceptions::StreamFormatError(fieldName, "Zero length vector<int>.");
for(size_t i=0; i<tokens.size(); i++)
vals.push_back(atol(tokens[i].c_str()));
return vals;
}
static vector<unsigned int> readVectorUintFromStream(istream& in, const std::string fieldName) throw(ndlexceptions::StreamFormatError&)
{
vector<unsigned int> vals;
string str = readStringFromStream(in, fieldName);
vector<string> tokens;
ndlstrutil::tokenise(tokens, str, " ");
if(tokens.size()==0)
throw ndlexceptions::StreamFormatError(fieldName, "Zero length vector<unsigned int>.");
for(size_t i=0; i<tokens.size(); i++)
vals.push_back(atol(tokens[i].c_str()));
return vals;
}
static string readStringFromStream(istream& in, const std::string fieldName) throw(ndlexceptions::StreamFormatError&)
{
string line;
vector<string> tokens;
ndlstrutil::getline(in, line);
ndlstrutil::tokenise(tokens, line, "=");
if(tokens.size()!=2 || tokens[0]!=fieldName)
throw ndlexceptions::StreamFormatError(fieldName);
return tokens[1];
}
static void writeToStream(ostream& out, const std::string fieldName, const vector<int> val)
{
out << fieldName << "=";
for(size_t i=0; i<val.size()-1; i++)
out << ndlstrutil::itoa(val[i]) << " ";
out << ndlstrutil::itoa(val[val.size()-1]) << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const vector<unsigned int> val)
{
out << fieldName << "=";
for(size_t i=0; i<val.size()-1; i++)
out << ndlstrutil::itoa(val[i]) << " ";
out << ndlstrutil::itoa(val[val.size()-1]) << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const int val)
{
out << fieldName << "=" << ndlstrutil::itoa(val) << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const unsigned int val)
{
out << fieldName << "=" << ndlstrutil::itoa(val) << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const double val)
{
out << fieldName << "=" << val << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const bool val)
{
out << fieldName << "=";
if(val)
out << "1" << endl;
else
out << "0" << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const std::string val)
{
out << fieldName << "=" << val << endl;
}
static void writeToStream(ostream& out, const std::string fieldName, const char* val)
{
out << fieldName << "=" << val << endl;
}
static string getBaseTypeStream(istream& in)
{
return readStringFromStream(in, "baseType");
}
static string getTypeStream(istream& in)
{
return readStringFromStream(in, "type");
}
virtual void fromStream(istream& in) throw(ndlexceptions::StreamFormatError&)
{
readVersionFromStream(in);
readParamsFromStream(in);
}
double getCurrentVersion() const
{
return VERSION;
}
static double getMinCompatVersion()
{
return MINVERSION;
}
virtual void writeParamsToStream(ostream& out) const=0;
virtual void readParamsFromStream(istream& out)=0;
void toFile(const string fileName, const string comment="") const throw(ndlexceptions::FileWriteError&)
{
ofstream out(fileName.c_str());
if(!out) throw ndlexceptions::FileWriteError(fileName);
if(comment.size()>0)
out << "# " << comment << endl;
toStream(out);
out.close();
}
void fromFile(const string fileName) throw(ndlexceptions::FileReadError&, ndlexceptions::FileFormatError&)
{
ifstream in(fileName.c_str());
if(!in.is_open()) throw ndlexceptions::FileReadError(fileName);
try
{
fromStream(in);
}
catch(ndlexceptions::StreamFormatError& err)
{
throw ndlexceptions::FileFormatError(fileName, err);
}
in.close();
}
#ifdef _HDF5
virtual void writeToHdf5( const std::string& filename, const std::string& path_to_dataset ) const=0;
virtual void readFromHdf5( const std::string& filename, const std::string& path_to_dataset )=0;
#endif
};
#ifdef _NDLMATLAB
// An abstract base class which enables loading and saving of a class to MATLAB.
class CMatInterface
{
public:
virtual mxArray* toMxArray() const=0;
virtual void fromMxArray(const mxArray* matlabArray)=0;
void readMatlabFile(const string fileName, const string variableName) throw(ndlexceptions::FileReadError&, ndlexceptions::FileFormatError&)
{
MATFile* matFile = matOpen(fileName.c_str(), "r");
if(matFile==NULL)
throw ndlexceptions::FileReadError(fileName);
mxArray* matlabArray = matGetVariable(matFile, variableName.c_str());
if(matlabArray==NULL)
{
ndlexceptions::MatlabInterfaceReadError matError(variableName);
throw ndlexceptions::FileFormatError(fileName, matError);
}
try
{
fromMxArray(matlabArray);
}
catch(ndlexceptions::MatlabInterfaceReadError& err)
{
throw ndlexceptions::FileFormatError(fileName, err);
}
mxDestroyArray(matlabArray);
if(matClose(matFile) !=0 )
throw ndlexceptions::FileReadError(fileName);
}
void updateMatlabFile(string fileName, const string variableName) const throw(ndlexceptions::FileWriteError&)
{
MATFile* matFile = matOpen(fileName.c_str(), "u");
if(matFile==NULL)
throw ndlexceptions::FileWriteError(fileName);
mxArray* matlabArray = toMxArray();
matPutVariable(matFile, variableName.c_str(), matlabArray);
mxDestroyArray(matlabArray);
if(matClose(matFile) !=0 )
throw ndlexceptions::FileWriteError(fileName);
}
void writeMatlabFile(const string fileName, const string variableName) const throw(ndlexceptions::FileWriteError&)
{
MATFile* matFile = matOpen(fileName.c_str(), "w");
if(matFile==NULL)
throw ndlexceptions::FileWriteError(fileName);
mxArray* matlabArray = toMxArray();
matPutVariable(matFile, variableName.c_str(), matlabArray);
mxDestroyArray(matlabArray);
if(matClose(matFile) !=0 )
throw ndlexceptions::FileWriteError(fileName);
}
mxArray* convertMxArray(const bool val) const
{
size_t dims[1];
dims[0] = 1;
mxArray* matlabArray = mxCreateNumericArray(1, dims, mxDOUBLE_CLASS, mxREAL);
double* matlabVals = mxGetPr(matlabArray);
if(val)
matlabVals[0] = 1.0;
else
matlabVals[0] = 0.0;
return matlabArray;
}
mxArray* convertMxArray(const double val) const
{
size_t dims[1];
dims[0] = 1;
mxArray* matlabArray = mxCreateNumericArray(1, dims, mxDOUBLE_CLASS, mxREAL);
double* matlabVals = mxGetPr(matlabArray);
matlabVals[0] = val;
return matlabArray;
}
mxArray* convertMxArray(const string val) const
{
return mxCreateString(val.c_str());
}
mxArray* convertMxArray(const vector<int> vals) const
{
size_t dims[2];
dims[0]=(int)vals.size();
dims[1] = 1;
mxArray* matlabArray = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
double* matlabVals = mxGetPr(matlabArray);
for(size_t i=0; i<vals.size(); i++)
{
matlabVals[i]=(double)vals[i];
}
return matlabArray;
}
mxArray* convertMxArray(const vector<unsigned int> vals) const
{
size_t dims[2];
dims[0]=(int)vals.size();
dims[1] = 1;
mxArray* matlabArray = mxCreateNumericArray(2, dims, mxDOUBLE_CLASS, mxREAL);
double* matlabVals = mxGetPr(matlabArray);
for(size_t i=0; i<vals.size(); i++)
{
matlabVals[i]=(double)vals[i];
}
return matlabArray;
}
int mxArrayToInt(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
int val = 0;
mxClassID classID = mxGetClassID(matlabArray);
if(classID==mxDOUBLE_CLASS)
{
assert(mxGetN(matlabArray)==1);
assert(mxGetM(matlabArray)==1);
double* valD = mxGetPr(matlabArray);
val = (int)valD[0];
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to int not yet supported.");
return val;
}
double mxArrayToDouble(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
double val = 0;
mxClassID classID = mxGetClassID(matlabArray);
if(classID==mxDOUBLE_CLASS)
{
assert(mxGetN(matlabArray)==1);
assert(mxGetM(matlabArray)==1);
double* valD = mxGetPr(matlabArray);
val = valD[0];
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to double not yet supported.");
return val;
}
string mxArrayToString(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
vector<char> charVal;
int buflen;
mxClassID classID = mxGetClassID(matlabArray);
if(classID == mxCHAR_CLASS)
{
buflen=mxGetNumberOfElements(matlabArray)*sizeof(char) + 1;
charVal.resize(buflen);
int ret = mxGetString(matlabArray, &charVal[0], buflen);
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to string not yet supported.");
string val(&charVal[0]);
return val;
}
vector<int> mxArrayToVectorInt(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
vector<int> val;
mxClassID classID = mxGetClassID(matlabArray);
if(classID == mxDOUBLE_CLASS)
{
unsigned int length=mxGetNumberOfElements(matlabArray);
double* valD = mxGetPr(matlabArray);
for(unsigned int i=0; i<length; i++)
val.push_back((int)valD[i]);
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to vector<int> not yet supported.");
return val;
}
vector<unsigned int> mxArrayToVectorUint(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
vector<unsigned int> val;
mxClassID classID = mxGetClassID(matlabArray);
if(classID == mxDOUBLE_CLASS)
{
unsigned int length=mxGetNumberOfElements(matlabArray);
double* valD = mxGetPr(matlabArray);
for(unsigned int i=0; i<length; i++)
val.push_back((unsigned int)valD[i]);
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to vector<int> not yet supported.");
return val;
}
bool mxArrayToBool(const mxArray* matlabArray) const throw(ndlexceptions::NotImplementedError&)
{
bool val;
mxClassID classID = mxGetClassID(matlabArray);
if(classID==mxDOUBLE_CLASS)
{
assert(mxGetN(matlabArray)==1);
assert(mxGetM(matlabArray)==1);
double* valD = mxGetPr(matlabArray);
if(valD!=0)
val=true;
else
val=false;
}
else
throw ndlexceptions::NotImplementedError("Conversion of this type to bool not yet supported.");
return false;
}
mxArray* mxArrayExtractMxArrayField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
const char* fName = fieldName.c_str();
if(mxGetClassID(matlabArray) != mxSTRUCT_CLASS)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
mxArray* fieldPtr = mxGetField(matlabArray, index, fName);
return fieldPtr;
}
int mxArrayExtractIntField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToInt(fieldPtr);
}
double mxArrayExtractDoubleField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToDouble(fieldPtr);
}
string mxArrayExtractStringField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToString(fieldPtr);
}
vector<int> mxArrayExtractVectorIntField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToVectorInt(fieldPtr);
}
vector<unsigned int> mxArrayExtractVectorUintField(const mxArray* matlabArray, const string fieldName, int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToVectorUint(fieldPtr);
}
bool mxArrayExtractBoolField(const mxArray* matlabArray, const string fieldName, const int index=0) const throw(ndlexceptions::MatlabInterfaceReadError&)
{
mxArray* fieldPtr = mxArrayExtractMxArrayField(matlabArray, fieldName, index);
if(fieldPtr==NULL)
throw ndlexceptions::MatlabInterfaceReadError(fieldName);
return mxArrayToBool(fieldPtr);
}
};
#else /* not _NDLMATLAB */
class CMatInterface {
public:
private:
};
#endif
#endif /* not CMATLAB_H*/