00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 #ifndef _DATAITERATOR_H_
00053 #define _DATAITERATOR_H_
00054
00055 #include "DataIndex.H"
00056 #include "BoxLayout.H"
00057 #include "SPMD.H"
00058
00059 #ifdef MPI
00060
00062
00077 class DataIterator
00078 {
00079
00080 public:
00081
00083 DataIterator();
00084
00085 DataIterator(const BoxLayout& a_layout){*this = a_layout.dataIterator();}
00086
00087 ~DataIterator()
00088 {}
00089
00091
00092 inline const DataIndex& operator()() const ;
00094
00095 DataIndex i() const { return this->operator()();}
00096
00098 inline void operator++();
00100 void incr() { ++(*this);}
00101
00103 bool ok() const;
00104
00106 void begin();
00107
00109 void reset();
00110
00112
00113 void end();
00114
00115 private:
00116
00117 friend class BoxLayout;
00118 friend class DisjointBoxLayout;
00119
00120 DataIterator(const BoxLayout& boxlayout, const int* layoutID);
00121
00122 BoxLayout m_layout;
00123
00124 unsigned int m_index;
00125
00126 DataIndex m_current;
00127
00128 unsigned int m_procID;
00129
00130 };
00131
00132 inline DataIterator::DataIterator()
00133 : m_index(0), m_procID(0)
00134 {}
00135
00136 inline const DataIndex& DataIterator::operator()() const
00137 {
00138 assert(ok());
00139 return m_current;
00140 }
00141
00142 inline void DataIterator::operator++()
00143 {
00144 const Entry* box;
00145 while(++m_index < m_layout.size())
00146 {
00147 box = &(*(m_layout.m_boxes))[m_index];
00148 if(box->m_procID == m_procID)
00149 {
00150 m_current.m_index = box->index;
00151 return;
00152 }
00153 }
00154
00155 }
00156
00157 inline bool DataIterator::ok() const
00158 {
00159 return m_index < m_layout.size();
00160 }
00161
00162 inline void DataIterator::reset()
00163 {
00164 begin();
00165 }
00166
00167 inline void DataIterator::begin()
00168 {
00169 m_index = 0;
00170 const Entry* box;
00171 while(m_index < m_layout.size())
00172 {
00173 box = &(*(m_layout.m_boxes))[m_index];
00174 if(box->m_procID == m_procID)
00175 {
00176 m_current.m_index = box->index;
00177 return;
00178 }
00179 ++m_index;
00180 }
00181 }
00182
00183 #else
00184
00185
00186 #include "LayoutIterator.H"
00187
00188 class DataIterator : public LayoutIterator
00189 {
00190 public:
00191 DataIterator()
00192 {}
00193
00194 DataIterator(const BoxLayout& a_layout){*this = a_layout.dataIterator();}
00195
00197
00198 const DataIndex& operator()() const
00199 {
00200 return (const DataIndex&)(LayoutIterator::operator()());
00201 };
00202
00204
00205 DataIndex i() const {return this->operator()();}
00206
00207 private:
00208 friend class BoxLayout;
00209 friend class DisjointBoxLayout;
00210
00211 DataIterator(const BoxLayout& boxlayout, const int* layoutID)
00212 :
00213 LayoutIterator(boxlayout, layoutID)
00214 {}
00215 };
00216
00217 #endif
00218
00219 #define DATAITERATOR(CLASS, BOXLAYOUT) \
00220 DataIterator dit = BOXLAYOUT .dataIterator(); \
00221 for(dit.begin(); dit.ok(); ++dit) { \
00222 DataIndex di = dit(); \
00223 MT_BEGIN1(CLASS, DataIndex, di)
00224
00225 #define ENDITERATOR(CLASS) \
00226 MT_END1(CLASS, DataIndex, di) \
00227 }
00228
00229 #define DATAITERATOR1(CLASS, BOXLAYOUT, TYPE1, VAL1) \
00230 DataIterator dit = BOXLAYOUT .dataIterator(); \
00231 for(dit.begin(); dit.ok(); ++dit) { \
00232 DataIndex di = dit(); \
00233 MT_BEGIN2(CLASS, TYPE1, VAL1, DataIndex, di)
00234
00235 #define ENDITERATOR1(CLASS, TYPE1, VAL1) \
00236 MT_END2(CLASS, TYPE1, VAL1, DataIndex, di) \
00237 }
00238
00239 #define DATAITERATOR2(CLASS, BOXLAYOUT, TYPE1, VAL1, TYPE2, VAL2) \
00240 DataIterator dit = BOXLAYOUT .dataIterator(); \
00241 for(dit.begin(); dit.ok(); ++dit) { \
00242 DataIndex di = dit(); \
00243 MT_BEGIN3(CLASS, TYPE1, VAL1, TYPE2, VAL2, DataIndex, di)
00244
00245 #define ENDITERATOR2(CLASS, TYPE1, VAL1, TYPE2, VAL2) \
00246 MT_END3(CLASS, TYPE1, VAL1, TYPE2, VAL2, DataIndex, di) \
00247 }
00248
00249 #endif