RLSTA_DOOR_MQTT_PUBLISH.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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("America/Bahia");
  7. define('HOST', '127.0.0.1');
  8. define('PORT', '6379');
  9. define('PASSWORD', '123456');
  10. define('DATABASE', 2);
  11. // define('HOST', 'r-bp1eebab79320044pd.redis.rds.aliyuncs.com');
  12. // define('PORT', '6379');
  13. // define('PASSWORD', '7e2b5c91e438be3c!');
  14. // define('DATABASE', 4);
  15. use \think\facade\Db;
  16. function app_redis()
  17. {
  18. static $redis = null;
  19. static $conn = false;
  20. if (!$conn) {
  21. connect: //定义标签
  22. $redis = new Redis();
  23. try {
  24. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  25. $conn = $redis->connect(HOST, PORT);
  26. $conn = $redis->auth(PASSWORD);
  27. $conn = $redis->select(DATABASE);
  28. // 连接成功,返回$redis对象,连接失败,返回false.
  29. return ($conn === true) ? $redis : false;
  30. } catch (Exception $e) {
  31. return false;
  32. }
  33. } else {
  34. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  35. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  36. if (php_sapi_name() === 'cli') {
  37. try {
  38. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  39. // ping失败时警告:
  40. // Warning: Redis::ping(): connect() failed: Connection refused
  41. // var_dump('AAAAAAAAA', $redis);
  42. // echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  43. @$redis->ping();
  44. if (!$redis->ping()) {
  45. goto connect; //跳转到标签出继续执行连接操作
  46. }
  47. } catch (Exception $e) {
  48. // 信息如 Connection lost 或 Redis server went away
  49. echo $e->getMessage();
  50. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  51. // 断线重连
  52. goto connect;
  53. }
  54. }
  55. return $redis;
  56. }
  57. }
  58. function sendConfig($topic,$config)
  59. {
  60. $server = '61.175.203.188';
  61. $port = 10002;
  62. $clientId = 'mqtt_rlsta_door_config_3213';
  63. $username = 'rl0606';
  64. $password = "rlian2023";
  65. $clean_session = false;
  66. $connectionSettings = new ConnectionSettings();
  67. $connectionSettings = $connectionSettings
  68. ->setUsername($username)
  69. ->setPassword($password)
  70. ->setKeepAliveInterval(60)
  71. // Last Will 设置
  72. // ->setLastWillTopic('emqx/test/last-will')
  73. // ->setLastWillMessage('client disconnect')
  74. // ->setLastWillQualityOfService(1)
  75. ;
  76. $mqtt = new MqttClient($server, $port, $clientId);
  77. $mqtt->connect($connectionSettings, $clean_session);
  78. rlog("[MqttClient] connect OK" );
  79. rlog("[MqttClient] topic: " .$topic);
  80. rlog("[MqttClient] config: " .$config);
  81. $res=$mqtt->publish(
  82. $topic,
  83. $config,
  84. 1
  85. );
  86. rlog("[MqttClient] publish endK" );
  87. $mqtt->loop(true,true);
  88. $mqtt->disconnect();
  89. return $res;
  90. }
  91. function rlog(...$args)
  92. {
  93. if (empty($args[0])) {
  94. return;
  95. }
  96. static $LOG_CONSOLE = false; //是否输出到控制台
  97. static $LOG_NAME = "rlsta_door_publish.log"; //值为空时 不写入文件
  98. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  99. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  100. static $CACHE_DURATION = 10; //缓存最大时间 秒
  101. static $CACHE_SIZE = 1024; //缓存大小
  102. static $cacheStartTime = 0;
  103. static $cacheBuf = '';
  104. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  105. static $logCount = 0;
  106. $buf = '';
  107. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  108. $buf = "\n";
  109. } else {
  110. $pid = ''; //进程id
  111. if (function_exists('posix_getpid')) {
  112. $pid = ' ' . posix_getpid() . ' ';
  113. }
  114. $fileLine = ''; //文件名:行号
  115. {
  116. $debug = debug_backtrace();
  117. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  118. }
  119. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  120. }
  121. $logCount++;
  122. if (!empty($LOG_NAME)) {
  123. if ($LOG_CACHE) {
  124. $cacheBuf .= $buf;
  125. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  126. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  127. $cacheStartTime = time();
  128. goto write;
  129. } else {
  130. goto skipWrite;
  131. }
  132. } else {
  133. $cacheBuf = $buf;
  134. }
  135. write: {
  136. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  137. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  138. $oldLogName = $LOG_NAME . '.old';
  139. if (file_exists($oldLogName)) {
  140. if (!unlink($oldLogName)) {
  141. echo "unlink err\n";
  142. }
  143. }
  144. if (!rename($LOG_NAME, $oldLogName)) {
  145. echo "rename err\n";
  146. }
  147. $logCount = 0;
  148. }
  149. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  150. echo "file_put_contents err\n";
  151. }
  152. $cacheBuf = '';
  153. }
  154. skipWrite: {
  155. }
  156. }
  157. if ($LOG_CONSOLE) {
  158. echo $buf;
  159. }
  160. }
  161. function updateSendResult($msgid){
  162. // $conn = new mysqli('rm-bp1h3uqkzy66ckt8yro.mysql.rds.aliyuncs.com', 'dev', '711e7D69f9d0c3f1', 'smart_livestock');
  163. $conn = new mysqli('127.0.0.1', 'root', 'root', 'smart_livestock');
  164. if ($conn -> connect_errno) {
  165. printf("Connect failed: %s\n", $conn->connect_error);
  166. exit();
  167. }
  168. $sql = "UPDATE send_config_log SET result='1' WHERE id=".$msgid;
  169. if ($conn->query($sql) === TRUE) {
  170. echo "send_config_log update success";
  171. } else {
  172. echo "更新失败: " . $conn->error;
  173. }
  174. }
  175. while (1) {
  176. $jsonData= app_redis()->rpop("rlsta_door_black_list");
  177. if(!$jsonData){
  178. sleep(3);
  179. continue;
  180. }
  181. $data=json_decode($jsonData,true);
  182. rlog("[Redis] rpop: " . json_encode($data));
  183. $topic="rlsta/door/bklist/set/".$data['device_id'];
  184. // {
  185. // "msgid": "id123",
  186. // "bkList": {
  187. // "action": "add", //add or del
  188. // "list":["lableid1","lableid2","lableid3"] //
  189. // }
  190. // "time": 1724145895
  191. // }
  192. $config=$data['config'];
  193. rlog("[Config] : " . json_encode($config));
  194. foreach($config['bkList']['list'] as &$val){
  195. $val = str_pad($val, 8, "0", STR_PAD_LEFT);
  196. }
  197. $config_json=json_encode($config);
  198. rlog("[json_config] : " . $config_json);
  199. sendConfig($topic,$config_json);
  200. }