RLSTA_DOOR_MQTT_PUBLISH.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. $clientId = 'mqtt_rlsta_door_config_1126';
  66. $server = '172.16.222.99';
  67. $port = 1883;
  68. $username = 'rl241107';
  69. $password = "rlian2024";
  70. $clean_session = false;
  71. $connectionSettings = new ConnectionSettings();
  72. $connectionSettings = $connectionSettings
  73. ->setUsername($username)
  74. ->setPassword($password)
  75. ->setKeepAliveInterval(60)
  76. // Last Will 设置
  77. // ->setLastWillTopic('emqx/test/last-will')
  78. // ->setLastWillMessage('client disconnect')
  79. // ->setLastWillQualityOfService(1)
  80. ;
  81. $mqtt = new MqttClient($server, $port, $clientId);
  82. $mqtt->connect($connectionSettings, $clean_session);
  83. rlog("[MqttClient] connect OK" );
  84. rlog("[MqttClient] topic: " .$topic);
  85. rlog("[MqttClient] config: " .$config);
  86. $res=$mqtt->publish(
  87. $topic,
  88. $config,
  89. 1
  90. );
  91. rlog("[MqttClient] publish endK" );
  92. $mqtt->loop(true,true);
  93. $mqtt->disconnect();
  94. return $res;
  95. }
  96. function rlog(...$args)
  97. {
  98. if (empty($args[0])) {
  99. return;
  100. }
  101. static $LOG_CONSOLE = false; //是否输出到控制台
  102. static $LOG_NAME = "rlsta_door_publish.log"; //值为空时 不写入文件
  103. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  104. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  105. static $CACHE_DURATION = 10; //缓存最大时间 秒
  106. static $CACHE_SIZE = 1024; //缓存大小
  107. static $cacheStartTime = 0;
  108. static $cacheBuf = '';
  109. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  110. static $logCount = 0;
  111. $buf = '';
  112. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  113. $buf = "\n";
  114. } else {
  115. $pid = ''; //进程id
  116. if (function_exists('posix_getpid')) {
  117. $pid = ' ' . posix_getpid() . ' ';
  118. }
  119. $fileLine = ''; //文件名:行号
  120. {
  121. $debug = debug_backtrace();
  122. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  123. }
  124. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  125. }
  126. $logCount++;
  127. if (!empty($LOG_NAME)) {
  128. if ($LOG_CACHE) {
  129. $cacheBuf .= $buf;
  130. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  131. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  132. $cacheStartTime = time();
  133. goto write;
  134. } else {
  135. goto skipWrite;
  136. }
  137. } else {
  138. $cacheBuf = $buf;
  139. }
  140. write: {
  141. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  142. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  143. $oldLogName = $LOG_NAME . '.old';
  144. if (file_exists($oldLogName)) {
  145. if (!unlink($oldLogName)) {
  146. echo "unlink err\n";
  147. }
  148. }
  149. if (!rename($LOG_NAME, $oldLogName)) {
  150. echo "rename err\n";
  151. }
  152. $logCount = 0;
  153. }
  154. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  155. echo "file_put_contents err\n";
  156. }
  157. $cacheBuf = '';
  158. }
  159. skipWrite: {
  160. }
  161. }
  162. if ($LOG_CONSOLE) {
  163. echo $buf;
  164. }
  165. }
  166. function updateSendResult($msgid){
  167. // $conn = new mysqli('rm-bp1h3uqkzy66ckt8yro.mysql.rds.aliyuncs.com', 'dev', '711e7D69f9d0c3f1', 'smart_livestock');
  168. $conn = new mysqli('127.0.0.1', 'root', 'root', 'smart_livestock');
  169. if ($conn -> connect_errno) {
  170. printf("Connect failed: %s\n", $conn->connect_error);
  171. exit();
  172. }
  173. $sql = "UPDATE send_config_log SET result='1' WHERE id=".$msgid;
  174. if ($conn->query($sql) === TRUE) {
  175. echo "send_config_log update success";
  176. } else {
  177. echo "更新失败: " . $conn->error;
  178. }
  179. }
  180. while (1) {
  181. $jsonData= app_redis()->rpop("rlsta_door_black_list");
  182. if(!$jsonData){
  183. sleep(3);
  184. continue;
  185. }
  186. $data=json_decode($jsonData,true);
  187. rlog("[Redis] rpop: " . json_encode($data));
  188. $topic="rlsta/door/bklist/set/".$data['device_id'];
  189. // {
  190. // "msgid": "id123",
  191. // "bkList": {
  192. // "action": "add", //add or del
  193. // "list":["lableid1","lableid2","lableid3"] //
  194. // }
  195. // "time": 1724145895
  196. // }
  197. $config=$data['config'];
  198. rlog("[Config] : " . json_encode($config));
  199. foreach($config['bkList']['list'] as &$val){
  200. $val = str_pad($val, 8, "0", STR_PAD_LEFT);
  201. }
  202. $config_json=json_encode($config);
  203. rlog("[json_config] : " . $config_json);
  204. sendConfig($topic,$config_json);
  205. }