Page MenuHomec4science

iohelper_common.hh
No OneTemporary

File Metadata

Created
Mon, Jun 10, 20:34

iohelper_common.hh

/**
* @file iohelper_common.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
* @author David Simon Kammer <david.kammer@epfl.ch>
* @author Nicolas Richart <nicolas.richart@epfl.ch>
*
* @date creation: Thu Mar 11 2010
* @date last modification: Thu Oct 10 2013
*
* @brief header for common types
*
* @section LICENSE
*
* Copyright (©) 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* IOHelper is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* IOHelper is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with IOHelper. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __IOHELPER_COMMON_H__
#define __IOHELPER_COMMON_H__
/* -------------------------------------------------------------------------- */
#define USING_ZLIB
#include <iostream>
#include <string>
#include <sstream>
#define __BEGIN_IOHELPER__ namespace iohelper {
#define __END_IOHELPER__ }
#include <string.h>
#include <stdlib.h>
/* -------------------------------------------------------------------------- */
__BEGIN_IOHELPER__
typedef unsigned int UInt;
typedef int Int;
typedef double Real;
/* -------------------------------------------------------------------------- */
enum DataType {
_bool,
_uint,
_int,
_float,
_double
};
enum IndexingMode{
C_MODE = 0,
FORTRAN_MODE = 1
};
/* -------------------------------------------------------------------------- */
enum ElemType{
TRIANGLE1 ,
TRIANGLE2 ,
TETRA1 ,
TETRA2 ,
POINT_SET ,
LINE1 ,
LINE2 ,
QUAD1 ,
QUAD2 ,
HEX1 ,
HEX2 ,
BEAM2 ,
BEAM3 ,
PRISM1 ,
COH2D4 ,
COH2D6 ,
COH3D6 ,
COH3D12 ,
MAX_ELEM_TYPE
};
/* -------------------------------------------------------------------------- */
enum FileStorageMode{
TEXT = 0,
BASE64 = 1,
COMPRESSED = 2
};
enum TextDumpMode {
_tdm_space,
_tdm_csv,
};
/* -------------------------------------------------------------------------- */
static UInt paraview_code_type[MAX_ELEM_TYPE] __attribute__((unused)) = {
5, // TRIANGLE1 => VTK_TRIANGLE
22, // TRIANGLE2 => VTK_QUADRATIC_TRIANGLE
10, // TETRA1 => VTK_TETRA
24, // TETRA2 => VTK_QUADRATIC_TETRA
2, // POINT_SET => VTK_POLY_VERTEX
3, // LINE1 => VTK_LINE
21, // LINE2 => VTK_QUADRATIC_EDGE
9, // QUAD1 => VTK_QUAD
23, // QUAD2 => VTK_QUADRATIC_QUAD
12, // HEX1 => VTK_HEXAHEDRON
25, // HEX2 => VTK_QUADRATIC_HEXA
3, // BEAM2 => VTK_LINE
3, // BEAM3 => VTK_LINE
13, // PRISM1 => VTK_WEDGE
7, // COH2D4 => VTK_POLYGON
7, // COH2D6 => VTK_POLYGON
13, // COH3D6 => VTK_WEDGE
31 // COH3D12 => VTK_QUADRATIC_LINEAR_WEDGE
};
/* -------------------------------------------------------------------------- */
static UInt nb_node_per_elem[MAX_ELEM_TYPE] __attribute__((unused)) = {
3, // TRIANGLE1
6, // TRIANGLE2
4, // TETRA1
10, // TETRA2
1, // POINT_SET
2, // LINE1
3, // LINE2
4, // QUAD1
8, // QUAD2
8, // HEX1
20, // HEX2
2, // BEAM2
2, // BEAM3
6, // PRISM1
4, // COH2D4
6 // COH2D6
};
/* -------------------------------------------------------------------------- */
static UInt nb_quad_points[MAX_ELEM_TYPE] __attribute__((unused)) = {
1, // TRIANGLE1
3, // TRIANGLE2
1, // TETRA1
4, // TETRA2
0, // POINT_SET
1, // LINE1
2, // LINE2
4, // QUAD1
9, // QUAD2
1, // HEX1
8, // HEX2
2, // BEAM2
3, // BEAM3
6, // PRISM1
1, // COH2D4
2, // COH2D6
1, // COH3D6
3 // COH3D12
};
/* -------------------------------------------------------------------------- */
template <typename T>
class IOHelperVector {
public:
virtual ~IOHelperVector() {}
inline IOHelperVector(T * ptr, UInt size){
this->ptr = ptr;
this->_size = size;
};
inline UInt size() const {return _size;};
inline const T & operator[] (UInt i) const {
return ptr[i];
};
inline const T * getPtr() const {
return ptr;
};
private:
T* ptr;
UInt _size;
};
/* -------------------------------------------------------------------------- */
/* Iterator interface */
/* -------------------------------------------------------------------------- */
template< typename T, class daughter, class ret_cont = IOHelperVector<T> > class iterator {
public:
virtual ~iterator() {}
virtual bool operator!=(const daughter & it) const = 0;
virtual daughter & operator++() = 0;
virtual ret_cont operator*() = 0;
};
/* -------------------------------------------------------------------------- */
class IOHelperException : public std::exception {
public:
enum ErrorType {
_et_non_homogeneous_data,
_et_unknown_visitor_stage,
_et_file_error,
_et_missing_field,
_et_data_type,
_et_options_error
};
public:
IOHelperException(const std::string & message, const ErrorType type) throw() {
this->message = message;
this->type = type;
};
~IOHelperException() throw(){};
virtual const char* what() const throw(){
return message.c_str();
};
private:
std::string message;
ErrorType type;
};
/* -------------------------------------------------------------------------- */
#define IOHELPER_THROW(x,type) { \
std::stringstream ioh_throw_sstr; \
ioh_throw_sstr << __FILE__ << ":" << __LINE__ << ":" \
<< __PRETTY_FUNCTION__ << ": " << x; \
std::string ioh_message(ioh_throw_sstr.str()); \
throw ::iohelper::IOHelperException(ioh_message, \
::iohelper::IOHelperException::type); \
}
/* -------------------------------------------------------------------------- */
template <typename T> DataType getDataType();
#define DEFINE_GET_DATA_TYPE(type, data_type ) \
template <> inline DataType getDataType<type>() { return data_type; }
DEFINE_GET_DATA_TYPE(bool, _bool)
DEFINE_GET_DATA_TYPE(ElemType, _int)
DEFINE_GET_DATA_TYPE(int, _int)
DEFINE_GET_DATA_TYPE(unsigned int, _uint)
DEFINE_GET_DATA_TYPE(float, _float)
DEFINE_GET_DATA_TYPE(double, _double)
#undef DEFINE_GET_DATA_TYPE
inline std::ostream & operator <<(std::ostream & stream, DataType type)
{
switch(type)
{
case _bool : stream << "bool" ; break;
case _uint : stream << "uint32" ; break;
case _int : stream << "int32" ; break;
case _float : stream << "float32" ; break;
case _double : stream << "float64" ; break;
}
return stream;
}
inline std::ostream & operator <<(std::ostream & stream, TextDumpMode mode)
{
switch(mode)
{
case _tdm_space : stream << "space" ; break;
case _tdm_csv : stream << "csv" ; break;
}
return stream;
}
__END_IOHELPER__
#endif /* __IOHELPER_COMMON_H__ */

Event Timeline