LIVESTOCK_MQTT_CLIENT.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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 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 rlog(...$args)
  59. {
  60. if (empty($args[0])) {
  61. return;
  62. }
  63. static $LOG_CONSOLE = false; //是否输出到控制台
  64. static $LOG_NAME = "livestock_mqtt.log"; //值为空时 不写入文件
  65. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  66. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  67. static $CACHE_DURATION = 10; //缓存最大时间 秒
  68. static $CACHE_SIZE = 1024; //缓存大小
  69. static $cacheStartTime = 0;
  70. static $cacheBuf = '';
  71. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  72. static $logCount = 0;
  73. $buf = '';
  74. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  75. $buf = "\n";
  76. } else {
  77. $pid = ''; //进程id
  78. if (function_exists('posix_getpid')) {
  79. $pid = ' ' . posix_getpid() . ' ';
  80. }
  81. $fileLine = ''; //文件名:行号
  82. {
  83. $debug = debug_backtrace();
  84. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  85. }
  86. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  87. }
  88. $logCount++;
  89. if (!empty($LOG_NAME)) {
  90. if ($LOG_CACHE) {
  91. $cacheBuf .= $buf;
  92. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  93. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  94. $cacheStartTime = time();
  95. goto write;
  96. } else {
  97. goto skipWrite;
  98. }
  99. } else {
  100. $cacheBuf = $buf;
  101. }
  102. write: {
  103. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  104. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  105. $oldLogName = $LOG_NAME . '.old';
  106. if (file_exists($oldLogName)) {
  107. if (!unlink($oldLogName)) {
  108. echo "unlink err\n";
  109. }
  110. }
  111. if (!rename($LOG_NAME, $oldLogName)) {
  112. echo "rename err\n";
  113. }
  114. $logCount = 0;
  115. }
  116. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  117. echo "file_put_contents err\n";
  118. }
  119. $cacheBuf = '';
  120. }
  121. skipWrite: {
  122. }
  123. }
  124. if ($LOG_CONSOLE) {
  125. echo $buf;
  126. }
  127. }
  128. function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
  129. {
  130. // POST $params 字符串形式query=abcd&abc=12345
  131. //GET $params 数组['query' => 'abcd', 'abc' => 12345]
  132. // $header[] = "Content-Type: application/x-www-form-urlencoded";
  133. // $header[] = "Content-Type: application/soap+xml; charset=utf-8";
  134. // $header[] = "Content-Type: application/json; charset=utf-8";
  135. // $header[] = "Expect: ";
  136. rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
  137. if (strtoupper($method) == 'POST') {
  138. rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
  139. } else {
  140. rlog("[GET] send " . json_encode($params));
  141. }
  142. $header[] = "Expect: ";
  143. $opts = array(
  144. CURLOPT_TIMEOUT => $timeout,
  145. CURLOPT_RETURNTRANSFER => 1,
  146. CURLOPT_SSL_VERIFYPEER => false,
  147. CURLOPT_SSL_VERIFYHOST => false,
  148. CURLOPT_HTTPHEADER => $header
  149. );
  150. /* 根据请求类型设置特定参数 */
  151. switch (strtoupper($method)) {
  152. case 'GET':
  153. $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
  154. break;
  155. case 'POST':
  156. //$params = http_build_query($params);
  157. $opts[CURLOPT_URL] = $url;
  158. $opts[CURLOPT_POST] = 1;
  159. $opts[CURLOPT_POSTFIELDS] = json_encode($params);
  160. break;
  161. default:
  162. rlog("[ERR] method " . $method);
  163. return false;
  164. }
  165. global $ch; //curl长连接
  166. if (empty($ch)) {
  167. $ch = curl_init();
  168. }
  169. if (empty($ch)) {
  170. rlog("[ERR] curl_init");
  171. return false;
  172. }
  173. $csa = curl_setopt_array($ch, $opts);
  174. if (empty($csa)) {
  175. rlog("[ERR] curl_setopt_array");
  176. return false;
  177. }
  178. $data = curl_exec($ch);
  179. if ($data === false) {
  180. rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
  181. return false;
  182. }
  183. //unicode转中文
  184. $data = decodeUnicode($data);
  185. rlog("[HTTP] recv " . $data);
  186. //curl_close($ch);
  187. return $data;
  188. }
  189. function decodeUnicode($str)
  190. {
  191. return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
  192. return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
  193. }, $str);
  194. }
  195. function loop()
  196. {
  197. // $server = '43.157.183.167';
  198. // $port = 1883;
  199. // $clientId = 'local1_mqtt_livestock_cli_202406271';
  200. // $username = 'rl517';
  201. // $password = "rlian2022";
  202. $server = '116.62.220.88';
  203. $port = 1883;
  204. $clientId = 'local_mqtt_livestock_cli_202410271';
  205. $username = 'rl517';
  206. $password = "rlian2022";
  207. $clean_session = false;
  208. $connectionSettings = new ConnectionSettings();
  209. $connectionSettings = $connectionSettings
  210. ->setUsername($username)
  211. ->setPassword($password)
  212. ->setKeepAliveInterval(60)
  213. // Last Will 设置
  214. // ->setLastWillTopic('emqx/test/last-will')
  215. // ->setLastWillMessage('client disconnect')
  216. // ->setLastWillQualityOfService(1)
  217. ;
  218. //include "RLog.php";
  219. // $mqtt = new MqttClient($server, $port, $clientId, MqttClient::MQTT_3_1, null, new RLog());
  220. $mqtt = new MqttClient($server, $port, $clientId);
  221. $mqtt->connect($connectionSettings, $clean_session);
  222. rlog('INFO', "connect OK");
  223. /*
  224. 消息方向 设备->服务器
  225. 设备主动上报当前设备公共信息参数:ScBusTem/DevRegularInfo
  226. 服务器获取设备系统信息后设备上传信息,即GetDevSysMsg的回应 ScBusTem/GetUpDevSysMsg
  227. 服务器设置设备重量信息信息 ScBusTem/RCInfoMsg
  228. */
  229. // $mqtt->subscribe('ScBusTem/GetDevSysMsg/*', function ($topic, $message) {
  230. // rlog("INFO", 'recv', $topic, $message);
  231. // getDevSysMsg($topic, $message);
  232. // }, 0);
  233. //终端上报系统信息数据
  234. $mqtt->subscribe('earings/+/reportData', function ($topic, $message) use($mqtt) {
  235. rlog("reportData", 'recv', $topic, $message);
  236. $topicArr=explode('/',$topic);
  237. $arr=explode(';',$message);
  238. foreach($arr as $val){
  239. $data=json_decode($val,true);
  240. if(count($data)>0){
  241. $data['deviceId']=$topicArr[1];
  242. $data['data_type']='reportData';
  243. mqttToRedis(json_encode($data));
  244. }
  245. }
  246. }, 1);
  247. $mqtt->subscribe('earings/+/cloudResp', function ($topic, $message) use($mqtt) {
  248. rlog("cloudResp", 'recv', $topic, $message);
  249. $topicArr=explode('/',$topic);
  250. $data=json_decode($message,true);
  251. $data['deviceId']=$topicArr[1];
  252. $data['data_type']='cloudResp';
  253. mqttToRedis(json_encode($data));
  254. }, 1);
  255. $mqtt->subscribe('earings/+/cloudControl', function ($topic, $message) use($mqtt) {
  256. rlog("cloudControl", 'recv', $topic, $message);
  257. $topicArr=explode('/',$topic);
  258. $data=json_decode($message,true);
  259. $data['deviceId']=$topicArr[1];
  260. $data['data_type']='cloudControl';
  261. mqttToRedis(json_encode($data));
  262. }, 1);
  263. // $mqtt->subscribe('$SYS/brokers/+/clients/+/connected', function ($topic, $message) use($mqtt) {
  264. // rlog("connected", 'recv', $topic, $message);
  265. // $data=json_decode($message,true);
  266. // $data['deviceId']=$data['clientid'];
  267. // $data['data_type']='connected';
  268. // }, 1);
  269. // $mqtt->subscribe('$SYS/brokers/+/clients/+/disconnected', function ($topic, $message) use($mqtt) {
  270. // rlog("connected", 'recv', $topic, $message);
  271. // $data=json_decode($message,true);
  272. // $data['deviceId']=$data['clientid'];
  273. // $data['data_type']='disconnected';
  274. // }, 1);
  275. // 上线,: $SYS/brokers/+/clients/+/connected
  276. // 下线,: $SYS/brokers/+/clients/+/disconnected
  277. $mqtt->loop(true);
  278. }
  279. function mqttToRedis($text){
  280. try{
  281. app_redis()->lpush("mqtt_data_livestock",$text);
  282. }catch(Exception $e){
  283. rlog("INFO", 'recv',"redis 异常".$e->getMessage());
  284. }
  285. }
  286. while (1) {
  287. try {
  288. rlog('INFO', 'connect start');
  289. loop();
  290. } catch (\Exception $ex) {
  291. rlog("ERR", $ex->getTraceAsString());
  292. rlog("ERR", $ex->getMessage());
  293. }
  294. sleep(3);
  295. }
  296. // $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"}';
  297. // $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"}';
  298. // app_redis()->lpush("mqtt_data_livestock",$text);