-
Notifications
You must be signed in to change notification settings - Fork 0
/
BOVArrayImageIterator.h
121 lines (108 loc) · 2.62 KB
/
BOVArrayImageIterator.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
/*
____ _ __ ____ __ ____
/ __/___(_) / ___ ____/ __ \__ _____ ___ / /_ / _/__ ____
_\ \/ __/ / _ \/ -_) __/ /_/ / // / -_|_-</ __/ _/ // _ \/ __/
/___/\__/_/_.__/\__/_/ \___\_\_,_/\__/___/\__/ /___/_//_/\__(_)
Copyright 2012 SciberQuest Inc.
*/
#ifndef __BOVArrayImageIterator_h
#define __BOVArrayImageIterator_h
#include "BOVScalarImage.h"
#include "BOVVectorImage.h"
/// Base class for an iterator for a collection of array handles.
/**
Base class for an iterator that traverses a collection of array
handles. For example all the scalar arrays of a given time
step.
*/
class BOVArrayImageIterator
{
public:
BOVArrayImageIterator(const BOVTimeStepImage *step, int size)
:
Step(step),
Idx(0),
End(size)
{ }
/**
Will evaluate true during the traversal.
*/
virtual bool Ok() const { return this->Idx<this->End; }
/**
Advance the iterator.
*/
virtual int Next()
{
if (this->Idx<this->End)
{
++this->Idx;
return this->Idx;
}
return 0;
}
/**
Get the component file handles.
*/
virtual int GetNumberOfComponents() const = 0;
virtual MPI_File GetComponentFile(int comp=0) const = 0;
/**
Get the array name.
*/
virtual const char *GetName() const = 0;
private:
/// \Section NotImplemented \@{
BOVArrayImageIterator();
BOVArrayImageIterator(const BOVArrayImageIterator &);
void operator=(const BOVArrayImageIterator &);
/// \@}
protected:
const BOVTimeStepImage *Step;
int Idx;
int End;
};
// Define some specific classes of the iterator
#define BOVArrayImageIteratorImplMacro(name, ncomps) \
\
class BOV##name##ImageIterator : public BOVArrayImageIterator \
{ \
public: \
BOV##name##ImageIterator(const BOVTimeStepImage *step) \
: \
BOVArrayImageIterator( \
step, \
step->name##s.size()) \
{ } \
\
/** \
Get number of components.\
*/ \
virtual int GetNumberOfComponents() const \
{ \
return ncomps; \
} \
\
/** \
Get the component file handles.\
*/ \
virtual MPI_File GetComponentFile(int comp=0) const \
{ \
return this->Step->name##s[this->Idx]->GetComponentFile(comp); \
} \
\
/** \
Get the array name.\
*/ \
virtual const char *GetName() const \
{ \
return this->Step->name##s[this->Idx]->GetName(); \
} \
\
private: \
BOV##name##ImageIterator(); \
BOV##name##ImageIterator(const BOV##name##ImageIterator &); \
void operator=(const BOV##name##ImageIterator &); \
}
BOVArrayImageIteratorImplMacro(Vector,3);
BOVArrayImageIteratorImplMacro(Tensor,9);
BOVArrayImageIteratorImplMacro(SymetricTensor,6);
#endif