NBSV_RL4RSSI_MQTT_CLIENT.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. <?php
  2. require('../vendor/autoload.php');
  3. use \PhpMqtt\Client\MqttClient;
  4. use \PhpMqtt\Client\ConnectionSettings;
  5. use think\facade\Cache;
  6. date_default_timezone_set("PRC");
  7. define('HOST', '127.0.0.1');
  8. define('PORT', '6379');
  9. define('PASSWORD', 'R!478gH*%23nPn');
  10. define('DATABASE', 2);
  11. function app_redis()
  12. {
  13. static $redis = null;
  14. static $conn = false;
  15. if (!$conn) {
  16. connect: //定义标签
  17. $redis = new Redis();
  18. try {
  19. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  20. $conn = $redis->connect(HOST, PORT);
  21. $conn = $redis->auth(PASSWORD);
  22. $conn = $redis->select(DATABASE);
  23. // 连接成功,返回$redis对象,连接失败,返回false.
  24. return ($conn === true) ? $redis : false;
  25. } catch (Exception $e) {
  26. return false;
  27. }
  28. } else {
  29. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  30. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  31. if (php_sapi_name() === 'cli') {
  32. try {
  33. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  34. // ping失败时警告:
  35. // Warning: Redis::ping(): connect() failed: Connection refused
  36. // var_dump('AAAAAAAAA', $redis);
  37. echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  38. @$redis->ping();
  39. if (!$redis->ping()) {
  40. goto connect; //跳转到标签出继续执行连接操作
  41. }
  42. } catch (Exception $e) {
  43. // 信息如 Connection lost 或 Redis server went away
  44. echo $e->getMessage();
  45. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  46. // 断线重连
  47. goto connect;
  48. }
  49. }
  50. return $redis;
  51. }
  52. }
  53. function rlog(...$args)
  54. {
  55. if (empty($args[0])) {
  56. return;
  57. }
  58. static $LOG_CONSOLE = false; //是否输出到控制台
  59. static $LOG_NAME = "school_mqtt_nb_serv.log"; //值为空时 不写入文件
  60. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  61. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  62. static $CACHE_DURATION = 10; //缓存最大时间 秒
  63. static $CACHE_SIZE = 1024; //缓存大小
  64. static $cacheStartTime = 0;
  65. static $cacheBuf = '';
  66. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  67. static $logCount = 0;
  68. $buf = '';
  69. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  70. $buf = "\n";
  71. } else {
  72. $pid = ''; //进程id
  73. if (function_exists('posix_getpid')) {
  74. $pid = ' ' . posix_getpid() . ' ';
  75. }
  76. $fileLine = ''; //文件名:行号
  77. {
  78. $debug = debug_backtrace();
  79. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  80. }
  81. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  82. }
  83. $logCount++;
  84. if (!empty($LOG_NAME)) {
  85. if ($LOG_CACHE) {
  86. $cacheBuf .= $buf;
  87. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  88. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  89. $cacheStartTime = time();
  90. goto write;
  91. } else {
  92. goto skipWrite;
  93. }
  94. } else {
  95. $cacheBuf = $buf;
  96. }
  97. write: {
  98. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  99. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  100. $oldLogName = $LOG_NAME . '.old';
  101. if (file_exists($oldLogName)) {
  102. if (!unlink($oldLogName)) {
  103. echo "unlink err\n";
  104. }
  105. }
  106. if (!rename($LOG_NAME, $oldLogName)) {
  107. echo "rename err\n";
  108. }
  109. $logCount = 0;
  110. }
  111. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  112. echo "file_put_contents err\n";
  113. }
  114. $cacheBuf = '';
  115. }
  116. skipWrite: {
  117. }
  118. }
  119. if ($LOG_CONSOLE) {
  120. echo $buf;
  121. }
  122. }
  123. function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
  124. {
  125. // POST $params 字符串形式query=abcd&abc=12345
  126. //GET $params 数组['query' => 'abcd', 'abc' => 12345]
  127. // $header[] = "Content-Type: application/x-www-form-urlencoded";
  128. // $header[] = "Content-Type: application/soap+xml; charset=utf-8";
  129. // $header[] = "Content-Type: application/json; charset=utf-8";
  130. // $header[] = "Expect: ";
  131. rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
  132. if (strtoupper($method) == 'POST') {
  133. rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
  134. } else {
  135. rlog("[GET] send " . json_encode($params));
  136. }
  137. $header[] = "Expect: ";
  138. $opts = array(
  139. CURLOPT_TIMEOUT => $timeout,
  140. CURLOPT_RETURNTRANSFER => 1,
  141. CURLOPT_SSL_VERIFYPEER => false,
  142. CURLOPT_SSL_VERIFYHOST => false,
  143. CURLOPT_HTTPHEADER => $header
  144. );
  145. /* 根据请求类型设置特定参数 */
  146. switch (strtoupper($method)) {
  147. case 'GET':
  148. $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
  149. break;
  150. case 'POST':
  151. //$params = http_build_query($params);
  152. $opts[CURLOPT_URL] = $url;
  153. $opts[CURLOPT_POST] = 1;
  154. $opts[CURLOPT_POSTFIELDS] = json_encode($params);
  155. break;
  156. default:
  157. rlog("[ERR] method " . $method);
  158. return false;
  159. }
  160. global $ch; //curl长连接
  161. if (empty($ch)) {
  162. $ch = curl_init();
  163. }
  164. if (empty($ch)) {
  165. rlog("[ERR] curl_init");
  166. return false;
  167. }
  168. $csa = curl_setopt_array($ch, $opts);
  169. if (empty($csa)) {
  170. rlog("[ERR] curl_setopt_array");
  171. return false;
  172. }
  173. $data = curl_exec($ch);
  174. if ($data === false) {
  175. rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
  176. return false;
  177. }
  178. //unicode转中文
  179. $data = decodeUnicode($data);
  180. rlog("[HTTP] recv " . $data);
  181. //curl_close($ch);
  182. return $data;
  183. }
  184. function decodeUnicode($str)
  185. {
  186. return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
  187. return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
  188. }, $str);
  189. }
  190. function devRegularInfo($topic, $msg)
  191. {
  192. // {"CSQ":26,"REP_INT":60,"GPS":"112.14060,32.06532","IMEI":"867160049332715","IMSI":"460041872816952","CCID":"898607B8101980060659","SYS_VER":"RLSC_V0.1","Time":1676257143,"Status":0,"StatusMsg":"设备正常","Initiative":1}
  193. $data = json_decode($msg, true);
  194. if (empty($data)) {
  195. rlog("ERR", "json_decode");
  196. return;
  197. }
  198. rlog("[I]", $msg);
  199. $url = 'http://47.114.185.186:8115/api/trackReport';
  200. // $url .= http_build_query($column);
  201. http($url, $data, [], 'POST');
  202. $loc = explode(',', $data['GPS']);
  203. $column = [
  204. 'csq' => $data['CSQ'] ?: '',
  205. 'rep_int' => $data['REP_INT'] ?: '',
  206. 'latitude' => isset($loc[0]) ? $loc[0] : '',
  207. 'longitude' => isset($loc[1]) ? $loc[1] : '',
  208. 'imei' => $data['IMEI'] ?: '',
  209. 'imsi' => $data['IMSI'] ?: '',
  210. 'iccid' => $data['ICCID'] ?: '',
  211. 'version' => $data['SYS_VER'] ?: '',
  212. 'time' => $data['Time'] ?: '',
  213. 'status' => $data['Status'] ?: '',
  214. 'status_msg' => $data['StatusMsg'] ?: '',
  215. 'initiative' => $data['Initiative'] ?: ''
  216. ];
  217. $url = 'http://47.114.185.186:8115/rlapi/busHeartbeatData';
  218. // $url .= http_build_query($column);
  219. http($url, $column, [], 'POST');
  220. }
  221. function getUpDevSysMsg($topic, $msg)
  222. {
  223. // {
  224. // "IMEI": "867160049332715",
  225. // "Mqtt_Host": "develop.rltest.cn",
  226. // "Mqtt_Port": 1883,
  227. // "Mqtt_User": " rl517",
  228. // "Mqtt_Password": "rlian2022",
  229. // "TTS_TEXT": "某某科技欢迎您",
  230. // "GPS_EN": "0",
  231. // "Time": 1676257143
  232. // }
  233. $arr = json_decode($msg, true);
  234. if (empty($arr)) {
  235. rlog("ERR", "json_decode");
  236. return;
  237. }
  238. $column = [
  239. 'imei' => $arr['IMEI'],
  240. 'mqtt_host' => $arr['Mqtt_Host'],
  241. 'mqtt_port' => $arr['Mqtt_Port'],
  242. 'mqtt_user' => $arr['Mqtt_User'],
  243. 'mqtt_password' => $arr['Mqtt_Password'],
  244. 'tts_text' => $arr['TTS_TEXT'],
  245. 'gps_en' => $arr['GPS_EN'],
  246. 'time' => $arr['Time']
  247. ];
  248. $url = 'http://47.114.185.186:8115/rlapi/busSysMsgData';
  249. // $url .= http_build_query($data);
  250. http($url, $column, [], 'POST');
  251. }
  252. function rcInfoMsg($topic, $msg)
  253. {
  254. // {
  255. // "IMEI": "867160049332715",
  256. // "RC_Number": "867160049332715",
  257. // "RC_Type": 1,
  258. // "RC_Pres": 1,
  259. // "RC_Total": 25,
  260. // "GPS_X": "116.25"
  261. // "GPS_Y": "29.36",
  262. // "Msgid": "dkx12-15dss-ad567-1a2ss",
  263. // "Time": 1676257143
  264. // }
  265. $arr = json_decode($msg, true);
  266. if (empty($arr)) {
  267. rlog("ERR", "json_decode");
  268. return;
  269. }
  270. $column = [
  271. 'imei' => $arr['IMEI'],
  272. 'rc_number' => $arr['RC_Number'],
  273. 'rc_type' => $arr['RC_Type'],
  274. 'rc_pres' => $arr['RC_Pres'],
  275. 'rc_total' => $arr['RC_Total'],
  276. 'gps_x' => $arr['GPS_X'],
  277. 'gps_y' => $arr['GPS_Y'],
  278. 'msgid' => $arr['Msgid'],
  279. 'time' => $arr['Time']
  280. ];
  281. $url = 'http://47.114.185.186:8115/rlapi/busRcInfoData';
  282. // $url .= http_build_query($data);
  283. http($url, $column, [], 'POST');
  284. }
  285. function loop()
  286. {
  287. // $server = 'develop.rltest.cn';
  288. // $port = 1883;
  289. // $clientId = 'mqttx_test1312412412';
  290. // $username = 'rl517';
  291. // $password = "rlian2022";
  292. // $clean_session = true;
  293. $server = '127.0.0.1';
  294. $port = 1883;
  295. $clientId = 'mqttx_resiarea'.rand(1234, 99999);
  296. $username = 'rl0606';
  297. $password = "rlian2023";
  298. $clean_session = true;
  299. $connectionSettings = new ConnectionSettings();
  300. $connectionSettings = $connectionSettings
  301. ->setUsername($username)
  302. ->setPassword($password)
  303. ->setKeepAliveInterval(60)
  304. // Last Will 设置
  305. // ->setLastWillTopic('emqx/test/last-will')
  306. // ->setLastWillMessage('client disconnect')
  307. // ->setLastWillQualityOfService(1)
  308. ;
  309. //include "RLog.php";
  310. // $mqtt = new MqttClient($server, $port, $clientId, MqttClient::MQTT_3_1, null, new RLog());
  311. $mqtt = new MqttClient($server, $port, $clientId);
  312. $mqtt->connect($connectionSettings, $clean_session);
  313. rlog('INFO', "connect OK");
  314. /*
  315. 消息方向 设备->服务器
  316. 设备主动上报当前设备公共信息参数:ScBusTem/DevRegularInfo
  317. 服务器获取设备系统信息后设备上传信息,即GetDevSysMsg的回应 ScBusTem/GetUpDevSysMsg
  318. 服务器设置设备重量信息信息 ScBusTem/RCInfoMsg
  319. */
  320. //订阅心跳数据
  321. $mqtt->subscribe('RL4RSSI/devOntime', function ($topic, $message) {
  322. rlog("INFO", 'recv', $topic, $message);
  323. var_dump($message);
  324. }, 0);
  325. // $mqtt->subscribe('ScBusTem/GetDevSysMsg/*', function ($topic, $message) {
  326. // rlog("INFO", 'recv', $topic, $message);
  327. // getDevSysMsg($topic, $message);
  328. // }, 0);
  329. //终端上报系统信息数据
  330. $mqtt->subscribe('RL4RSSI/rfidinfos', function ($topic, $message) {
  331. rlog("INFO", 'recv', $topic, $message);
  332. $data=json_decode($message,true);
  333. if((!empty($message))&&(!empty($data['cnt']))){
  334. mqttToRedis($message);
  335. }
  336. //var_dump($message);
  337. }, 0);
  338. $mqtt->loop(true);
  339. }
  340. function mqttToRedis($text){
  341. try{
  342. app_redis()->lpush("mqtt_data",$text);
  343. }catch(Exception $e){
  344. rlog("INFO", 'recv',"redis 异常".$e->getMessage());
  345. }
  346. }
  347. while (1) {
  348. try {
  349. rlog('INFO', 'connect start');
  350. loop();
  351. } catch (\Exception $ex) {
  352. rlog("ERR", $ex->getTraceAsString());
  353. rlog("ERR", $ex->getMessage());
  354. }
  355. sleep(3);
  356. }