Run clang-format and enable CI check for it (#755)
* pre-commit: Update and enable clang-format check There is newer version from clang-format so use that. We do not yet want 18 as that is little bit too new. * Format some thing by hand which clang-format "breaks" Clang-format will format some things little bit off in some cases. Format some things by hand so we get cleaner end result. * Run clang-format with ``` pre-commit run --all-files clang-format ``` We have already in previously checked places where clang-format does not make good format and ignored those (hopefully most of the things). --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
This commit is contained in:
+81
-81
@@ -26,7 +26,7 @@
|
||||
* small. Besides, schedule can't contain complex types.
|
||||
*/
|
||||
typedef struct BACnet_Primitive_Data_Value {
|
||||
uint8_t tag; /* application tag data type */
|
||||
uint8_t tag; /* application tag data type */
|
||||
union {
|
||||
/*
|
||||
* ATTENTION! If a new type is added here, update
|
||||
@@ -34,22 +34,22 @@ typedef struct BACnet_Primitive_Data_Value {
|
||||
*/
|
||||
|
||||
/* NULL - not needed as it is encoded in the tag alone */
|
||||
#if defined (BACAPP_BOOLEAN)
|
||||
#if defined(BACAPP_BOOLEAN)
|
||||
bool Boolean;
|
||||
#endif
|
||||
#if defined (BACAPP_UNSIGNED)
|
||||
#if defined(BACAPP_UNSIGNED)
|
||||
BACNET_UNSIGNED_INTEGER Unsigned_Int;
|
||||
#endif
|
||||
#if defined (BACAPP_SIGNED)
|
||||
#if defined(BACAPP_SIGNED)
|
||||
int32_t Signed_Int;
|
||||
#endif
|
||||
#if defined (BACAPP_REAL)
|
||||
#if defined(BACAPP_REAL)
|
||||
float Real;
|
||||
#endif
|
||||
#if defined (BACAPP_DOUBLE)
|
||||
#if defined(BACAPP_DOUBLE)
|
||||
double Double;
|
||||
#endif
|
||||
#if defined (BACAPP_ENUMERATED)
|
||||
#if defined(BACAPP_ENUMERATED)
|
||||
uint32_t Enumerated;
|
||||
#endif
|
||||
} type;
|
||||
@@ -60,95 +60,95 @@ typedef struct BACnet_Time_Value {
|
||||
BACNET_PRIMITIVE_DATA_VALUE Value;
|
||||
} BACNET_TIME_VALUE;
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
struct BACnet_Application_Data_Value;
|
||||
struct BACnet_Application_Data_Value;
|
||||
|
||||
/** returns 0 if OK, -1 on error */
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_application_to_primitive_data_value(BACNET_PRIMITIVE_DATA_VALUE * dest,
|
||||
const struct BACnet_Application_Data_Value * src);
|
||||
/** returns 0 if OK, -1 on error */
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_application_to_primitive_data_value(
|
||||
BACNET_PRIMITIVE_DATA_VALUE *dest,
|
||||
const struct BACnet_Application_Data_Value *src);
|
||||
|
||||
/** returns 0 if OK, -1 on error */
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_primitive_to_application_data_value(
|
||||
struct BACnet_Application_Data_Value * dest,
|
||||
const BACNET_PRIMITIVE_DATA_VALUE * src);
|
||||
/** returns 0 if OK, -1 on error */
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_primitive_to_application_data_value(
|
||||
struct BACnet_Application_Data_Value *dest,
|
||||
const BACNET_PRIMITIVE_DATA_VALUE *src);
|
||||
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_encode(uint8_t * apdu,
|
||||
const BACNET_TIME_VALUE * value);
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_encode(uint8_t *apdu, const BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_encode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_encode_time_value(uint8_t *apdu,
|
||||
const BACNET_TIME_VALUE *value);
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_encode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_encode_time_value(uint8_t *apdu, const BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_context_encode(uint8_t * apdu,
|
||||
uint8_t tag_number,
|
||||
const BACNET_TIME_VALUE * value);
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_context_encode(
|
||||
uint8_t *apdu, uint8_t tag_number, const BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_context_encode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_encode_context_time_value(
|
||||
uint8_t *apdu, uint8_t tag_number, const BACNET_TIME_VALUE *value);
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_context_encode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_encode_context_time_value(
|
||||
uint8_t *apdu, uint8_t tag_number, const BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_decode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_decode_time_value(const uint8_t * apdu,
|
||||
BACNET_TIME_VALUE * value);
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_decode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_decode_time_value(const uint8_t *apdu, BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_decode(const uint8_t *apdu, int max_apdu_len,
|
||||
BACNET_TIME_VALUE *value);
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_decode(
|
||||
const uint8_t *apdu, int max_apdu_len, BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_context_decode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_decode_context_time_value(const uint8_t * apdu,
|
||||
uint8_t tag_number,
|
||||
BACNET_TIME_VALUE * value);
|
||||
BACNET_STACK_DEPRECATED("Use bacnet_time_value_context_decode() instead")
|
||||
BACNET_STACK_EXPORT
|
||||
int bacapp_decode_context_time_value(
|
||||
const uint8_t *apdu, uint8_t tag_number, BACNET_TIME_VALUE *value);
|
||||
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_context_decode(const uint8_t *apdu, int max_apdu_len,
|
||||
uint8_t tag_number, BACNET_TIME_VALUE *value);
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_value_context_decode(
|
||||
const uint8_t *apdu,
|
||||
int max_apdu_len,
|
||||
uint8_t tag_number,
|
||||
BACNET_TIME_VALUE *value);
|
||||
|
||||
/**
|
||||
* Decode array of time-values wrapped in a context tag
|
||||
* @param apdu
|
||||
* @param max_apdu_len
|
||||
* @param tag_number - number expected in the context tag; 0 used for DailySchedule
|
||||
* @param time_values
|
||||
* @param max_time_values - number of time values to encode
|
||||
* @param[out] out_count - actual number of time values found
|
||||
* @return used bytes, <0 if decoding failed
|
||||
*/
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_values_context_decode(
|
||||
const uint8_t * apdu,
|
||||
int max_apdu_len,
|
||||
uint8_t tag_number,
|
||||
BACNET_TIME_VALUE *time_values,
|
||||
unsigned int max_time_values,
|
||||
unsigned int *out_count);
|
||||
/**
|
||||
* Decode array of time-values wrapped in a context tag
|
||||
* @param apdu
|
||||
* @param max_apdu_len
|
||||
* @param tag_number - number expected in the context tag; 0 used for
|
||||
* DailySchedule
|
||||
* @param time_values
|
||||
* @param max_time_values - number of time values to encode
|
||||
* @param[out] out_count - actual number of time values found
|
||||
* @return used bytes, <0 if decoding failed
|
||||
*/
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_values_context_decode(
|
||||
const uint8_t *apdu,
|
||||
int max_apdu_len,
|
||||
uint8_t tag_number,
|
||||
BACNET_TIME_VALUE *time_values,
|
||||
unsigned int max_time_values,
|
||||
unsigned int *out_count);
|
||||
|
||||
/**
|
||||
* Encode array of time-values wrapped in a context tag
|
||||
* @param apdu - output buffer, NULL to just measure length
|
||||
* @param max_apdu_len
|
||||
* @param tag_number - number to use for the context tag; 0 used for DailySchedule
|
||||
* @param time_values
|
||||
* @param max_time_values - number of time values to encode
|
||||
* @return used bytes, <=0 if encoding failed
|
||||
*/
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_values_context_encode(
|
||||
uint8_t * apdu,
|
||||
uint8_t tag_number,
|
||||
const BACNET_TIME_VALUE * time_values,
|
||||
unsigned int max_time_values);
|
||||
/**
|
||||
* Encode array of time-values wrapped in a context tag
|
||||
* @param apdu - output buffer, NULL to just measure length
|
||||
* @param max_apdu_len
|
||||
* @param tag_number - number to use for the context tag; 0 used for
|
||||
* DailySchedule
|
||||
* @param time_values
|
||||
* @param max_time_values - number of time values to encode
|
||||
* @return used bytes, <=0 if encoding failed
|
||||
*/
|
||||
BACNET_STACK_EXPORT
|
||||
int bacnet_time_values_context_encode(
|
||||
uint8_t *apdu,
|
||||
uint8_t tag_number,
|
||||
const BACNET_TIME_VALUE *time_values,
|
||||
unsigned int max_time_values);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user