f806c5829b
* 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>
157 lines
4.5 KiB
C
157 lines
4.5 KiB
C
/**
|
|
* @file
|
|
* @brief BACnet time-value encode and decode functions
|
|
* @author Nikola Jelic <nikola.jelic@euroicc.com>
|
|
* @author Steve Karg <skarg@users.sourceforge.net>
|
|
* @date 2015
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef BACNET_TIME_VALUE_H_
|
|
#define BACNET_TIME_VALUE_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
/* BACnet Stack defines - first */
|
|
#include "bacnet/bacdef.h"
|
|
/* BACnet Stack API */
|
|
#include "bacnet/bacint.h"
|
|
#include "bacnet/datetime.h"
|
|
|
|
/**
|
|
* Smaller version of BACnet_Application_Data_Value used in BACnetTimeValue
|
|
*
|
|
* This must be a separate struct to avoid recursive structure.
|
|
* Keeping it small also helps keep the size of BACNET_APPLICATION_DATA_VALUE
|
|
* small. Besides, schedule can't contain complex types.
|
|
*/
|
|
typedef struct BACnet_Primitive_Data_Value {
|
|
uint8_t tag; /* application tag data type */
|
|
union {
|
|
/*
|
|
* ATTENTION! If a new type is added here, update
|
|
* `is_data_value_schedule_compatible()` in bactimevalue.c!
|
|
*/
|
|
|
|
/* NULL - not needed as it is encoded in the tag alone */
|
|
#if defined(BACAPP_BOOLEAN)
|
|
bool Boolean;
|
|
#endif
|
|
#if defined(BACAPP_UNSIGNED)
|
|
BACNET_UNSIGNED_INTEGER Unsigned_Int;
|
|
#endif
|
|
#if defined(BACAPP_SIGNED)
|
|
int32_t Signed_Int;
|
|
#endif
|
|
#if defined(BACAPP_REAL)
|
|
float Real;
|
|
#endif
|
|
#if defined(BACAPP_DOUBLE)
|
|
double Double;
|
|
#endif
|
|
#if defined(BACAPP_ENUMERATED)
|
|
uint32_t Enumerated;
|
|
#endif
|
|
} type;
|
|
} BACNET_PRIMITIVE_DATA_VALUE;
|
|
|
|
typedef struct BACnet_Time_Value {
|
|
BACNET_TIME Time;
|
|
BACNET_PRIMITIVE_DATA_VALUE Value;
|
|
} BACNET_TIME_VALUE;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
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_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_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_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_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_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);
|
|
|
|
/**
|
|
* 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
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* _BAC_TIME_VALUE_H_ */
|