Go to the source code of this file.
◆ GET_FIELD_FROM_JSON_RETURN_ON_ERROR
| #define GET_FIELD_FROM_JSON_RETURN_ON_ERROR |
( |
|
json, |
|
|
|
name, |
|
|
|
type, |
|
|
|
jtype, |
|
|
|
mandatory, |
|
|
|
def |
|
) |
| |
Value:type field_##
name =
static_cast<type
>(def); \
bool field_##
name##_found =
false; \
(void)field_##
name##_found; \
{ \
{ \
field_##
name =
static_cast<type
>(
json[#
name].Get##jtype()); \
field_##
name##_found =
true; \
} \
else \
{ \
LOG_ERROR(
"Field " << #
name <<
" found in JSON, but not " << #jtype); \
return false; \
} \
} \
else if (mandatory) \
{ \
LOG_ERROR(
"Field " << #
name <<
" not found in JSON"); \
return false; \
} while(0)
Definition at line 32 of file json_util.h.