7#ifndef ASTARTE_DEVICE_SDK_DATA_H
8#define ASTARTE_DEVICE_SDK_DATA_H
31} astarte_data_binaryblob_t;
42} astarte_data_binaryblobarray_t;
49} astarte_data_booleanarray_t;
56} astarte_data_doublearray_t;
63} astarte_data_integerarray_t;
70} astarte_data_longintegerarray_t;
77} astarte_data_stringarray_t;
83 astarte_data_binaryblob_t binaryblob;
98 astarte_data_binaryblobarray_t binaryblob_array;
100 astarte_data_booleanarray_t boolean_array;
102 astarte_data_longintegerarray_t datetime_array;
104 astarte_data_doublearray_t double_array;
106 astarte_data_integerarray_t integer_array;
108 astarte_data_longintegerarray_t longinteger_array;
110 astarte_data_stringarray_t string_array;
111} astarte_data_param_t;
322 astarte_data_t data,
const void ***blobs,
size_t **sizes,
size_t *count);
Global Astarte includes and defines.
astarte_result_t astarte_data_to_binaryblob(astarte_data_t data, const void **buf, size_t *len)
Convert Astarte data (of the binary blob type) to an array of binary blobs.
astarte_data_t astarte_data_from_string(const char *val)
Initialize an astarte data from the input string.
astarte_data_t astarte_data_from_double(double val)
Initialize an astarte data from the input double.
astarte_result_t astarte_data_to_boolean(astarte_data_t data, bool *val)
Convert Astarte data (of the boolean type) to a bool.
astarte_result_t astarte_data_to_string(astarte_data_t data, const char **val)
Convert Astarte data (of the string type) to a const char *.
astarte_data_t astarte_data_from_integer_array(const int32_t *buf, size_t len)
Initialize an astarte data from the input integer array.
astarte_result_t astarte_data_to_longinteger_array(astarte_data_t data, const int64_t **buf, size_t *len)
Convert Astarte data (of longinteger array type) to an int64_t array.
astarte_data_t astarte_data_from_binaryblob_array(const void **blobs, size_t *sizes, size_t count)
Initialize an astarte data from the input binaryblob array.
astarte_result_t astarte_data_to_binaryblob_array(astarte_data_t data, const void ***blobs, size_t **sizes, size_t *count)
Convert Astarte data (of binaryblob array type) to an array of binaryblob arrays.
astarte_data_t astarte_data_from_datetime_array(const int64_t *buf, size_t len)
Initialize an astarte data from the input datetime array.
astarte_result_t astarte_data_to_datetime(astarte_data_t data, int64_t *val)
Convert Astarte data (of the datetime type) to an int64_t.
astarte_result_t astarte_data_to_string_array(astarte_data_t data, const char ***buf, size_t *len)
Convert Astarte data (of string type) to a const char* array.
astarte_data_t astarte_data_from_double_array(const double *buf, size_t len)
Initialize an astarte data from the input double array.
astarte_result_t astarte_data_to_boolean_array(astarte_data_t data, const bool **buf, size_t *len)
Convert Astarte data (of boolean array type) to a bool array.
astarte_mapping_type_t astarte_data_get_type(astarte_data_t data)
Get the type of Astarte data.
astarte_result_t astarte_data_to_longinteger(astarte_data_t data, int64_t *val)
Convert Astarte data (of the long integer type) to an int64_t.
astarte_result_t astarte_data_to_double_array(astarte_data_t data, const double **buf, size_t *len)
Convert Astarte data (of double array type) to a double array.
astarte_result_t astarte_data_to_integer(astarte_data_t data, int32_t *val)
Convert Astarte data (of the integer type) to an int32_t.
astarte_data_t astarte_data_from_datetime(int64_t val)
Initialize an astarte data from the input datetime.
astarte_data_t astarte_data_from_longinteger_array(const int64_t *buf, size_t len)
Initialize an astarte data from the input longinteger array.
astarte_result_t astarte_data_to_datetime_array(astarte_data_t data, const int64_t **buf, size_t *len)
Convert Astarte data (of datetime array type) to an int64_t array.
astarte_data_t astarte_data_from_boolean_array(const bool *buf, size_t len)
Initialize an astarte data from the input boolean array.
astarte_data_t astarte_data_from_string_array(const char **buf, size_t len)
Initialize an astarte data from the input string array.
astarte_result_t astarte_data_to_integer_array(astarte_data_t data, const int32_t **buf, size_t *len)
Convert Astarte data (of integer array type) to an int32_t array.
astarte_data_t astarte_data_from_binaryblob(const void *buf, size_t len)
Initialize an astarte data from the input binaryblob.
astarte_data_t astarte_data_from_boolean(bool val)
Initialize an astarte data from the input boolean.
astarte_result_t astarte_data_to_double(astarte_data_t data, double *val)
Convert Astarte data (of double type) to a double.
astarte_data_t astarte_data_from_longinteger(int64_t val)
Initialize an astarte data from the input longinteger.
astarte_data_t astarte_data_from_integer(int32_t val)
Initialize an astarte data from the input integer.
astarte_mapping_type_t
Allowed types in a mapping on an Astarte interface.
Definition mapping.h:34
astarte_result_t
Astarte Device SDK return codes.
Definition result.h:31
Astarte interface mapping representation.
Base Astarte data type.
Definition data.h:122
bool is_owned
Flag indicating if the memory backing the data is owned and dynamically allocated.
Definition data.h:128
astarte_mapping_type_t tag
Tag of the tagged enum.
Definition data.h:126
astarte_data_param_t data
Data portion of the tagged enum.
Definition data.h:124