-
Notifications
You must be signed in to change notification settings - Fork 36
/
command_test.c
150 lines (129 loc) · 5.69 KB
/
command_test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
* Copyright (c) 2022-2024 Huawei Cloud Computing Technology Co., Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include "iota_init.h"
#include "iota_datatrans.h"
#include "string_util.h"
#include "log_util.h"
#include "iota_cfg.h"
#include "mqttv5_util.h"
/*
* Example of command delivery
* 1. Command delivery
* 2. Command delivery response
* Command delivery documentation, see: https://support.huaweicloud.com/api-iothub/iot_06_v5_3014.html
**/
// You can get the access address from IoT Console "Overview" -> "Access Information"
char *g_address = "XXXX";
char *g_port = "8883";
// deviceId, the mqtt protocol requires the user name to be filled in.
// Please fill in the deviceId
char *g_deviceId = "XXXX";
char *g_password = "XXXX";
int beepState = 0; // Product model, status of the buzzer
void TimeSleep(int ms)
{
#if defined(WIN32) || defined(WIN64)
Sleep(ms);
#else
usleep(ms * 1000);
#endif
}
static void MyPrintLog(int level, char *format, va_list args)
{
vprintf(format, args);
/*
* if you want to printf log in system log files,you can do this:
* vsyslog(level, format, args);
*/
}
// ---------------- Command delivery response callback -------------------
static void Test_CommandResponse(char *requestId)
{
char pcCommandRespense[100] = {0}; // in service accumulator
(void)sprintf_s(pcCommandRespense, sizeof(pcCommandRespense), "{\"Beep_State\": %d}", beepState);
int result_code = 0;
char *response_name = "cmdResponses";
int messageId = IOTA_CommandResponse(requestId, result_code, response_name, pcCommandRespense, NULL);
if (messageId < 0) {
PrintfLog(EN_LOG_LEVEL_ERROR, "command_test: Test_CommandResponse() failed, messageId %d\n", messageId);
}
}
void HandleCommandRequest(EN_IOTA_COMMAND *command)
{
if (command == NULL) {
return;
}
PrintfLog(EN_LOG_LEVEL_INFO, "command_test: HandleCommandRequest(), messageId %d, service_id %s, command_name %s, request_id %s\n",
command->mqtt_msg_info->messageId, command->service_id, command->command_name, command->request_id);
PrintfLog(EN_LOG_LEVEL_INFO, "command_test: HandleCommandRequest(), request_id %s\n", command->request_id);
/* Developer implements downstream command processing, the following is the implementation of changing the "buzzer" property of the product model */
if (strncmp(command->command_name, "Smoke_Control_Beep", strlen(command->service_id)) == 0) {
cJSON *properties = cJSON_Parse(command->paras);
cJSON *beepCjosn = cJSON_GetObjectItem(properties, "Beep");
if (cJSON_IsString(beepCjosn)) {
char *beepV = cJSON_GetStringValue(beepCjosn);
beepState = strncmp(beepV, "ON", strlen(beepV)) == 0 ? 1 : 0;
PrintfLog(EN_LOG_LEVEL_INFO, "command_test: Set Command success! beepState = %d.\n", beepState);
}
cJSON_Delete(properties);
}
Test_CommandResponse(command->request_id);
}
// ---------------------------- secret authentication --------------------------------------
static void mqttDeviceSecretInit(char *address, char *port, char *deviceId, char *password)
{
IOTA_Init("."); // The certificate address is ./conf/rootcert.pem
IOTA_SetPrintLogCallback(MyPrintLog);
// MQTT protocol when the connection parameter is 1883; MQTTS protocol when the connection parameter is 8883
IOTA_ConnectConfigSet(address, port, deviceId, password);
// Set authentication method to secret authentication
IOTA_ConfigSetUint(EN_IOTA_CFG_AUTH_MODE, EN_IOTA_CFG_AUTH_MODE_SECRET);
// Initialize connection callback function
IOTA_DefaultCallbackInit();
}
int main(int argc, char **argv)
{
// secret authentication
mqttDeviceSecretInit(g_address, g_port, g_deviceId, g_password);
// Subscription system topics. The platform subscribes them by default.
// SubscribeAll();
// Set platform command callback function
IOTA_SetCmdCallback(HandleCommandRequest);
// Create connection
int ret = IOTA_Connect();
if (ret != 0) {
PrintfLog(EN_LOG_LEVEL_ERROR, "command_test: IOTA_Connect() error, Auth failed, result %d\n", ret);
return -1;
}
TimeSleep(1500);
while(1);
IOTA_Destroy();
}