INDOOR_MQTTPUB_WAIT2SEND.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 = "indoor_mqttpub_wait2send.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 loop()
  124. {
  125. $server = 'develop.rltest.cn';
  126. $port = 1883;
  127. $clientId = 'mqtt_indoor_mqttpub_wait2send_'.rand(10000,99999);
  128. $username = 'rl517';
  129. $password = "rlian2022";
  130. $clean_session = true;
  131. $connectionSettings = new ConnectionSettings();
  132. $connectionSettings = $connectionSettings
  133. ->setUsername($username)
  134. ->setPassword($password)
  135. ->setKeepAliveInterval(60)
  136. ;
  137. rlog('INFO', "connect OK");
  138. while (1) {
  139. # code...
  140. $configCnt = app_redis()->lpop("indoor_mqttpub_wait2send");
  141. if (!$configCnt) {
  142. # code...
  143. sleep(1);
  144. continue;
  145. }
  146. $mqtt = new MqttClient($server, $port, $clientId);
  147. $mqtt->connect($connectionSettings, $clean_session);
  148. $cnt = json_decode($configCnt, true);
  149. if ($cnt["rfidsConfig"]) {
  150. # code...
  151. $rfidsConfig = explode(",",$cnt["rfidsConfig"]);
  152. $cnt["rfidsConfig"] = $rfidsConfig;
  153. }else{
  154. $cnt["rfidsConfig"] == 0;
  155. }
  156. $sendCnt = json_encode($cnt);
  157. $mqtt->publish('RlianStation/G31W/'.$cnt["mac"].'/SetConfig', $sendCnt, MqttClient::QOS_AT_MOST_ONCE);
  158. $mqtt->loop(true, true);
  159. $mqtt->disconnect();
  160. var_dump("out!!");
  161. rlog('PUB_CONFIG_CNT', $configCnt);
  162. }
  163. }
  164. try {
  165. rlog('INFO', 'connect start');
  166. loop();
  167. } catch (\Exception $ex) {
  168. rlog("ERR", $ex->getTraceAsString());
  169. rlog("ERR", $ex->getMessage());
  170. }