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:
Wed Nov 16 21:37:53 2016 -0800
Revision:
53:1e5a1ca1f274
Parent:
51:2550e3ad7bb0
Child:
74:ea0021abecf7
1.0.10

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_message.h
AzureIoTClient 16:deba40344375 5 * @brief The @c IoTHub_Message component encapsulates one message that
AzureIoTClient 16:deba40344375 6 * can be transferred by an IoT hub client.
AzureIoTClient 16:deba40344375 7 */
AzureIoTClient 16:deba40344375 8
AzureIoTClient 16:deba40344375 9 #ifndef IOTHUB_MESSAGE_H
AzureIoTClient 16:deba40344375 10 #define IOTHUB_MESSAGE_H
AzureIoTClient 16:deba40344375 11
Azure.IoT Build 38:a05929a75111 12 #include "azure_c_shared_utility/macro_utils.h"
Azure.IoT Build 38:a05929a75111 13 #include "azure_c_shared_utility/map.h"
AzureIoTClient 53:1e5a1ca1f274 14 #include "azure_c_shared_utility/umock_c_prod.h"
AzureIoTClient 16:deba40344375 15
AzureIoTClient 16:deba40344375 16 #ifdef __cplusplus
AzureIoTClient 16:deba40344375 17 #include <cstddef>
AzureIoTClient 16:deba40344375 18 extern "C"
AzureIoTClient 16:deba40344375 19 {
AzureIoTClient 16:deba40344375 20 #else
AzureIoTClient 16:deba40344375 21 #include <stddef.h>
AzureIoTClient 16:deba40344375 22 #endif
AzureIoTClient 16:deba40344375 23
AzureIoTClient 16:deba40344375 24 #define IOTHUB_MESSAGE_RESULT_VALUES \
AzureIoTClient 16:deba40344375 25 IOTHUB_MESSAGE_OK, \
AzureIoTClient 16:deba40344375 26 IOTHUB_MESSAGE_INVALID_ARG, \
AzureIoTClient 16:deba40344375 27 IOTHUB_MESSAGE_INVALID_TYPE, \
AzureIoTClient 16:deba40344375 28 IOTHUB_MESSAGE_ERROR \
AzureIoTClient 16:deba40344375 29
AzureIoTClient 16:deba40344375 30 /** @brief Enumeration specifying the status of calls to various
AzureIoTClient 16:deba40344375 31 * APIs in this module.
AzureIoTClient 16:deba40344375 32 */
AzureIoTClient 16:deba40344375 33 DEFINE_ENUM(IOTHUB_MESSAGE_RESULT, IOTHUB_MESSAGE_RESULT_VALUES);
AzureIoTClient 16:deba40344375 34
AzureIoTClient 16:deba40344375 35 #define IOTHUBMESSAGE_CONTENT_TYPE_VALUES \
AzureIoTClient 16:deba40344375 36 IOTHUBMESSAGE_BYTEARRAY, \
AzureIoTClient 16:deba40344375 37 IOTHUBMESSAGE_STRING, \
AzureIoTClient 16:deba40344375 38 IOTHUBMESSAGE_UNKNOWN \
AzureIoTClient 16:deba40344375 39
AzureIoTClient 16:deba40344375 40 /** @brief Enumeration specifying the content type of the a given
AzureIoTClient 16:deba40344375 41 * message.
AzureIoTClient 16:deba40344375 42 */
AzureIoTClient 16:deba40344375 43 DEFINE_ENUM(IOTHUBMESSAGE_CONTENT_TYPE, IOTHUBMESSAGE_CONTENT_TYPE_VALUES);
AzureIoTClient 16:deba40344375 44
AzureIoTClient 48:cc5d91f2b06d 45 typedef struct IOTHUB_MESSAGE_HANDLE_DATA_TAG* IOTHUB_MESSAGE_HANDLE;
AzureIoTClient 16:deba40344375 46
AzureIoTClient 16:deba40344375 47 /**
AzureIoTClient 16:deba40344375 48 * @brief Creates a new IoT hub message from a byte array. The type of the
AzureIoTClient 16:deba40344375 49 * message will be set to @c IOTHUBMESSAGE_BYTEARRAY.
AzureIoTClient 16:deba40344375 50 *
AzureIoTClient 16:deba40344375 51 * @param byteArray The byte array from which the message is to be created.
AzureIoTClient 16:deba40344375 52 * @param size The size of the byte array.
AzureIoTClient 16:deba40344375 53 *
AzureIoTClient 16:deba40344375 54 * @return A valid @c IOTHUB_MESSAGE_HANDLE if the message was successfully
AzureIoTClient 16:deba40344375 55 * created or @c NULL in case an error occurs.
AzureIoTClient 16:deba40344375 56 */
AzureIoTClient 50:bbc71457b0ea 57 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_HANDLE, IoTHubMessage_CreateFromByteArray, const unsigned char*, byteArray, size_t, size);
AzureIoTClient 16:deba40344375 58
AzureIoTClient 16:deba40344375 59 /**
AzureIoTClient 16:deba40344375 60 * @brief Creates a new IoT hub message from a null terminated string. The
AzureIoTClient 16:deba40344375 61 * type of the message will be set to @c IOTHUBMESSAGE_STRING.
AzureIoTClient 16:deba40344375 62 *
AzureIoTClient 16:deba40344375 63 * @param source The null terminated string from which the message is to be
AzureIoTClient 16:deba40344375 64 * created.
AzureIoTClient 16:deba40344375 65 *
AzureIoTClient 16:deba40344375 66 * @return A valid @c IOTHUB_MESSAGE_HANDLE if the message was successfully
AzureIoTClient 16:deba40344375 67 * created or @c NULL in case an error occurs.
AzureIoTClient 16:deba40344375 68 */
AzureIoTClient 50:bbc71457b0ea 69 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_HANDLE, IoTHubMessage_CreateFromString, const char*, source);
AzureIoTClient 16:deba40344375 70
AzureIoTClient 16:deba40344375 71 /**
AzureIoTClient 16:deba40344375 72 * @brief Creates a new IoT hub message with the content identical to that
AzureIoTClient 16:deba40344375 73 * of the @p iotHubMessageHandle parameter.
AzureIoTClient 16:deba40344375 74 *
AzureIoTClient 16:deba40344375 75 * @param iotHubMessageHandle Handle to the message that is to be cloned.
AzureIoTClient 16:deba40344375 76 *
AzureIoTClient 16:deba40344375 77 * @return A valid @c IOTHUB_MESSAGE_HANDLE if the message was successfully
AzureIoTClient 16:deba40344375 78 * cloned or @c NULL in case an error occurs.
AzureIoTClient 16:deba40344375 79 */
AzureIoTClient 50:bbc71457b0ea 80 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_HANDLE, IoTHubMessage_Clone, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 16:deba40344375 81
AzureIoTClient 16:deba40344375 82 /**
AzureIoTClient 16:deba40344375 83 * @brief Fetches a pointer and size for the data associated with the IoT
AzureIoTClient 16:deba40344375 84 * hub message handle. If the content type of the message is not
AzureIoTClient 16:deba40344375 85 * @c IOTHUBMESSAGE_BYTEARRAY then the function returns
AzureIoTClient 16:deba40344375 86 * @c IOTHUB_MESSAGE_INVALID_ARG.
AzureIoTClient 16:deba40344375 87 *
AzureIoTClient 16:deba40344375 88 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 16:deba40344375 89 * @param buffer Pointer to the memory location where the
AzureIoTClient 16:deba40344375 90 * pointer to the buffer will be written.
AzureIoTClient 16:deba40344375 91 * @param size The size of the buffer will be written to
AzureIoTClient 16:deba40344375 92 * this address.
AzureIoTClient 16:deba40344375 93 *
AzureIoTClient 16:deba40344375 94 * @return Returns IOTHUB_MESSAGE_OK if the byte array was fetched successfully
AzureIoTClient 16:deba40344375 95 * or an error code otherwise.
AzureIoTClient 16:deba40344375 96 */
AzureIoTClient 50:bbc71457b0ea 97 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_RESULT, IoTHubMessage_GetByteArray, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle, const unsigned char**, buffer, size_t*, size);
AzureIoTClient 16:deba40344375 98
AzureIoTClient 16:deba40344375 99 /**
AzureIoTClient 16:deba40344375 100 * @brief Returns the null terminated string stored in the message.
AzureIoTClient 16:deba40344375 101 * If the content type of the message is not @c IOTHUBMESSAGE_STRING
AzureIoTClient 16:deba40344375 102 * then the function returns @c NULL.
AzureIoTClient 16:deba40344375 103 *
AzureIoTClient 16:deba40344375 104 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 16:deba40344375 105 *
AzureIoTClient 16:deba40344375 106 * @return @c NULL if an error occurs or a pointer to the stored null
AzureIoTClient 16:deba40344375 107 * terminated string otherwise.
AzureIoTClient 16:deba40344375 108 */
AzureIoTClient 50:bbc71457b0ea 109 MOCKABLE_FUNCTION(, const char*, IoTHubMessage_GetString, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 16:deba40344375 110
AzureIoTClient 16:deba40344375 111 /**
AzureIoTClient 16:deba40344375 112 * @brief Returns the content type of the message given by parameter
AzureIoTClient 16:deba40344375 113 * @c iotHubMessageHandle.
AzureIoTClient 16:deba40344375 114 *
AzureIoTClient 16:deba40344375 115 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 16:deba40344375 116 *
AzureIoTClient 16:deba40344375 117 * @return An @c IOTHUBMESSAGE_CONTENT_TYPE value.
AzureIoTClient 16:deba40344375 118 */
AzureIoTClient 50:bbc71457b0ea 119 MOCKABLE_FUNCTION(, IOTHUBMESSAGE_CONTENT_TYPE, IoTHubMessage_GetContentType, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 16:deba40344375 120
AzureIoTClient 16:deba40344375 121 /**
AzureIoTClient 16:deba40344375 122 * @brief Gets a handle to the message's properties map.
AzureIoTClient 16:deba40344375 123 *
AzureIoTClient 16:deba40344375 124 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 16:deba40344375 125 *
AzureIoTClient 16:deba40344375 126 * @return A @c MAP_HANDLE pointing to the properties map for this message.
AzureIoTClient 16:deba40344375 127 */
AzureIoTClient 50:bbc71457b0ea 128 MOCKABLE_FUNCTION(, MAP_HANDLE, IoTHubMessage_Properties, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 16:deba40344375 129
AzureIoTClient 16:deba40344375 130 /**
AzureIoTClient 18:1e9adb15c645 131 * @brief Gets the MessageId from the IOTHUB_MESSAGE_HANDLE.
AzureIoTClient 18:1e9adb15c645 132 *
AzureIoTClient 18:1e9adb15c645 133 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 18:1e9adb15c645 134 *
AzureIoTClient 18:1e9adb15c645 135 * @return A const char* pointing to the Message Id.
AzureIoTClient 18:1e9adb15c645 136 */
AzureIoTClient 50:bbc71457b0ea 137 MOCKABLE_FUNCTION(, const char*, IoTHubMessage_GetMessageId, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 18:1e9adb15c645 138
AzureIoTClient 18:1e9adb15c645 139 /**
AzureIoTClient 18:1e9adb15c645 140 * @brief Sets the MessageId for the IOTHUB_MESSAGE_HANDLE.
AzureIoTClient 18:1e9adb15c645 141 *
AzureIoTClient 18:1e9adb15c645 142 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 18:1e9adb15c645 143 * @param messageId Pointer to the memory location of the messageId
AzureIoTClient 18:1e9adb15c645 144 *
AzureIoTClient 18:1e9adb15c645 145 * @return Returns IOTHUB_MESSAGE_OK if the messageId was set successfully
AzureIoTClient 18:1e9adb15c645 146 * or an error code otherwise.
AzureIoTClient 18:1e9adb15c645 147 */
AzureIoTClient 50:bbc71457b0ea 148 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_RESULT, IoTHubMessage_SetMessageId, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle, const char*, messageId);
AzureIoTClient 18:1e9adb15c645 149
AzureIoTClient 18:1e9adb15c645 150 /**
AzureIoTClient 18:1e9adb15c645 151 * @brief Gets the CorrelationId from the IOTHUB_MESSAGE_HANDLE.
AzureIoTClient 18:1e9adb15c645 152 *
AzureIoTClient 18:1e9adb15c645 153 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 18:1e9adb15c645 154 *
AzureIoTClient 18:1e9adb15c645 155 * @return A const char* pointing to the Correlation Id.
AzureIoTClient 18:1e9adb15c645 156 */
AzureIoTClient 50:bbc71457b0ea 157 MOCKABLE_FUNCTION(, const char*, IoTHubMessage_GetCorrelationId, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 18:1e9adb15c645 158
AzureIoTClient 18:1e9adb15c645 159 /**
AzureIoTClient 18:1e9adb15c645 160 * @brief Sets the CorrelationId for the IOTHUB_MESSAGE_HANDLE.
AzureIoTClient 18:1e9adb15c645 161 *
AzureIoTClient 18:1e9adb15c645 162 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 18:1e9adb15c645 163 * @param correlationId Pointer to the memory location of the messageId
AzureIoTClient 18:1e9adb15c645 164 *
AzureIoTClient 18:1e9adb15c645 165 * @return Returns IOTHUB_MESSAGE_OK if the messageId was set successfully
AzureIoTClient 18:1e9adb15c645 166 * or an error code otherwise.
AzureIoTClient 18:1e9adb15c645 167 */
AzureIoTClient 50:bbc71457b0ea 168 MOCKABLE_FUNCTION(, IOTHUB_MESSAGE_RESULT, IoTHubMessage_SetCorrelationId, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle, const char*, correlationId);
AzureIoTClient 18:1e9adb15c645 169
AzureIoTClient 18:1e9adb15c645 170 /**
AzureIoTClient 16:deba40344375 171 * @brief Frees all resources associated with the given message handle.
AzureIoTClient 16:deba40344375 172 *
AzureIoTClient 16:deba40344375 173 * @param iotHubMessageHandle Handle to the message.
AzureIoTClient 16:deba40344375 174 */
AzureIoTClient 50:bbc71457b0ea 175 MOCKABLE_FUNCTION(, void, IoTHubMessage_Destroy, IOTHUB_MESSAGE_HANDLE, iotHubMessageHandle);
AzureIoTClient 16:deba40344375 176
AzureIoTClient 16:deba40344375 177 #ifdef __cplusplus
AzureIoTClient 16:deba40344375 178 }
AzureIoTClient 16:deba40344375 179 #endif
AzureIoTClient 16:deba40344375 180
AzureIoTClient 16:deba40344375 181 #endif /* IOTHUB_MESSAGE_H */