|
@@ -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;
|
|
|
//进出
|
|
|
|
|
@@ -220,8 +140,9 @@ class dispose
|
|
|
$status['dirt']= $res;
|
|
|
$status['time']= $resArray['time'];
|
|
|
debug_log("InAndOUT","初始化状态为:".json_encode($status));
|
|
|
- }else{
|
|
|
|
|
|
+ }else{
|
|
|
+ $this->no_check_data($data['mac'],$data['label'],$status['dirt'],$time,2);
|
|
|
//判断是否连贯
|
|
|
$IS_OK=true;
|
|
|
$res=0;
|
|
@@ -232,36 +153,15 @@ 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'],
|
|
|
- 'time'=>$resArray['time'],
|
|
|
- 'dirt'=> $status['dirt']==1?1:2 //1是进 2是出
|
|
|
- ];
|
|
|
$inAndOut=$status['dirt']==1?1:2;
|
|
|
- $url_data=[
|
|
|
- "mac"=>$data['mac'],
|
|
|
- "data"=>$data_array
|
|
|
- ];
|
|
|
- //设定最后结果
|
|
|
- $this->set_time_results($data['mac'],$data['label'],$resArray['time'],$inAndOut);
|
|
|
- //推送远程数据
|
|
|
- $this->getRemoteData($url_data);
|
|
|
- //清除缓存数据
|
|
|
+ //网络推送
|
|
|
+ $this->network_push($data['mac'],$data['label'],$resArray['time'],$inAndOut);
|
|
|
+ //清除历史记录
|
|
|
$this->get_label_history(3,$data['mac'],$data['label']);
|
|
|
- $this->temporary_label($this->redis,$data['label'],2);
|
|
|
$status['dirt']=$res;
|
|
|
$status['time']=$time;
|
|
|
|
|
@@ -286,6 +186,67 @@ class dispose
|
|
|
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 用于记录 没有生成考勤的数据信息
|
|
|
+ * @param $mac 基站
|
|
|
+ * @param $lable 标签
|
|
|
+ * @param $dir 1 外面 2 里面
|
|
|
+ * @param $type 1 存入 2获取,3 清除
|
|
|
+ * @param $time 时间戳
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function no_check_data($mac,$lable,$dir=0,$time=null,$type){
|
|
|
+ $HASH_KEY=$mac."_no_check";
|
|
|
+ $KEY=$lable;
|
|
|
+ if($type==1){
|
|
|
+ debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time");
|
|
|
+ $frontMax= $this->get_label_history(4,$mac,$lable);
|
|
|
+ $backMax= $this->get_label_history(5,$mac,$lable);
|
|
|
+ $records=false;
|
|
|
+ debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time.前面最小值:$frontMax.里面最小值.$backMax");
|
|
|
+ if($dir==1){
|
|
|
+ $records=$frontMax<65;
|
|
|
+ }
|
|
|
+ if($dir==2){
|
|
|
+ $records=$backMax<65;
|
|
|
+ }
|
|
|
+ if($records){
|
|
|
+ debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time.存入redis");
|
|
|
+ $this->setHash( $HASH_KEY,$KEY,["time"=>$time,"dir"=>$dir]);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if($type==2){
|
|
|
+ $data= $this->selectHash($HASH_KEY,$KEY);
|
|
|
+ if(empty($data)){
|
|
|
+ return false;
|
|
|
+ }else{
|
|
|
+ debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"] );
|
|
|
+
|
|
|
+ if($data["dir"]!=$dir){
|
|
|
+ if($dir==1){
|
|
|
+ $frontMax= $this->get_label_history(4,$mac,$lable);
|
|
|
+ if($frontMax<65){
|
|
|
+ debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"]."生成进出 2");
|
|
|
+ $this->network_push($mac,$lable,$data["time"],2);
|
|
|
+ }
|
|
|
+
|
|
|
+ }else{
|
|
|
+ $backMax= $this->get_label_history(5,$mac,$lable);
|
|
|
+ if($backMax<65){
|
|
|
+ debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"]."生成进出 1");
|
|
|
+ $this->network_push($mac,$lable,$data["time"],1);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if($type==3){
|
|
|
+ $this->delHash($HASH_KEY,$KEY);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
|
|
|
//获取所有基站
|
|
@@ -294,55 +255,24 @@ 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){
|
|
|
- // $list01=[];
|
|
|
- // $list02=[];
|
|
|
- // $list03=[];
|
|
|
- // $list04=[];
|
|
|
- // debug_log("InAndOUT","排序的数据:".json_encode($list));
|
|
|
- // foreach($list as $item){
|
|
|
- // array_push($list01,$item['rssi1']);
|
|
|
- // array_push($list02,$item['rssi2']);
|
|
|
- // array_push($list03,$item['rssi3']);
|
|
|
- // array_push($list04,$item['rssi4']);
|
|
|
- // }
|
|
|
-
|
|
|
- // if(count($list)>=3){
|
|
|
- // sort($list01);
|
|
|
- // sort($list02);
|
|
|
- // sort($list03);
|
|
|
- // sort($list04);
|
|
|
- // array_pop($list01);
|
|
|
- // array_pop($list02);
|
|
|
- // array_pop($list03);
|
|
|
- // array_pop($list04);
|
|
|
- // array_shift($list01);
|
|
|
- // array_shift($list02);
|
|
|
- // array_shift($list03);
|
|
|
- // array_shift($list04);
|
|
|
- // }
|
|
|
- // debug_log("InAndOUT","排序后的队列:".json_encode($list01));
|
|
|
- // debug_log("InAndOUT","排序后的队列:".json_encode($list02));
|
|
|
- // debug_log("InAndOUT","排序后的队列:".json_encode($list03));
|
|
|
- // debug_log("InAndOUT","排序后的队列:".json_encode($list04));
|
|
|
- // $rssi1= array_sum($list01)/count($list01);
|
|
|
- // $rssi2= array_sum($list02)/count($list02);
|
|
|
- // $rssi3= array_sum($list03)/count($list03);
|
|
|
- // $rssi4= array_sum($list04)/count($list04);
|
|
|
- // $res=[$rssi1,$rssi2,$rssi3,$rssi4];
|
|
|
- // debug_log("InAndOUT","结算后的结果:".json_encode($res));
|
|
|
- // return $res;
|
|
|
- // }
|
|
|
+
|
|
|
/**
|
|
|
* 获取远程推送的数据
|
|
|
*
|
|
@@ -455,10 +385,45 @@ public function get_label_history($type,$mac,$label){
|
|
|
return $backMax;
|
|
|
}
|
|
|
|
|
|
+}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param $mac
|
|
|
+ * @param $label
|
|
|
+ * @param $time
|
|
|
+ * @param $dir 1 进 ,2 出
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function network_push($mac,$label,$time,$dir)
|
|
|
+ {
|
|
|
+ $data_array=[];
|
|
|
+ $data_array[]=[
|
|
|
+ "label"=>$label,
|
|
|
+ 'time'=>$time,
|
|
|
+ 'dirt'=>$dir,
|
|
|
+ ];
|
|
|
+ $url_data=[
|
|
|
+ "mac"=>$mac,
|
|
|
+ "data"=>$data_array
|
|
|
+ ];
|
|
|
+ debug_log("clear_label","二次生成发送给远程".json_encode($url_data));
|
|
|
+ //远程推送时间
|
|
|
+ $this->set_time_results($mac,$label,$time,$dir);
|
|
|
+ $this->no_check_data($mac,$label,null,null,3);
|
|
|
+ //远程推送
|
|
|
+ $this->getRemoteData($url_data);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
-}
|
|
|
/**
|
|
|
* 二次生成进出
|
|
|
*
|
|
@@ -556,9 +521,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 +542,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)){
|
|
@@ -657,20 +621,7 @@ public function get_station_config($mac){
|
|
|
|
|
|
|
|
|
|
|
|
- public function temporary_label($redis,$label,$type){
|
|
|
|
|
|
- return;
|
|
|
- $key="temporary_label";
|
|
|
- if($type==1){
|
|
|
- $res= $redis->hGet($key,$label);
|
|
|
- if($res==false){
|
|
|
- $redis->hSet($key,$label,1);
|
|
|
- }
|
|
|
- }else{
|
|
|
- $redis->hSet($key,$label,2);
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
/**
|
|
|
* 解析日志
|
|
|
*/
|