Go to the source code of this file.
◆ MARSHALLING_ENUM
#define MARSHALLING_ENUM |
( |
|
EN | ) |
|
Value: int type_enum=EN;\
memcpy(*pmarshalled_data,&type_enum,sizeof(int));\
*pmarshalled_data+=sizeof(int);\
}\
*pmarshalled_data_size+=sizeof(int);\
}\
*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: \
memcpy(*pmarshalled_data,&FIELD,sizeof(FIELD));\
*pmarshalled_data+=sizeof(FIELD);\
}\
*pmarshalled_data_size+=sizeof(FIELD);\
}\
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: \
memcpy(*pmarshalled_data,FIELD,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
*pmarshalled_data_size+=SIZE*sizeof(TYPE);\
}\
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){\
memcpy(*pmarshalled_data,FIELD,SIZE*sizeof(TYPE));\
*pmarshalled_data+=SIZE*sizeof(TYPE);\
}\
*pmarshalled_data_size+=SIZE*sizeof(TYPE);\
}\
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.
◆ marshall_directions
Enumerator |
---|
MARSHALLING_FORWARD | |
MARSHALLING_BACKWARD | |
MARSHALLING_SIZE | |
Definition at line 8 of file Marshalling.h.