111 lines
2.3 KiB
C
111 lines
2.3 KiB
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2023 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
|
|
#include "aqhome/mqtt/msg_mqtt_connack.h"
|
|
|
|
#include <gwenhywfar/debug.h>
|
|
|
|
|
|
|
|
GWEN_MSG *GWEN_ConnAckMqttMsg_new(uint8_t flags, uint8_t result)
|
|
{
|
|
uint8_t data[2];
|
|
GWEN_MSG *msg;
|
|
|
|
data[0]=flags;
|
|
data[1]=result;
|
|
|
|
msg=GWEN_MqttMsg_new(AQH_MQTTMSG_MSGTYPE_CONNACK, 2, data);
|
|
if (msg==NULL) {
|
|
DBG_INFO(AQH_LOGDOMAIN, "here");
|
|
return NULL;
|
|
}
|
|
return msg;
|
|
}
|
|
|
|
|
|
|
|
void AQH_ConnAckMqttMsg_DumpToBuffer(const GWEN_MSG *msg, GWEN_BUFFER *dbuf, const char *sText)
|
|
{
|
|
const uint8_t *msgPtr;
|
|
uint32_t msgLen;
|
|
|
|
msgPtr=GWEN_Msg_GetConstBuffer(msg);
|
|
msgLen=GWEN_Msg_GetBytesInBuffer(msg);
|
|
|
|
if (msgLen>1) {
|
|
const uint8_t *payloadPtr;
|
|
uint32_t payloadLen;
|
|
|
|
GWEN_Buffer_AppendArgs(dbuf, "%s %s", AQH_MqttMsg_MsgTypeToString(msgPtr[0] & 0xf0), sText);
|
|
payloadLen=GWEN_Msg_GetParsedPayloadSize(msg);
|
|
payloadPtr=msgPtr+GWEN_Msg_GetParsedPayloadOffset(msg);
|
|
if (payloadLen>=2)
|
|
GWEN_Buffer_AppendArgs(dbuf, "(flags=%02x, result=%d)", payloadPtr[0], payloadPtr[1]);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
int AQH_ConnAckMqttMsg_GetResultFlags(const GWEN_MSG *msg)
|
|
{
|
|
const uint8_t *msgPtr;
|
|
uint32_t msgLen;
|
|
|
|
msgPtr=GWEN_Msg_GetConstBuffer(msg);
|
|
msgLen=GWEN_Msg_GetBytesInBuffer(msg);
|
|
|
|
if (msgLen>1) {
|
|
uint32_t payloadLen;
|
|
const uint8_t *payloadPtr;
|
|
|
|
payloadLen=GWEN_Msg_GetParsedPayloadSize(msg);
|
|
payloadPtr=msgPtr+GWEN_Msg_GetParsedPayloadOffset(msg);
|
|
|
|
if (payloadLen)
|
|
return (int) (payloadPtr[0]);
|
|
}
|
|
|
|
return GWEN_ERROR_GENERIC;
|
|
}
|
|
|
|
|
|
|
|
int AQH_ConnAckMqttMsg_GetResultCode(const GWEN_MSG *msg)
|
|
{
|
|
const uint8_t *msgPtr;
|
|
uint32_t msgLen;
|
|
|
|
msgPtr=GWEN_Msg_GetConstBuffer(msg);
|
|
msgLen=GWEN_Msg_GetBytesInBuffer(msg);
|
|
|
|
if (msgLen>1) {
|
|
uint32_t payloadLen;
|
|
const uint8_t *payloadPtr;
|
|
|
|
payloadLen=GWEN_Msg_GetParsedPayloadSize(msg);
|
|
payloadPtr=msgPtr+GWEN_Msg_GetParsedPayloadOffset(msg);
|
|
|
|
if (payloadLen>1)
|
|
return (int) (payloadPtr[1]);
|
|
}
|
|
|
|
return GWEN_ERROR_GENERIC;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|