Browse Source

Merge branch 'master' of http://gogs.renlianiot.com:4000/zmcoding/station-test-api

likang 1 year ago
parent
commit
b94d1290a2

+ 41 - 21
catch/api/controller/Api.php

@@ -642,7 +642,7 @@ class Api extends CatchController
                         // var_dump($cacCount, $EFF_SIG_NUM, "dddddddd");
                         if ($cacCount == $config['effSigNum']) {
                             # code...
-                           $info = $this->compAndPush($info ,$config);
+                           $info = $this->compAndPush($info ,$config, $ues_redis);
                         }
                         $ues_redis->hset("parea_rfidinfos",$field, json_encode($info,true));
                         
@@ -695,7 +695,7 @@ class Api extends CatchController
                         $info = [
                             "mac" => $mac,
                             "id" => $rfid,
-                            "firs_time" => $time,
+                            "first_time" => $time,
                             "time" => $time,
                             "status" => 2,//2出状态,1进状态
                             "rssi" => [
@@ -883,25 +883,20 @@ class Api extends CatchController
     }
     
     //判断进出和推送
-    public function compAndPush($info, $config ){
+    public function compAndPush($info, $config,$ues_redis){
         //标签多,数据多时候,判断完成后放入redis,异步推送,当前暂时直接推
 
-        // $config  = $ues_redis->hget("anbang_four_wire", $info["mac"]);
-        
-        //{"front_in":44,"front_out":44,"behind_in":50,"behind_out":50,"left_in":55,"left_out":55,"right_out":44,"right_out":44}
-
-        
-
         $avg = $info['avg'];
         $status = $info['status'];
 
         $flagIn = $avg["front"] < $config["front_in"] || $avg["behind"] < $config["behind_in"] || $avg["left"] < $config["left_in"] || $avg["right"] < $config["right_in"];
         $flagOut = $avg["front"] > $config["front_out"] && $avg["behind"] > $config["behind_out"] && $avg["left"] > $config["left_out"] && $avg["right"] > $config["right_out"];
 
-        
-        $url="http://localhost:8115/api/areaReport";
         if($flagIn && $status == 2){
-            if ($info["pushTime"] &&  (time()-$info['pushTime']) < 5 ) { 
+        // if($flagIn){
+            $inoutIntFilter = $ues_redis->hget("anbang_four_wire", "anbang_4rssi_intFilter");
+            $inoutIntFilter = $inoutIntFilter ? $inoutIntFilter : 20;
+            if ($info["pushTime"] &&  (time()-$info['pushTime']) < $inoutIntFilter ) { 
                 # code...
                 return $info;
             }
@@ -914,16 +909,18 @@ class Api extends CatchController
                     [
                         "label" => $info["id"],
                         "time" => $info["time"],
+                        "first_time" => $info["first_time"],
                         "dirt" => 1,
                         "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
                         "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
                     ]
                 ]
             ];
-            debug_log("pushPareaRes","进推送依赖:".json_encode($info));
-            $url_res= curl_http_post(json_encode($url_data),$url,false);
+            // debug_log("pushPareaRes","进推送依赖:".json_encode($info));
+            // $url_res= curl_http_post(json_encode($url_data),$url,false);
+            $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
             $info['pushTime'] = time();
-            debug_log("pushPareaRes","远程返回结果".$url_res);
+            // debug_log("pushPareaRes","远程返回结果".$url_res);
         }
         // if($info['id'] == "E2B15AD5"){
         //     var_dump($flagIn, $flagOut, $status, $avg["front"],$avg["behind"],$avg["left"], $avg["right"]);
@@ -947,18 +944,41 @@ class Api extends CatchController
                     ]
                 ]
             ];
-            debug_log("pushPareaRes","出推送依赖:".json_encode($info));
-            $url_res= curl_http_post(json_encode($url_data),$url,false);
+            // debug_log("pushPareaRes","出推送依赖:".json_encode($info));
+            // $url_res= curl_http_post(json_encode($url_data),$url,false);
+            $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
             $info['pushTime'] = time();
             
-            debug_log("pushPareaRes","远程返回结果".$url_res);
+            // debug_log("pushPareaRes","远程返回结果".$url_res);
+        }
+        if($flagIn && $info['status'] == 1){
+            $inoutIntFilter = $ues_redis->hget("anbang_four_wire", "anbang_4rssi_intFilter");
+            $inoutIntFilter = $inoutIntFilter ? $inoutIntFilter : 20;
+            if ($info["camPushTime"] &&  (time()-$info['camPushTime']) < $inoutIntFilter ) { 
+                # code...
+                return $info;
+            }
+            //推送进
+            $url_data = [
+                "mac" => $info["mac"],
+                "first_time" => $info["first_time"],
+                "data" => [
+                    [
+                        "label" => $info["id"],
+                        "time" => $info["time"],
+                        "dirt" => 1,
+                        "rssi" => $info["rssi"],//数组 [{"front":72,"behind":255,"left":255,"right":255,"time":1685067709},{"front":76,"behind":255,"left":255,"right":255,"time":1685067710}]
+                        "avg" => $info["avg"] //{"front":"77.17","behind":"90.00","left":"90.00","right":"90.00"}
+                    ]
+                ]
+            ];
+            $ues_redis->lpush("parea_inoutres_push", json_encode($url_data));
+            $info["camPushTime"] = time();
         }
+
         return $info;
     }
 
-    // $url="http://47.114.185.186:8115/api/accessReport";
-    // $url_res= curl_http_post(json_encode($url_data),$url,false);
-    // debug_log("InAndOUT","远程返回结果".$url_res);
 
     public function test(){
         try{

+ 298 - 0
task_script/PAREA_INOUTRES_PUSH.php

@@ -0,0 +1,298 @@
+<?php
+require('../vendor/autoload.php');
+use \PhpMqtt\Client\MqttClient;
+use \PhpMqtt\Client\ConnectionSettings;
+use think\facade\Cache;
+date_default_timezone_set("PRC");
+define('HOST', '127.0.0.1');
+define('PORT', '6379');
+define('PASSWORD', 'R!478gH*%23nPn');
+// define('PASSWORD', '123456');
+define('DATABASE', 2);
+
+
+function app_redis()
+{
+    static $redis = null;
+    static $conn = false;
+    if (!$conn) {
+        connect: //定义标签
+        $redis = new Redis();
+        try {
+            //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
+            $conn = $redis->connect(HOST, PORT);
+            $conn = $redis->auth(PASSWORD);
+            $conn = $redis->select(DATABASE);
+            // 连接成功,返回$redis对象,连接失败,返回false.
+            return ($conn === true) ? $redis : false;
+        } catch (Exception $e) {
+            return false;
+        }
+    } else {
+        // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
+        // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
+        if (php_sapi_name() === 'cli') {
+            try {
+                // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
+                // ping失败时警告:
+                // Warning: Redis::ping(): connect() failed: Connection refused
+                // var_dump('AAAAAAAAA', $redis);
+                echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
+                @$redis->ping();
+                if (!$redis->ping()) {
+                    goto connect; //跳转到标签出继续执行连接操作
+                }
+            } catch (Exception  $e) {
+                // 信息如 Connection lost 或 Redis server went away
+                echo $e->getMessage();
+                echo 'Redis 连接失败 重新连接:' . PHP_EOL;
+                // 断线重连
+                goto connect;
+            }
+        }
+        return $redis;
+    }
+}
+
+function rlog(...$args)
+{
+    if (empty($args[0])) {
+        return;
+    }
+    static $LOG_CONSOLE = false; //是否输出到控制台
+    static $LOG_NAME = "parea_inoutres_push.log"; //值为空时 不写入文件
+    static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
+
+    static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
+    static $CACHE_DURATION = 10; //缓存最大时间 秒
+    static $CACHE_SIZE = 1024; //缓存大小
+    static $cacheStartTime = 0;
+    static $cacheBuf = '';
+
+    static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
+    static $logCount = 0;
+
+
+    $buf = '';
+    if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
+        $buf = "\n";
+    } else {
+        $pid = ''; //进程id
+        if (function_exists('posix_getpid')) {
+            $pid = ' ' . posix_getpid() . ' ';
+        }
+        $fileLine = ''; //文件名:行号
+        {
+            $debug = debug_backtrace();
+            $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
+        }
+        $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
+    }
+
+    $logCount++;
+    if (!empty($LOG_NAME)) {
+        if ($LOG_CACHE) {
+            $cacheBuf .= $buf;
+            //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
+            if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
+                $cacheStartTime = time();
+                goto write;
+            } else {
+                goto skipWrite;
+            }
+        } else {
+            $cacheBuf = $buf;
+        }
+        write: {
+            //超过尺寸后 删除旧文件 把新文件重命名为旧文件  多进程同时操作 不加锁问题不大
+            if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
+                $oldLogName = $LOG_NAME . '.old';
+                if (file_exists($oldLogName)) {
+                    if (!unlink($oldLogName)) {
+                        echo "unlink err\n";
+                    }
+                }
+                if (!rename($LOG_NAME, $oldLogName)) {
+                    echo "rename err\n";
+                }
+                $logCount = 0;
+            }
+            if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
+                echo "file_put_contents err\n";
+            }
+            $cacheBuf = '';
+        }
+        skipWrite: {
+        }
+    }
+    if ($LOG_CONSOLE) {
+        echo $buf;
+    }
+}
+
+function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
+{
+    // POST $params 字符串形式query=abcd&abc=12345
+    //GET $params 数组['query' => 'abcd', 'abc' => 12345]
+    //  $header[] = "Content-Type: application/x-www-form-urlencoded";
+    //  $header[] = "Content-Type: application/soap+xml; charset=utf-8";
+    //  $header[] = "Content-Type: application/json; charset=utf-8";
+    //  $header[] = "Expect: ";
+    rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
+    if (strtoupper($method) == 'POST') {
+        rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
+    } else {
+        rlog("[GET] send " . json_encode($params));
+    }
+    $header[] = "Expect: ";
+    $opts = array(
+        CURLOPT_TIMEOUT => $timeout,
+        CURLOPT_RETURNTRANSFER => 1,
+        CURLOPT_SSL_VERIFYPEER => false,
+        CURLOPT_SSL_VERIFYHOST => false,
+        CURLOPT_HTTPHEADER => $header
+    );
+
+    /* 根据请求类型设置特定参数 */
+    switch (strtoupper($method)) {
+        case 'GET':
+            $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
+            break;
+        case 'POST':
+            //$params = http_build_query($params);
+            $opts[CURLOPT_URL] = $url;
+            $opts[CURLOPT_POST] = 1;
+            $opts[CURLOPT_POSTFIELDS] = json_encode($params);
+            break;
+        default:
+            rlog("[ERR] method " . $method);
+            return false;
+    }
+
+    global $ch; //curl长连接
+    if (empty($ch)) {
+        $ch = curl_init();
+    }
+    if (empty($ch)) {
+        rlog("[ERR] curl_init");
+        return false;
+    }
+
+    $csa = curl_setopt_array($ch, $opts);
+    if (empty($csa)) {
+        rlog("[ERR] curl_setopt_array");
+        return false;
+    }
+
+    $data = curl_exec($ch);
+    if ($data === false) {
+        rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
+        return false;
+    }
+    //unicode转中文
+    $data = decodeUnicode($data);
+    rlog("[HTTP] recv " . $data);
+    //curl_close($ch);
+    return $data;
+}
+function decodeUnicode($str)
+{
+    return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
+        return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
+    }, $str);
+}
+
+
+
+// while (true) {
+//     try {
+//         rlog('INFO', 'task start');
+
+//         $infos = app_redis()->hgetall("indoor_inoutres_push");
+//         foreach ($infos as $k => $v) {
+//             # code...
+//             $data = json_decode($v, true);
+//             if ( (time() - $data["time"] ) > $offlineInt ) {
+//                 # code...
+//                 if ($data["status"] == 1) {
+//                     # code...
+//                     // $url="http://localhost:8115/api/accessClassReport";
+//                     $url="http://61.175.203.188:10001/api/accessClassReport";
+//                     $url_data = [
+//                         "mac" => $data["mac"],
+//                         "data" => [
+//                             [
+//                                 "label" => $data["id"],
+//                                 "time" => time(),
+//                                 "dirt" => 2,
+//                                 "rssi" => $data["rssi"],
+//                                 "avg" => $data["avg"] 
+//                             ]
+//                         ]
+//                     ];
+//                     http($url, $url_data, [], 'POST');
+//                     rlog("PUSH INFO","离线推送依赖数据", $v);
+//                 }
+//                 app_redis()->hdel('indoor_rfidinfos',$k);;
+//             }
+//         }
+        
+//     } catch (\Exception $ex) {
+//         rlog("INFO", 'pushhttp',"推送 异常".$ex->getMessage());
+//     }
+//     $sleepTime = floor($offlineInt/10);
+//     if ($sleepTime < 3) {
+//         # code...
+//         $sleepTime = 3;
+//     }
+//     sleep($sleepTime); //1分钟遍历一次
+// }
+
+// 正式部分
+while (true) {
+    try {
+        
+        if (app_redis() === false) {
+            echo 'redis连接错误!' . PHP_EOL;
+            continue;
+        }
+        $data = app_redis()->lpop('parea_inoutres_push');
+
+        if(!$data){
+            // var_dump($data);
+            echo "redis无数据!",PHP_EOL;
+            sleep(1);
+            continue;
+        }
+        echo ('取出数据' . $data." TYPE:". gettype($data) . PHP_EOL);
+
+        $url_data = json_decode($data, true);
+
+        $url="http://localhost:8115/api/areaReport";
+        
+        
+        http($url, $url_data, [], 'POST');
+
+        if($url_data["first_time"]){
+            $camData = [
+                "station" => $url_data["mac"],
+                "list" => [
+                    [
+                        "label" =>$url_data["id"],
+                        "first_time" => $url_data["first_time"],
+                        "time" => $url_data["time"]
+                    ]
+                ]
+            ];
+            
+            $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
+                
+        }
+
+        rlog("PUSH INFO","推送依赖数据", $data);
+    }catch (\Exception $ex) {
+            rlog("INFO", 'pushhttp',"推送 异常".$ex->getMessage());
+    }
+
+    // sleep(3);
+}

+ 40 - 1
task_script/PAREA_STATUS_UPDATE.php

@@ -214,12 +214,17 @@ function mqttToRedis($text){
 
 
 
+$rfidPushRecArr = [];
 while (true) {
     try {
         rlog('INFO', 'task start');
 
         $infos = app_redis()->hgetall("parea_rfidinfos");
         $offlineInt  = app_redis()->hget("anbang_four_wire", "anbang_4rssi_offint");
+        // $inoutIntFilter = app_redis()->hget("anbang_four_wire", "anbang_4rssi_intFilter");
+        if(!$inoutIntFilter){
+            $inoutIntFilter = 300;
+        }
         if (!$offlineInt) {
             # code...
             $offlineInt = 30;
@@ -227,6 +232,37 @@ while (true) {
         foreach ($infos as $k => $v) {
             # code...
             $data = json_decode($v, true);
+            
+
+            // if($data["status"] == 1){
+            //     if ( (time() - $data["pushTime"] ) > $inoutIntFilter ) {
+            //         $camData = [
+            //             "station" => $data["mac"],
+            //             "list" => [
+            //                 [
+            //                     "label" =>$data["id"],
+            //                     "first_time"
+            //                     "time" => $data["time"]
+            //                 ]
+            //             ]
+            //         ];
+                    
+            //         if(!$rfidPushRecArr[$data["id"]]){
+            //             $rfidPushRecArr[$data["id"]] = 1;
+            //             $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
+            //         }else{
+            //             if($rfidPushRecArr[$data["id"]] == 1){
+            //                 $rfidPushRecArr[$data["id"]] == 2;
+            //                 $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
+            //             }
+            //         }
+
+            //         $logrecData = ['anbang_4rssi_intFilter' => $inoutIntFilter, 'time' => $data["time"], 'os_time' => time(), 'push_count' => $rfidPushRecArr[$data["id"]]];
+            //         rlog("CAM PUSH INFO","推送摄像关联接口", json_encode($logrecData) );
+                    
+            //     }
+            // }
+
             if ( (time() - $data["time"] ) > $offlineInt ) {
                 # code...
                 if ($data["status"] == 1) {
@@ -247,7 +283,10 @@ while (true) {
                     http($url, $url_data, [], 'POST');
                     rlog("PUSH INFO","离线推送依赖数据", $v);
                 }
-                app_redis()->hdel('parea_rfidinfos',$k);;
+                app_redis()->hdel('parea_rfidinfos',$k);
+                if($rfidPushRecArr[$data["id"]]){
+                    unset($rfidPushRecArr[$data["id"]]);
+                }
             }
         }
         

+ 10 - 4
task_script/RL4RSSI_PAREA_MQTT.php

@@ -300,11 +300,17 @@ function rcInfoMsg($topic, $msg)
 }
 function loop()
 {
-    $server   = 'develop.rltest.cn';
+    // $server   = 'develop.rltest.cn';
+    // $port     = 1883;
+    // $clientId = 'mqttx_testparea9659';
+    // $username = 'rl517';
+    // $password = "rlian2022";
+
+    $server   = '127.0.0.1';
     $port     = 1883;
-    $clientId = 'mqttx_testparea9659';
-    $username = 'rl517';
-    $password = "rlian2022";
+    $clientId = 'mqttx_testparea'.rand(1234, 99999);
+    $username = 'rl0606';
+    $password = "rlian2023";
     $clean_session = true;
 
     $connectionSettings  = new ConnectionSettings();