ESP32_MQTT_CLIENT.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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', 'r-bp1eebab79320044pd.redis.rds.aliyuncs.com');
  8. // define('PORT', '6379');
  9. // define('PASSWORD', '7e2b5c91e438be3c!');
  10. // define('DATABASE', 4);
  11. define('HOST', '127.0.0.1');
  12. define('PORT', '6379');
  13. define('PASSWORD', '123456');
  14. define('DATABASE', 2);
  15. function app_redis()
  16. {
  17. static $redis = null;
  18. static $conn = false;
  19. if (!$conn) {
  20. connect: //定义标签
  21. $redis = new Redis();
  22. try {
  23. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  24. $conn = $redis->connect(HOST, PORT);
  25. $conn = $redis->auth(PASSWORD);
  26. $conn = $redis->select(DATABASE);
  27. // 连接成功,返回$redis对象,连接失败,返回false.
  28. return ($conn === true) ? $redis : false;
  29. } catch (Exception $e) {
  30. return false;
  31. }
  32. } else {
  33. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  34. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  35. if (php_sapi_name() === 'cli') {
  36. try {
  37. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  38. // ping失败时警告:
  39. // Warning: Redis::ping(): connect() failed: Connection refused
  40. // var_dump('AAAAAAAAA', $redis);
  41. // echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  42. @$redis->ping();
  43. if (!$redis->ping()) {
  44. goto connect; //跳转到标签出继续执行连接操作
  45. }
  46. } catch (Exception $e) {
  47. // 信息如 Connection lost 或 Redis server went away
  48. echo $e->getMessage();
  49. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  50. // 断线重连
  51. goto connect;
  52. }
  53. }
  54. return $redis;
  55. }
  56. }
  57. function rlog(...$args)
  58. {
  59. if (empty($args[0])) {
  60. return;
  61. }
  62. static $LOG_CONSOLE = false; //是否输出到控制台
  63. static $LOG_NAME = "elevator_mqtt.log"; //值为空时 不写入文件
  64. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  65. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  66. static $CACHE_DURATION = 10; //缓存最大时间 秒
  67. static $CACHE_SIZE = 1024; //缓存大小
  68. static $cacheStartTime = 0;
  69. static $cacheBuf = '';
  70. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  71. static $logCount = 0;
  72. $buf = '';
  73. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  74. $buf = "\n";
  75. } else {
  76. $pid = ''; //进程id
  77. if (function_exists('posix_getpid')) {
  78. $pid = ' ' . posix_getpid() . ' ';
  79. }
  80. $fileLine = ''; //文件名:行号
  81. {
  82. $debug = debug_backtrace();
  83. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  84. }
  85. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  86. }
  87. $logCount++;
  88. if (!empty($LOG_NAME)) {
  89. if ($LOG_CACHE) {
  90. $cacheBuf .= $buf;
  91. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  92. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  93. $cacheStartTime = time();
  94. goto write;
  95. } else {
  96. goto skipWrite;
  97. }
  98. } else {
  99. $cacheBuf = $buf;
  100. }
  101. write: {
  102. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  103. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  104. $oldLogName = $LOG_NAME . '.old';
  105. if (file_exists($oldLogName)) {
  106. if (!unlink($oldLogName)) {
  107. echo "unlink err\n";
  108. }
  109. }
  110. if (!rename($LOG_NAME, $oldLogName)) {
  111. echo "rename err\n";
  112. }
  113. $logCount = 0;
  114. }
  115. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  116. echo "file_put_contents err\n";
  117. }
  118. $cacheBuf = '';
  119. }
  120. skipWrite: {
  121. }
  122. }
  123. if ($LOG_CONSOLE) {
  124. echo $buf;
  125. }
  126. }
  127. function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
  128. {
  129. // POST $params 字符串形式query=abcd&abc=12345
  130. //GET $params 数组['query' => 'abcd', 'abc' => 12345]
  131. // $header[] = "Content-Type: application/x-www-form-urlencoded";
  132. // $header[] = "Content-Type: application/soap+xml; charset=utf-8";
  133. // $header[] = "Content-Type: application/json; charset=utf-8";
  134. // $header[] = "Expect: ";
  135. rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
  136. if (strtoupper($method) == 'POST') {
  137. rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
  138. } else {
  139. rlog("[GET] send " . json_encode($params));
  140. }
  141. $header[] = "Expect: ";
  142. $opts = array(
  143. CURLOPT_TIMEOUT => $timeout,
  144. CURLOPT_RETURNTRANSFER => 1,
  145. CURLOPT_SSL_VERIFYPEER => false,
  146. CURLOPT_SSL_VERIFYHOST => false,
  147. CURLOPT_HTTPHEADER => $header
  148. );
  149. /* 根据请求类型设置特定参数 */
  150. switch (strtoupper($method)) {
  151. case 'GET':
  152. $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
  153. break;
  154. case 'POST':
  155. //$params = http_build_query($params);
  156. $opts[CURLOPT_URL] = $url;
  157. $opts[CURLOPT_POST] = 1;
  158. $opts[CURLOPT_POSTFIELDS] = json_encode($params);
  159. break;
  160. default:
  161. rlog("[ERR] method " . $method);
  162. return false;
  163. }
  164. global $ch; //curl长连接
  165. if (empty($ch)) {
  166. $ch = curl_init();
  167. }
  168. if (empty($ch)) {
  169. rlog("[ERR] curl_init");
  170. return false;
  171. }
  172. $csa = curl_setopt_array($ch, $opts);
  173. if (empty($csa)) {
  174. rlog("[ERR] curl_setopt_array");
  175. return false;
  176. }
  177. $data = curl_exec($ch);
  178. if ($data === false) {
  179. rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
  180. return false;
  181. }
  182. //unicode转中文
  183. $data = decodeUnicode($data);
  184. rlog("[HTTP] recv " . $data);
  185. //curl_close($ch);
  186. return $data;
  187. }
  188. function decodeUnicode($str)
  189. {
  190. return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
  191. return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
  192. }, $str);
  193. }
  194. function loop()
  195. {
  196. $server = '116.62.220.88';
  197. $port = 1883;
  198. $clientId = 'mqtt_esp32_elevator_client';
  199. $username = 'rl517';
  200. $password = "rlian2022";
  201. $clean_session = false;
  202. $connectionSettings = new ConnectionSettings();
  203. $connectionSettings = $connectionSettings
  204. ->setUsername($username)
  205. ->setPassword($password)
  206. ->setKeepAliveInterval(60)
  207. // Last Will 设置
  208. // ->setLastWillTopic('emqx/test/last-will')
  209. // ->setLastWillMessage('client disconnect')
  210. // ->setLastWillQualityOfService(1)
  211. ;
  212. //include "RLog.php";
  213. // $mqtt = new MqttClient($server, $port, $clientId, MqttClient::MQTT_3_1, null, new RLog());
  214. $mqtt = new MqttClient($server, $port, $clientId);
  215. $mqtt->connect($connectionSettings, $clean_session);
  216. rlog('INFO', "connect OK");
  217. /*
  218. 消息方向 设备->服务器
  219. 设备主动上报当前设备公共信息参数:ScBusTem/DevRegularInfo
  220. 服务器获取设备系统信息后设备上传信息,即GetDevSysMsg的回应 ScBusTem/GetUpDevSysMsg
  221. 服务器设置设备重量信息信息 ScBusTem/RCInfoMsg
  222. */
  223. // $mqtt->subscribe('ScBusTem/GetDevSysMsg/*', function ($topic, $message) {
  224. // rlog("INFO", 'recv', $topic, $message);
  225. // getDevSysMsg($topic, $message);
  226. // }, 0);
  227. //终端上报系统信息数据
  228. $mqtt->subscribe('ESP/UPLOAD', function ($topic, $message) use($mqtt) {
  229. rlog("reportData", 'recv', $topic, $message);
  230. mqttToRedis($message);
  231. // $topicArr=explode('/',$topic);
  232. // $arr=explode(';',$message);
  233. // foreach($arr as $val){
  234. // $data=json_decode($val,true);
  235. // $data['deviceId']=$topicArr[1];
  236. // $data['data_type']='reportData';
  237. // mqttToRedis(json_encode($data));
  238. // }
  239. }, 1);
  240. $mqtt->loop(true);
  241. }
  242. function mqttToRedis($text){
  243. try{
  244. app_redis()->lpush("mqtt_data_elevator",$text);
  245. }catch(Exception $e){
  246. rlog("INFO", 'recv',"redis 异常".$e->getMessage());
  247. }
  248. }
  249. while (1) {
  250. try {
  251. rlog('INFO', 'connect start');
  252. loop();
  253. } catch (\Exception $ex) {
  254. rlog("ERR", $ex->getTraceAsString());
  255. rlog("ERR", $ex->getMessage());
  256. }
  257. sleep(3);
  258. }
  259. // $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"}';
  260. // $text='{"idESim":"724548004036313","stepCount":0,"EnvironmentTemperature":"28.3","earTemperature":"28.6","latitude":23.635828,"longitude":46.728156,"charging":0,"lastCharge":1704670614,"battery-level":95,"measurementTimestamp":1704752620,"deviceId":"869154047538553-999202300000011","data_type":"reportData"}';
  261. // app_redis()->lpush("mqtt_data_livestock",$text);