// ============================================================================ // == == // == AMDiS - Adaptive multidimensional simulations == // == == // == http://www.amdis-fem.org == // == == // ============================================================================ // // Software License for AMDiS // // Copyright (c) 2010 Dresden University of Technology // All rights reserved. // Authors: Simon Vey, Thomas Witkowski et al. // // This file is part of AMDiS // // See also license.opensource.txt in the distribution. /** \file InteriorBoundary.h */ #ifndef AMDIS_INTERIORBOUNDARY_H #define AMDIS_INTERIORBOUNDARY_H #include #include #include "AMDiS_fwd.h" #include "BoundaryObject.h" #include "parallel/MeshLevelData.h" namespace AMDiS { using namespace std; /** \brief * Defines the interior boundary, i.e. a bound within the domain. It is used for * the classical domain decomposition parallelization. */ class InteriorBoundary { public: typedef map > RankToBoundMap; /// Iterator for the interior boundary object. class iterator { public: iterator(InteriorBoundary &b) : bound(b), levelData(NULL), level(0) { reset(); } iterator(InteriorBoundary &b, MeshLevelData &levelData, int level) : bound(b), levelData(&levelData), level(level) { reset(); } /// Set the iterator to the first position. void reset() { mapIt = bound.boundary.begin(); nextNonempty(); if (mapIt != bound.boundary.end()) vecIt = mapIt->second.begin(); } /// Test if iterator is at the final position. bool end() const { return (mapIt == bound.boundary.end()); } /// Move iterator to the next position. void operator++() { ++vecIt; if (vecIt == mapIt->second.end()) { ++mapIt; nextNonempty(); if (mapIt != bound.boundary.end()) vecIt = mapIt->second.begin(); } } inline AtomicBoundary& operator*() { return *vecIt; } inline AtomicBoundary* operator->() { return &(*vecIt); } void nextRank() { ++mapIt; nextNonempty(); if (mapIt != bound.boundary.end()) vecIt = mapIt->second.begin(); } int getRank() { return mapIt->first; } protected: inline void nextNonempty() { if (mapIt == bound.boundary.end()) return; if (level > 0) { TEST_EXIT_DBG(levelData)("No mesh level data object defined!\n"); TEST_EXIT_DBG(level == 1)("Only 2-level method supported!\n"); while (levelData->rankInSubdomain(mapIt->first, level) || mapIt->second.size() == 0) { ++mapIt; if (mapIt == bound.boundary.end()) return; } } else { while (mapIt->second.size() == 0) { ++mapIt; if (mapIt == bound.boundary.end()) return; } } } protected: RankToBoundMap::iterator mapIt; vector::iterator vecIt; InteriorBoundary &bound; MeshLevelData *levelData; int level; }; public: InteriorBoundary() {} void clear() { boundary.clear(); } AtomicBoundary& getNewAtomic(int rank); /// Writes this object to a file. void serialize(ostream &out); /// Reads the state of an interior boundary from a file. void deserialize(istream &in, map &elIndexMap); /// Compares this interior boundaries with some other. The order of the /// boundary elements within the object does not play a role. bool operator==(const InteriorBoundary& other) const; protected: void serializeExcludeList(ostream &out, ExcludeList &list); void deserializeExcludeList(istream &in, ExcludeList &list); public: RankToBoundMap boundary; }; } #endif // AMDIS_INTERIORBOUNDARY_H