Ice Sheet System Model  4.18
Code documentation
Macros | Enumerations
Marshalling.h File Reference

Go to the source code of this file.

Macros

#define MARSHALLING_ENUM(EN)
 
#define MARSHALLING(FIELD)
 
#define MARSHALLING_ARRAY(FIELD, TYPE, SIZE)
 
#define MARSHALLING_DYNAMIC(FIELD, TYPE, SIZE)
 

Enumerations

enum  marshall_directions { MARSHALLING_FORWARD, MARSHALLING_BACKWARD, MARSHALLING_SIZE }
 

Macro Definition Documentation

◆ MARSHALLING_ENUM

#define MARSHALLING_ENUM (   EN)
Value:
int type_enum=EN;\
if(marshall_direction==MARSHALLING_FORWARD){\
memcpy(*pmarshalled_data,&type_enum,sizeof(int));\
*pmarshalled_data+=sizeof(int);\
}\
else if(marshall_direction==MARSHALLING_SIZE){\
*pmarshalled_data_size+=sizeof(int);\
}\
else if(marshall_direction==MARSHALLING_BACKWARD){\
*pmarshalled_data+=sizeof(int);\
}\
else _error_("Wrong direction during the Marshall process");\

Definition at line 14 of file Marshalling.h.

◆ MARSHALLING

#define MARSHALLING (   FIELD)
Value:
\
if(marshall_direction==MARSHALLING_FORWARD){\
memcpy(*pmarshalled_data,&FIELD,sizeof(FIELD));\
*pmarshalled_data+=sizeof(FIELD);\
}\
else if(marshall_direction==MARSHALLING_SIZE){\
*pmarshalled_data_size+=sizeof(FIELD);\
}\
else if(marshall_direction==MARSHALLING_BACKWARD){\
memcpy(&FIELD,*pmarshalled_data,sizeof(FIELD));\
*pmarshalled_data+=sizeof(FIELD);\
}\
else _error_("Wrong direction during the Marshall process");

Definition at line 29 of file Marshalling.h.

◆ MARSHALLING_ARRAY

#define MARSHALLING_ARRAY (   FIELD,
  TYPE,
  SIZE 
)
Value:
\
if(marshall_direction==MARSHALLING_FORWARD){\
memcpy(*pmarshalled_data,FIELD,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
else if(marshall_direction==MARSHALLING_SIZE){\
*pmarshalled_data_size+=SIZE*sizeof(TYPE);\
}\
else if(marshall_direction==MARSHALLING_BACKWARD){\
memcpy(FIELD,*pmarshalled_data,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
else _error_("Wrong direction during the Marshall process");

Definition at line 45 of file Marshalling.h.

◆ MARSHALLING_DYNAMIC

#define MARSHALLING_DYNAMIC (   FIELD,
  TYPE,
  SIZE 
)
Value:
\
{\
bool field_null=true;\
if (FIELD)field_null=false;\
MARSHALLING(field_null);\
\
if(!field_null){\
if(marshall_direction==MARSHALLING_FORWARD){\
memcpy(*pmarshalled_data,FIELD,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
else if(marshall_direction==MARSHALLING_SIZE){\
*pmarshalled_data_size+=SIZE*sizeof(TYPE);\
}\
else if(marshall_direction==MARSHALLING_BACKWARD){\
FIELD=xNew<TYPE>(SIZE);\
memcpy(FIELD,*pmarshalled_data,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
else _error_("Wrong direction during the Marshall process");\
}\
}

Definition at line 61 of file Marshalling.h.

Enumeration Type Documentation

◆ marshall_directions

Enumerator
MARSHALLING_FORWARD 
MARSHALLING_BACKWARD 
MARSHALLING_SIZE 

Definition at line 8 of file Marshalling.h.

MARSHALLING_SIZE
@ MARSHALLING_SIZE
Definition: Marshalling.h:11
MARSHALLING_BACKWARD
@ MARSHALLING_BACKWARD
Definition: Marshalling.h:10
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
MARSHALLING_FORWARD
@ MARSHALLING_FORWARD
Definition: Marshalling.h:9