-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
404 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (c) 2019 TAOS Data, Inc. <[email protected]> | ||
* | ||
* This program is free software: you can use, redistribute, and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3 | ||
* or later ("AGPL"), as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef TDENGINE_MQTT_INIT_H | ||
#define TDENGINE_MQTT_INIT_H | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#include <stdint.h> | ||
#include "MQTTAsync.h" | ||
#include "os.h" | ||
#include "taos.h" | ||
#include "tglobal.h" | ||
#include "tsocket.h" | ||
#include "ttimer.h" | ||
#include "tsclient.h" | ||
char split(char str[], char delims[], char** p_p_cmd_part, int max); | ||
void mqttConnnectLost(void* context, char* cause); | ||
int mqttMessageArrived(void* context, char* topicName, int topicLen, MQTTAsync_message* message); | ||
void mqtt_query_insert_callback(void* param, TAOS_RES* result, int32_t code); | ||
void onDisconnectFailure(void* context, MQTTAsync_failureData* response); | ||
void onDisconnect(void* context, MQTTAsync_successData* response); | ||
void onSubscribe(void* context, MQTTAsync_successData* response); | ||
void onSubscribeFailure(void* context, MQTTAsync_failureData* response); | ||
void mqttInitConnCb(void* param, TAOS_RES* result, int32_t code); | ||
|
||
|
||
#define CLIENTID "taos" | ||
#define TOPIC "/taos/+/+/+/" // taos/<token>/<db name>/<table name>/ | ||
#define PAYLOAD "Hello World!" | ||
#define QOS 1 | ||
#define TIMEOUT 10000L | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright (c) 2019 TAOS Data, Inc. <[email protected]> | ||
* | ||
* This program is free software: you can use, redistribute, and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3 | ||
* or later ("AGPL"), as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#ifndef TDENGINE_MQTT_PLYLOAD_H | ||
#define TDENGINE_MQTT_PLYLOAD_H | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
char split(char str[], char delims[], char** p_p_cmd_part, int max); | ||
char* converJsonToSql(char* json, char* _dbname, char* _tablename); | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright (c) 2019 TAOS Data, Inc. <[email protected]> | ||
* | ||
* This program is free software: you can use, redistribute, and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3 | ||
* or later ("AGPL"), as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#define _DEFAULT_SOURCE | ||
#include "mqttUitl.h" | ||
#include "cJSON.h" | ||
#include "string.h" | ||
#include "taos.h" | ||
#include "mqttLog.h" | ||
#include "os.h" | ||
char split(char str[], char delims[], char** p_p_cmd_part, int max) { | ||
char* token = strtok(str, delims); | ||
char part_index = 0; | ||
char** tmp_part = p_p_cmd_part; | ||
while (token) { | ||
*tmp_part++ = token; | ||
token = strtok(NULL, delims); | ||
part_index++; | ||
if (part_index >= max) break; | ||
} | ||
return part_index; | ||
} | ||
|
||
char* converJsonToSql(char* json, char* _dbname, char* _tablename) { | ||
cJSON* jPlayload = cJSON_Parse(json); | ||
char _names[102400] = {0}; | ||
char _values[102400] = {0}; | ||
int i = 0; | ||
int count = cJSON_GetArraySize(jPlayload); | ||
for (; i < count; i++) //±éÀú×îÍâ²ãjson¼üÖµ¶Ô | ||
{ | ||
cJSON* item = cJSON_GetArrayItem(jPlayload, i); | ||
if (cJSON_Object == item->type) { | ||
mqttPrint("The item '%s' is not supported", item->string); | ||
} else { | ||
strcat(_names, item->string); | ||
if (i < count - 1) { | ||
strcat(_names, ","); | ||
} | ||
char* __value_json = cJSON_Print(item); | ||
strcat(_values, __value_json); | ||
free(__value_json); | ||
if (i < count - 1) { | ||
strcat(_values, ","); | ||
} | ||
} | ||
} | ||
cJSON_free(jPlayload); | ||
char _sql[102400] = {0}; | ||
sprintf(_sql, "INSERT INTO %s.%s (%s) VALUES(%s);", _dbname, _tablename, _names, _values); | ||
return _sql; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.