-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixd.hpp
617 lines (455 loc) · 14.9 KB
/
mixd.hpp
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
#ifndef _MIXD_H_
#define _MIXD_H_
#include <string>
#include <sstream>
#include <iostream>
#include <fstream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <iomanip>
#include <utility>
#include <vector>
#include <algorithm>
#ifdef PARALLEL
#include <mpi.h>
#endif
namespace mixd
{
class MixdException
{
private:
std::string _msg;
public:
MixdException() { }
MixdException(const std::string & msg) : _msg(msg) { }
inline const std::string & msg() const { return _msg; }
};
template <typename T>
class MixdFile
{
private:
std::string _fname;
size_t _rows, _cols;
T * _data;
bool _debug;
// check if machine is big endian
inline bool isBigEndian()
{
short word = 0x4321;
if ((* (char*) & word) != 0x21)
return true;
else
return false;
}
// swap bytes according to machine's endianness
inline void swapbytes(char *array, size_t nelem, size_t elsize)
{
size_t sizet, sizem, i, j;
char *bytea, *byteb;
sizet = elsize;
sizem = sizet - 1;
bytea = (char*)malloc(sizet);
byteb = (char*)malloc(sizet);
for (i=0; i<nelem; i++)
{
memcpy((void *)bytea, (void *)(array+i*sizet), sizet);
for (j = 0; j < sizet; j++) byteb[j] = bytea[sizem - j];
memcpy((void *)(array+i*sizet), (void *)byteb, sizet);
}
free(bytea);
free(byteb);
}
public:
MixdFile(const std::string & fname, size_t rows, size_t cols=1, bool debug=true) /*throw (MixdException)*/
: _fname(fname), _rows(rows), _cols(cols), _debug(debug)
{
if(_debug)
{
if(_fname == "")
std::cout << "Allocating memory for scratch file... " << std::flush;
else
std::cout << "Allocating memory for file " << _fname << "... " << std::flush;
}
if(_rows>0 && _cols>0)
_data = new T[_rows*_cols];
else
throw MixdException("illegal size of MIXD file");
if(_debug)
std::cout << "done!" << std::endl;
}
~MixdFile()
{
delete[] _data;
}
inline T* data() const
{
return _data;
}
inline T& at(size_t row, size_t col=0) const
{
return _data[ row*_cols + col ];
}
inline T& operator() (size_t row, size_t col=0) const
{
return at(row,col);
}
inline size_t rows() const
{
return _rows;
}
inline size_t cols() const
{
return _cols;
}
inline void init(T val=0)
{
for(size_t i=0; i<_rows*_cols; i++)
_data[i] = val;
}
void transpose()
{
size_t h = _rows;
_rows = _cols;
_cols = h;
if(_rows > 1 && _cols > 1)
{
T *temp = new T[_rows * _cols];
// copy all values
memcpy(temp, _data, _rows*_cols*sizeof(T));
for(size_t i=0; i<_rows; i++)
for(size_t j=0; j<_cols; j++)
at(i,j) = temp[j*_rows + i];
delete[] temp;
}
}
void read(size_t skip=0, bool transpose=false, size_t rowskip=0) /*throw (MixdException)*/
{
if(_debug)
{
std::cout << "Reading file " << _fname;
if(transpose) std::cout << " (transposed)... " << std::flush;
else std::cout << "... " << std::flush;
}
FILE *fid = fopen(_fname.c_str(), "rb");
if (fid == NULL)
throw MixdException("could not open file for reading");
if(fseek(fid, skip*_rows*_cols*sizeof(T)+rowskip*_cols*sizeof(T), SEEK_SET))
throw MixdException("could not reposition file pointer");
if(!transpose)
{
// read file in one chunk
size_t itemsread = fread(_data, sizeof(T), _rows*_cols, fid);
if(itemsread != _rows*_cols)
throw MixdException("Error reading file!");
}
else
{
size_t h = _rows;
_rows = _cols;
_cols = h;
// read file one element after the other
for(size_t i=0; i<_cols; i++)
for(size_t j=0; j<_rows; j++)
{
size_t itemsread = fread(&(at(j,i)), sizeof(T), 1, fid);
if(itemsread != 1)
throw MixdException("Error reading file!");
}
}
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
fclose(fid);
if(_debug)
std::cout << "done!" << std::endl;
}
void write(size_t skip=0, size_t rowskip=0) /*throw (MixdException)*/
{
if(_debug)
std::cout << "Writing file " << _fname << "... " << std::flush;
FILE *fid = fopen(_fname.c_str(), "wb");
if (fid == NULL)
throw MixdException("could not open file for writing");
if(fseek(fid, skip*_rows*_cols*sizeof(T)+rowskip*_cols*sizeof(T), SEEK_SET))
throw MixdException("could not reposition file pointer");
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
size_t itemswritten = fwrite(_data, sizeof(T), _rows*_cols, fid);
if(itemswritten != _rows*_cols)
throw MixdException("Error writing file!");
// swap back for further use!
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
fclose(fid);
if(_debug)
std::cout << "done!" << std::endl;
}
#ifdef PARALLEL
void read(MPI_Comm & comm, size_t skip=0, bool transpose=false, size_t rowskip=0) /*throw (MixdException)*/
{
if(_debug)
{
std::cout << "Reading file " << _fname;
if(transpose) std::cout << " (transposed)... " << std::flush;
else std::cout << "... " << std::flush;
}
MPI_File fid;
MPI_Status stat;
int flag;
flag = MPI_File_open(comm, (char*)_fname.c_str(), MPI_MODE_RDONLY, MPI_INFO_NULL, &fid);
if (flag)
throw MixdException("could not open file for reading");
flag = MPI_File_seek(fid, skip*_rows*_cols*sizeof(T)+rowskip*_cols*sizeof(T), MPI_SEEK_SET);
if(flag)
throw MixdException("could not reposition file pointer");
if(!transpose)
{
// read file in one chunk
flag = MPI_File_read(fid, _data, _rows*_cols*sizeof(T), MPI_CHAR, &stat);
if(flag)
throw MixdException("Error reading file!");
}
else
{
// something is wrong here... don't use!
throw MixdException("transposed parallel read not implemented yet");
// size_t h = _rows;
// _rows = _cols;
// _cols = h;
//
// // read file one element after the other
// for(size_t i=0; i<_cols; i++)
// for(size_t j=0; j<_rows; j++)
// {
// flag = MPI_File_read(fid, &(at(j,i)), sizeof(T), MPI_CHAR, &stat);
//
// if(flag)
// throw MixdException("Error reading file!");
// }
}
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
MPI_File_close(&fid);
if(_debug)
std::cout << "done!" << std::endl;
}
void write(MPI_Comm & comm, size_t skip=0, size_t rowskip=0) /*throw (MixdException)*/
{
if(_debug)
std::cout << "Writing file " << _fname << "... " << std::flush;
MPI_File fid;
MPI_Status stat;
int flag;
flag = MPI_File_open(comm, (char*)_fname.c_str(), (MPI_MODE_WRONLY|MPI_MODE_CREATE), MPI_INFO_NULL, &fid);
if (flag)
throw MixdException("could not open file for writing");
flag = MPI_File_seek(fid, skip*_rows*_cols*sizeof(T)+rowskip*_cols*sizeof(T), MPI_SEEK_SET);
if(flag)
throw MixdException("could not reposition file pointer");
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
flag = MPI_File_write(fid, _data, _rows*_cols*sizeof(T), MPI_CHAR, &stat);
if(flag)
throw MixdException("Error writing file!");
// swap back for further use!
if(!isBigEndian())
swapbytes((char*)_data, _rows*_cols, sizeof(T));
MPI_File_close(&fid);
if(_debug)
std::cout << "done!" << std::endl;
}
#endif
// This is for some reason unsafe... not sure why exactly.
// template< typename CType >
// void convert(CType *conv) const
// {
// for(size_t i=0; i<_rows*_cols; i++)
// conv[i] = (CType) _data[i];
// }
void toFloat(float *conv) const
{
for(size_t i=0; i<_rows*_cols; i++)
conv[i] = (float) _data[i];
}
};
//====================================================================
// here follow some convenience functions for reading ASCII files...
//====================================================================
// convert numeric value to string
template <typename T>
inline std::string str(const T & val)
{
std::stringstream stream;
stream << val;
return stream.str();
}
// file name suffix
inline std::string suffix(const std::string & s)
{
return s.substr(s.find_last_of('.') + 1);
}
// left trim:
// delete white spaces and tabs at the beginning of s
// and return a new string object
inline std::string ltrim(const std::string & s)
{
size_t beg = s.find_first_not_of(" \t");
if(beg == std::string::npos)
return "";
else
return s.substr(beg);
}
inline bool valid(const std::string & s)
{
return (s.length()>0 && s.at(0)!='#' && s.at(0)!='%');
}
// retrieve the next non-comment line from file stream
inline std::string nextValidLine(std::ifstream & file) /*throw (MixdException)*/
{
std::string line("");
while(std::getline(file,line))
{
line = ltrim(line);
// skip empty and comment lines
if(valid(line)) return line;
}
throw MixdException("ERROR: No more valid lines!");
}
inline std::pair< std::string, std::vector<std::string> > getKeyVal(const std::string & s)
{
size_t beg_key = 0;
size_t len_key = s.find_first_of(" \t");
size_t beg_val = s.find_first_not_of(" \t", beg_key+len_key);
size_t len_val = s.find_last_not_of(" \t") - beg_val + 1;
if(beg_key==std::string::npos || len_key==std::string::npos || beg_val==std::string::npos || len_val==std::string::npos)
throw MixdException("PARSER ERROR: Key-Value pair could not be identified! Bad line:\n" + s);
std::string key = s.substr(beg_key, len_key);
std::string val = s.substr(beg_val, len_val);
std::vector<std::string> vals;
char *cval = (char*)val.c_str();
char *pch;
pch = strtok(cval," \t");
while (pch != NULL)
{
vals.push_back(std::string(pch));
pch = strtok (NULL, " \t");
}
return std::pair< std::string,std::vector<std::string> >( key, vals );
}
inline std::vector<std::string> getValues(const std::string & s)
{
std::vector<std::string> vals;
char *cval = (char*)s.c_str();
char *pch;
pch = strtok(cval," \t");
while (pch != NULL)
{
vals.push_back(std::string(pch));
pch = strtok (NULL, " \t");
}
return vals;
}
// read ASCII minf file and return number of nodes and elements in nn and ne
inline void readminf(const std::string & fname, long *nn, long *ne) /*throw (MixdException)*/
{
std::cout << "Reading minf file " << fname << "... " << std::flush;
if(nn==NULL || ne==NULL)
throw MixdException("illegal NULL pointers");
*nn = 0;
*ne = 0;
std::ifstream file(fname.c_str(), std::ifstream::in);
if(!file.is_open())
throw MixdException("could not open file");
std::string line;
while(std::getline(file, line))
{
line = ltrim(line);
// if(nen!=NULL && line.compare(0,3,"nen")==0)
// {
// line = ltrim(line.substr(3));
// std::cout << "nen | line = " << line << std::endl;
// *nen = atol(line.c_str());
// }
//
// else if(nef!=NULL && line.compare(0,3,"nef")==0)
// {
// line = ltrim(line.substr(3));
// std::cout << "nef | line = " << line << std::endl;
// *nef = atol(line.c_str());
// }
if(line.compare(0,3,"ne ")==0 || line.compare(0,3,"ne\t")==0)
{
line = ltrim(line.substr(2));
// std::cout << "ne | line = " << line << std::endl;
*ne = atol(line.c_str());
}
else if(line.compare(0,2,"nn")==0)
{
line = ltrim(line.substr(2));
// std::cout << "nn | line = " << line << std::endl;
*nn = atol(line.c_str());
}
}
file.close();
if(*nn<=0 || *ne<=0)
throw MixdException("illegal number of nodes or elements: ne = " + str<long>(*ne) + ", nn = " + str<long>(*nn));
std::cout << "done!" << std::endl;
}
// write ASCII minf file
inline void writeminf(const std::string & fname, long nn, long ne) /*throw (MixdException)*/
{
std::cout << "Writing minf file " << fname << "... " << std::flush;
if(nn<=0 || ne<=0)
throw MixdException("illegal number of nodes or elements");
std::ofstream file(fname.c_str(), std::ifstream::out);
if(!file.is_open())
throw MixdException("could not open file");
file << "ne" << std::setw(14) << ne << std::endl;
file << "nn" << std::setw(14) << nn << std::endl;
// if(nen > 0)
// file << "nen" << std::setw(13) << nen << std::endl;
//
// if(nef > 0)
// file << "nef" << std::setw(13) << nef << std::endl;
file.close();
std::cout << "done!" << std::endl;
}
inline void parse_elem_type(const std::string & typestr, int *nsd, int *nen, int *nef=NULL, int *nfn=NULL) /*throw (MixdException)*/
{
std::string tmp(typestr);
// remove leading dash (e.g. from command line option)
if(tmp.at(0) == '-')
tmp.erase(0,1);
std::transform(tmp.begin(), tmp.end(), tmp.begin(), ::tolower);
if(tmp == "tri")
{
if(nsd!=NULL) *nsd = 2;
if(nen!=NULL) *nen = 3;
if(nef!=NULL) *nef = 3;
if(nfn!=NULL) *nfn = 2;
}
else if(tmp == "tet")
{
if(nsd!=NULL) *nsd = 3;
if(nen!=NULL) *nen = 4;
if(nef!=NULL) *nef = 4;
if(nfn!=NULL) *nfn = 3;
}
else if(tmp == "qua")
{
if(nsd!=NULL) *nsd = 2;
if(nen!=NULL) *nen = 4;
if(nef!=NULL) *nef = 4;
if(nfn!=NULL) *nfn = 2;
}
else if(tmp == "hex")
{
if(nsd!=NULL) *nsd = 3;
if(nen!=NULL) *nen = 8;
if(nef!=NULL) *nef = 6;
if(nfn!=NULL) *nfn = 4;
}
else throw MixdException("Unknown element type: " + typestr);
}
} // namespace mixd
#endif