|
@@ -13,78 +13,11 @@ class dispose
|
|
|
|
|
|
}
|
|
|
|
|
|
- // public function computeData($data){
|
|
|
- // debug_log("InAndOUT","基站:".$data['mac'] .' label :'.$data['label']);
|
|
|
- // debug_log("InAndOUT","新数据:".json_encode($data));
|
|
|
- // $hashKey=$data['mac'].'station';
|
|
|
- // $key=$data['label'];
|
|
|
- // $list=[];
|
|
|
- // $length=0;
|
|
|
- // $res= $this->selectHash($hashKey,$key);
|
|
|
-
|
|
|
- // if($res==false){
|
|
|
- // debug_log("InAndOUT","redis没有数据,存入新数据");
|
|
|
- // array_push($list,$data);
|
|
|
- // debug_log("InAndOUT","当前数据队列",json_encode($list));
|
|
|
-
|
|
|
- // }else{
|
|
|
- // debug_log("InAndOUT","redis初始数据 :".json_encode($res));
|
|
|
- // $list=$res;
|
|
|
- // debug_log("InAndOUT","上次上报的数据 :".json_encode($list[count($list)-1],true));
|
|
|
-
|
|
|
- // // if(($data['report_time']-$list[count($list)-1]['report_time'])>=120){
|
|
|
- // // debug_log("InAndOUT","上报次数间隔超过120s,清空redis缓存,从新存入数据");
|
|
|
- // // $list=[];
|
|
|
- // // array_push($list,$data);
|
|
|
- // // }else{
|
|
|
- // $list=$res;
|
|
|
- // array_push($list,$data);
|
|
|
-
|
|
|
- // //按照个数
|
|
|
- // while(count($list)>5){
|
|
|
- // array_shift($list);
|
|
|
- // }
|
|
|
-
|
|
|
-
|
|
|
- // // }
|
|
|
-
|
|
|
- // }
|
|
|
- // //数据
|
|
|
- // $count=count($list);
|
|
|
- // debug_log("InAndOUT","当前数据队列 :".json_encode($list));
|
|
|
- // debug_log("InAndOUT","新数据长度 :".$count);
|
|
|
- // //现在的数据长度
|
|
|
+
|
|
|
|
|
|
-
|
|
|
- // //获取配置
|
|
|
- // $config= $this->selectHash("anbang_four_wire",$data['mac']);
|
|
|
+ public function check_data($data){
|
|
|
|
|
|
-
|
|
|
- // if(empty($config)){
|
|
|
- // debug_log("InAndOUT","没有配置");
|
|
|
- // }else{
|
|
|
- // debug_log("InAndOUT","配置参数为:".json_encode($config));
|
|
|
-
|
|
|
- // }
|
|
|
- // $sortlist= $this->sortlist($list);
|
|
|
|
|
|
-
|
|
|
- // $data["rssi1"]=$sortlist[0];
|
|
|
- // $data["rssi2"]=$sortlist[1];
|
|
|
- // $data["rssi3"]=$sortlist[2];
|
|
|
- // $data["rssi4"]=$sortlist[3];
|
|
|
- // debug_log("InAndOUT","计算出的平均数据 :".json_encode($data));
|
|
|
- // //保存到hash中
|
|
|
- // debug_log("InAndOUT","存入redis缓存的数据 :".json_encode($list));
|
|
|
- // $this->setHash($hashKey,$key,$list);
|
|
|
- // debug_log("InAndOUT","=======================================");
|
|
|
- // return $data;
|
|
|
- // }
|
|
|
-
|
|
|
-
|
|
|
- public function check_data($data){
|
|
|
- $this->setStations($data['mac']);
|
|
|
- $res='';
|
|
|
$hashKey=$data['mac'].'station';
|
|
|
$key=$data['label'];
|
|
|
$old_data=$this->selectHash($hashKey,$key);
|
|
@@ -92,14 +25,12 @@ class dispose
|
|
|
if($old_data["rssi1"]<90){
|
|
|
$data["rssi1"]=$old_data["rssi1"]+8;
|
|
|
$data["rssi1"]= $data["rssi1"]>90 ? 90:$data["rssi1"];
|
|
|
- $res=$res."rssi1 ";
|
|
|
}
|
|
|
}
|
|
|
if($data["rssi2"]==90&&!empty($old_data)){
|
|
|
if($old_data["rssi2"]<90){
|
|
|
$data["rssi2"]=$old_data["rssi2"]+8;
|
|
|
$data["rssi2"]= $data["rssi2"]>90 ? 90:$data["rssi2"];
|
|
|
- $res=$res."rssi2";
|
|
|
}
|
|
|
}
|
|
|
$this->setHash($hashKey,$key,$data);
|
|
@@ -107,23 +38,12 @@ class dispose
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
//计算结果设计
|
|
|
public function computeResout($data){
|
|
|
|
|
|
- debug_log("InAndOUT","=======================================");
|
|
|
+
|
|
|
debug_log("InAndOUT",'接收新数据'.json_encode($data));
|
|
|
- debug_log("InAndOUT","=======================================");
|
|
|
+
|
|
|
$res=0;
|
|
|
//进出
|
|
|
|
|
@@ -221,7 +141,6 @@ class dispose
|
|
|
$status['time']= $resArray['time'];
|
|
|
debug_log("InAndOUT","初始化状态为:".json_encode($status));
|
|
|
}else{
|
|
|
-
|
|
|
//判断是否连贯
|
|
|
$IS_OK=true;
|
|
|
$res=0;
|
|
@@ -232,21 +151,12 @@ class dispose
|
|
|
$IS_OK=false;
|
|
|
}
|
|
|
}
|
|
|
- // if(($reverse[0]['dirt']==$reverse[1]['dirt'])&&($reverse[1]['dirt']==$reverse[2]['dirt'])){
|
|
|
- // $res=$reverse[0]['dirt'];
|
|
|
- // $IS_OK=true;
|
|
|
- // }
|
|
|
-
|
|
|
+
|
|
|
//进行保存
|
|
|
if($res!=$status['dirt']&&$IS_OK){
|
|
|
-
|
|
|
- // if(!empty($status['status']['dirt'])){
|
|
|
-
|
|
|
- // if($resArray['time']-$status['status']['time']>5){
|
|
|
-
|
|
|
$data_array=[];
|
|
|
$data_array[]=[
|
|
|
- "label"=>$data['label'],
|
|
|
+ "label"=>$data['label'],
|
|
|
'time'=>$resArray['time'],
|
|
|
'dirt'=> $status['dirt']==1?1:2 //1是进 2是出
|
|
|
];
|
|
@@ -294,14 +204,22 @@ class dispose
|
|
|
$list= $this->redis->hKeys($key);
|
|
|
return $list;
|
|
|
}
|
|
|
+ //获取基站最新时间
|
|
|
+ public function getNowStationTime($mac){
|
|
|
+ $key=$this->stations;
|
|
|
+ $time= $this->selectHash($key,$mac);
|
|
|
+ if(empty($time))
|
|
|
+ {
|
|
|
+ return time();
|
|
|
+ }
|
|
|
+ return $time;
|
|
|
+ }
|
|
|
//存入基站号
|
|
|
- public function setStations($Stations){
|
|
|
+ public function setStations($Stations,$time){
|
|
|
$key=$this->stations;
|
|
|
- if(!$this->redis->hExists($key,$Stations)){
|
|
|
- $this->redis->hSet($key,$Stations,0);
|
|
|
- }
|
|
|
+ $this->redis->hSet($key,$Stations,$time);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
|
|
|
//排序
|
|
|
// public function sortlist($list){
|
|
@@ -556,9 +474,6 @@ public function second_create_direction($mac,$label){
|
|
|
debug_log("second_dirt","数据为空,进行生成");
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
debug_log("second_dirt","最终结果".json_encode(["dirt"=>$res,"time"=>$time]));
|
|
|
return ["dirt"=>$res,"time"=>$time];
|
|
|
|
|
@@ -580,7 +495,9 @@ public function get_station_config($mac){
|
|
|
"init_data"=>3, //需要三条数据确定初始方向
|
|
|
"change_data"=>5, //需要5条数据确定变换的方向
|
|
|
"timeout"=>6,
|
|
|
- "second_create_res"=>[]//二次根据历史记录生成配置 数组中的参数配置 start_time,end_time,dir 1 前 2后;
|
|
|
+ "second_create_res"=>[
|
|
|
+
|
|
|
+ ]//二次根据历史记录生成配置 数组中的参数配置 start_time,end_time,dir 1 前 2后;
|
|
|
];
|
|
|
$config_data=$this->selectHash($Key,$mackey);
|
|
|
if(!empty($config_data)){
|