LcmCommandDriver.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759
  1. /*
  2. * LcmCommandDriver.c
  3. *
  4. * Created on: 2022/3/31
  5. * Author: folus
  6. */
  7. #include "Module_LcmControl_Wistron.h"
  8. #include "../Config.h"
  9. Text_List TextList[100];
  10. int TextIndex = 0;
  11. Image_List ImageList[100];
  12. int ImageIndex = 0;
  13. APNG_List ApngList[5];
  14. int ApngIndex = 0;
  15. QrCode_List QRCodeList[5];
  16. int QRCodeIndex = 0;
  17. TextScroll_List TextScrollList[5];
  18. int TextScrollIndex = 0;
  19. /**
  20. *
  21. * @param mosq
  22. * @param topic
  23. * @param outputStr
  24. * @return
  25. */
  26. int publish_data(struct mosquitto *mosq, char *topic, char *outputStr)
  27. {
  28. int result;
  29. result = mosquitto_publish(mosq, NULL, topic, strlen(outputStr), outputStr, QOS_ENSURE_BROKER, RETAIN_NO);
  30. if(result != MOSQ_ERR_SUCCESS)DEBUG_ERROR("Publish %s error publishing: %s\n", topic, mosquitto_strerror(result));
  31. return (result != MOSQ_ERR_SUCCESS)?FAIL:PASS;
  32. }
  33. /**
  34. *
  35. * @param mosq
  36. */
  37. int publish_profile(struct mosquitto *mosq, char *parameter, char *value)
  38. {
  39. json_object *payload = json_object_new_object();
  40. char outputStr[2048]={0};
  41. json_object_object_add(payload, parameter, json_object_new_string(value));
  42. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  43. json_object_put(payload);
  44. return publish_data(mosq, "client/profile", outputStr);
  45. }
  46. /**
  47. *
  48. * @param mosq
  49. */
  50. int publish_upgrade(struct mosquitto *mosq, char *otaType, char *url, char *checksum, char *verInfo)
  51. {
  52. json_object *payload = json_object_new_object();
  53. char outputStr[2048]={0};
  54. json_object_object_add(payload, "task_name", json_object_new_string(otaType));
  55. if((strstr(otaType, OTA_TYPE_APK) != NULL) || (strstr(otaType, OTA_TYPE_UI) != NULL))
  56. json_object_object_add(payload, "ftp server", json_object_new_string(url));
  57. if(strstr(otaType, OTA_TYPE_UI) != NULL)
  58. {
  59. json_object_object_add(payload, "file_checksum", json_object_new_string(checksum));
  60. json_object_object_add(payload, "version_info", json_object_new_string(verInfo));
  61. }
  62. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  63. json_object_put(payload);
  64. return publish_data(mosq, "client/command", outputStr);
  65. }
  66. /**
  67. *
  68. * @param mosq
  69. */
  70. int publish_restart(struct mosquitto *mosq, uint8_t isHardReset)
  71. {
  72. json_object *payload = json_object_new_object();
  73. char outputStr[2048]={0};
  74. json_object_object_add(payload, "task_name", json_object_new_string(isHardReset?"restart":"reset"));
  75. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  76. json_object_put(payload);
  77. return publish_data(mosq, "client/command", outputStr);
  78. }
  79. /**
  80. *
  81. * @param mosq
  82. */
  83. int publish_power_saving(struct mosquitto *mosq, uint8_t isSleep,char* mac)
  84. {
  85. if(isSleep)
  86. {
  87. json_object *payload = json_object_new_object();
  88. char outputStr[2048]={0};
  89. json_object_object_add(payload, "task_name", json_object_new_string("power_saving"));
  90. json_object_object_add(payload, "mode", json_object_new_string(isSleep?"1":"0"));
  91. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  92. json_object_put(payload);
  93. return publish_data(mosq, "client/command", outputStr);
  94. }
  95. else
  96. {
  97. char cmd[64];
  98. sprintf(cmd, "/usr/sbin/ether-wake -i eth1 %s\n",mac);
  99. system(cmd);
  100. DEBUG_INFO("MAC:%s\n", mac);
  101. return PASS;
  102. }
  103. }
  104. /**
  105. *
  106. * @param mosq
  107. */
  108. int publish_back_dimming(struct mosquitto *mosq, uint8_t lightLevel)
  109. {
  110. json_object *payload = json_object_new_object();
  111. char outputStr[2048]={0};
  112. char buf[8];
  113. json_object_object_add(payload, "task_name", json_object_new_string("backlight"));
  114. sprintf(buf, "%d", lightLevel);
  115. json_object_object_add(payload, "brightness", json_object_new_string(buf));
  116. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  117. json_object_put(payload);
  118. return publish_data(mosq, "client/command", outputStr);
  119. }
  120. /**
  121. *
  122. * @param mosq
  123. */
  124. int publish_audio_volume(struct mosquitto *mosq, uint8_t volume)
  125. {
  126. json_object *payload = json_object_new_object();
  127. char outputStr[2048]={0};
  128. char buf[8];
  129. json_object_object_add(payload, "task_name", json_object_new_string("audio_volume"));
  130. sprintf(buf, "%d", volume);
  131. json_object_object_add(payload, "volume", json_object_new_string(buf));
  132. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  133. json_object_put(payload);
  134. return publish_data(mosq, "client/command", outputStr);
  135. }
  136. /**
  137. *
  138. * @param mosq
  139. */
  140. int publish_trigger_report_status(struct mosquitto *mosq)
  141. {
  142. json_object *payload = json_object_new_object();
  143. char outputStr[2048]={0};
  144. json_object_object_add(payload, "task_name", json_object_new_string("report_status"));
  145. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  146. json_object_put(payload);
  147. return publish_data(mosq, "client/command", outputStr);
  148. }
  149. /**
  150. *
  151. * @param mosq
  152. */
  153. int publish_timesync(struct mosquitto *mosq)
  154. {
  155. char outputStr[64]={0};
  156. time_t CurrentTime;
  157. struct tm *tm;
  158. struct timeval tv;
  159. CurrentTime = time(NULL);
  160. tm=localtime(&CurrentTime);
  161. gettimeofday(&tv, NULL); // get microseconds, 10^-6
  162. sprintf(outputStr,"%04d-%02d-%02dT%02d:%02d:%02d+00:00", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec);
  163. return publish_data(mosq, "client/timesync", outputStr);
  164. }
  165. /**
  166. *
  167. * @param mosq
  168. */
  169. int publish_textview_add(struct mosquitto* mosq, Text_List* textList, uint8_t listCount)
  170. {
  171. int cmpIndex = 0;
  172. for(int idx=0;idx<listCount;idx++)
  173. {
  174. if (TextIndex >= 100) {
  175. DEBUG_INFO("OVER TEXT LIST BUFFER SIZE");
  176. break;
  177. }
  178. if (TextIndex < 100) {
  179. for (cmpIndex = 0; cmpIndex < TextIndex; cmpIndex++) {
  180. if (TextList[cmpIndex].textviewIndex == textList[idx].textviewIndex)
  181. break;
  182. }
  183. if (TextList[cmpIndex].textviewIndex != textList[idx].textviewIndex) {
  184. memcpy(&TextList[TextIndex],textList[idx],sizeof(Text_List));
  185. DEBUG_INFO("Push TextIndex[%d] into Buffer(%d)",textList[idx].textviewIndex,TextIndex);
  186. TextIndex++;
  187. }
  188. }
  189. }
  190. return TextIndex;
  191. }
  192. int publish_textview_push(struct mosquitto* mosq)
  193. {
  194. json_object *payload = json_object_new_array();
  195. char outputStr[250*100]={0};
  196. int cmpIndex = 0;
  197. for(int idx=0;idx<TextIndex;idx++)
  198. {
  199. json_object *textview = json_object_new_object();
  200. char buf[32];
  201. sprintf(buf, "%d", TextList[idx].textviewIndex);
  202. json_object_object_add(textview, "textviewIndex", json_object_new_string(buf));
  203. json_object_object_add(textview, "textString", json_object_new_string(TextList[idx].textString));
  204. json_object_object_add(textview, "textFont", json_object_new_string(TextList[idx].textFont));
  205. json_object_object_add(textview, "textStyle", json_object_new_string(TextList[idx].textStyle));
  206. sprintf(buf, "%d", TextList[idx].textSize);
  207. json_object_object_add(textview, "textSize", json_object_new_string(buf));
  208. sprintf(buf, "%d", TextList[idx].layout_x);
  209. json_object_object_add(textview, "layout_x", json_object_new_string(buf));
  210. sprintf(buf, "%d", TextList[idx].layout_y);
  211. json_object_object_add(textview, "layout_y", json_object_new_string(buf));
  212. sprintf(buf, "%d", TextList[idx].width);
  213. json_object_object_add(textview, "width", json_object_new_string(buf));
  214. sprintf(buf, "%d", TextList[idx].color_r);
  215. json_object_object_add(textview, "color_r", json_object_new_string(buf));
  216. sprintf(buf, "%d", TextList[idx].color_g);
  217. json_object_object_add(textview, "color_g", json_object_new_string(buf));
  218. sprintf(buf, "%d", TextList[idx].color_b);
  219. json_object_object_add(textview, "color_b", json_object_new_string(buf));
  220. sprintf(buf, "%d", TextList[idx].alignment);
  221. json_object_object_add(textview, "alignment", json_object_new_string(buf));
  222. json_object_array_add(payload, textview);
  223. }
  224. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  225. json_object_put(payload);
  226. return publish_data(mosq, "client/layout/textview", outputStr);
  227. }
  228. /**
  229. *
  230. * @param mosq
  231. */
  232. int publish_textscroll_add(struct mosquitto* mosq, TextScroll_List* textList, uint8_t listCount)
  233. {
  234. int cmpIndex = 0;
  235. for(int idx=0;idx<listCount;idx++)
  236. {
  237. if (TextScrollIndex >= 100) {
  238. DEBUG_INFO("OVER TEXT LIST BUFFER SIZE");
  239. break;
  240. }
  241. if (TextScrollIndex < 100) {
  242. for (cmpIndex = 0; cmpIndex < TextScrollIndex; cmpIndex++) {
  243. if (TextScrollList[cmpIndex].textscrollIndex == textList[idx].textscrollIndex)
  244. break;
  245. }
  246. if (TextScrollList[cmpIndex].textscrollIndex != textList[idx].textscrollIndex) {
  247. memcpy(&TextScrollList[TextScrollIndex],textList[idx],sizeof(TextScroll_List));
  248. DEBUG_INFO("Push TextScrollIndex[%d] into Buffer(%d)",TextScrollList[idx].textscrollIndex,TextScrollIndex);
  249. TextScrollIndex++;
  250. }
  251. }
  252. }
  253. return TextScrollIndex;
  254. }
  255. int publish_textscroll_push(struct mosquitto* mosq)
  256. {
  257. json_object *payload = json_object_new_array();
  258. char outputStr[250*100]={0};
  259. int cmpIndex = 0;
  260. for(int idx=0;idx<TextScrollIndex;idx++)
  261. {
  262. json_object *textscroll = json_object_new_object();
  263. char buf[32];
  264. sprintf(buf, "%d", TextScrollList[idx].textscrollIndex);
  265. json_object_object_add(textscroll, "textscrollIndex", json_object_new_string(buf));
  266. json_object_object_add(textscroll, "textString", json_object_new_string(TextScrollList[idx].textString));
  267. json_object_object_add(textscroll, "textFont", json_object_new_string(TextScrollList[idx].textFont));
  268. json_object_object_add(textscroll, "textStyle", json_object_new_string(TextScrollList[idx].textStyle));
  269. sprintf(buf, "%d", TextScrollList[idx].textSize);
  270. json_object_object_add(textscroll, "textSize", json_object_new_string(buf));
  271. sprintf(buf, "%d", TextScrollList[idx].layout_x);
  272. json_object_object_add(textscroll, "layout_x", json_object_new_string(buf));
  273. sprintf(buf, "%d", TextScrollList[idx].layout_y);
  274. json_object_object_add(textscroll, "layout_y", json_object_new_string(buf));
  275. sprintf(buf, "%d", TextScrollList[idx].width);
  276. json_object_object_add(textscroll, "width", json_object_new_string(buf));
  277. sprintf(buf, "%d", TextScrollList[idx].color_r);
  278. json_object_object_add(textscroll, "color_r", json_object_new_string(buf));
  279. sprintf(buf, "%d", TextScrollList[idx].color_g);
  280. json_object_object_add(textscroll, "color_g", json_object_new_string(buf));
  281. sprintf(buf, "%d", TextScrollList[idx].color_b);
  282. json_object_object_add(textscroll, "color_b", json_object_new_string(buf));
  283. sprintf(buf, "%d", TextScrollList[idx].direction);
  284. json_object_object_add(textscroll, "direction", json_object_new_string(buf));
  285. json_object_array_add(payload, textscroll);
  286. }
  287. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  288. json_object_put(payload);
  289. return publish_data(mosq, "client/layout/textscroll", outputStr);
  290. }
  291. /**
  292. *
  293. * @param mosq
  294. */
  295. int publish_imageview_add(struct mosquitto *mosq, Image_List *imageList, uint8_t listCount)
  296. {
  297. int cmpIndex = 0;
  298. for(int idx=0;idx<listCount;idx++)
  299. {
  300. if (ImageIndex >= 100) {
  301. DEBUG_INFO("OVER TEXT LIST BUFFER SIZE");
  302. break;
  303. }
  304. for (cmpIndex = 0; cmpIndex < ImageIndex; cmpIndex++) {
  305. if (ImageList[cmpIndex].imageviewIndex == imageList[idx].imageviewIndex)
  306. break;
  307. }
  308. if (ImageList[cmpIndex] != imageList[idx].imageviewIndex) {
  309. memcpy(&ImageList[ImageIndex],&imageList[idx],sizeof(Image_List));
  310. DEBUG_INFO("Push ImageIndex[%d] into Buffer(%d)",imageList[idx].imageviewIndex,ImageIndex);
  311. ImageIndex++;
  312. }
  313. }
  314. return ImageIndex;
  315. }
  316. int publish_imageview_push(struct mosquitto *mosq)
  317. {
  318. json_object *payload = json_object_new_array();
  319. char outputStr[250*100]={0};
  320. int cmpIndex = 0;
  321. for(int idx=0;idx<ImageIndex;idx++)
  322. {
  323. json_object *imageview = json_object_new_object();
  324. char buf[32];
  325. sprintf(buf, "%d", ImageList[idx].imageviewIndex);
  326. json_object_object_add(imageview, "imageviewIndex", json_object_new_string(buf));
  327. sprintf(buf, "%d", ImageList[idx].imgsrc_addr);
  328. json_object_object_add(imageview, "imgsrc_addr", json_object_new_string(buf));
  329. sprintf(buf, "%d", ImageList[idx].layout_x);
  330. json_object_object_add(imageview, "layout_x", json_object_new_string(buf));
  331. sprintf(buf, "%d", ImageList[idx].layout_y);
  332. json_object_object_add(imageview, "layout_y", json_object_new_string(buf));
  333. sprintf(buf, "%d", ImageList[idx].width);
  334. json_object_object_add(imageview, "width", json_object_new_string(buf));
  335. sprintf(buf, "%d", ImageList[idx].height);
  336. json_object_object_add(imageview, "height", json_object_new_string(buf));
  337. json_object_array_add(payload, imageview);
  338. }
  339. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  340. json_object_put(payload);
  341. return publish_data(mosq, "client/layout/imageview", outputStr);
  342. }
  343. /**
  344. *
  345. * @param mosq
  346. */
  347. int publish_apngview_add(struct mosquitto *mosq, APNG_List *apngList, uint8_t listCount)
  348. {
  349. int cmpIndex = 0;
  350. for(int idx=0;idx<listCount;idx++)
  351. {
  352. if (ApngIndex >= 5) {
  353. DEBUG_INFO("OVER APNG LIST BUFFER SIZE");
  354. break;
  355. }
  356. for (cmpIndex = 0; cmpIndex < listCount; cmpIndex++) {
  357. if (ApngList[cmpIndex].apngIndex == apngList[idx].apngIndex)
  358. break;
  359. }
  360. if (ApngList[cmpIndex] != apngList[idx].apngIndex) {
  361. memcpy(&ApngList[ApngIndex],&apngList[idx],sizeof(APNG_List));
  362. DEBUG_INFO("Push ApngIndex[%d] into Buffer(%d)",apngList[idx].apngIndex,ApngIndex);
  363. ApngIndex++;
  364. }
  365. }
  366. return ApngIndex;
  367. }
  368. int publish_apngview_push(struct mosquitto *mosq)
  369. {
  370. json_object *payload = json_object_new_array();
  371. char outputStr[250*100]={0};
  372. int cmpIndex = 0;
  373. for(int idx=0;idx<ApngIndex;idx++)
  374. {
  375. json_object *apngview = json_object_new_object();
  376. char buf[32];
  377. sprintf(buf, "%d", ApngList[idx].apngIndex);
  378. json_object_object_add(apngview, "apngIndex", json_object_new_string(buf));
  379. sprintf(buf, "%d", ApngList[idx].imgsrc_addr);
  380. json_object_object_add(apngview, "apngsrc_addr", json_object_new_string(buf));
  381. sprintf(buf, "%d", ApngList[idx].layout_x);
  382. json_object_object_add(apngview, "layout_x", json_object_new_string(buf));
  383. sprintf(buf, "%d", ApngList[idx].layout_y);
  384. json_object_object_add(apngview, "layout_y", json_object_new_string(buf));
  385. sprintf(buf, "%d", ApngList[idx].width);
  386. json_object_object_add(apngview, "width", json_object_new_string(buf));
  387. sprintf(buf, "%d", ApngList[idx].height);
  388. json_object_object_add(apngview, "height", json_object_new_string(buf));
  389. sprintf(buf, "%d", ApngList[idx].Loop);
  390. json_object_object_add(apngview, "Loop", json_object_new_string(buf));
  391. json_object_array_add(payload, apngview);
  392. }
  393. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  394. json_object_put(payload);
  395. return publish_data(mosq, "client/layout/apngview", outputStr);
  396. }
  397. /**
  398. *
  399. * @param mosq
  400. */
  401. int publish_videoview_add_push(struct mosquitto *mosq, Video_List *videoList, uint8_t listCount)
  402. {
  403. json_object *payload = json_object_new_array();
  404. char outputStr[2048]={0};
  405. for(int idx=0;idx<listCount;idx++)
  406. {
  407. json_object *imageview = json_object_new_object();
  408. char buf[32];
  409. sprintf(buf, "%d", videoList[idx].videoviewIndex);
  410. json_object_object_add(imageview, "videoviewIndex", json_object_new_string(buf));
  411. sprintf(buf, "%d", videoList[idx].videosrc_addr);
  412. json_object_object_add(imageview, "videoSrc_addr", json_object_new_string(buf));
  413. sprintf(buf, "%d", videoList[idx].layout_x);
  414. json_object_object_add(imageview, "layout_x", json_object_new_string(buf));
  415. sprintf(buf, "%d", videoList[idx].layout_y);
  416. json_object_object_add(imageview, "layout_y", json_object_new_string(buf));
  417. sprintf(buf, "%d", videoList[idx].width);
  418. json_object_object_add(imageview, "width", json_object_new_string(buf));
  419. sprintf(buf, "%d", videoList[idx].height);
  420. json_object_object_add(imageview, "height", json_object_new_string(buf));
  421. json_object_array_add(payload, imageview);
  422. }
  423. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  424. json_object_put(payload);
  425. return publish_data(mosq, "client/layout/videoview", outputStr);
  426. }
  427. /**
  428. *
  429. * @param mosq
  430. */
  431. int publish_qrcodeimage_add(struct mosquitto *mosq, QrCode_List *qrCodeList, uint8_t listCount)
  432. {
  433. int cmpIndex = 0;
  434. for(int idx=0;idx<listCount;idx++)
  435. {
  436. if (QRCodeIndex >= 5) {
  437. DEBUG_INFO("OVER APNG LIST BUFFER SIZE");
  438. break;
  439. }
  440. for (cmpIndex = 0; cmpIndex < listCount; cmpIndex++) {
  441. if (QRCodeList[cmpIndex].qrCodeIndex == qrCodeList[idx].qrCodeIndex)
  442. break;
  443. }
  444. if (QRCodeList[cmpIndex] != qrCodeList[idx].qrCodeIndex) {
  445. memcpy(&QRCodeList[QRCodeIndex],&qrCodeList[idx],sizeof(QrCode_List));
  446. DEBUG_INFO("Push QRCodeList[%d] into Buffer(%d)",QRCodeList[idx].qrCodeList,qrCodeIndex);
  447. QRCodeIndex++;
  448. }
  449. }
  450. return QRCodeIndex;
  451. }
  452. /**
  453. *
  454. * @param mosq
  455. */
  456. int publish_qrcodeimage_push(struct mosquitto *mosq)
  457. {
  458. json_object *payload = json_object_new_array();
  459. char outputStr[2048]={0};
  460. int cmpIndex = 0;
  461. for(int idx=0;idx<QRCodeIndex;idx++)
  462. {
  463. json_object *qrcodeImage = json_object_new_object();
  464. char buf[32];
  465. sprintf(buf, "%d", QRCodeList[idx].qrCodeIndex);
  466. json_object_object_add(qrcodeImage, "qrCodeIndex", json_object_new_string(buf));
  467. sprintf(buf, "%s", QRCodeList[idx].qrCodeContent);
  468. json_object_object_add(qrcodeImage, "qrCodeContent", json_object_new_string(buf));
  469. sprintf(buf, "%s", QRCodeList[idx].errorCorrection);
  470. json_object_object_add(qrcodeImage, "errorCorrection", json_object_new_string(buf));
  471. sprintf(buf, "%d", QRCodeList[idx].layout_x);
  472. json_object_object_add(qrcodeImage, "layout_x", json_object_new_string(buf));
  473. sprintf(buf, "%d", QRCodeList[idx].layout_y);
  474. json_object_object_add(qrcodeImage, "layout_y", json_object_new_string(buf));
  475. sprintf(buf, "%d", QRCodeList[idx].width);
  476. json_object_object_add(qrcodeImage, "width", json_object_new_string(buf));
  477. sprintf(buf, "%d", QRCodeList[idx].height);
  478. json_object_object_add(qrcodeImage, "height", json_object_new_string(buf));
  479. json_object_array_add(payload, qrcodeImage);
  480. }
  481. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  482. json_object_put(payload);
  483. return publish_data(mosq, "client/layout/qrcodeview", outputStr);
  484. }
  485. int publish_view_remove_all(struct mosquitto* mosq)
  486. {
  487. json_object* payload = json_object_new_object();
  488. json_object* text = json_object_new_array();
  489. json_object* image = json_object_new_array();
  490. json_object* video = json_object_new_array();
  491. json_object* qrCode = json_object_new_array();
  492. json_object* apng = json_object_new_array();
  493. json_object* textscroll = json_object_new_array();
  494. char outputStr[2048] = { 0 };
  495. // Remove text view
  496. //for(int idx=0;idx<textListCount;idx++)
  497. for (int idx = 0; idx < TextIndex; idx++)
  498. {
  499. json_object* textview = json_object_new_object();
  500. char buf[8];
  501. //sprintf(buf, "%d", textList[idx].textviewIndex);
  502. sprintf(buf, "%d", TextList[idx].textviewIndex);
  503. json_object_object_add(textview, "textviewIndex", json_object_new_string(buf));
  504. json_object_array_add(text, textview);
  505. //DEBUG_INFO("Remove Text[%d]:%d", idx, TextList[idx]);
  506. }
  507. json_object_object_add(payload, "rm_textview_list", text);
  508. // Remove image view
  509. //for(int idx=0;idx<imageListCount;idx++)
  510. for (int idx = 0; idx < ImageIndex; idx++)
  511. {
  512. json_object* imageview = json_object_new_object();
  513. char buf[8];
  514. //sprintf(buf, "%d", imageList[idx].imageviewIndex);
  515. sprintf(buf, "%d", ImageList[idx].imageviewIndex);
  516. json_object_object_add(imageview, "imageviewIndex", json_object_new_string(buf));
  517. json_object_array_add(image, imageview);
  518. //DEBUG_INFO("Remove Image[%d]:%d", idx, ImageList[idx]);
  519. }
  520. json_object_object_add(payload, "rm_imageview_list", image);
  521. // Remove video view
  522. for (int idx = 0; idx < 1; idx++)
  523. {
  524. json_object* videoview = json_object_new_object();
  525. char buf[8];
  526. sprintf(buf, "0");
  527. json_object_object_add(videoview, "videoviewIndex", json_object_new_string(buf));
  528. json_object_array_add(video, videoview);
  529. }
  530. json_object_object_add(payload, "rm_videoview_list", video);
  531. // Remove qrCode view
  532. //for(int idx=0;idx<qrCodeListCount;idx++)
  533. for (int idx = 0; idx < QRCodeIndex; idx++)
  534. {
  535. json_object* qrCodeview = json_object_new_object();
  536. char buf[8];
  537. //sprintf(buf, "%d", qrCodeList[idx].qrCodeIndex);
  538. sprintf(buf, "%d", QRCodeList[idx].qrCodeIndex);
  539. json_object_object_add(qrCodeview, "qrCodeIndex", json_object_new_string(buf));
  540. json_object_array_add(qrCode, qrCodeview);
  541. //DEBUG_INFO("Remove QRCODE[%d]:%d", idx, QRCodeList[idx]);
  542. }
  543. json_object_object_add(payload, "rm_qrcode_list", qrCode);
  544. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  545. json_object_put(payload);
  546. memset(TextList, 0, sizeof(TextList));
  547. memset(ImageList, 0, sizeof(ImageList));
  548. memset(QRCodeList, 0, sizeof(QRCodeList));
  549. TextIndex = 0;
  550. ImageIndex = 0;
  551. QRCodeIndex = 0;
  552. return publish_data(mosq, "client/layout/remove", outputStr);
  553. }
  554. /**
  555. *
  556. * @param mosq
  557. */
  558. int publish_view_remove(struct mosquitto *mosq, Text_List *textList, uint8_t textListCount,
  559. Image_List *imageList, uint8_t imageListCount,
  560. Video_List *videoList, uint8_t videoListCount,
  561. QrCode_List *qrCodeList, uint8_t qrCodeListCount)
  562. {
  563. json_object *payload = json_object_new_object();
  564. json_object *text = json_object_new_array();
  565. json_object *image = json_object_new_array();
  566. json_object *video = json_object_new_array();
  567. json_object *qrCode = json_object_new_array();
  568. char outputStr[2048]={0};
  569. // Remove text view
  570. for(int idx=0;idx<textListCount;idx++)
  571. {
  572. json_object *textview = json_object_new_object();
  573. char buf[8];
  574. sprintf(buf, "%d", textList[idx].textviewIndex);
  575. json_object_object_add(textview, "textviewIndex", json_object_new_string(buf));
  576. json_object_array_add(text, textview);
  577. }
  578. json_object_object_add(payload, "rm_textview_list", text);
  579. // Remove image view
  580. for(int idx=0;idx<imageListCount;idx++)
  581. {
  582. json_object *imageview = json_object_new_object();
  583. char buf[8];
  584. sprintf(buf, "%d", imageList[idx].imageviewIndex);
  585. json_object_object_add(imageview, "imageviewIndex", json_object_new_string(buf));
  586. json_object_array_add(image, imageview);
  587. }
  588. json_object_object_add(payload, "rm_imageview_list", image);
  589. // Remove video view
  590. for(int idx=0;idx<videoListCount;idx++)
  591. {
  592. json_object *videoview = json_object_new_object();
  593. char buf[8];
  594. sprintf(buf, "%d", videoList[idx].videoviewIndex);
  595. json_object_object_add(videoview, "videoviewIndex", json_object_new_string(buf));
  596. json_object_array_add(video, videoview);
  597. }
  598. json_object_object_add(payload, "rm_videoview_list", video);
  599. // Remove qrCode view
  600. for(int idx=0;idx<qrCodeListCount;idx++)
  601. {
  602. json_object *qrCodeview = json_object_new_object();
  603. char buf[8];
  604. sprintf(buf, "%d", qrCodeList[idx].qrCodeIndex);
  605. json_object_object_add(qrCodeview, "qrCodeIndex", json_object_new_string(buf));
  606. json_object_array_add(qrCode, qrCodeview);
  607. }
  608. json_object_object_add(payload, "rm_qrcode_list", qrCode);
  609. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  610. json_object_put(payload);
  611. return publish_data(mosq, "client/layout/remove", outputStr);
  612. }
  613. /**
  614. *
  615. * @param mosq
  616. */
  617. int publish_clear_screen(struct mosquitto *mosq)
  618. {
  619. json_object *payload = json_object_new_object();
  620. char outputStr[2048]={0};
  621. json_object_object_add(payload, "task_name", json_object_new_string("clear_screen"));
  622. sprintf(outputStr, "%s", json_object_to_json_string_ext(payload, JSON_C_TO_STRING_PLAIN));
  623. json_object_put(payload);
  624. return publish_data(mosq, "client/command", outputStr);
  625. }