| 1 | /*
 | 
|---|
| 2 |  * Box_BoundaryConditions.hpp
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  *  Created on: Jan 2, 2012
 | 
|---|
| 5 |  *      Author: heber
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #ifndef BOX_BOUNDARYCONDITIONS_HPP_
 | 
|---|
| 9 | #define BOX_BOUNDARYCONDITIONS_HPP_
 | 
|---|
| 10 | 
 | 
|---|
| 11 | // include config.h
 | 
|---|
| 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 13 | #include <config.h>
 | 
|---|
| 14 | #endif
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #include <boost/array.hpp>
 | 
|---|
| 17 | #include <iosfwd>
 | 
|---|
| 18 | #include <map>
 | 
|---|
| 19 | #include <vector>
 | 
|---|
| 20 | #include <string>
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "LinearAlgebra/defs.hpp"
 | 
|---|
| 23 | 
 | 
|---|
| 24 | class Box_BoundaryConditionsTest;
 | 
|---|
| 25 | class BoundaryConditionValidator;
 | 
|---|
| 26 | 
 | 
|---|
| 27 | namespace BoundaryConditions {
 | 
|---|
| 28 | 
 | 
|---|
| 29 |   //!> typedef for enumeration of boundary conditions
 | 
|---|
| 30 |   typedef enum{
 | 
|---|
| 31 |     Wrap,
 | 
|---|
| 32 |     Bounce,
 | 
|---|
| 33 |     Ignore,
 | 
|---|
| 34 |     MAX_BoundaryCondition_t
 | 
|---|
| 35 |   } BoundaryCondition_t;
 | 
|---|
| 36 | 
 | 
|---|
| 37 |   //!> typedef for vector containing boundary conditions
 | 
|---|
| 38 |   typedef std::vector<BoundaryCondition_t> Conditions_t;
 | 
|---|
| 39 | 
 | 
|---|
| 40 |   /** This class is a convenience wrapper for the vector of BoundaryCondition_t.
 | 
|---|
| 41 |    *
 | 
|---|
| 42 |    * Here, we place functions for easily printing the boundary conditions,
 | 
|---|
| 43 |    * converting from string to enum, and so on.
 | 
|---|
| 44 |    */
 | 
|---|
| 45 |   class BCContainer : public Conditions_t
 | 
|---|
| 46 |   {
 | 
|---|
| 47 |     //!> grant unit test access to private members
 | 
|---|
| 48 |     friend class ::Box_BoundaryConditionsTest;
 | 
|---|
| 49 |     friend class ::BoundaryConditionValidator;
 | 
|---|
| 50 |   public:
 | 
|---|
| 51 | 
 | 
|---|
| 52 |     BCContainer();
 | 
|---|
| 53 |     ~BCContainer();
 | 
|---|
| 54 | 
 | 
|---|
| 55 |     // getter and setter
 | 
|---|
| 56 |     const Conditions_t & get() const;
 | 
|---|
| 57 |     const BoundaryCondition_t get(size_t index) const;
 | 
|---|
| 58 |     void set(const Conditions_t &_conditions);
 | 
|---|
| 59 |     void set(const std::vector< std::string > &_conditions);
 | 
|---|
| 60 |     void set(size_t index, const BoundaryCondition_t _condition);
 | 
|---|
| 61 |     void set(size_t index, const std::string &_conditions);
 | 
|---|
| 62 | 
 | 
|---|
| 63 |     // converter
 | 
|---|
| 64 |     const std::string & getName(const BoundaryCondition_t &condition) const;
 | 
|---|
| 65 |     const BoundaryCondition_t &getEnum(const std::string &condition) const;
 | 
|---|
| 66 | 
 | 
|---|
| 67 | 
 | 
|---|
| 68 |   private:
 | 
|---|
| 69 |     //!> typedef for the internal enum to string map
 | 
|---|
| 70 |     typedef std::map<BoundaryCondition_t, std::string> EnumToStringMap;
 | 
|---|
| 71 |     //!> instance of the enum to string conversion bimap
 | 
|---|
| 72 |     EnumToStringMap ConverterBiMap;
 | 
|---|
| 73 | 
 | 
|---|
| 74 |     //!> typedef for the internal string to enum map
 | 
|---|
| 75 |     typedef std::map<std::string, BoundaryCondition_t> StringToEnumMap;
 | 
|---|
| 76 |     //!> instance of the string to enum conversion bimap
 | 
|---|
| 77 |     StringToEnumMap ReConverterBiMap;
 | 
|---|
| 78 |   };
 | 
|---|
| 79 | 
 | 
|---|
| 80 | } /* namespace BoundaryConditions */
 | 
|---|
| 81 | 
 | 
|---|
| 82 | std::ostream &operator<<(std::ostream &out, const BoundaryConditions::BCContainer &t);
 | 
|---|
| 83 | 
 | 
|---|
| 84 | std::istream &operator>>(std::istream &in, BoundaryConditions::BCContainer &t);
 | 
|---|
| 85 | 
 | 
|---|
| 86 | 
 | 
|---|
| 87 | #endif /* BOX_BOUNDARYCONDITIONS_HPP_ */
 | 
|---|