-
Notifications
You must be signed in to change notification settings - Fork 0
/
BOVScalarImage.cxx
120 lines (108 loc) · 2.87 KB
/
BOVScalarImage.cxx
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
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#include "BOVScalarImage.h"
#include "SQMacros.h"
//-----------------------------------------------------------------------------
MPI_File Open(MPI_Comm comm, MPI_Info hints, const char *fileName, int mode)
{
#ifdef SQTK_WITHOUT_MPI
return 0;
#else
// added this to deal with vpic data arrays which use spaces.
string cleanFileName=fileName;
size_t fileNameLen=cleanFileName.size();
for (size_t i=0; i<fileNameLen; ++i)
{
if (cleanFileName[i]==' ') cleanFileName[i]='-';
}
MPI_File file=0;
int iErr;
const int eStrLen=2048;
char eStr[eStrLen]={'\0'};
// Open the file
iErr=MPI_File_open(
comm,
const_cast<char *>(cleanFileName.c_str()),
mode,
hints,
&file);
if (iErr!=MPI_SUCCESS)
{
MPI_Error_string(iErr,eStr,const_cast<int *>(&eStrLen));
sqErrorMacro(cerr,
<< "Error opeing file: " << cleanFileName << endl
<< eStr);
file=0;
}
return file;
#endif
}
//-----------------------------------------------------------------------------
BOVScalarImage::BOVScalarImage(
MPI_Comm comm,
MPI_Info hints,
const char *fileName,
int mode)
{
this->File=Open(comm,hints,fileName,mode);
this->FileName=fileName;
}
//-----------------------------------------------------------------------------
BOVScalarImage::BOVScalarImage(
MPI_Comm comm,
MPI_Info hints,
const char *fileName,
const char *name,
int mode)
{
this->File=Open(comm,hints,fileName,mode);
this->FileName=fileName;
this->Name=name;
}
//-----------------------------------------------------------------------------
BOVScalarImage::~BOVScalarImage()
{
#ifndef SQTK_WITHOUT_MPI
if (this->File)
{
MPI_File_close(&this->File);
}
#endif
}
//-----------------------------------------------------------------------------
ostream &operator<<(ostream &os, const BOVScalarImage &si)
{
os << si.GetName() << endl
<< " " << si.GetFileName() << " " << si.GetFile() << endl;
#ifndef SQTK_WITHOUT_MPI
MPI_File file=si.GetFile();
if (file)
{
os << " Hints:" << endl;
int WorldRank;
MPI_Comm_rank(MPI_COMM_WORLD,&WorldRank);
if (WorldRank==0)
{
MPI_Info info;
char key[MPI_MAX_INFO_KEY];
char val[MPI_MAX_INFO_KEY];
MPI_File_get_info(file,&info);
int nKeys;
MPI_Info_get_nkeys(info,&nKeys);
for (int i=0; i<nKeys; ++i)
{
int flag;
MPI_Info_get_nthkey(info,i,key);
MPI_Info_get(info,key,MPI_MAX_INFO_KEY,val,&flag);
os << " " << key << "=" << val << endl;
}
}
}
#endif
return os;
}