ZCGL_RL4RSSI_MQTT_CLIENT.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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.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 loop()
  191. {
  192. $server = '127.0.0.1';
  193. $port = 1883;
  194. $clientId = 'mqttx_zcgl'.rand(1234, 99999);
  195. $username = 'rl0606';
  196. $password = "rlian2023";
  197. $clean_session = true;
  198. $connectionSettings = new ConnectionSettings();
  199. $connectionSettings = $connectionSettings
  200. ->setUsername($username)
  201. ->setPassword($password)
  202. ->setKeepAliveInterval(60)
  203. // Last Will 设置
  204. // ->setLastWillTopic('emqx/test/last-will')
  205. // ->setLastWillMessage('client disconnect')
  206. // ->setLastWillQualityOfService(1)
  207. ;
  208. //include "RLog.php";
  209. // $mqtt = new MqttClient($server, $port, $clientId, MqttClient::MQTT_3_1, null, new RLog());
  210. $mqtt = new MqttClient($server, $port, $clientId);
  211. $mqtt->connect($connectionSettings, $clean_session);
  212. rlog('INFO', "connect OK");
  213. /*
  214. 消息方向 设备->服务器
  215. 设备主动上报当前设备公共信息参数:ScBusTem/DevRegularInfo
  216. 服务器获取设备系统信息后设备上传信息,即GetDevSysMsg的回应 ScBusTem/GetUpDevSysMsg
  217. 服务器设置设备重量信息信息 ScBusTem/RCInfoMsg
  218. */
  219. // $mqtt->subscribe('ScBusTem/GetDevSysMsg/*', function ($topic, $message) {
  220. // rlog("INFO", 'recv', $topic, $message);
  221. // getDevSysMsg($topic, $message);
  222. // }, 0);
  223. //终端上报系统信息数据
  224. $mqtt->subscribe('RL4RSSI/ZCGL/rfidinfos', function ($topic, $message) {
  225. rlog("INFO", 'recv', $topic, $message);
  226. $data=json_decode($message,true);
  227. if((!empty($message))&&(!empty($data['cnt']))){
  228. mqttToRedis($message);
  229. }
  230. //var_dump($message);
  231. }, 0);
  232. $mqtt->loop(true);
  233. }
  234. function mqttToRedis($text){
  235. try{
  236. app_redis()->lpush("mqtt_data_zcgl",$text);
  237. }catch(Exception $e){
  238. rlog("INFO", 'recv',"redis 异常".$e->getMessage());
  239. }
  240. }
  241. while (1) {
  242. try {
  243. rlog('INFO', 'connect start');
  244. loop();
  245. } catch (\Exception $ex) {
  246. rlog("ERR", $ex->getTraceAsString());
  247. rlog("ERR", $ex->getMessage());
  248. }
  249. sleep(3);
  250. }