LIVESTOCK_MQTT_REPEAT.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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. // date_default_timezone_set("America/Bahia");
  8. // define('HOST', 'r-bp1eebab79320044pd.redis.rds.aliyuncs.com');
  9. // define('PORT', '6379');
  10. // define('PASSWORD', '7e2b5c91e438be3c!');
  11. // define('DATABASE', 4);
  12. define('HOST', '127.0.0.1');
  13. define('PORT', '6379');
  14. define('PASSWORD', '123456');
  15. define('DATABASE', 2);
  16. function rlog(...$args)
  17. {
  18. if (empty($args[0])) {
  19. return;
  20. }
  21. static $LOG_CONSOLE = false; //是否输出到控制台
  22. static $LOG_NAME = "livestock_repeat.log"; //值为空时 不写入文件
  23. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  24. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  25. static $CACHE_DURATION = 10; //缓存最大时间 秒
  26. static $CACHE_SIZE = 1024; //缓存大小
  27. static $cacheStartTime = 0;
  28. static $cacheBuf = '';
  29. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  30. static $logCount = 0;
  31. $buf = '';
  32. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  33. $buf = "\n";
  34. } else {
  35. $pid = ''; //进程id
  36. if (function_exists('posix_getpid')) {
  37. $pid = ' ' . posix_getpid() . ' ';
  38. }
  39. $fileLine = ''; //文件名:行号
  40. {
  41. $debug = debug_backtrace();
  42. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  43. }
  44. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  45. }
  46. $logCount++;
  47. if (!empty($LOG_NAME)) {
  48. if ($LOG_CACHE) {
  49. $cacheBuf .= $buf;
  50. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  51. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  52. $cacheStartTime = time();
  53. goto write;
  54. } else {
  55. goto skipWrite;
  56. }
  57. } else {
  58. $cacheBuf = $buf;
  59. }
  60. write: {
  61. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  62. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  63. $oldLogName = $LOG_NAME . '.old';
  64. if (file_exists($oldLogName)) {
  65. if (!unlink($oldLogName)) {
  66. echo "unlink err\n";
  67. }
  68. }
  69. if (!rename($LOG_NAME, $oldLogName)) {
  70. echo "rename err\n";
  71. }
  72. $logCount = 0;
  73. }
  74. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  75. echo "file_put_contents err\n";
  76. }
  77. $cacheBuf = '';
  78. }
  79. skipWrite: {
  80. }
  81. }
  82. if ($LOG_CONSOLE) {
  83. echo $buf;
  84. }
  85. }
  86. function loop()
  87. {
  88. $server = '116.62.220.88';
  89. $port = 1883;
  90. $clientId = 'repeat_mqtt_livestock_develop_paigou';
  91. $username = 'rl517';
  92. $password = "rlian2022";
  93. $clean_session = false;
  94. $connectionSettings = new ConnectionSettings();
  95. $connectionSettings = $connectionSettings
  96. ->setUsername($username)
  97. ->setPassword($password)
  98. ->setKeepAliveInterval(60)
  99. // Last Will 设置
  100. // ->setLastWillTopic('emqx/test/last-will')
  101. // ->setLastWillMessage('client disconnect')
  102. // ->setLastWillQualityOfService(1)
  103. ;
  104. //include "RLog.php";
  105. // $mqtt = new MqttClient($server, $port, $clientId, MqttClient::MQTT_3_1, null, new RLog());
  106. $mqtt = new MqttClient($server, $port, $clientId);
  107. $mqtt->connect($connectionSettings, $clean_session);
  108. rlog('INFO', "connect OK");
  109. /*
  110. 消息方向 设备->服务器
  111. 设备主动上报当前设备公共信息参数:ScBusTem/DevRegularInfo
  112. 服务器获取设备系统信息后设备上传信息,即GetDevSysMsg的回应 ScBusTem/GetUpDevSysMsg
  113. 服务器设置设备重量信息信息 ScBusTem/RCInfoMsg
  114. */
  115. // $mqtt->subscribe('ScBusTem/GetDevSysMsg/*', function ($topic, $message) {
  116. // rlog("INFO", 'recv', $topic, $message);
  117. // getDevSysMsg($topic, $message);
  118. // }, 0);
  119. //终端上报系统信息数据
  120. $mqtt->subscribe('earings/+/reportData', function ($topic, $message) use($mqtt) {
  121. rlog("reportData", 'recv', $topic, $message);
  122. $topicArr=explode('/',$topic);
  123. $deviceId=$topicArr[1];
  124. mqttRepeat($topic, $message);
  125. }, 1);
  126. // $mqtt->subscribe('earings/+/cloudResp', function ($topic, $message) use($mqtt) {
  127. // rlog("cloudResp", 'recv', $topic, $message);
  128. // mqttRepeat($topic, $message);
  129. // }, 1);
  130. // $mqtt->subscribe('earings/+/cloudControl', function ($topic, $message) use($mqtt) {
  131. // rlog("cloudControl", 'recv', $topic, $message);
  132. // mqttRepeat($topic, $message);
  133. // }, 1);
  134. // $mqtt->subscribe('$SYS/brokers/+/clients/+/connected', function ($topic, $message) use($mqtt) {
  135. // rlog("connected", 'recv', $topic, $message);
  136. // $data=json_decode($message,true);
  137. // $data['deviceId']=$data['clientid'];
  138. // $data['data_type']='connected';
  139. // }, 1);
  140. // $mqtt->subscribe('$SYS/brokers/+/clients/+/disconnected', function ($topic, $message) use($mqtt) {
  141. // rlog("connected", 'recv', $topic, $message);
  142. // $data=json_decode($message,true);
  143. // $data['deviceId']=$data['clientid'];
  144. // $data['data_type']='disconnected';
  145. // }, 1);
  146. // 上线,: $SYS/brokers/+/clients/+/connected
  147. // 下线,: $SYS/brokers/+/clients/+/disconnected
  148. $mqtt->loop(true);
  149. }
  150. function mqttRepeat($topic,$message){
  151. $server = '61.175.203.188';
  152. $port = 10002;
  153. $clientId = 'repeat_mqtt_livestock_ningbo_paigou';
  154. $username = 'rltest';
  155. $password = "rlian@24329";
  156. $clean_session = false;
  157. $connectionSettings = new ConnectionSettings();
  158. $connectionSettings = $connectionSettings
  159. ->setUsername($username)
  160. ->setPassword($password)
  161. ->setKeepAliveInterval(60)
  162. // Last Will 设置
  163. // ->setLastWillTopic('emqx/test/last-will')
  164. // ->setLastWillMessage('client disconnect')
  165. // ->setLastWillQualityOfService(1)
  166. ;
  167. $mqtt2 = new MqttClient($server, $port, $clientId);
  168. $mqtt2->connect($connectionSettings, $clean_session);
  169. echo '['.date('Y-m-d H:i:s').']connect OK'.PHP_EOL;
  170. echo '['.date('Y-m-d H:i:s').']topic:'.$topic.PHP_EOL;
  171. echo '['.date('Y-m-d H:i:s').']message:'.$message.PHP_EOL;
  172. $res=$mqtt2->publish(
  173. $topic,
  174. $message,
  175. 1
  176. );
  177. echo '['.date('Y-m-d H:i:s').']publish end'.PHP_EOL;
  178. $mqtt2->loop(true,true);
  179. $mqtt2->disconnect();
  180. return $res;
  181. }
  182. while (1) {
  183. try {
  184. rlog('INFO', 'connect start');
  185. loop();
  186. } catch (\Exception $ex) {
  187. rlog("ERR", $ex->getTraceAsString());
  188. rlog("ERR", $ex->getMessage());
  189. }
  190. sleep(3);
  191. }
  192. // $text='{"idESim":460046697314223,"stepCount":0,"EnvironmentTemperature":"27.0","earTemperature":"22.2","latitude":0,"longitude":0,"charging":1,"lastCharge":1704328944,"battery-level":99,"measurementTimestamp":1691173083,"agnss-dtime":16170,"agnss-inserttime":28050,"gnss-locatetime":39600,"gnss-satnum":1,"gnss-cn":28,"csq":"0-0","edrxrdp":",,","deviceId":"869154043484299-999202300000012","data_type":"reportData"}';
  193. // $text='{"clean_start":false,"clientid":"866216066939047-999274877906912","connack":0,"connected_at":1716169665,"expiry_interval":86400,"ipaddress":"39.144.129.107","keepalive":120,"proto_name":"MQTT","proto_ver":4,"sockport":1883,"ts":1716169665478,"username":"rl517","deviceId":"866216066939047-999274877906912","data_type":"connected"}';
  194. // app_redis()->lpush("mqtt_data_livestock",$text);