[ADD] libpaho-mqtt
This commit is contained in:
parent
96e322cd6c
commit
22cdf9938d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,277 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2009, 2020 IBM Corp.
|
||||
*
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v2.0
|
||||
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
||||
*
|
||||
* The Eclipse Public License is available at
|
||||
* https://www.eclipse.org/legal/epl-2.0/
|
||||
* and the Eclipse Distribution License is available at
|
||||
* http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
*
|
||||
* Contributors:
|
||||
* Ian Craggs - initial API and implementation and/or initial documentation
|
||||
*******************************************************************************/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* \brief This structure represents a persistent data store, used to store
|
||||
* outbound and inbound messages, in order to achieve reliable messaging.
|
||||
*
|
||||
* The MQTT Client persists QoS1 and QoS2 messages in order to meet the
|
||||
* assurances of delivery associated with these @ref qos levels. The messages
|
||||
* are saved in persistent storage
|
||||
* The type and context of the persistence implementation are specified when
|
||||
* the MQTT client is created (see MQTTClient_create()). The default
|
||||
* persistence type (::MQTTCLIENT_PERSISTENCE_DEFAULT) uses a file system-based
|
||||
* persistence mechanism. The <i>persistence_context</i> argument passed to
|
||||
* MQTTClient_create() when using the default peristence is a string
|
||||
* representing the location of the persistence directory. If the context
|
||||
* argument is NULL, the working directory will be used.
|
||||
*
|
||||
* To use memory-based persistence, an application passes
|
||||
* ::MQTTCLIENT_PERSISTENCE_NONE as the <i>persistence_type</i> to
|
||||
* MQTTClient_create(). This can lead to message loss in certain situations,
|
||||
* but can be appropriate in some cases (see @ref qos).
|
||||
*
|
||||
* Client applications can provide their own persistence mechanism by passing
|
||||
* ::MQTTCLIENT_PERSISTENCE_USER as the <i>persistence_type</i>. To implement a
|
||||
* custom persistence mechanism, the application must pass an initialized
|
||||
* ::MQTTClient_persistence structure as the <i>persistence_context</i>
|
||||
* argument to MQTTClient_create().
|
||||
*
|
||||
* If the functions defined return an ::MQTTCLIENT_PERSISTENCE_ERROR then the
|
||||
* state of the persisted data should remain as it was prior to the function
|
||||
* being called. For example, if Persistence_put() returns
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR, then it is assumed tha tthe persistent store
|
||||
* does not contain the data that was passed to the function. Similarly, if
|
||||
* Persistence_remove() returns ::MQTTCLIENT_PERSISTENCE_ERROR then it is
|
||||
* assumed that the data to be removed is still held in the persistent store.
|
||||
*
|
||||
* It is up to the persistence implementation to log any error information that
|
||||
* may be required to diagnose a persistence mechanism failure.
|
||||
*/
|
||||
|
||||
/*
|
||||
/// @cond EXCLUDE
|
||||
*/
|
||||
#if !defined(MQTTCLIENTPERSISTENCE_H)
|
||||
#define MQTTCLIENTPERSISTENCE_H
|
||||
/*
|
||||
/// @endcond
|
||||
*/
|
||||
|
||||
/**
|
||||
* This <i>persistence_type</i> value specifies the default file system-based
|
||||
* persistence mechanism (see MQTTClient_create()).
|
||||
*/
|
||||
#define MQTTCLIENT_PERSISTENCE_DEFAULT 0
|
||||
/**
|
||||
* This <i>persistence_type</i> value specifies a memory-based
|
||||
* persistence mechanism (see MQTTClient_create()).
|
||||
*/
|
||||
#define MQTTCLIENT_PERSISTENCE_NONE 1
|
||||
/**
|
||||
* This <i>persistence_type</i> value specifies an application-specific
|
||||
* persistence mechanism (see MQTTClient_create()).
|
||||
*/
|
||||
#define MQTTCLIENT_PERSISTENCE_USER 2
|
||||
|
||||
/**
|
||||
* Application-specific persistence functions must return this error code if
|
||||
* there is a problem executing the function.
|
||||
*/
|
||||
#define MQTTCLIENT_PERSISTENCE_ERROR -2
|
||||
|
||||
/**
|
||||
* @brief Initialize the persistent store.
|
||||
*
|
||||
* Either open the existing persistent store for this client ID or create a new
|
||||
* one if one doesn't exist. If the persistent store is already open, return
|
||||
* without taking any action.
|
||||
*
|
||||
* An application can use the same client identifier to connect to many
|
||||
* different servers. The <i>clientid</i> in conjunction with the
|
||||
* <i>serverURI</i> uniquely identifies the persistence store required.
|
||||
*
|
||||
* @param handle The address of a pointer to a handle for this persistence
|
||||
* implementation. This function must set handle to a valid reference to the
|
||||
* persistence following a successful return.
|
||||
* The handle pointer is passed as an argument to all the other
|
||||
* persistence functions. It may include the context parameter and/or any other
|
||||
* data for use by the persistence functions.
|
||||
* @param clientID The client identifier for which the persistent store should
|
||||
* be opened.
|
||||
* @param serverURI The connection string specified when the MQTT client was
|
||||
* created (see MQTTClient_create()).
|
||||
* @param context A pointer to any data required to initialize the persistent
|
||||
* store (see ::MQTTClient_persistence).
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_open)(void** handle, const char* clientID, const char* serverURI, void* context);
|
||||
|
||||
/**
|
||||
* @brief Close the persistent store referred to by the handle.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_close)(void* handle);
|
||||
|
||||
/**
|
||||
* @brief Put the specified data into the persistent store.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @param key A string used as the key for the data to be put in the store. The
|
||||
* key is later used to retrieve data from the store with Persistence_get().
|
||||
* @param bufcount The number of buffers to write to the persistence store.
|
||||
* @param buffers An array of pointers to the data buffers associated with
|
||||
* this <i>key</i>.
|
||||
* @param buflens An array of lengths of the data buffers. <i>buflen[n]</i>
|
||||
* gives the length of <i>buffer[n]</i>.
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_put)(void* handle, char* key, int bufcount, char* buffers[], int buflens[]);
|
||||
|
||||
/**
|
||||
* @brief Retrieve the specified data from the persistent store.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @param key A string that is the key for the data to be retrieved. This is
|
||||
* the same key used to save the data to the store with Persistence_put().
|
||||
* @param buffer The address of a pointer to a buffer. This function sets the
|
||||
* pointer to point at the retrieved data, if successful.
|
||||
* @param buflen The address of an int that is set to the length of
|
||||
* <i>buffer</i> by this function if successful.
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_get)(void* handle, char* key, char** buffer, int* buflen);
|
||||
|
||||
/**
|
||||
* @brief Remove the data for the specified key from the store.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @param key A string that is the key for the data to be removed from the
|
||||
* store. This is the same key used to save the data to the store with
|
||||
* Persistence_put().
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_remove)(void* handle, char* key);
|
||||
|
||||
/**
|
||||
* @brief Returns the keys in this persistent data store.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @param keys The address of a pointer to pointers to strings. Assuming
|
||||
* successful execution, this function allocates memory to hold the returned
|
||||
* keys (strings used to store the data with Persistence_put()). It also
|
||||
* allocates memory to hold an array of pointers to these strings. <i>keys</i>
|
||||
* is set to point to the array of pointers to strings.
|
||||
* @param nkeys A pointer to the number of keys in this persistent data store.
|
||||
* This function sets the number of keys, if successful.
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_keys)(void* handle, char*** keys, int* nkeys);
|
||||
|
||||
/**
|
||||
* @brief Clears the persistence store, so that it no longer contains any
|
||||
* persisted data.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @return Return 0 if the function completes successfully, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_clear)(void* handle);
|
||||
|
||||
/**
|
||||
* @brief Returns whether any data has been persisted using the specified key.
|
||||
*
|
||||
* @param handle The handle pointer from a successful call to
|
||||
* Persistence_open().
|
||||
* @param key The string to be tested for existence in the store.
|
||||
* @return Return 0 if the key was found in the store, otherwise return
|
||||
* ::MQTTCLIENT_PERSISTENCE_ERROR.
|
||||
*/
|
||||
typedef int (*Persistence_containskey)(void* handle, char* key);
|
||||
|
||||
/**
|
||||
* @brief A structure containing the function pointers to a persistence
|
||||
* implementation and the context or state that will be shared across all
|
||||
* the persistence functions.
|
||||
*/
|
||||
typedef struct {
|
||||
/**
|
||||
* A pointer to any data required to initialize the persistent store.
|
||||
*/
|
||||
void* context;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_open().
|
||||
*/
|
||||
Persistence_open popen;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_close().
|
||||
*/
|
||||
Persistence_close pclose;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_put().
|
||||
*/
|
||||
Persistence_put pput;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_get().
|
||||
*/
|
||||
Persistence_get pget;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_remove().
|
||||
*/
|
||||
Persistence_remove premove;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_keys().
|
||||
*/
|
||||
Persistence_keys pkeys;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_clear().
|
||||
*/
|
||||
Persistence_clear pclear;
|
||||
/**
|
||||
* A function pointer to an implementation of Persistence_containskey().
|
||||
*/
|
||||
Persistence_containskey pcontainskey;
|
||||
} MQTTClient_persistence;
|
||||
|
||||
|
||||
/**
|
||||
* A callback which is invoked just before a write to persistence. This can be
|
||||
* used to transform the data, for instance to encrypt it.
|
||||
* @param context The context as set in ::MQTTAsync_setBeforePersistenceWrite
|
||||
* @param bufcount The number of buffers to write to the persistence store.
|
||||
* @param buffers An array of pointers to the data buffers.
|
||||
* @param buflens An array of lengths of the data buffers.
|
||||
* @return Return 0 if the function completes successfully, otherwise non 0.
|
||||
*/
|
||||
typedef int MQTTPersistence_beforeWrite(void* context, int bufcount, char* buffers[], int buflens[]);
|
||||
|
||||
|
||||
/**
|
||||
* A callback which is invoked just after a read from persistence. This can be
|
||||
* used to transform the data, for instance to decrypt it.
|
||||
* @param context The context as set in ::MQTTAsync_setAfterPersistenceRead
|
||||
* @param buffer The address of a pointer to a buffer.
|
||||
* @param buflen The address of an int that is the length of the buffer.
|
||||
* @return Return 0 if the function completes successfully, otherwise non 0.
|
||||
*/
|
||||
typedef int MQTTPersistence_afterRead(void* context, char** buffer, int* buflen);
|
||||
|
||||
#endif
|
|
@ -0,0 +1,36 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2020, 2020 Andreas Walter
|
||||
*
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v2.0
|
||||
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
||||
*
|
||||
* The Eclipse Public License is available at
|
||||
* https://www.eclipse.org/legal/epl-2.0/
|
||||
* and the Eclipse Distribution License is available at
|
||||
* http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
*
|
||||
* Contributors:
|
||||
* Andreas Walter - initially moved export declarations into separate fle
|
||||
*******************************************************************************/
|
||||
|
||||
#if !defined(EXPORTDECLARATIONS_H)
|
||||
#define EXPORTDECLARATIONS_H
|
||||
|
||||
#if defined(_WIN32) || defined(_WIN64)
|
||||
# if defined(PAHO_MQTT_EXPORTS)
|
||||
# define LIBMQTT_API __declspec(dllexport)
|
||||
# elif defined(PAHO_MQTT_IMPORTS)
|
||||
# define LIBMQTT_API __declspec(dllimport)
|
||||
# else
|
||||
# define LIBMQTT_API
|
||||
# endif
|
||||
#else
|
||||
# if defined(PAHO_MQTT_EXPORTS)
|
||||
# define LIBMQTT_API __attribute__ ((visibility ("default")))
|
||||
# else
|
||||
# define LIBMQTT_API extern
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#endif
|
|
@ -0,0 +1,222 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2017, 2023 IBM Corp. and others
|
||||
*
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v2.0
|
||||
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
||||
*
|
||||
* The Eclipse Public License is available at
|
||||
* https://www.eclipse.org/legal/epl-2.0/
|
||||
* and the Eclipse Distribution License is available at
|
||||
* http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
*
|
||||
* Contributors:
|
||||
* Ian Craggs - initial API and implementation and/or initial documentation
|
||||
*******************************************************************************/
|
||||
|
||||
#if !defined(MQTTPROPERTIES_H)
|
||||
#define MQTTPROPERTIES_H
|
||||
|
||||
#include "MQTTExportDeclarations.h"
|
||||
|
||||
#define MQTT_INVALID_PROPERTY_ID -2
|
||||
|
||||
/** The one byte MQTT V5 property indicator */
|
||||
enum MQTTPropertyCodes {
|
||||
MQTTPROPERTY_CODE_PAYLOAD_FORMAT_INDICATOR = 1, /**< The value is 1 */
|
||||
MQTTPROPERTY_CODE_MESSAGE_EXPIRY_INTERVAL = 2, /**< The value is 2 */
|
||||
MQTTPROPERTY_CODE_CONTENT_TYPE = 3, /**< The value is 3 */
|
||||
MQTTPROPERTY_CODE_RESPONSE_TOPIC = 8, /**< The value is 8 */
|
||||
MQTTPROPERTY_CODE_CORRELATION_DATA = 9, /**< The value is 9 */
|
||||
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIER = 11, /**< The value is 11 */
|
||||
MQTTPROPERTY_CODE_SESSION_EXPIRY_INTERVAL = 17, /**< The value is 17 */
|
||||
MQTTPROPERTY_CODE_ASSIGNED_CLIENT_IDENTIFER = 18,/**< The value is 18 */
|
||||
MQTTPROPERTY_CODE_SERVER_KEEP_ALIVE = 19, /**< The value is 19 */
|
||||
MQTTPROPERTY_CODE_AUTHENTICATION_METHOD = 21, /**< The value is 21 */
|
||||
MQTTPROPERTY_CODE_AUTHENTICATION_DATA = 22, /**< The value is 22 */
|
||||
MQTTPROPERTY_CODE_REQUEST_PROBLEM_INFORMATION = 23,/**< The value is 23 */
|
||||
MQTTPROPERTY_CODE_WILL_DELAY_INTERVAL = 24, /**< The value is 24 */
|
||||
MQTTPROPERTY_CODE_REQUEST_RESPONSE_INFORMATION = 25,/**< The value is 25 */
|
||||
MQTTPROPERTY_CODE_RESPONSE_INFORMATION = 26, /**< The value is 26 */
|
||||
MQTTPROPERTY_CODE_SERVER_REFERENCE = 28, /**< The value is 28 */
|
||||
MQTTPROPERTY_CODE_REASON_STRING = 31, /**< The value is 31 */
|
||||
MQTTPROPERTY_CODE_RECEIVE_MAXIMUM = 33, /**< The value is 33*/
|
||||
MQTTPROPERTY_CODE_TOPIC_ALIAS_MAXIMUM = 34, /**< The value is 34 */
|
||||
MQTTPROPERTY_CODE_TOPIC_ALIAS = 35, /**< The value is 35 */
|
||||
MQTTPROPERTY_CODE_MAXIMUM_QOS = 36, /**< The value is 36 */
|
||||
MQTTPROPERTY_CODE_RETAIN_AVAILABLE = 37, /**< The value is 37 */
|
||||
MQTTPROPERTY_CODE_USER_PROPERTY = 38, /**< The value is 38 */
|
||||
MQTTPROPERTY_CODE_MAXIMUM_PACKET_SIZE = 39, /**< The value is 39 */
|
||||
MQTTPROPERTY_CODE_WILDCARD_SUBSCRIPTION_AVAILABLE = 40,/**< The value is 40 */
|
||||
MQTTPROPERTY_CODE_SUBSCRIPTION_IDENTIFIERS_AVAILABLE = 41,/**< The value is 41 */
|
||||
MQTTPROPERTY_CODE_SHARED_SUBSCRIPTION_AVAILABLE = 42/**< The value is 241 */
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns a printable string description of an MQTT V5 property code.
|
||||
* @param value an MQTT V5 property code.
|
||||
* @return the printable string description of the input property code.
|
||||
* NULL if the code was not found.
|
||||
*/
|
||||
LIBMQTT_API const char* MQTTPropertyName(enum MQTTPropertyCodes value);
|
||||
|
||||
/** The one byte MQTT V5 property type */
|
||||
enum MQTTPropertyTypes {
|
||||
MQTTPROPERTY_TYPE_BYTE,
|
||||
MQTTPROPERTY_TYPE_TWO_BYTE_INTEGER,
|
||||
MQTTPROPERTY_TYPE_FOUR_BYTE_INTEGER,
|
||||
MQTTPROPERTY_TYPE_VARIABLE_BYTE_INTEGER,
|
||||
MQTTPROPERTY_TYPE_BINARY_DATA,
|
||||
MQTTPROPERTY_TYPE_UTF_8_ENCODED_STRING,
|
||||
MQTTPROPERTY_TYPE_UTF_8_STRING_PAIR
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns the MQTT V5 type code of an MQTT V5 property.
|
||||
* @param value an MQTT V5 property code.
|
||||
* @return the MQTT V5 type code of the input property. -1 if the code was not found.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperty_getType(enum MQTTPropertyCodes value);
|
||||
|
||||
/**
|
||||
* The data for a length delimited string
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
int len; /**< the length of the string */
|
||||
char* data; /**< pointer to the string data */
|
||||
} MQTTLenString;
|
||||
|
||||
|
||||
/**
|
||||
* Structure to hold an MQTT version 5 property of any type
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
enum MQTTPropertyCodes identifier; /**< The MQTT V5 property id. A multi-byte integer. */
|
||||
/** The value of the property, as a union of the different possible types. */
|
||||
union {
|
||||
unsigned char byte; /**< holds the value of a byte property type */
|
||||
unsigned short integer2; /**< holds the value of a 2 byte integer property type */
|
||||
unsigned int integer4; /**< holds the value of a 4 byte integer property type */
|
||||
struct {
|
||||
MQTTLenString data; /**< The value of a string property, or the name of a user property. */
|
||||
MQTTLenString value; /**< The value of a user property. */
|
||||
};
|
||||
} value;
|
||||
} MQTTProperty;
|
||||
|
||||
/**
|
||||
* MQTT version 5 property list
|
||||
*/
|
||||
typedef struct MQTTProperties
|
||||
{
|
||||
int count; /**< number of property entries in the array */
|
||||
int max_count; /**< max number of properties that the currently allocated array can store */
|
||||
int length; /**< mbi: byte length of all properties */
|
||||
MQTTProperty *array; /**< array of properties */
|
||||
} MQTTProperties;
|
||||
|
||||
#define MQTTProperties_initializer {0, 0, 0, NULL}
|
||||
|
||||
/**
|
||||
* Returns the length of the properties structure when serialized ready for network transmission.
|
||||
* @param props an MQTT V5 property structure.
|
||||
* @return the length in bytes of the properties when serialized.
|
||||
*/
|
||||
int MQTTProperties_len(MQTTProperties* props);
|
||||
|
||||
/**
|
||||
* Add a property pointer to the property array. Memory is allocated in this function,
|
||||
* so MQTTClient_create or MQTTAsync_create must be called first to initialize the
|
||||
* internal heap tracking. Alternatively MQTTAsync_global_init() can be called first
|
||||
* or build with the HIGH_PERFORMANCE option which disables the heap tracking.
|
||||
* @param props The property list to add the property to.
|
||||
* @param prop The property to add to the list.
|
||||
* @return 0 on success, -1 on failure.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperties_add(MQTTProperties* props, const MQTTProperty* prop);
|
||||
|
||||
/**
|
||||
* Serialize the given property list to a character buffer, e.g. for writing to the network.
|
||||
* @param pptr pointer to the buffer - move the pointer as we add data
|
||||
* @param properties pointer to the property list, can be NULL
|
||||
* @return whether the write succeeded or not: number of bytes written, or < 0 on failure.
|
||||
*/
|
||||
int MQTTProperties_write(char** pptr, const MQTTProperties* properties);
|
||||
|
||||
/**
|
||||
* Reads a property list from a character buffer into an array.
|
||||
* @param properties pointer to the property list to be filled. Should be initalized but empty.
|
||||
* @param pptr pointer to the character buffer.
|
||||
* @param enddata pointer to the end of the character buffer so we don't read beyond.
|
||||
* @return 1 if the properties were read successfully.
|
||||
*/
|
||||
int MQTTProperties_read(MQTTProperties* properties, char** pptr, char* enddata);
|
||||
|
||||
/**
|
||||
* Free all memory allocated to the property list, including any to individual properties.
|
||||
* @param properties pointer to the property list.
|
||||
*/
|
||||
LIBMQTT_API void MQTTProperties_free(MQTTProperties* properties);
|
||||
|
||||
/**
|
||||
* Copy the contents of a property list, allocating additional memory if needed.
|
||||
* @param props pointer to the property list.
|
||||
* @return the duplicated property list.
|
||||
*/
|
||||
LIBMQTT_API MQTTProperties MQTTProperties_copy(const MQTTProperties* props);
|
||||
|
||||
/**
|
||||
* Checks if property list contains a specific property.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @return 1 if found, 0 if not.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperties_hasProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
|
||||
|
||||
/**
|
||||
* Returns the number of instances of a property id. Most properties can exist only once.
|
||||
* User properties and subscription ids can exist more than once.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @return the number of times found. Can be 0.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperties_propertyCount(MQTTProperties *props, enum MQTTPropertyCodes propid);
|
||||
|
||||
/**
|
||||
* Returns the integer value of a specific property. The property given must be a numeric type.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @return the integer value of the property. -9999999 on failure.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperties_getNumericValue(MQTTProperties *props, enum MQTTPropertyCodes propid);
|
||||
|
||||
/**
|
||||
* Returns the integer value of a specific property when it's not the only instance.
|
||||
* The property given must be a numeric type.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @param index the instance number, starting at 0.
|
||||
* @return the integer value of the property. -9999999 on failure.
|
||||
*/
|
||||
LIBMQTT_API int MQTTProperties_getNumericValueAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
|
||||
|
||||
/**
|
||||
* Returns a pointer to the property structure for a specific property.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @return the pointer to the property structure if found. NULL if not found.
|
||||
*/
|
||||
LIBMQTT_API MQTTProperty* MQTTProperties_getProperty(MQTTProperties *props, enum MQTTPropertyCodes propid);
|
||||
|
||||
/**
|
||||
* Returns a pointer to the property structure for a specific property when it's not the only instance.
|
||||
* @param props pointer to the property list.
|
||||
* @param propid the property id to check for.
|
||||
* @param index the instance number, starting at 0.
|
||||
* @return the pointer to the property structure if found. NULL if not found.
|
||||
*/
|
||||
LIBMQTT_API MQTTProperty* MQTTProperties_getPropertyAt(MQTTProperties *props, enum MQTTPropertyCodes propid, int index);
|
||||
|
||||
#endif /* MQTTPROPERTIES_H */
|
|
@ -0,0 +1,79 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2017, 2020 IBM Corp. and others
|
||||
*
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v2.0
|
||||
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
||||
*
|
||||
* The Eclipse Public License is available at
|
||||
* https://www.eclipse.org/legal/epl-2.0/
|
||||
* and the Eclipse Distribution License is available at
|
||||
* http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
*
|
||||
* Contributors:
|
||||
* Ian Craggs - initial API and implementation and/or initial documentation
|
||||
*******************************************************************************/
|
||||
|
||||
#if !defined(MQTTREASONCODES_H)
|
||||
#define MQTTREASONCODES_H
|
||||
|
||||
#include "MQTTExportDeclarations.h"
|
||||
|
||||
/** The MQTT V5 one byte reason code */
|
||||
enum MQTTReasonCodes {
|
||||
MQTTREASONCODE_SUCCESS = 0,
|
||||
MQTTREASONCODE_NORMAL_DISCONNECTION = 0,
|
||||
MQTTREASONCODE_GRANTED_QOS_0 = 0,
|
||||
MQTTREASONCODE_GRANTED_QOS_1 = 1,
|
||||
MQTTREASONCODE_GRANTED_QOS_2 = 2,
|
||||
MQTTREASONCODE_DISCONNECT_WITH_WILL_MESSAGE = 4,
|
||||
MQTTREASONCODE_NO_MATCHING_SUBSCRIBERS = 16,
|
||||
MQTTREASONCODE_NO_SUBSCRIPTION_FOUND = 17,
|
||||
MQTTREASONCODE_CONTINUE_AUTHENTICATION = 24,
|
||||
MQTTREASONCODE_RE_AUTHENTICATE = 25,
|
||||
MQTTREASONCODE_UNSPECIFIED_ERROR = 128,
|
||||
MQTTREASONCODE_MALFORMED_PACKET = 129,
|
||||
MQTTREASONCODE_PROTOCOL_ERROR = 130,
|
||||
MQTTREASONCODE_IMPLEMENTATION_SPECIFIC_ERROR = 131,
|
||||
MQTTREASONCODE_UNSUPPORTED_PROTOCOL_VERSION = 132,
|
||||
MQTTREASONCODE_CLIENT_IDENTIFIER_NOT_VALID = 133,
|
||||
MQTTREASONCODE_BAD_USER_NAME_OR_PASSWORD = 134,
|
||||
MQTTREASONCODE_NOT_AUTHORIZED = 135,
|
||||
MQTTREASONCODE_SERVER_UNAVAILABLE = 136,
|
||||
MQTTREASONCODE_SERVER_BUSY = 137,
|
||||
MQTTREASONCODE_BANNED = 138,
|
||||
MQTTREASONCODE_SERVER_SHUTTING_DOWN = 139,
|
||||
MQTTREASONCODE_BAD_AUTHENTICATION_METHOD = 140,
|
||||
MQTTREASONCODE_KEEP_ALIVE_TIMEOUT = 141,
|
||||
MQTTREASONCODE_SESSION_TAKEN_OVER = 142,
|
||||
MQTTREASONCODE_TOPIC_FILTER_INVALID = 143,
|
||||
MQTTREASONCODE_TOPIC_NAME_INVALID = 144,
|
||||
MQTTREASONCODE_PACKET_IDENTIFIER_IN_USE = 145,
|
||||
MQTTREASONCODE_PACKET_IDENTIFIER_NOT_FOUND = 146,
|
||||
MQTTREASONCODE_RECEIVE_MAXIMUM_EXCEEDED = 147,
|
||||
MQTTREASONCODE_TOPIC_ALIAS_INVALID = 148,
|
||||
MQTTREASONCODE_PACKET_TOO_LARGE = 149,
|
||||
MQTTREASONCODE_MESSAGE_RATE_TOO_HIGH = 150,
|
||||
MQTTREASONCODE_QUOTA_EXCEEDED = 151,
|
||||
MQTTREASONCODE_ADMINISTRATIVE_ACTION = 152,
|
||||
MQTTREASONCODE_PAYLOAD_FORMAT_INVALID = 153,
|
||||
MQTTREASONCODE_RETAIN_NOT_SUPPORTED = 154,
|
||||
MQTTREASONCODE_QOS_NOT_SUPPORTED = 155,
|
||||
MQTTREASONCODE_USE_ANOTHER_SERVER = 156,
|
||||
MQTTREASONCODE_SERVER_MOVED = 157,
|
||||
MQTTREASONCODE_SHARED_SUBSCRIPTIONS_NOT_SUPPORTED = 158,
|
||||
MQTTREASONCODE_CONNECTION_RATE_EXCEEDED = 159,
|
||||
MQTTREASONCODE_MAXIMUM_CONNECT_TIME = 160,
|
||||
MQTTREASONCODE_SUBSCRIPTION_IDENTIFIERS_NOT_SUPPORTED = 161,
|
||||
MQTTREASONCODE_WILDCARD_SUBSCRIPTIONS_NOT_SUPPORTED = 162
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns a printable string description of an MQTT V5 reason code.
|
||||
* @param value an MQTT V5 reason code.
|
||||
* @return the printable string description of the input reason code.
|
||||
* NULL if the code was not found.
|
||||
*/
|
||||
LIBMQTT_API const char* MQTTReasonCode_toString(enum MQTTReasonCodes value);
|
||||
|
||||
#endif
|
|
@ -0,0 +1,46 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2018 IBM Corp.
|
||||
*
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v2.0
|
||||
* and Eclipse Distribution License v1.0 which accompany this distribution.
|
||||
*
|
||||
* The Eclipse Public License is available at
|
||||
* https://www.eclipse.org/legal/epl-2.0/
|
||||
* and the Eclipse Distribution License is available at
|
||||
* http://www.eclipse.org/org/documents/edl-v10.php.
|
||||
*
|
||||
* Contributors:
|
||||
* Ian Craggs - initial API and implementation and/or initial documentation
|
||||
*******************************************************************************/
|
||||
|
||||
#if !defined(SUBOPTS_H)
|
||||
#define SUBOPTS_H
|
||||
|
||||
/** The MQTT V5 subscribe options, apart from QoS which existed before V5. */
|
||||
typedef struct MQTTSubscribe_options
|
||||
{
|
||||
/** The eyecatcher for this structure. Must be MQSO. */
|
||||
char struct_id[4];
|
||||
/** The version number of this structure. Must be 0.
|
||||
*/
|
||||
int struct_version;
|
||||
/** To not receive our own publications, set to 1.
|
||||
* 0 is the original MQTT behaviour - all messages matching the subscription are received.
|
||||
*/
|
||||
unsigned char noLocal;
|
||||
/** To keep the retain flag as on the original publish message, set to 1.
|
||||
* If 0, defaults to the original MQTT behaviour where the retain flag is only set on
|
||||
* publications sent by a broker if in response to a subscribe request.
|
||||
*/
|
||||
unsigned char retainAsPublished;
|
||||
/** 0 - send retained messages at the time of the subscribe (original MQTT behaviour)
|
||||
* 1 - send retained messages on subscribe only if the subscription is new
|
||||
* 2 - do not send retained messages at all
|
||||
*/
|
||||
unsigned char retainHandling;
|
||||
} MQTTSubscribe_options;
|
||||
|
||||
#define MQTTSubscribe_options_initializer { {'M', 'Q', 'S', 'O'}, 0, 0, 0, 0 }
|
||||
|
||||
#endif
|
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3a.so.1
|
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3a.so.1.3
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3as.so.1
|
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3as.so.1.3
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3c.so.1
|
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3c.so.1.3
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3cs.so.1
|
|
@ -0,0 +1 @@
|
|||
libpaho-mqtt3cs.so.1.3
|
Binary file not shown.
|
@ -0,0 +1,199 @@
|
|||
.TH PAHO_C_PUB 1L "31 July 2018 (v1.3.0)" http://eclipse.org/paho
|
||||
|
||||
.SH NAME
|
||||
paho_c_pub \- send (publish) data to an MQTT server
|
||||
|
||||
.SH SYNOPSIS
|
||||
.B paho_c_pub
|
||||
[\fItopic\fR]
|
||||
[\fB\-t\fR|\fB\-\-topic\fR \fItopic\fR]
|
||||
[\fB\-c\fR|\fB\-\-connection\fR \fIconnection\fR]
|
||||
[\fB\-h\fR|\fB\-\-host\fR \fIhostname\fR]
|
||||
[\fB\-p\fR|\fB\-\-port\fR \fIportnumber\fR]
|
||||
[\fB\-i\fR|\fB\-\-clientid\fR \fIclientid\fR]
|
||||
[\fB\-u\fR|\fB\-\-username\fR \fIusername\fR]
|
||||
[\fB\-P\fR|\fB\-\-password\fR \fIpassword\fR]
|
||||
[\fB\-k\fR|\fB\-\-keepalive\fR \fIkeepalive-timeout\fR]
|
||||
[\fB\-V\fR|\fB\-\-MQTT-version\fR \fB31\fR|\fB311\fR|\fB5\fR]
|
||||
.br
|
||||
[\fB\-q\fR|\fB\-\-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
[\fB\-r\fR|\fB\-\-retained\fR]
|
||||
[\fB\-n\fR|\fB\-\-null-message\fR]
|
||||
[\fB\-m\fR|\fB\-\-message\fR \fImessage\fR]
|
||||
[\fB\-f\fR|\fB\-\-filename\fR \fIfilename\fR]
|
||||
[\fB\-\-delimiter\fR \fIdelimiter\fR]
|
||||
[\fB\-\-maxdatalen\fR \fImaxdatalen\fR]
|
||||
.br
|
||||
[\fB\-\-message-expiry\fR \fIexpiry-interval\fR]
|
||||
[\fB\-\-user-property\fR \fIname\fR \fIvalue\fR]
|
||||
.br
|
||||
[\fB\-\-quiet\fR]
|
||||
[\fB\-\-verbose\fR]
|
||||
[\fB\-\-trace\fR \fBmin\fR|\fBmax\fR|\fBerror\fR|\fBprotocol\fR]
|
||||
.br
|
||||
[\fB\-\-will-topic\fR \fIwill-topic\fR]
|
||||
[\fB\-\-will-payload\fR \fIwill-payload\fR]
|
||||
[\fB\-\-will-retain\fR]
|
||||
[\fB\-\-will-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
.br
|
||||
[\fB\-\-cafile\fR \fIcafile\fR]
|
||||
[\fB\-\-capath\fR \fIcapath\fR]
|
||||
[\fB\-\-cert\fR \fIcertfile\fR]
|
||||
[\fB\-\-key\fR \fIkeyfile\fR]
|
||||
[\fB\-\-keypass\fR \fIpassword\fR]
|
||||
[\fB\-\-ciphers\fR \fIcipher-string\fR]
|
||||
[\fB\-\-insecure\fR]
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
.B paho_c_pub
|
||||
sends data to an MQTT server using the Eclipse Paho C client asynchronous library (MQTTAsync).
|
||||
MQTT is a protocol, operating over TCP/IP, which allows programs to easily communicate
|
||||
with each other through a server. Messages are published to topics and delivered to any subscribers to those topics.
|
||||
The corresponding subscriber program \fBpaho_c_sub\fR allows the receipt of MQTT messages.
|
||||
.PP
|
||||
The default mode of operation is to read input from stdin, sending a separate message for each line read. Options exist
|
||||
to change this mode to send a one-off message, of 0 length (\fB-n\fR), a given string (\fB-m\fR), or the contents of a file (\fB-f\fR).
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-t
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-topic
|
||||
The MQTT topic to publish the data to.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-c
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-connection
|
||||
The MQTT URI to connect to, a combination of transport prefix, host, port and for websockets, topic.
|
||||
To connect using TCP use the tcp prefix, for example: \fBtcp://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example using SSL/TLS: \fBssl://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example for websockets, insecure: \fBws://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR\fB/\fR\fItopic\fR, and
|
||||
secure: \fBwss://\fR\fIlocalhost\fR\fB:\fR\fI80\fR\fB/\fR\fItopic\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-h
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-host
|
||||
The TCP/IP host name of the MQTT server to connect to. Along with the \fB--port\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-p
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-port
|
||||
The TCP/IP port number of the MQTT server to connect to. Along with the \fB--host\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-q
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-qos
|
||||
The MQTT QoS on which to publish the message. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-V
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-MQTTversion
|
||||
The version of the MQTT protocol to use. Valid options are \fB31\fR (or \fBmqttv31\fR), \fB311\fR (\fBmqttv311\fR) and \fB5\fR (or \fBmqttv5\fR).
|
||||
If MQTT version 5 is used, then some additional options are valid, such as \fB--message-expiry\fR and \fB--user-property\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-quiet
|
||||
Do not print error messages.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-trace
|
||||
Print library internal trace. Valid levels are \fBmin\fR, \fBmax\fR, \fBerror\fR and \fprotocol\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-r
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-retained
|
||||
Publish messages with the MQTT retained flag set.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-n
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-null-message
|
||||
Publish a 0-length message.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-m
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-message
|
||||
Publish a one off message with the payload supplied.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-f
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-filename
|
||||
Publish a one off message with the contents of the file whose name is given.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-message-expiry
|
||||
[MQTT version 5 only] Sets the expiry interval property of messages in seconds.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-user-property
|
||||
[MQTT version 5 only] Sets a user property of sent messages. A pair of strings, name and value.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-topic
|
||||
Sets the MQTT will message topic to publish to. If the application ends without sending an MQTT disconnect, the
|
||||
will message will be published to this topic.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-payload
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT will message to be published.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-qos
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT QoS at which the will message is published. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-retain
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT retained flag on the will message.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cafile
|
||||
Only used with a TLS connection. The name of a file for the OpenSSL trust store.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-capath
|
||||
Only used with a TLS connection. The name of a directory holding OpenSSL trusted certificates.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cert
|
||||
Only used with a TLS connection. The name of a file for the TLS keystore containing a client certificate to be presented.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-key
|
||||
Only used with a TLS connection. The name of a file containing the client private key.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-keypass
|
||||
Only used with a TLS connection. The password for the client private key file, if needed.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-ciphers
|
||||
Only used with a TLS connection. A list of cipher suites that the client will present to the server during the TLS handshake.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-insecure
|
||||
Only used with a TLS connection. Don't check that the server certificate common name matches the hostname.
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,170 @@
|
|||
.TH PAHO_C_SUB 1L "31 July 2018 (v1.3.0)" http://eclipse.org/paho
|
||||
|
||||
.SH NAME
|
||||
paho_c_sub \- receive (subscribe to) data from an MQTT server
|
||||
|
||||
.SH SYNOPSIS
|
||||
.B paho_c_sub
|
||||
[\fItopic\fR]
|
||||
[\fB\-t\fR|\fB\-\-topic\fR \fItopic\fR]
|
||||
[\fB\-c\fR|\fB\-\-connection\fR \fIconnection\fR]
|
||||
[\fB\-h\fR|\fB\-\-host\fR \fIhostname\fR]
|
||||
[\fB\-p\fR|\fB\-\-port\fR \fIportnumber\fR]
|
||||
[\fB\-i\fR|\fB\-\-clientid\fR \fIclientid\fR]
|
||||
[\fB\-u\fR|\fB\-\-username\fR \fIusername\fR]
|
||||
[\fB\-P\fR|\fB\-\-password\fR \fIpassword\fR]
|
||||
[\fB\-k\fR|\fB\-\-keepalive\fR \fIkeepalive-timeout\fR]
|
||||
[\fB\-V\fR|\fB\-\-MQTT-version\fR \fB31\fR|\fB311\fR|\fB5\fR]
|
||||
.br
|
||||
[\fB\-q\fR|\fB\-\-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
[\fB\-R\fR|\fB\-\-no-retained\fR]
|
||||
[\fB\-\-delimiter\fR \fIdelimiter\fR]
|
||||
[\fB\-\-no-delimiter\fR]
|
||||
.br
|
||||
[\fB\-\-quiet\fR]
|
||||
[\fB\-\-verbose\fR]
|
||||
[\fB\-\-trace\fR \fBmin\fR|\fBmax\fR|\fBerror\fR|\fBprotocol\fR]
|
||||
.br
|
||||
[\fB\-\-will-topic\fR \fIwill-topic\fR]
|
||||
[\fB\-\-will-payload\fR \fIwill-payload\fR]
|
||||
[\fB\-\-will-retain\fR]
|
||||
[\fB\-\-will-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
.br
|
||||
[\fB\-\-cafile\fR \fIcafile\fR]
|
||||
[\fB\-\-capath\fR \fIcapath\fR]
|
||||
[\fB\-\-cert\fR \fIcertfile\fR]
|
||||
[\fB\-\-key\fR \fIkeyfile\fR]
|
||||
[\fB\-\-keypass\fR \fIpassword\fR]
|
||||
[\fB\-\-ciphers\fR \fIcipher-string\fR]
|
||||
[\fB\-\-insecure\fR]
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
.B paho_c_sub
|
||||
receives data from an MQTT server using the Eclipse Paho C client asynchronous library (MQTTAsync).
|
||||
MQTT is a protocol, operating over TCP/IP, which allows programs to easily communicate
|
||||
with each other through a server. Messages are published to topics and delivered to any subscribers to those topics.
|
||||
The corresponding publisher program \fBpaho_c_pub\fR allows MQTT messages to be sent.
|
||||
.PP
|
||||
The default mode of operation is to output each message to stdout terminated by the delimiter.
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-t
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-topic
|
||||
The MQTT topic to publish the data to.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-c
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-connection
|
||||
The MQTT URI to connect to, a combination of transport prefix, host, port and for websockets, topic.
|
||||
To connect using TCP use the tcp prefix, for example: \fBtcp://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example using SSL/TLS: \fBssl://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example for websockets, insecure: \fBws://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR\fB/\fR\fItopic\fR, and
|
||||
secure: \fBwss://\fR\fIlocalhost\fR\fB:\fR\fI80\fR\fB/\fR\fItopic\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-h
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-host
|
||||
The TCP/IP host name of the MQTT server to connect to. Along with the \fB--port\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-p
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-port
|
||||
The TCP/IP port number of the MQTT server to connect to. Along with the \fB--host\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-q
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-qos
|
||||
The MQTT QoS on which to publish the message. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-V
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-MQTTversion
|
||||
The version of the MQTT protocol to use. Valid options are \fB31\fR (or \fBmqttv31\fR), \fB311\fR (\fBmqttv311\fR) and \fB5\fR (or \fBmqttv5\fR).
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-quiet
|
||||
Do not print error messages.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-trace
|
||||
Print library internal trace. Valid levels are \fBmin\fR, \fBmax\fR, \fBerror\fR and \fprotocol\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-R
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-no-retained
|
||||
Do not print messages which have the MQTT retained flag set.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-delimiter
|
||||
The delimiter string to append to each message when printing. Defaults to newline.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-no-delimiter
|
||||
Do not add a delimiter to each message when printing.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-topic
|
||||
Sets the MQTT will message topic to publish to. If the application ends without sending an MQTT disconnect, the
|
||||
will message will be published to this topic.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-payload
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT will message to be published.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-qos
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT QoS at which the will message is published. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-retain
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT retained flag on the will message.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cafile
|
||||
Only used with a TLS connection. The name of a file for the OpenSSL trust store.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-capath
|
||||
Only used with a TLS connection. The name of a directory holding OpenSSL trusted certificates.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cert
|
||||
Only used with a TLS connection. The name of a file for the TLS keystore containing a client certificate to be presented.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-key
|
||||
Only used with a TLS connection. The name of a file containing the client private key.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-keypass
|
||||
Only used with a TLS connection. The password for the client private key file, if needed.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-ciphers
|
||||
Only used with a TLS connection. A list of cipher suites that the client will present to the server during the TLS handshake.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-insecure
|
||||
Only used with a TLS connection. Don't check that the server certificate common name matches the hostname.
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,199 @@
|
|||
.TH PAHO_CS_PUB 1L "31 July 2018 (v1.3.0)" http://eclipse.org/paho
|
||||
|
||||
.SH NAME
|
||||
paho_cs_pub \- send (publish) data to an MQTT server
|
||||
|
||||
.SH SYNOPSIS
|
||||
.B paho_cs_pub
|
||||
[\fItopic\fR]
|
||||
[\fB\-t\fR|\fB\-\-topic\fR \fItopic\fR]
|
||||
[\fB\-c\fR|\fB\-\-connection\fR \fIconnection\fR]
|
||||
[\fB\-h\fR|\fB\-\-host\fR \fIhostname\fR]
|
||||
[\fB\-p\fR|\fB\-\-port\fR \fIportnumber\fR]
|
||||
[\fB\-i\fR|\fB\-\-clientid\fR \fIclientid\fR]
|
||||
[\fB\-u\fR|\fB\-\-username\fR \fIusername\fR]
|
||||
[\fB\-P\fR|\fB\-\-password\fR \fIpassword\fR]
|
||||
[\fB\-k\fR|\fB\-\-keepalive\fR \fIkeepalive-timeout\fR]
|
||||
[\fB\-V\fR|\fB\-\-MQTT-version\fR \fB31\fR|\fB311\fR|\fB5\fR]
|
||||
.br
|
||||
[\fB\-q\fR|\fB\-\-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
[\fB\-r\fR|\fB\-\-retained\fR]
|
||||
[\fB\-n\fR|\fB\-\-null-message\fR]
|
||||
[\fB\-m\fR|\fB\-\-message\fR \fImessage\fR]
|
||||
[\fB\-f\fR|\fB\-\-filename\fR \fIfilename\fR]
|
||||
[\fB\-\-delimiter\fR \fIdelimiter\fR]
|
||||
[\fB\-\-maxdatalen\fR \fImaxdatalen\fR]
|
||||
.br
|
||||
[\fB\-\-message-expiry\fR \fIexpiry-interval\fR]
|
||||
[\fB\-\-user-property\fR \fIname\fR \fIvalue\fR]
|
||||
.br
|
||||
[\fB\-\-quiet\fR]
|
||||
[\fB\-\-verbose\fR]
|
||||
[\fB\-\-trace\fR \fBmin\fR|\fBmax\fR|\fBerror\fR|\fBprotocol\fR]
|
||||
.br
|
||||
[\fB\-\-will-topic\fR \fIwill-topic\fR]
|
||||
[\fB\-\-will-payload\fR \fIwill-payload\fR]
|
||||
[\fB\-\-will-retain\fR]
|
||||
[\fB\-\-will-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
.br
|
||||
[\fB\-\-cafile\fR \fIcafile\fR]
|
||||
[\fB\-\-capath\fR \fIcapath\fR]
|
||||
[\fB\-\-cert\fR \fIcertfile\fR]
|
||||
[\fB\-\-key\fR \fIkeyfile\fR]
|
||||
[\fB\-\-keypass\fR \fIpassword\fR]
|
||||
[\fB\-\-ciphers\fR \fIcipher-string\fR]
|
||||
[\fB\-\-insecure\fR]
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
.B paho_cs_pub
|
||||
sends data to an MQTT server using the Eclipse Paho C client synchronous library (MQTTClient).
|
||||
MQTT is a protocol, operating over TCP/IP, which allows programs to easily communicate
|
||||
with each other through a server. Messages are published to topics and delivered to any subscribers to those topics.
|
||||
The corresponding subscriber program \fBpaho_cs_sub\fR allows the receipt of MQTT messages.
|
||||
.PP
|
||||
The default mode of operation is to read input from stdin, sending a separate message for each line read. Options exist
|
||||
to change this mode to send a one-off message, of 0 length (\fB-n\fR), a given string (\fB-m\fR), or the contents of a file (\fB-f\fR).
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-t
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-topic
|
||||
The MQTT topic to publish the data to.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-c
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-connection
|
||||
The MQTT URI to connect to, a combination of transport prefix, host, port and for websockets, topic.
|
||||
To connect using TCP use the tcp prefix, for example: \fBtcp://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example using SSL/TLS: \fBssl://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example for websockets, insecure: \fBws://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR\fB/\fR\fItopic\fR, and
|
||||
secure: \fBwss://\fR\fIlocalhost\fR\fB:\fR\fI80\fR\fB/\fR\fItopic\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-h
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-host
|
||||
The TCP/IP host name of the MQTT server to connect to. Along with the \fB--port\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-p
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-port
|
||||
The TCP/IP port number of the MQTT server to connect to. Along with the \fB--host\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-q
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-qos
|
||||
The MQTT QoS on which to publish the message. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-V
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-MQTTversion
|
||||
The version of the MQTT protocol to use. Valid options are \fB31\fR (or \fBmqttv31\fR), \fB311\fR (\fBmqttv311\fR) and \fB5\fR (or \fBmqttv5\fR).
|
||||
If MQTT version 5 is used, then some additional options are valid, such as \fB--message-expiry\fR and \fB--user-property\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-quiet
|
||||
Do not print error messages.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-trace
|
||||
Print library internal trace. Valid levels are \fBmin\fR, \fBmax\fR, \fBerror\fR and \fprotocol\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-r
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-retained
|
||||
Publish messages with the MQTT retained flag set.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-n
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-null-message
|
||||
Publish a 0-length message.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-m
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-message
|
||||
Publish a one off message with the payload supplied.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-f
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-filename
|
||||
Publish a one off message with the contents of the file whose name is given.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-message-expiry
|
||||
[MQTT version 5 only] Sets the expiry interval property of messages in seconds.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-user-property
|
||||
[MQTT version 5 only] Sets a user property of sent messages. A pair of strings, name and value.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-topic
|
||||
Sets the MQTT will message topic to publish to. If the application ends without sending an MQTT disconnect, the
|
||||
will message will be published to this topic.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-payload
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT will message to be published.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-qos
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT QoS at which the will message is published. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-retain
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT retained flag on the will message.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cafile
|
||||
Only used with a TLS connection. The name of a file for the OpenSSL trust store.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-capath
|
||||
Only used with a TLS connection. The name of a directory holding OpenSSL trusted certificates.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cert
|
||||
Only used with a TLS connection. The name of a file for the TLS keystore containing a client certificate to be presented.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-key
|
||||
Only used with a TLS connection. The name of a file containing the client private key.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-keypass
|
||||
Only used with a TLS connection. The password for the client private key file, if needed.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-ciphers
|
||||
Only used with a TLS connection. A list of cipher suites that the client will present to the server during the TLS handshake.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-insecure
|
||||
Only used with a TLS connection. Don't check that the server certificate common name matches the hostname.
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,170 @@
|
|||
.TH PAHO_CS_SUB 1L "31 July 2018 (v1.3.0)" http://eclipse.org/paho
|
||||
|
||||
.SH NAME
|
||||
paho_cs_sub \- receive (subscribe to) data from an MQTT server
|
||||
|
||||
.SH SYNOPSIS
|
||||
.B paho_cs_sub
|
||||
[\fItopic\fR]
|
||||
[\fB\-t\fR|\fB\-\-topic\fR \fItopic\fR]
|
||||
[\fB\-c\fR|\fB\-\-connection\fR \fIconnection\fR]
|
||||
[\fB\-h\fR|\fB\-\-host\fR \fIhostname\fR]
|
||||
[\fB\-p\fR|\fB\-\-port\fR \fIportnumber\fR]
|
||||
[\fB\-i\fR|\fB\-\-clientid\fR \fIclientid\fR]
|
||||
[\fB\-u\fR|\fB\-\-username\fR \fIusername\fR]
|
||||
[\fB\-P\fR|\fB\-\-password\fR \fIpassword\fR]
|
||||
[\fB\-k\fR|\fB\-\-keepalive\fR \fIkeepalive-timeout\fR]
|
||||
[\fB\-V\fR|\fB\-\-MQTT-version\fR \fB31\fR|\fB311\fR|\fB5\fR]
|
||||
.br
|
||||
[\fB\-q\fR|\fB\-\-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
[\fB\-R\fR|\fB\-\-no-retained\fR]
|
||||
[\fB\-\-delimiter\fR \fIdelimiter\fR]
|
||||
[\fB\-\-no-delimiter\fR]
|
||||
.br
|
||||
[\fB\-\-quiet\fR]
|
||||
[\fB\-\-verbose\fR]
|
||||
[\fB\-\-trace\fR \fBmin\fR|\fBmax\fR|\fBerror\fR|\fBprotocol\fR]
|
||||
.br
|
||||
[\fB\-\-will-topic\fR \fIwill-topic\fR]
|
||||
[\fB\-\-will-payload\fR \fIwill-payload\fR]
|
||||
[\fB\-\-will-retain\fR]
|
||||
[\fB\-\-will-qos\fR \fB0\fR|\fB1\fR|\fB2\fR]
|
||||
.br
|
||||
[\fB\-\-cafile\fR \fIcafile\fR]
|
||||
[\fB\-\-capath\fR \fIcapath\fR]
|
||||
[\fB\-\-cert\fR \fIcertfile\fR]
|
||||
[\fB\-\-key\fR \fIkeyfile\fR]
|
||||
[\fB\-\-keypass\fR \fIpassword\fR]
|
||||
[\fB\-\-ciphers\fR \fIcipher-string\fR]
|
||||
[\fB\-\-insecure\fR]
|
||||
|
||||
|
||||
.SH DESCRIPTION
|
||||
.B paho_cs_sub
|
||||
receives data from an MQTT server using the Eclipse Paho C client synchronous library (MQTTClient).
|
||||
MQTT is a protocol, operating over TCP/IP, which allows programs to easily communicate
|
||||
with each other through a server. Messages are published to topics and delivered to any subscribers to those topics.
|
||||
The corresponding publisher program \fBpaho_cs_pub\fR allows MQTT messages to be sent.
|
||||
.PP
|
||||
The default mode of operation is to output each message to stdout terminated by the delimiter.
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-t
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-topic
|
||||
The MQTT topic to publish the data to.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-c
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-connection
|
||||
The MQTT URI to connect to, a combination of transport prefix, host, port and for websockets, topic.
|
||||
To connect using TCP use the tcp prefix, for example: \fBtcp://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example using SSL/TLS: \fBssl://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR.
|
||||
An example for websockets, insecure: \fBws://\fR\fIlocalhost\fR\fB:\fR\fI1883\fR\fB/\fR\fItopic\fR, and
|
||||
secure: \fBwss://\fR\fIlocalhost\fR\fB:\fR\fI80\fR\fB/\fR\fItopic\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-h
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-host
|
||||
The TCP/IP host name of the MQTT server to connect to. Along with the \fB--port\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-p
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-port
|
||||
The TCP/IP port number of the MQTT server to connect to. Along with the \fB--host\fR option, an older alternative to using \fB--connection\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-q
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-qos
|
||||
The MQTT QoS on which to publish the message. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-V
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-MQTTversion
|
||||
The version of the MQTT protocol to use. Valid options are \fB31\fR (or \fBmqttv31\fR), \fB311\fR (\fBmqttv311\fR) and \fB5\fR (or \fBmqttv5\fR).
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-quiet
|
||||
Do not print error messages.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-trace
|
||||
Print library internal trace. Valid levels are \fBmin\fR, \fBmax\fR, \fBerror\fR and \fprotocol\fR.
|
||||
.TP
|
||||
.PD 0
|
||||
.BI \-R
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-no-retained
|
||||
Do not print messages which have the MQTT retained flag set.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-delimiter
|
||||
The delimiter string to append to each message when printing. Defaults to newline.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-no-delimiter
|
||||
Do not add a delimiter to each message when printing.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-topic
|
||||
Sets the MQTT will message topic to publish to. If the application ends without sending an MQTT disconnect, the
|
||||
will message will be published to this topic.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-payload
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT will message to be published.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-qos
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT QoS at which the will message is published. The alternatives are \fB0\fR, \fB1\fR or \fB2\fR.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-will-retain
|
||||
Only used if \fBwill-topic\fR is set. Sets the MQTT retained flag on the will message.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cafile
|
||||
Only used with a TLS connection. The name of a file for the OpenSSL trust store.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-capath
|
||||
Only used with a TLS connection. The name of a directory holding OpenSSL trusted certificates.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-cert
|
||||
Only used with a TLS connection. The name of a file for the TLS keystore containing a client certificate to be presented.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-key
|
||||
Only used with a TLS connection. The name of a file containing the client private key.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-keypass
|
||||
Only used with a TLS connection. The password for the client private key file, if needed.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-ciphers
|
||||
Only used with a TLS connection. A list of cipher suites that the client will present to the server during the TLS handshake.
|
||||
.TP
|
||||
.PD
|
||||
.B \-\-insecure
|
||||
Only used with a TLS connection. Don't check that the server certificate common name matches the hostname.
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue