Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add publish #114

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions src/MqttClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,71 @@ int MqttClient::endMessage()
return 1;
}

/**
* @brief Publish a MQTT message to the broker.
*
* @param topic The topic to publish to.
* @param payload The payload to publish.
* @param retain Publish the MQTT message with the retain flag. Default false.
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
* @return 0 - Failed to send message.
* 1 - Successfully send message.
*/
int MqttClient::publish(const char* topic, const char* payload, bool retain, uint8_t qos, bool dup) {
int ret = beginMessage(topic, strlen_P(payload), retain, qos, dup);
if (ret) {
print(payload);
ret = endMessage();
}
return ret;
}

/**
* @brief Publish a MQTT message to the broker.
*
* @param topic The topic to publish to.
* @param payload The payload to publish.
* @param retain Publish the MQTT message with the retain flag. Default false.
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
* @return 0 - Failed to send message.
* 1 - Successfully send message.
*/
int MqttClient::publish(const String& topic, const char* payload, bool retain, uint8_t qos, bool dup) {
return publish(topic.c_str(), payload, retain, qos, dup);
}

/**
* @brief Publish a MQTT message to the broker.
*
* @param topic The topic to publish to.
* @param payload The payload to publish.
* @param retain Publish the MQTT message with the retain flag. Default false.
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
* @return 0 - Failed to send message.
* 1 - Successfully send message.
*/
int MqttClient::publish(const char* topic, String& payload, bool retain, uint8_t qos, bool dup) {
return publish(topic, payload.c_str(), retain, qos, dup);
}

/**
* @brief Publish a MQTT message to the broker.
*
* @param topic The topic to publish to.
* @param payload The payload to publish.
* @param retain Publish the MQTT message with the retain flag. Default false.
* @param qos The quality of service of the MQTT message. [0 .. 2]. Default 0.
* @param dup Set or reset the duplicate flag of the MQTT message. Default false (reset).
* @return 0 - Failed to send message.
* 1 - Successfully send message.
*/
int MqttClient::publish(const String& topic, String& payload, bool retain, uint8_t qos, bool dup) {
return publish(topic.c_str(), payload.c_str(), retain, qos, dup);
}

int MqttClient::beginWill(const char* topic, unsigned short size, bool retain, uint8_t qos)
{
int topicLength = strlen(topic);
Expand Down
4 changes: 4 additions & 0 deletions src/MqttClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ class MqttClient : public Client {
int beginMessage(const char* topic, bool retain = false, uint8_t qos = 0, bool dup = false);
int beginMessage(const String& topic, bool retain = false, uint8_t qos = 0, bool dup = false);
int endMessage();
int publish(const char* topic, const char* payload, bool retain = false, uint8_t qos = 0, bool dup = false);
int publish(const String& topic, const char* payload, bool retain = false, uint8_t qos = 0, bool dup = false);
int publish(const char* topic, String& payload, bool retain = false, uint8_t qos = 0, bool dup = false);
int publish(const String& topic, String& payload, bool retain = false, uint8_t qos = 0, bool dup = false);

int beginWill(const char* topic, unsigned short size, bool retain, uint8_t qos);
int beginWill(const String& topic, unsigned short size, bool retain, uint8_t qos);
Expand Down