PAREA_STATUS_UPDATE.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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', '127.0.0.1');
  8. define('PORT', '6379');
  9. define('PASSWORD', 'R!478gH*%23nPn');
  10. define('DATABASE', 2);
  11. function app_redis()
  12. {
  13. static $redis = null;
  14. static $conn = false;
  15. if (!$conn) {
  16. connect: //定义标签
  17. $redis = new Redis();
  18. try {
  19. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  20. $conn = $redis->connect(HOST, PORT);
  21. $conn = $redis->auth(PASSWORD);
  22. $conn = $redis->select(DATABASE);
  23. // 连接成功,返回$redis对象,连接失败,返回false.
  24. return ($conn === true) ? $redis : false;
  25. } catch (Exception $e) {
  26. return false;
  27. }
  28. } else {
  29. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  30. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  31. if (php_sapi_name() === 'cli') {
  32. try {
  33. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  34. // ping失败时警告:
  35. // Warning: Redis::ping(): connect() failed: Connection refused
  36. // var_dump('AAAAAAAAA', $redis);
  37. echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  38. @$redis->ping();
  39. if (!$redis->ping()) {
  40. goto connect; //跳转到标签出继续执行连接操作
  41. }
  42. } catch (Exception $e) {
  43. // 信息如 Connection lost 或 Redis server went away
  44. echo $e->getMessage();
  45. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  46. // 断线重连
  47. goto connect;
  48. }
  49. }
  50. return $redis;
  51. }
  52. }
  53. function rlog(...$args)
  54. {
  55. if (empty($args[0])) {
  56. return;
  57. }
  58. static $LOG_CONSOLE = false; //是否输出到控制台
  59. static $LOG_NAME = "parea_status_update.log"; //值为空时 不写入文件
  60. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  61. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  62. static $CACHE_DURATION = 10; //缓存最大时间 秒
  63. static $CACHE_SIZE = 1024; //缓存大小
  64. static $cacheStartTime = 0;
  65. static $cacheBuf = '';
  66. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  67. static $logCount = 0;
  68. $buf = '';
  69. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  70. $buf = "\n";
  71. } else {
  72. $pid = ''; //进程id
  73. if (function_exists('posix_getpid')) {
  74. $pid = ' ' . posix_getpid() . ' ';
  75. }
  76. $fileLine = ''; //文件名:行号
  77. {
  78. $debug = debug_backtrace();
  79. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  80. }
  81. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  82. }
  83. $logCount++;
  84. if (!empty($LOG_NAME)) {
  85. if ($LOG_CACHE) {
  86. $cacheBuf .= $buf;
  87. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  88. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  89. $cacheStartTime = time();
  90. goto write;
  91. } else {
  92. goto skipWrite;
  93. }
  94. } else {
  95. $cacheBuf = $buf;
  96. }
  97. write: {
  98. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  99. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  100. $oldLogName = $LOG_NAME . '.old';
  101. if (file_exists($oldLogName)) {
  102. if (!unlink($oldLogName)) {
  103. echo "unlink err\n";
  104. }
  105. }
  106. if (!rename($LOG_NAME, $oldLogName)) {
  107. echo "rename err\n";
  108. }
  109. $logCount = 0;
  110. }
  111. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  112. echo "file_put_contents err\n";
  113. }
  114. $cacheBuf = '';
  115. }
  116. skipWrite: {
  117. }
  118. }
  119. if ($LOG_CONSOLE) {
  120. echo $buf;
  121. }
  122. }
  123. function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
  124. {
  125. // POST $params 字符串形式query=abcd&abc=12345
  126. //GET $params 数组['query' => 'abcd', 'abc' => 12345]
  127. // $header[] = "Content-Type: application/x-www-form-urlencoded";
  128. // $header[] = "Content-Type: application/soap+xml; charset=utf-8";
  129. // $header[] = "Content-Type: application/json; charset=utf-8";
  130. // $header[] = "Expect: ";
  131. rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
  132. if (strtoupper($method) == 'POST') {
  133. rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
  134. } else {
  135. rlog("[GET] send " . json_encode($params));
  136. }
  137. $header[] = "Expect: ";
  138. $opts = array(
  139. CURLOPT_TIMEOUT => $timeout,
  140. CURLOPT_RETURNTRANSFER => 1,
  141. CURLOPT_SSL_VERIFYPEER => false,
  142. CURLOPT_SSL_VERIFYHOST => false,
  143. CURLOPT_HTTPHEADER => $header
  144. );
  145. /* 根据请求类型设置特定参数 */
  146. switch (strtoupper($method)) {
  147. case 'GET':
  148. $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
  149. break;
  150. case 'POST':
  151. //$params = http_build_query($params);
  152. $opts[CURLOPT_URL] = $url;
  153. $opts[CURLOPT_POST] = 1;
  154. $opts[CURLOPT_POSTFIELDS] = json_encode($params);
  155. break;
  156. default:
  157. rlog("[ERR] method " . $method);
  158. return false;
  159. }
  160. global $ch; //curl长连接
  161. if (empty($ch)) {
  162. $ch = curl_init();
  163. }
  164. if (empty($ch)) {
  165. rlog("[ERR] curl_init");
  166. return false;
  167. }
  168. $csa = curl_setopt_array($ch, $opts);
  169. if (empty($csa)) {
  170. rlog("[ERR] curl_setopt_array");
  171. return false;
  172. }
  173. $data = curl_exec($ch);
  174. if ($data === false) {
  175. rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
  176. return false;
  177. }
  178. //unicode转中文
  179. $data = decodeUnicode($data);
  180. rlog("[HTTP] recv " . $data);
  181. //curl_close($ch);
  182. return $data;
  183. }
  184. function decodeUnicode($str)
  185. {
  186. return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
  187. return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
  188. }, $str);
  189. }
  190. function mqttToRedis($text){
  191. try{
  192. app_redis()->lpush("mqtt_data_parea4rssi",$text);
  193. }catch(\Exception $e){
  194. rlog("INFO", 'recv',"redis 异常".$e->getMessage());
  195. }
  196. }
  197. $rfidPushRecArr = [];
  198. while (true) {
  199. try {
  200. rlog('INFO', 'task start');
  201. $infos = app_redis()->hgetall("parea_rfidinfos");
  202. $offlineInt = app_redis()->hget("anbang_four_wire", "anbang_4rssi_offint");
  203. // $inoutIntFilter = app_redis()->hget("anbang_four_wire", "anbang_4rssi_intFilter");
  204. if(!$inoutIntFilter){
  205. $inoutIntFilter = 300;
  206. }
  207. if (!$offlineInt) {
  208. # code...
  209. $offlineInt = 30;
  210. }
  211. foreach ($infos as $k => $v) {
  212. # code...
  213. $data = json_decode($v, true);
  214. // if($data["status"] == 1){
  215. // if ( (time() - $data["pushTime"] ) > $inoutIntFilter ) {
  216. // $camData = [
  217. // "station" => $data["mac"],
  218. // "list" => [
  219. // [
  220. // "label" =>$data["id"],
  221. // "first_time"
  222. // "time" => $data["time"]
  223. // ]
  224. // ]
  225. // ];
  226. // if(!$rfidPushRecArr[$data["id"]]){
  227. // $rfidPushRecArr[$data["id"]] = 1;
  228. // $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
  229. // }else{
  230. // if($rfidPushRecArr[$data["id"]] == 1){
  231. // $rfidPushRecArr[$data["id"]] == 2;
  232. // $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
  233. // }
  234. // }
  235. // $logrecData = ['anbang_4rssi_intFilter' => $inoutIntFilter, 'time' => $data["time"], 'os_time' => time(), 'push_count' => $rfidPushRecArr[$data["id"]]];
  236. // rlog("CAM PUSH INFO","推送摄像关联接口", json_encode($logrecData) );
  237. // }
  238. // }
  239. if ( (time() - $data["time"] ) > $offlineInt ) {
  240. # code...
  241. if ($data["status"] == 1) {
  242. # code...
  243. $url="http://localhost:8115/api/areaReport";
  244. $url_data = [
  245. "mac" => $data["mac"],
  246. "data" => [
  247. [
  248. "label" => $data["id"],
  249. "time" => time(),
  250. "dirt" => 2,
  251. "rssi" => $data["rssi"],
  252. "avg" => $data["avg"]
  253. ]
  254. ]
  255. ];
  256. http($url, $url_data, [], 'POST');
  257. rlog("PUSH INFO","离线推送依赖数据", $v);
  258. }
  259. app_redis()->hdel('parea_rfidinfos',$k);
  260. if($rfidPushRecArr[$data["id"]]){
  261. unset($rfidPushRecArr[$data["id"]]);
  262. }
  263. }
  264. }
  265. } catch (\Exception $ex) {
  266. rlog("INFO", 'pushhttp',"推送 异常".$ex->getMessage());
  267. }
  268. $sleepTime = floor($offlineInt/10);
  269. if ($sleepTime < 3) {
  270. # code...
  271. $sleepTime = 3;
  272. }
  273. sleep($sleepTime); //1分钟遍历一次
  274. }