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:
Tue Mar 20 10:29:00 2018 -0700
Revision:
85:de16c0a8a196
Parent:
84:48760e2e7dd8
Child:
88:248736be106e
1.2.1

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