Microsoft Azure IoTHub client libraries

Dependents:   sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp f767zi_mqtt ... more

This library implements the Microsoft Azure IoTHub client library. The code is replicated from https://github.com/Azure/azure-iot-sdks

Committer:
AzureIoTClient
Date:
Mon Mar 05 17:40:54 2018 -0800
Revision:
84:48760e2e7dd8
Parent:
82:f94e6bed4495
Child:
85:de16c0a8a196
1.2.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 16:deba40344375 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 16:deba40344375 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 16:deba40344375 3
AzureIoTClient 16:deba40344375 4 /** @file iothub_client_ll.h
AzureIoTClient 16:deba40344375 5 * @brief APIs that allow a user (usually a device) to communicate
AzureIoTClient 16:deba40344375 6 * with an Azure IoTHub.
AzureIoTClient 16:deba40344375 7 *
AzureIoTClient 16:deba40344375 8 * @details IoTHubClient_LL is a module that allows a user (usually a
AzureIoTClient 16:deba40344375 9 * device) to communicate with an Azure IoTHub. It can send events
AzureIoTClient 16:deba40344375 10 * and receive messages. At any given moment in time there can only
AzureIoTClient 16:deba40344375 11 * be at most 1 message callback function.
AzureIoTClient 40:1a94db9139ea 12 *
AzureIoTClient 16:deba40344375 13 * This API surface contains a set of APIs that allows the user to
AzureIoTClient 16:deba40344375 14 * interact with the lower layer portion of the IoTHubClient. These APIs
AzureIoTClient 16:deba40344375 15 * contain @c _LL_ in their name, but retain the same functionality like the
AzureIoTClient 16:deba40344375 16 * @c IoTHubClient_... APIs, with one difference. If the @c _LL_ APIs are
AzureIoTClient 16:deba40344375 17 * used then the user is responsible for scheduling when the actual work done
AzureIoTClient 16:deba40344375 18 * by the IoTHubClient happens (when the data is sent/received on/from the wire).
AzureIoTClient 16:deba40344375 19 * This is useful for constrained devices where spinning a separate thread is
AzureIoTClient 16:deba40344375 20 * often not desired.
AzureIoTClient 16:deba40344375 21 */
AzureIoTClient 16:deba40344375 22
AzureIoTClient 16:deba40344375 23 #ifndef IOTHUB_CLIENT_LL_H
AzureIoTClient 16:deba40344375 24 #define IOTHUB_CLIENT_LL_H
AzureIoTClient 16:deba40344375 25
Azure.IoT Build 38:a05929a75111 26 #include "azure_c_shared_utility/macro_utils.h"
AzureIoTClient 53:1e5a1ca1f274 27 #include "azure_c_shared_utility/umock_c_prod.h"
AzureIoTClient 16:deba40344375 28
AzureIoTClient 80:db5f5237bc95 29 #define IOTHUB_CLIENT_FILE_UPLOAD_RESULT_VALUES \
AzureIoTClient 80:db5f5237bc95 30 FILE_UPLOAD_OK, \
AzureIoTClient 80:db5f5237bc95 31 FILE_UPLOAD_ERROR
AzureIoTClient 80:db5f5237bc95 32
AzureIoTClient 80:db5f5237bc95 33 DEFINE_ENUM(IOTHUB_CLIENT_FILE_UPLOAD_RESULT, IOTHUB_CLIENT_FILE_UPLOAD_RESULT_VALUES)
AzureIoTClient 80:db5f5237bc95 34 typedef void(*IOTHUB_CLIENT_FILE_UPLOAD_CALLBACK)(IOTHUB_CLIENT_FILE_UPLOAD_RESULT result, void* userContextCallback);
AzureIoTClient 80:db5f5237bc95 35
AzureIoTClient 16:deba40344375 36 #define IOTHUB_CLIENT_RESULT_VALUES \
AzureIoTClient 16:deba40344375 37 IOTHUB_CLIENT_OK, \
AzureIoTClient 16:deba40344375 38 IOTHUB_CLIENT_INVALID_ARG, \
AzureIoTClient 16:deba40344375 39 IOTHUB_CLIENT_ERROR, \
AzureIoTClient 16:deba40344375 40 IOTHUB_CLIENT_INVALID_SIZE, \
AzureIoTClient 53:1e5a1ca1f274 41 IOTHUB_CLIENT_INDEFINITE_TIME
AzureIoTClient 16:deba40344375 42
AzureIoTClient 43:038d8511e817 43 /** @brief Enumeration specifying the status of calls to various APIs in this module.
AzureIoTClient 43:038d8511e817 44 */
AzureIoTClient 43:038d8511e817 45
AzureIoTClient 43:038d8511e817 46 DEFINE_ENUM(IOTHUB_CLIENT_RESULT, IOTHUB_CLIENT_RESULT_VALUES);
AzureIoTClient 43:038d8511e817 47
AzureIoTClient 53:1e5a1ca1f274 48 #define IOTHUB_CLIENT_RETRY_POLICY_VALUES \
AzureIoTClient 53:1e5a1ca1f274 49 IOTHUB_CLIENT_RETRY_NONE, \
AzureIoTClient 53:1e5a1ca1f274 50 IOTHUB_CLIENT_RETRY_IMMEDIATE, \
AzureIoTClient 53:1e5a1ca1f274 51 IOTHUB_CLIENT_RETRY_INTERVAL, \
AzureIoTClient 53:1e5a1ca1f274 52 IOTHUB_CLIENT_RETRY_LINEAR_BACKOFF, \
AzureIoTClient 53:1e5a1ca1f274 53 IOTHUB_CLIENT_RETRY_EXPONENTIAL_BACKOFF, \
AzureIoTClient 53:1e5a1ca1f274 54 IOTHUB_CLIENT_RETRY_EXPONENTIAL_BACKOFF_WITH_JITTER, \
AzureIoTClient 53:1e5a1ca1f274 55 IOTHUB_CLIENT_RETRY_RANDOM
AzureIoTClient 53:1e5a1ca1f274 56
AzureIoTClient 53:1e5a1ca1f274 57 /** @brief Enumeration passed in by the IoT Hub when the event confirmation
AzureIoTClient 53:1e5a1ca1f274 58 * callback is invoked to indicate status of the event processing in
AzureIoTClient 53:1e5a1ca1f274 59 * the hub.
AzureIoTClient 53:1e5a1ca1f274 60 */
AzureIoTClient 53:1e5a1ca1f274 61 DEFINE_ENUM(IOTHUB_CLIENT_RETRY_POLICY, IOTHUB_CLIENT_RETRY_POLICY_VALUES);
AzureIoTClient 53:1e5a1ca1f274 62
AzureIoTClient 48:cc5d91f2b06d 63 struct IOTHUBTRANSPORT_CONFIG_TAG;
AzureIoTClient 43:038d8511e817 64 typedef struct IOTHUBTRANSPORT_CONFIG_TAG IOTHUBTRANSPORT_CONFIG;
AzureIoTClient 43:038d8511e817 65
AzureIoTClient 43:038d8511e817 66 typedef struct IOTHUB_CLIENT_LL_HANDLE_DATA_TAG* IOTHUB_CLIENT_LL_HANDLE;
AzureIoTClient 43:038d8511e817 67
AzureIoTClient 43:038d8511e817 68 #define IOTHUB_CLIENT_STATUS_VALUES \
AzureIoTClient 43:038d8511e817 69 IOTHUB_CLIENT_SEND_STATUS_IDLE, \
AzureIoTClient 53:1e5a1ca1f274 70 IOTHUB_CLIENT_SEND_STATUS_BUSY
AzureIoTClient 43:038d8511e817 71
AzureIoTClient 43:038d8511e817 72 /** @brief Enumeration returned by the ::IoTHubClient_LL_GetSendStatus
AzureIoTClient 43:038d8511e817 73 * API to indicate the current sending status of the IoT Hub client.
AzureIoTClient 43:038d8511e817 74 */
AzureIoTClient 43:038d8511e817 75 DEFINE_ENUM(IOTHUB_CLIENT_STATUS, IOTHUB_CLIENT_STATUS_VALUES);
AzureIoTClient 43:038d8511e817 76
AzureIoTClient 53:1e5a1ca1f274 77 #define IOTHUB_IDENTITY_TYPE_VALUE \
AzureIoTClient 53:1e5a1ca1f274 78 IOTHUB_TYPE_TELEMETRY, \
AzureIoTClient 53:1e5a1ca1f274 79 IOTHUB_TYPE_DEVICE_TWIN, \
AzureIoTClient 53:1e5a1ca1f274 80 IOTHUB_TYPE_DEVICE_METHODS
AzureIoTClient 53:1e5a1ca1f274 81 DEFINE_ENUM(IOTHUB_IDENTITY_TYPE, IOTHUB_IDENTITY_TYPE_VALUE);
AzureIoTClient 53:1e5a1ca1f274 82
AzureIoTClient 53:1e5a1ca1f274 83 #define IOTHUB_PROCESS_ITEM_RESULT_VALUE \
AzureIoTClient 53:1e5a1ca1f274 84 IOTHUB_PROCESS_OK, \
AzureIoTClient 53:1e5a1ca1f274 85 IOTHUB_PROCESS_ERROR, \
AzureIoTClient 53:1e5a1ca1f274 86 IOTHUB_PROCESS_NOT_CONNECTED, \
AzureIoTClient 53:1e5a1ca1f274 87 IOTHUB_PROCESS_CONTINUE
AzureIoTClient 53:1e5a1ca1f274 88 DEFINE_ENUM(IOTHUB_PROCESS_ITEM_RESULT, IOTHUB_PROCESS_ITEM_RESULT_VALUE);
AzureIoTClient 53:1e5a1ca1f274 89
AzureIoTClient 61:8b85a4e797cf 90 #define IOTHUBMESSAGE_DISPOSITION_RESULT_VALUES \
AzureIoTClient 61:8b85a4e797cf 91 IOTHUBMESSAGE_ACCEPTED, \
AzureIoTClient 61:8b85a4e797cf 92 IOTHUBMESSAGE_REJECTED, \
AzureIoTClient 61:8b85a4e797cf 93 IOTHUBMESSAGE_ABANDONED
AzureIoTClient 61:8b85a4e797cf 94
AzureIoTClient 61:8b85a4e797cf 95 /** @brief Enumeration returned by the callback which is invoked whenever the
AzureIoTClient 61:8b85a4e797cf 96 * IoT Hub sends a message to the device.
AzureIoTClient 61:8b85a4e797cf 97 */
AzureIoTClient 61:8b85a4e797cf 98 DEFINE_ENUM(IOTHUBMESSAGE_DISPOSITION_RESULT, IOTHUBMESSAGE_DISPOSITION_RESULT_VALUES);
AzureIoTClient 61:8b85a4e797cf 99
AzureIoTClient 43:038d8511e817 100 #include "azure_c_shared_utility/agenttime.h"
AzureIoTClient 43:038d8511e817 101 #include "azure_c_shared_utility/xio.h"
AzureIoTClient 43:038d8511e817 102 #include "azure_c_shared_utility/doublylinkedlist.h"
AzureIoTClient 43:038d8511e817 103 #include "iothub_message.h"
AzureIoTClient 43:038d8511e817 104 #include "iothub_transport_ll.h"
AzureIoTClient 63:1bf1c2d60aab 105 #include "iothub_client_authorization.h"
AzureIoTClient 53:1e5a1ca1f274 106 #include <stddef.h>
AzureIoTClient 53:1e5a1ca1f274 107 #include <stdint.h>
AzureIoTClient 53:1e5a1ca1f274 108
AzureIoTClient 53:1e5a1ca1f274 109 #define IOTHUB_CLIENT_IOTHUB_METHOD_STATUS_VALUES \
AzureIoTClient 53:1e5a1ca1f274 110 IOTHUB_CLIENT_IOTHUB_METHOD_STATUS_SUCCESS, \
AzureIoTClient 53:1e5a1ca1f274 111 IOTHUB_CLIENT_IOTHUB_METHOD_STATUS_ERROR \
AzureIoTClient 53:1e5a1ca1f274 112
AzureIoTClient 53:1e5a1ca1f274 113 /** @brief Enumeration returned by remotely executed functions
AzureIoTClient 53:1e5a1ca1f274 114 */
AzureIoTClient 53:1e5a1ca1f274 115 DEFINE_ENUM(IOTHUB_CLIENT_IOTHUB_METHOD_STATUS, IOTHUB_CLIENT_IOTHUB_METHOD_STATUS_VALUES);
AzureIoTClient 43:038d8511e817 116
AzureIoTClient 43:038d8511e817 117 #ifdef __cplusplus
AzureIoTClient 43:038d8511e817 118 extern "C"
AzureIoTClient 43:038d8511e817 119 {
AzureIoTClient 43:038d8511e817 120 #endif
AzureIoTClient 16:deba40344375 121
AzureIoTClient 16:deba40344375 122 #define IOTHUB_CLIENT_CONFIRMATION_RESULT_VALUES \
AzureIoTClient 16:deba40344375 123 IOTHUB_CLIENT_CONFIRMATION_OK, \
AzureIoTClient 16:deba40344375 124 IOTHUB_CLIENT_CONFIRMATION_BECAUSE_DESTROY, \
Azure.IoT Build 36:67300d5a4c1f 125 IOTHUB_CLIENT_CONFIRMATION_MESSAGE_TIMEOUT, \
AzureIoTClient 16:deba40344375 126 IOTHUB_CLIENT_CONFIRMATION_ERROR \
AzureIoTClient 16:deba40344375 127
AzureIoTClient 53:1e5a1ca1f274 128 /** @brief Enumeration passed in by the IoT Hub when the event confirmation
AzureIoTClient 53:1e5a1ca1f274 129 * callback is invoked to indicate status of the event processing in
AzureIoTClient 53:1e5a1ca1f274 130 * the hub.
AzureIoTClient 53:1e5a1ca1f274 131 */
AzureIoTClient 53:1e5a1ca1f274 132 DEFINE_ENUM(IOTHUB_CLIENT_CONFIRMATION_RESULT, IOTHUB_CLIENT_CONFIRMATION_RESULT_VALUES);
AzureIoTClient 16:deba40344375 133
AzureIoTClient 53:1e5a1ca1f274 134 #define IOTHUB_CLIENT_CONNECTION_STATUS_VALUES \
AzureIoTClient 53:1e5a1ca1f274 135 IOTHUB_CLIENT_CONNECTION_AUTHENTICATED, \
AzureIoTClient 53:1e5a1ca1f274 136 IOTHUB_CLIENT_CONNECTION_UNAUTHENTICATED \
AzureIoTClient 53:1e5a1ca1f274 137
AzureIoTClient 52:1cc3c6d07cad 138
AzureIoTClient 52:1cc3c6d07cad 139 /** @brief Enumeration passed in by the IoT Hub when the connection status
AzureIoTClient 52:1cc3c6d07cad 140 * callback is invoked to indicate status of the connection in
AzureIoTClient 52:1cc3c6d07cad 141 * the hub.
AzureIoTClient 52:1cc3c6d07cad 142 */
AzureIoTClient 52:1cc3c6d07cad 143 DEFINE_ENUM(IOTHUB_CLIENT_CONNECTION_STATUS, IOTHUB_CLIENT_CONNECTION_STATUS_VALUES);
AzureIoTClient 52:1cc3c6d07cad 144
AzureIoTClient 53:1e5a1ca1f274 145 #define IOTHUB_CLIENT_CONNECTION_STATUS_REASON_VALUES \
AzureIoTClient 53:1e5a1ca1f274 146 IOTHUB_CLIENT_CONNECTION_EXPIRED_SAS_TOKEN, \
AzureIoTClient 53:1e5a1ca1f274 147 IOTHUB_CLIENT_CONNECTION_DEVICE_DISABLED, \
AzureIoTClient 53:1e5a1ca1f274 148 IOTHUB_CLIENT_CONNECTION_BAD_CREDENTIAL, \
AzureIoTClient 53:1e5a1ca1f274 149 IOTHUB_CLIENT_CONNECTION_RETRY_EXPIRED, \
AzureIoTClient 53:1e5a1ca1f274 150 IOTHUB_CLIENT_CONNECTION_NO_NETWORK, \
AzureIoTClient 62:5a4cdacf5090 151 IOTHUB_CLIENT_CONNECTION_COMMUNICATION_ERROR, \
AzureIoTClient 53:1e5a1ca1f274 152 IOTHUB_CLIENT_CONNECTION_OK \
AzureIoTClient 52:1cc3c6d07cad 153
AzureIoTClient 52:1cc3c6d07cad 154 /** @brief Enumeration passed in by the IoT Hub when the connection status
AzureIoTClient 52:1cc3c6d07cad 155 * callback is invoked to indicate status of the connection in
AzureIoTClient 52:1cc3c6d07cad 156 * the hub.
AzureIoTClient 52:1cc3c6d07cad 157 */
AzureIoTClient 52:1cc3c6d07cad 158 DEFINE_ENUM(IOTHUB_CLIENT_CONNECTION_STATUS_REASON, IOTHUB_CLIENT_CONNECTION_STATUS_REASON_VALUES);
AzureIoTClient 52:1cc3c6d07cad 159
AzureIoTClient 16:deba40344375 160 #define TRANSPORT_TYPE_VALUES \
AzureIoTClient 16:deba40344375 161 TRANSPORT_LL, /*LL comes from "LowLevel" */ \
AzureIoTClient 16:deba40344375 162 TRANSPORT_THREADED
AzureIoTClient 16:deba40344375 163
AzureIoTClient 53:1e5a1ca1f274 164 DEFINE_ENUM(TRANSPORT_TYPE, TRANSPORT_TYPE_VALUES);
AzureIoTClient 16:deba40344375 165
AzureIoTClient 53:1e5a1ca1f274 166 #define DEVICE_TWIN_UPDATE_STATE_VALUES \
AzureIoTClient 53:1e5a1ca1f274 167 DEVICE_TWIN_UPDATE_COMPLETE, \
AzureIoTClient 53:1e5a1ca1f274 168 DEVICE_TWIN_UPDATE_PARTIAL
AzureIoTClient 16:deba40344375 169
AzureIoTClient 53:1e5a1ca1f274 170 DEFINE_ENUM(DEVICE_TWIN_UPDATE_STATE, DEVICE_TWIN_UPDATE_STATE_VALUES);
AzureIoTClient 52:1cc3c6d07cad 171
AzureIoTClient 53:1e5a1ca1f274 172 typedef void(*IOTHUB_CLIENT_EVENT_CONFIRMATION_CALLBACK)(IOTHUB_CLIENT_CONFIRMATION_RESULT result, void* userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 173 typedef void(*IOTHUB_CLIENT_CONNECTION_STATUS_CALLBACK)(IOTHUB_CLIENT_CONNECTION_STATUS result, IOTHUB_CLIENT_CONNECTION_STATUS_REASON reason, void* userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 174 typedef IOTHUBMESSAGE_DISPOSITION_RESULT (*IOTHUB_CLIENT_MESSAGE_CALLBACK_ASYNC)(IOTHUB_MESSAGE_HANDLE message, void* userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 175 typedef const TRANSPORT_PROVIDER*(*IOTHUB_CLIENT_TRANSPORT_PROVIDER)(void);
AzureIoTClient 53:1e5a1ca1f274 176
AzureIoTClient 53:1e5a1ca1f274 177 typedef void(*IOTHUB_CLIENT_DEVICE_TWIN_CALLBACK)(DEVICE_TWIN_UPDATE_STATE update_state, const unsigned char* payLoad, size_t size, void* userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 178 typedef void(*IOTHUB_CLIENT_REPORTED_STATE_CALLBACK)(int status_code, void* userContextCallback);
AzureIoTClient 55:59b527ab3452 179 typedef int(*IOTHUB_CLIENT_DEVICE_METHOD_CALLBACK_ASYNC)(const char* method_name, const unsigned char* payload, size_t size, unsigned char** response, size_t* response_size, void* userContextCallback);
AzureIoTClient 55:59b527ab3452 180 typedef int(*IOTHUB_CLIENT_INBOUND_DEVICE_METHOD_CALLBACK)(const char* method_name, const unsigned char* payload, size_t size, METHOD_HANDLE method_id, void* userContextCallback);
AzureIoTClient 52:1cc3c6d07cad 181
AzureIoTClient 80:db5f5237bc95 182 #ifndef DONT_USE_UPLOADTOBLOB
AzureIoTClient 80:db5f5237bc95 183
AzureIoTClient 80:db5f5237bc95 184 #define BLOCK_SIZE (4*1024*1024)
AzureIoTClient 80:db5f5237bc95 185
AzureIoTClient 82:f94e6bed4495 186 #define IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_RESULT_VALUES \
AzureIoTClient 82:f94e6bed4495 187 IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_OK, \
AzureIoTClient 82:f94e6bed4495 188 IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_ABORT
AzureIoTClient 82:f94e6bed4495 189
AzureIoTClient 82:f94e6bed4495 190 DEFINE_ENUM(IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_RESULT, IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_RESULT_VALUES);
AzureIoTClient 82:f94e6bed4495 191
AzureIoTClient 80:db5f5237bc95 192 /**
AzureIoTClient 80:db5f5237bc95 193 * @brief Callback invoked by IoTHubClient_UploadMultipleBlocksToBlobAsync requesting the chunks of data to be uploaded.
AzureIoTClient 82:f94e6bed4495 194 * @param result The result of the upload of the previous block of data provided by the user (IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_CALLBACK_EX only)
AzureIoTClient 80:db5f5237bc95 195 * @param data Next block of data to be uploaded, to be provided by the user when this callback is invoked.
AzureIoTClient 80:db5f5237bc95 196 * @param size Size of the data parameter.
AzureIoTClient 80:db5f5237bc95 197 * @param context User context provided on the call to IoTHubClient_UploadMultipleBlocksToBlobAsync.
AzureIoTClient 84:48760e2e7dd8 198 * @remarks If the user wants to abort the upload, the callback should return IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_ABORT
AzureIoTClient 82:f94e6bed4495 199 * It should return IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_OK otherwise.
AzureIoTClient 84:48760e2e7dd8 200 * If a NULL is provided for parameter "data" and/or zero is provided for "size", the user indicates to the client that the complete file has been uploaded.
AzureIoTClient 80:db5f5237bc95 201 * In such case this callback will be invoked only once more to indicate the status of the final block upload.
AzureIoTClient 80:db5f5237bc95 202 * If result is not FILE_UPLOAD_OK, the download is cancelled and this callback stops being invoked.
AzureIoTClient 80:db5f5237bc95 203 * When this callback is called for the last time, no data or size is expected, so data and size are set to NULL
AzureIoTClient 80:db5f5237bc95 204 */
AzureIoTClient 80:db5f5237bc95 205 typedef void(*IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_CALLBACK)(IOTHUB_CLIENT_FILE_UPLOAD_RESULT result, unsigned char const ** data, size_t* size, void* context);
AzureIoTClient 82:f94e6bed4495 206 typedef IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_RESULT (*IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_CALLBACK_EX)(IOTHUB_CLIENT_FILE_UPLOAD_RESULT result, unsigned char const ** data, size_t* size, void* context);
AzureIoTClient 80:db5f5237bc95 207 #endif /* DONT_USE_UPLOADTOBLOB */
AzureIoTClient 80:db5f5237bc95 208
AzureIoTClient 53:1e5a1ca1f274 209 /** @brief This struct captures IoTHub client configuration. */
AzureIoTClient 53:1e5a1ca1f274 210 typedef struct IOTHUB_CLIENT_CONFIG_TAG
AzureIoTClient 53:1e5a1ca1f274 211 {
AzureIoTClient 53:1e5a1ca1f274 212 /** @brief A function pointer that is passed into the @c IoTHubClientCreate.
AzureIoTClient 53:1e5a1ca1f274 213 * A function definition for AMQP is defined in the include @c iothubtransportamqp.h.
AzureIoTClient 53:1e5a1ca1f274 214 * A function definition for HTTP is defined in the include @c iothubtransporthttp.h
AzureIoTClient 53:1e5a1ca1f274 215 * A function definition for MQTT is defined in the include @c iothubtransportmqtt.h */
AzureIoTClient 53:1e5a1ca1f274 216 IOTHUB_CLIENT_TRANSPORT_PROVIDER protocol;
AzureIoTClient 16:deba40344375 217
AzureIoTClient 53:1e5a1ca1f274 218 /** @brief A string that identifies the device. */
AzureIoTClient 53:1e5a1ca1f274 219 const char* deviceId;
AzureIoTClient 16:deba40344375 220
AzureIoTClient 53:1e5a1ca1f274 221 /** @brief The device key used to authenticate the device.
AzureIoTClient 53:1e5a1ca1f274 222 If neither deviceSasToken nor deviceKey is present then the authentication is assumed x509.*/
AzureIoTClient 53:1e5a1ca1f274 223 const char* deviceKey;
AzureIoTClient 40:1a94db9139ea 224
AzureIoTClient 53:1e5a1ca1f274 225 /** @brief The device SAS Token used to authenticate the device in place of device key.
Azure.IoT Build 45:54c11b1b1407 226 If neither deviceSasToken nor deviceKey is present then the authentication is assumed x509.*/
AzureIoTClient 53:1e5a1ca1f274 227 const char* deviceSasToken;
AzureIoTClient 40:1a94db9139ea 228
AzureIoTClient 53:1e5a1ca1f274 229 /** @brief The IoT Hub name to which the device is connecting. */
AzureIoTClient 53:1e5a1ca1f274 230 const char* iotHubName;
AzureIoTClient 40:1a94db9139ea 231
AzureIoTClient 53:1e5a1ca1f274 232 /** @brief IoT Hub suffix goes here, e.g., private.azure-devices-int.net. */
AzureIoTClient 53:1e5a1ca1f274 233 const char* iotHubSuffix;
AzureIoTClient 16:deba40344375 234
AzureIoTClient 53:1e5a1ca1f274 235 const char* protocolGatewayHostName;
AzureIoTClient 53:1e5a1ca1f274 236 } IOTHUB_CLIENT_CONFIG;
AzureIoTClient 16:deba40344375 237
AzureIoTClient 53:1e5a1ca1f274 238 /** @brief This struct captures IoTHub client device configuration. */
AzureIoTClient 53:1e5a1ca1f274 239 typedef struct IOTHUB_CLIENT_DEVICE_CONFIG_TAG
AzureIoTClient 53:1e5a1ca1f274 240 {
AzureIoTClient 53:1e5a1ca1f274 241 /** @brief A function pointer that is passed into the @c IoTHubClientCreate.
AzureIoTClient 53:1e5a1ca1f274 242 * A function definition for AMQP is defined in the include @c iothubtransportamqp.h.
AzureIoTClient 53:1e5a1ca1f274 243 * A function definition for HTTP is defined in the include @c iothubtransporthttp.h
AzureIoTClient 53:1e5a1ca1f274 244 * A function definition for MQTT is defined in the include @c iothubtransportmqtt.h */
AzureIoTClient 53:1e5a1ca1f274 245 IOTHUB_CLIENT_TRANSPORT_PROVIDER protocol;
Azure.IoT Build 36:67300d5a4c1f 246
AzureIoTClient 53:1e5a1ca1f274 247 /** @brief a transport handle implementing the protocol */
AzureIoTClient 53:1e5a1ca1f274 248 void * transportHandle;
Azure.IoT Build 36:67300d5a4c1f 249
AzureIoTClient 53:1e5a1ca1f274 250 /** @brief A string that identifies the device. */
AzureIoTClient 53:1e5a1ca1f274 251 const char* deviceId;
Azure.IoT Build 36:67300d5a4c1f 252
AzureIoTClient 53:1e5a1ca1f274 253 /** @brief The device key used to authenticate the device.
Azure.IoT Build 45:54c11b1b1407 254 x509 authentication is is not supported for multiplexed connections*/
AzureIoTClient 53:1e5a1ca1f274 255 const char* deviceKey;
Azure.IoT Build 36:67300d5a4c1f 256
AzureIoTClient 53:1e5a1ca1f274 257 /** @brief The device SAS Token used to authenticate the device in place of device key.
Azure.IoT Build 45:54c11b1b1407 258 x509 authentication is is not supported for multiplexed connections.*/
AzureIoTClient 53:1e5a1ca1f274 259 const char* deviceSasToken;
AzureIoTClient 53:1e5a1ca1f274 260 } IOTHUB_CLIENT_DEVICE_CONFIG;
Azure.IoT Build 36:67300d5a4c1f 261
AzureIoTClient 53:1e5a1ca1f274 262 /** @brief This struct captures IoTHub transport configuration. */
AzureIoTClient 53:1e5a1ca1f274 263 struct IOTHUBTRANSPORT_CONFIG_TAG
AzureIoTClient 53:1e5a1ca1f274 264 {
AzureIoTClient 53:1e5a1ca1f274 265 const IOTHUB_CLIENT_CONFIG* upperConfig;
AzureIoTClient 53:1e5a1ca1f274 266 PDLIST_ENTRY waitingToSend;
AzureIoTClient 63:1bf1c2d60aab 267 IOTHUB_AUTHORIZATION_HANDLE auth_module_handle;
AzureIoTClient 53:1e5a1ca1f274 268 };
Azure.IoT Build 37:18310e4d888d 269
Azure.IoT Build 37:18310e4d888d 270
AzureIoTClient 53:1e5a1ca1f274 271 /**
AzureIoTClient 53:1e5a1ca1f274 272 * @brief Creates a IoT Hub client for communication with an existing
AzureIoTClient 53:1e5a1ca1f274 273 * IoT Hub using the specified connection string parameter.
AzureIoTClient 53:1e5a1ca1f274 274 *
AzureIoTClient 53:1e5a1ca1f274 275 * @param connectionString Pointer to a character string
AzureIoTClient 53:1e5a1ca1f274 276 * @param protocol Function pointer for protocol implementation
AzureIoTClient 53:1e5a1ca1f274 277 *
AzureIoTClient 53:1e5a1ca1f274 278 * Sample connection string:
AzureIoTClient 53:1e5a1ca1f274 279 * <blockquote>
AzureIoTClient 53:1e5a1ca1f274 280 * <pre>HostName=[IoT Hub name goes here].[IoT Hub suffix goes here, e.g., private.azure-devices-int.net];DeviceId=[Device ID goes here];SharedAccessKey=[Device key goes here];</pre>
AzureIoTClient 53:1e5a1ca1f274 281 * </blockquote>
AzureIoTClient 53:1e5a1ca1f274 282 *
AzureIoTClient 53:1e5a1ca1f274 283 * @return A non-NULL @c IOTHUB_CLIENT_LL_HANDLE value that is used when
AzureIoTClient 53:1e5a1ca1f274 284 * invoking other functions for IoT Hub client and @c NULL on failure.
AzureIoTClient 53:1e5a1ca1f274 285 */
AzureIoTClient 53:1e5a1ca1f274 286 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_LL_HANDLE, IoTHubClient_LL_CreateFromConnectionString, const char*, connectionString, IOTHUB_CLIENT_TRANSPORT_PROVIDER, protocol);
AzureIoTClient 16:deba40344375 287
AzureIoTClient 53:1e5a1ca1f274 288 /**
AzureIoTClient 53:1e5a1ca1f274 289 * @brief Creates a IoT Hub client for communication with an existing IoT
AzureIoTClient 53:1e5a1ca1f274 290 * Hub using the specified parameters.
AzureIoTClient 53:1e5a1ca1f274 291 *
AzureIoTClient 53:1e5a1ca1f274 292 * @param config Pointer to an @c IOTHUB_CLIENT_CONFIG structure
AzureIoTClient 53:1e5a1ca1f274 293 *
AzureIoTClient 53:1e5a1ca1f274 294 * The API does not allow sharing of a connection across multiple
AzureIoTClient 53:1e5a1ca1f274 295 * devices. This is a blocking call.
AzureIoTClient 53:1e5a1ca1f274 296 *
AzureIoTClient 53:1e5a1ca1f274 297 * @return A non-NULL @c IOTHUB_CLIENT_LL_HANDLE value that is used when
AzureIoTClient 53:1e5a1ca1f274 298 * invoking other functions for IoT Hub client and @c NULL on failure.
AzureIoTClient 53:1e5a1ca1f274 299 */
AzureIoTClient 53:1e5a1ca1f274 300 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_LL_HANDLE, IoTHubClient_LL_Create, const IOTHUB_CLIENT_CONFIG*, config);
AzureIoTClient 16:deba40344375 301
AzureIoTClient 53:1e5a1ca1f274 302 /**
AzureIoTClient 53:1e5a1ca1f274 303 * @brief Creates a IoT Hub client for communication with an existing IoT
AzureIoTClient 53:1e5a1ca1f274 304 * Hub using an existing transport.
AzureIoTClient 53:1e5a1ca1f274 305 *
AzureIoTClient 53:1e5a1ca1f274 306 * @param config Pointer to an @c IOTHUB_CLIENT_DEVICE_CONFIG structure
AzureIoTClient 53:1e5a1ca1f274 307 *
AzureIoTClient 53:1e5a1ca1f274 308 * The API *allows* sharing of a connection across multiple
AzureIoTClient 53:1e5a1ca1f274 309 * devices. This is a blocking call.
AzureIoTClient 53:1e5a1ca1f274 310 *
AzureIoTClient 53:1e5a1ca1f274 311 * @return A non-NULL @c IOTHUB_CLIENT_LL_HANDLE value that is used when
AzureIoTClient 53:1e5a1ca1f274 312 * invoking other functions for IoT Hub client and @c NULL on failure.
AzureIoTClient 53:1e5a1ca1f274 313 */
AzureIoTClient 53:1e5a1ca1f274 314 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_LL_HANDLE, IoTHubClient_LL_CreateWithTransport, const IOTHUB_CLIENT_DEVICE_CONFIG*, config);
Azure.IoT Build 36:67300d5a4c1f 315
AzureIoTClient 53:1e5a1ca1f274 316 /**
AzureIoTClient 53:1e5a1ca1f274 317 * @brief Disposes of resources allocated by the IoT Hub client. This is a
AzureIoTClient 53:1e5a1ca1f274 318 * blocking call.
AzureIoTClient 53:1e5a1ca1f274 319 *
AzureIoTClient 53:1e5a1ca1f274 320 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 321 */
AzureIoTClient 53:1e5a1ca1f274 322 MOCKABLE_FUNCTION(, void, IoTHubClient_LL_Destroy, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle);
AzureIoTClient 16:deba40344375 323
AzureIoTClient 53:1e5a1ca1f274 324 /**
AzureIoTClient 53:1e5a1ca1f274 325 * @brief Asynchronous call to send the message specified by @p eventMessageHandle.
AzureIoTClient 53:1e5a1ca1f274 326 *
AzureIoTClient 53:1e5a1ca1f274 327 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 328 * @param eventMessageHandle The handle to an IoT Hub message.
AzureIoTClient 53:1e5a1ca1f274 329 * @param eventConfirmationCallback The callback specified by the device for receiving
AzureIoTClient 53:1e5a1ca1f274 330 * confirmation of the delivery of the IoT Hub message.
AzureIoTClient 53:1e5a1ca1f274 331 * This callback can be expected to invoke the
AzureIoTClient 53:1e5a1ca1f274 332 * ::IoTHubClient_LL_SendEventAsync function for the
AzureIoTClient 53:1e5a1ca1f274 333 * same message in an attempt to retry sending a failing
AzureIoTClient 53:1e5a1ca1f274 334 * message. The user can specify a @c NULL value here to
AzureIoTClient 53:1e5a1ca1f274 335 * indicate that no callback is required.
AzureIoTClient 53:1e5a1ca1f274 336 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 53:1e5a1ca1f274 337 * callback. This can be @c NULL.
AzureIoTClient 53:1e5a1ca1f274 338 *
AzureIoTClient 53:1e5a1ca1f274 339 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 53:1e5a1ca1f274 340 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 53:1e5a1ca1f274 341 *
AzureIoTClient 53:1e5a1ca1f274 342 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 343 */
AzureIoTClient 53:1e5a1ca1f274 344 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SendEventAsync, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_MESSAGE_HANDLE, eventMessageHandle, IOTHUB_CLIENT_EVENT_CONFIRMATION_CALLBACK, eventConfirmationCallback, void*, userContextCallback);
AzureIoTClient 16:deba40344375 345
AzureIoTClient 53:1e5a1ca1f274 346 /**
AzureIoTClient 53:1e5a1ca1f274 347 * @brief This function returns the current sending status for IoTHubClient.
AzureIoTClient 53:1e5a1ca1f274 348 *
AzureIoTClient 53:1e5a1ca1f274 349 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 350 * @param iotHubClientStatus The sending state is populated at the address pointed
AzureIoTClient 53:1e5a1ca1f274 351 * at by this parameter. The value will be set to
AzureIoTClient 53:1e5a1ca1f274 352 * @c IOTHUBCLIENT_SENDSTATUS_IDLE if there is currently
AzureIoTClient 53:1e5a1ca1f274 353 * no item to be sent and @c IOTHUBCLIENT_SENDSTATUS_BUSY
AzureIoTClient 53:1e5a1ca1f274 354 * if there are.
AzureIoTClient 53:1e5a1ca1f274 355 *
AzureIoTClient 53:1e5a1ca1f274 356 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 357 */
AzureIoTClient 53:1e5a1ca1f274 358 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_GetSendStatus, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_STATUS*, iotHubClientStatus);
AzureIoTClient 16:deba40344375 359
AzureIoTClient 53:1e5a1ca1f274 360 /**
AzureIoTClient 53:1e5a1ca1f274 361 * @brief Sets up the message callback to be invoked when IoT Hub issues a
AzureIoTClient 53:1e5a1ca1f274 362 * message to the device. This is a blocking call.
AzureIoTClient 53:1e5a1ca1f274 363 *
AzureIoTClient 53:1e5a1ca1f274 364 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 365 * @param messageCallback The callback specified by the device for receiving
AzureIoTClient 53:1e5a1ca1f274 366 * messages from IoT Hub.
AzureIoTClient 53:1e5a1ca1f274 367 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 53:1e5a1ca1f274 368 * callback. This can be @c NULL.
AzureIoTClient 53:1e5a1ca1f274 369 *
AzureIoTClient 53:1e5a1ca1f274 370 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 53:1e5a1ca1f274 371 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 53:1e5a1ca1f274 372 *
AzureIoTClient 53:1e5a1ca1f274 373 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 374 */
AzureIoTClient 53:1e5a1ca1f274 375 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetMessageCallback, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_MESSAGE_CALLBACK_ASYNC, messageCallback, void*, userContextCallback);
AzureIoTClient 16:deba40344375 376
AzureIoTClient 52:1cc3c6d07cad 377 /**
AzureIoTClient 52:1cc3c6d07cad 378 * @brief Sets up the connection status callback to be invoked representing the status of
AzureIoTClient 52:1cc3c6d07cad 379 * the connection to IOT Hub. This is a blocking call.
AzureIoTClient 52:1cc3c6d07cad 380 *
AzureIoTClient 52:1cc3c6d07cad 381 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 52:1cc3c6d07cad 382 * @param connectionStatusCallback The callback specified by the device for receiving
AzureIoTClient 52:1cc3c6d07cad 383 * updates about the status of the connection to IoT Hub.
AzureIoTClient 52:1cc3c6d07cad 384 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 52:1cc3c6d07cad 385 * callback. This can be @c NULL.
AzureIoTClient 52:1cc3c6d07cad 386 *
AzureIoTClient 52:1cc3c6d07cad 387 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 52:1cc3c6d07cad 388 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 52:1cc3c6d07cad 389 *
AzureIoTClient 52:1cc3c6d07cad 390 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 52:1cc3c6d07cad 391 */
AzureIoTClient 53:1e5a1ca1f274 392 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetConnectionStatusCallback, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_CONNECTION_STATUS_CALLBACK, connectionStatusCallback, void*, userContextCallback);
AzureIoTClient 52:1cc3c6d07cad 393
AzureIoTClient 52:1cc3c6d07cad 394 /**
AzureIoTClient 52:1cc3c6d07cad 395 * @brief Sets up the connection status callback to be invoked representing the status of
AzureIoTClient 52:1cc3c6d07cad 396 * the connection to IOT Hub. This is a blocking call.
AzureIoTClient 52:1cc3c6d07cad 397 *
AzureIoTClient 52:1cc3c6d07cad 398 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 52:1cc3c6d07cad 399 * @param retryPolicy The policy to use to reconnect to IoT Hub when a
AzureIoTClient 52:1cc3c6d07cad 400 * connection drops.
AzureIoTClient 53:1e5a1ca1f274 401 * @param retryTimeoutLimitInSeconds Maximum amount of time(seconds) to attempt reconnection when a
AzureIoTClient 52:1cc3c6d07cad 402 * connection drops to IOT Hub.
AzureIoTClient 52:1cc3c6d07cad 403 *
AzureIoTClient 52:1cc3c6d07cad 404 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 52:1cc3c6d07cad 405 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 52:1cc3c6d07cad 406 *
AzureIoTClient 52:1cc3c6d07cad 407 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 52:1cc3c6d07cad 408 */
AzureIoTClient 53:1e5a1ca1f274 409 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetRetryPolicy, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_RETRY_POLICY, retryPolicy, size_t, retryTimeoutLimitInSeconds);
AzureIoTClient 52:1cc3c6d07cad 410
AzureIoTClient 52:1cc3c6d07cad 411
AzureIoTClient 52:1cc3c6d07cad 412 /**
AzureIoTClient 52:1cc3c6d07cad 413 * @brief Sets up the connection status callback to be invoked representing the status of
AzureIoTClient 52:1cc3c6d07cad 414 * the connection to IOT Hub. This is a blocking call.
AzureIoTClient 52:1cc3c6d07cad 415 *
AzureIoTClient 52:1cc3c6d07cad 416 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 52:1cc3c6d07cad 417 * @param retryPolicy Out parameter containing the policy to use to reconnect to IoT Hub.
AzureIoTClient 53:1e5a1ca1f274 418 * @param retryTimeoutLimitInSeconds Out parameter containing maximum amount of time in seconds to attempt reconnection
AzureIoTClient 52:1cc3c6d07cad 419 to IOT Hub.
AzureIoTClient 52:1cc3c6d07cad 420 *
AzureIoTClient 52:1cc3c6d07cad 421 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 52:1cc3c6d07cad 422 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 52:1cc3c6d07cad 423 *
AzureIoTClient 52:1cc3c6d07cad 424 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 52:1cc3c6d07cad 425 */
AzureIoTClient 53:1e5a1ca1f274 426 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_GetRetryPolicy, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_RETRY_POLICY*, retryPolicy, size_t*, retryTimeoutLimitInSeconds);
AzureIoTClient 52:1cc3c6d07cad 427
AzureIoTClient 53:1e5a1ca1f274 428 /**
AzureIoTClient 53:1e5a1ca1f274 429 * @brief This function returns in the out parameter @p lastMessageReceiveTime
AzureIoTClient 53:1e5a1ca1f274 430 * what was the value of the @c time function when the last message was
AzureIoTClient 53:1e5a1ca1f274 431 * received at the client.
AzureIoTClient 53:1e5a1ca1f274 432 *
AzureIoTClient 53:1e5a1ca1f274 433 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 434 * @param lastMessageReceiveTime Out parameter containing the value of @c time function
AzureIoTClient 53:1e5a1ca1f274 435 * when the last message was received.
AzureIoTClient 53:1e5a1ca1f274 436 *
AzureIoTClient 53:1e5a1ca1f274 437 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 438 */
AzureIoTClient 53:1e5a1ca1f274 439 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_GetLastMessageReceiveTime, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, time_t*, lastMessageReceiveTime);
AzureIoTClient 16:deba40344375 440
AzureIoTClient 53:1e5a1ca1f274 441 /**
AzureIoTClient 53:1e5a1ca1f274 442 * @brief This function is meant to be called by the user when work
AzureIoTClient 53:1e5a1ca1f274 443 * (sending/receiving) can be done by the IoTHubClient.
AzureIoTClient 53:1e5a1ca1f274 444 *
AzureIoTClient 53:1e5a1ca1f274 445 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 446 *
AzureIoTClient 53:1e5a1ca1f274 447 * All IoTHubClient interactions (in regards to network traffic
AzureIoTClient 53:1e5a1ca1f274 448 * and/or user level callbacks) are the effect of calling this
AzureIoTClient 53:1e5a1ca1f274 449 * function and they take place synchronously inside _DoWork.
AzureIoTClient 53:1e5a1ca1f274 450 */
AzureIoTClient 53:1e5a1ca1f274 451 MOCKABLE_FUNCTION(, void, IoTHubClient_LL_DoWork, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle);
AzureIoTClient 16:deba40344375 452
AzureIoTClient 53:1e5a1ca1f274 453 /**
AzureIoTClient 53:1e5a1ca1f274 454 * @brief This API sets a runtime option identified by parameter @p optionName
AzureIoTClient 53:1e5a1ca1f274 455 * to a value pointed to by @p value. @p optionName and the data type
AzureIoTClient 53:1e5a1ca1f274 456 * @p value is pointing to are specific for every option.
AzureIoTClient 53:1e5a1ca1f274 457 *
AzureIoTClient 53:1e5a1ca1f274 458 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 459 * @param optionName Name of the option.
AzureIoTClient 53:1e5a1ca1f274 460 * @param value The value.
AzureIoTClient 53:1e5a1ca1f274 461 *
AzureIoTClient 53:1e5a1ca1f274 462 * The options that can be set via this API are:
AzureIoTClient 53:1e5a1ca1f274 463 * - @b timeout - the maximum time in milliseconds a communication is
AzureIoTClient 53:1e5a1ca1f274 464 * allowed to use. @p value is a pointer to an @c unsigned @c int with
AzureIoTClient 53:1e5a1ca1f274 465 * the timeout value in milliseconds. This is only supported for the HTTP
AzureIoTClient 53:1e5a1ca1f274 466 * protocol as of now. When the HTTP protocol uses CURL, the meaning of
AzureIoTClient 53:1e5a1ca1f274 467 * the parameter is <em>total request time</em>. When the HTTP protocol uses
AzureIoTClient 53:1e5a1ca1f274 468 * winhttp, the meaning is the same as the @c dwSendTimeout and
AzureIoTClient 53:1e5a1ca1f274 469 * @c dwReceiveTimeout parameters of the
AzureIoTClient 53:1e5a1ca1f274 470 * <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/aa384116(v=vs.85).aspx">
AzureIoTClient 53:1e5a1ca1f274 471 * WinHttpSetTimeouts</a> API.
AzureIoTClient 53:1e5a1ca1f274 472 * - @b CURLOPT_LOW_SPEED_LIMIT - only available for HTTP protocol and only
AzureIoTClient 53:1e5a1ca1f274 473 * when CURL is used. It has the same meaning as CURL's option with the same
AzureIoTClient 53:1e5a1ca1f274 474 * name. @p value is pointer to a long.
AzureIoTClient 53:1e5a1ca1f274 475 * - @b CURLOPT_LOW_SPEED_TIME - only available for HTTP protocol and only
AzureIoTClient 53:1e5a1ca1f274 476 * when CURL is used. It has the same meaning as CURL's option with the same
AzureIoTClient 53:1e5a1ca1f274 477 * name. @p value is pointer to a long.
AzureIoTClient 53:1e5a1ca1f274 478 * - @b CURLOPT_FORBID_REUSE - only available for HTTP protocol and only
AzureIoTClient 53:1e5a1ca1f274 479 * when CURL is used. It has the same meaning as CURL's option with the same
AzureIoTClient 53:1e5a1ca1f274 480 * name. @p value is pointer to a long.
AzureIoTClient 53:1e5a1ca1f274 481 * - @b CURLOPT_FRESH_CONNECT - only available for HTTP protocol and only
AzureIoTClient 53:1e5a1ca1f274 482 * when CURL is used. It has the same meaning as CURL's option with the same
AzureIoTClient 53:1e5a1ca1f274 483 * name. @p value is pointer to a long.
AzureIoTClient 53:1e5a1ca1f274 484 * - @b CURLOPT_VERBOSE - only available for HTTP protocol and only
AzureIoTClient 53:1e5a1ca1f274 485 * when CURL is used. It has the same meaning as CURL's option with the same
AzureIoTClient 53:1e5a1ca1f274 486 * name. @p value is pointer to a long.
AzureIoTClient 53:1e5a1ca1f274 487 * - @b keepalive - available for MQTT protocol. Integer value that sets the
AzureIoTClient 53:1e5a1ca1f274 488 * interval in seconds when pings are sent to the server.
AzureIoTClient 53:1e5a1ca1f274 489 * - @b logtrace - available for MQTT protocol. Boolean value that turns on and
AzureIoTClient 53:1e5a1ca1f274 490 * off the diagnostic logging.
AzureIoTClient 76:943524fee0b7 491 * - @b sas_token_lifetime - available for MQTT & AMQP protocol. size_t value that that determines the
AzureIoTClient 76:943524fee0b7 492 * sas token timeout length.
AzureIoTClient 53:1e5a1ca1f274 493 *
AzureIoTClient 53:1e5a1ca1f274 494 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 495 */
AzureIoTClient 53:1e5a1ca1f274 496 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetOption, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, const char*, optionName, const void*, value);
AzureIoTClient 53:1e5a1ca1f274 497
AzureIoTClient 53:1e5a1ca1f274 498 /**
AzureIoTClient 53:1e5a1ca1f274 499 * @brief This API specifies a call back to be used when the device receives a desired state update.
AzureIoTClient 53:1e5a1ca1f274 500 *
AzureIoTClient 53:1e5a1ca1f274 501 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 502 * @param deviceTwinCallback The callback specified by the device client to be used for updating
AzureIoTClient 53:1e5a1ca1f274 503 * the desired state. The callback will be called in response to patch
AzureIoTClient 53:1e5a1ca1f274 504 * request send by the IoTHub services. The payload will be passed to the
AzureIoTClient 53:1e5a1ca1f274 505 * callback, along with two version numbers:
AzureIoTClient 53:1e5a1ca1f274 506 * - Desired:
AzureIoTClient 53:1e5a1ca1f274 507 * - LastSeenReported:
AzureIoTClient 53:1e5a1ca1f274 508 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 53:1e5a1ca1f274 509 * callback. This can be @c NULL.
AzureIoTClient 53:1e5a1ca1f274 510 *
AzureIoTClient 53:1e5a1ca1f274 511 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 53:1e5a1ca1f274 512 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 53:1e5a1ca1f274 513 *
AzureIoTClient 53:1e5a1ca1f274 514 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 515 */
AzureIoTClient 53:1e5a1ca1f274 516 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetDeviceTwinCallback, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_DEVICE_TWIN_CALLBACK, deviceTwinCallback, void*, userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 517
AzureIoTClient 53:1e5a1ca1f274 518 /**
AzureIoTClient 53:1e5a1ca1f274 519 * @brief This API sneds a report of the device's properties and their current values.
AzureIoTClient 53:1e5a1ca1f274 520 *
AzureIoTClient 53:1e5a1ca1f274 521 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 522 * @param reportedState The current device property values to be 'reported' to the IoTHub.
AzureIoTClient 53:1e5a1ca1f274 523 * @param reportedStateCallback The callback specified by the device client to be called with the
AzureIoTClient 53:1e5a1ca1f274 524 * result of the transaction.
AzureIoTClient 53:1e5a1ca1f274 525 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 53:1e5a1ca1f274 526 * callback. This can be @c NULL.
AzureIoTClient 53:1e5a1ca1f274 527 *
AzureIoTClient 53:1e5a1ca1f274 528 * @b NOTE: The application behavior is undefined if the user calls
AzureIoTClient 53:1e5a1ca1f274 529 * the ::IoTHubClient_LL_Destroy function from within any callback.
AzureIoTClient 53:1e5a1ca1f274 530 *
AzureIoTClient 53:1e5a1ca1f274 531 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 532 */
AzureIoTClient 53:1e5a1ca1f274 533 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SendReportedState, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, const unsigned char*, reportedState, size_t, size, IOTHUB_CLIENT_REPORTED_STATE_CALLBACK, reportedStateCallback, void*, userContextCallback);
AzureIoTClient 53:1e5a1ca1f274 534
AzureIoTClient 53:1e5a1ca1f274 535 /**
AzureIoTClient 53:1e5a1ca1f274 536 * @brief This API sets callback for cloud to device method call.
AzureIoTClient 53:1e5a1ca1f274 537 *
AzureIoTClient 53:1e5a1ca1f274 538 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 53:1e5a1ca1f274 539 * @param deviceMethodCallback The callback which will be called by IoTHub.
AzureIoTClient 53:1e5a1ca1f274 540 * @param userContextCallback User specified context that will be provided to the
AzureIoTClient 53:1e5a1ca1f274 541 * callback. This can be @c NULL.
AzureIoTClient 53:1e5a1ca1f274 542 *
AzureIoTClient 53:1e5a1ca1f274 543 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 53:1e5a1ca1f274 544 */
AzureIoTClient 53:1e5a1ca1f274 545 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetDeviceMethodCallback, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_DEVICE_METHOD_CALLBACK_ASYNC, deviceMethodCallback, void*, userContextCallback);
AzureIoTClient 16:deba40344375 546
Azure.IoT.Build 54:6dcad9019a64 547 /**
Azure.IoT.Build 54:6dcad9019a64 548 * @brief This API sets callback for async cloud to device method call.
Azure.IoT.Build 54:6dcad9019a64 549 *
Azure.IoT.Build 54:6dcad9019a64 550 * @param iotHubClientHandle The handle created by a call to the create function.
Azure.IoT.Build 54:6dcad9019a64 551 * @param inboundDeviceMethodCallback The callback which will be called by IoTHub.
Azure.IoT.Build 54:6dcad9019a64 552 * @param userContextCallback User specified context that will be provided to the
Azure.IoT.Build 54:6dcad9019a64 553 * callback. This can be @c NULL.
Azure.IoT.Build 54:6dcad9019a64 554 *
Azure.IoT.Build 54:6dcad9019a64 555 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
Azure.IoT.Build 54:6dcad9019a64 556 */
AzureIoTClient 55:59b527ab3452 557 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_SetDeviceMethodCallback_Ex, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, IOTHUB_CLIENT_INBOUND_DEVICE_METHOD_CALLBACK, inboundDeviceMethodCallback, void*, userContextCallback);
Azure.IoT.Build 54:6dcad9019a64 558
Azure.IoT.Build 54:6dcad9019a64 559 /**
Azure.IoT.Build 54:6dcad9019a64 560 * @brief This API responses to a asnyc method callback identified the methodId.
Azure.IoT.Build 54:6dcad9019a64 561 *
Azure.IoT.Build 54:6dcad9019a64 562 * @param iotHubClientHandle The handle created by a call to the create function.
Azure.IoT.Build 54:6dcad9019a64 563 * @param methodId The methodId of the Device Method callback.
Azure.IoT.Build 54:6dcad9019a64 564 * @param response The response data for the method callback.
AzureIoTClient 55:59b527ab3452 565 * @param response_size The size of the response data buffer.
Azure.IoT.Build 54:6dcad9019a64 566 * @param status_response The status response of the method callback.
Azure.IoT.Build 54:6dcad9019a64 567 *
Azure.IoT.Build 54:6dcad9019a64 568 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
Azure.IoT.Build 54:6dcad9019a64 569 */
AzureIoTClient 55:59b527ab3452 570 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_DeviceMethodResponse, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, METHOD_HANDLE, methodId, const unsigned char*, response, size_t, respSize, int, statusCode);
Azure.IoT.Build 54:6dcad9019a64 571
AzureIoTClient 44:33dd78697616 572 #ifndef DONT_USE_UPLOADTOBLOB
AzureIoTClient 43:038d8511e817 573 /**
AzureIoTClient 43:038d8511e817 574 * @brief This API uploads to Azure Storage the content pointed to by @p source having the size @p size
AzureIoTClient 43:038d8511e817 575 * under the blob name devicename/@pdestinationFileName
AzureIoTClient 43:038d8511e817 576 *
AzureIoTClient 43:038d8511e817 577 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 43:038d8511e817 578 * @param destinationFileName name of the file.
AzureIoTClient 43:038d8511e817 579 * @param source pointer to the source for file content (can be NULL)
AzureIoTClient 43:038d8511e817 580 * @param size the size of the source in memory (if @p source is NULL then size needs to be 0).
AzureIoTClient 43:038d8511e817 581 *
AzureIoTClient 43:038d8511e817 582 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 43:038d8511e817 583 */
AzureIoTClient 53:1e5a1ca1f274 584 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_UploadToBlob, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, const char*, destinationFileName, const unsigned char*, source, size_t, size);
AzureIoTClient 42:448eecc3676e 585
AzureIoTClient 80:db5f5237bc95 586 /**
AzureIoTClient 82:f94e6bed4495 587 ** DEPRECATED: Use IoTHubClient_LL_UploadMultipleBlocksToBlobAsyncEx instead **
AzureIoTClient 80:db5f5237bc95 588 * @brief This API uploads to Azure Storage the content provided block by block by @p getDataCallback
AzureIoTClient 80:db5f5237bc95 589 * under the blob name devicename/@pdestinationFileName
AzureIoTClient 80:db5f5237bc95 590 *
AzureIoTClient 80:db5f5237bc95 591 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 80:db5f5237bc95 592 * @param destinationFileName name of the file.
AzureIoTClient 80:db5f5237bc95 593 * @param getDataCallback A callback to be invoked to acquire the file chunks to be uploaded, as well as to indicate the status of the upload of the previous block.
AzureIoTClient 80:db5f5237bc95 594 * @param context Any data provided by the user to serve as context on getDataCallback.
AzureIoTClient 80:db5f5237bc95 595 *
AzureIoTClient 80:db5f5237bc95 596 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 82:f94e6bed4495 597 ** DEPRECATED: Use IoTHubClient_LL_UploadMultipleBlocksToBlobAsyncEx instead **
AzureIoTClient 80:db5f5237bc95 598 */
AzureIoTClient 80:db5f5237bc95 599 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_UploadMultipleBlocksToBlob, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, const char*, destinationFileName, IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_CALLBACK, getDataCallback, void*, context);
AzureIoTClient 82:f94e6bed4495 600
AzureIoTClient 82:f94e6bed4495 601 /**
AzureIoTClient 82:f94e6bed4495 602 * @brief This API uploads to Azure Storage the content provided block by block by @p getDataCallback
AzureIoTClient 82:f94e6bed4495 603 * under the blob name devicename/@pdestinationFileName
AzureIoTClient 82:f94e6bed4495 604 *
AzureIoTClient 82:f94e6bed4495 605 * @param iotHubClientHandle The handle created by a call to the create function.
AzureIoTClient 82:f94e6bed4495 606 * @param destinationFileName name of the file.
AzureIoTClient 82:f94e6bed4495 607 * @param getDataCallbackEx A callback to be invoked to acquire the file chunks to be uploaded, as well as to indicate the status of the upload of the previous block.
AzureIoTClient 82:f94e6bed4495 608 * @param context Any data provided by the user to serve as context on getDataCallback.
AzureIoTClient 82:f94e6bed4495 609 *
AzureIoTClient 82:f94e6bed4495 610 * @return IOTHUB_CLIENT_OK upon success or an error code upon failure.
AzureIoTClient 82:f94e6bed4495 611 */
AzureIoTClient 82:f94e6bed4495 612 MOCKABLE_FUNCTION(, IOTHUB_CLIENT_RESULT, IoTHubClient_LL_UploadMultipleBlocksToBlobEx, IOTHUB_CLIENT_LL_HANDLE, iotHubClientHandle, const char*, destinationFileName, IOTHUB_CLIENT_FILE_UPLOAD_GET_DATA_CALLBACK_EX, getDataCallbackEx, void*, context);
AzureIoTClient 82:f94e6bed4495 613
AzureIoTClient 44:33dd78697616 614 #endif /*DONT_USE_UPLOADTOBLOB*/
AzureIoTClient 43:038d8511e817 615
AzureIoTClient 16:deba40344375 616 #ifdef __cplusplus
AzureIoTClient 16:deba40344375 617 }
AzureIoTClient 16:deba40344375 618 #endif
AzureIoTClient 16:deba40344375 619
AzureIoTClient 16:deba40344375 620 #endif /* IOTHUB_CLIENT_LL_H */