dispose.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  1. <?php
  2. namespace catchAdmin\api\service;
  3. use catchAdmin\tag_history\model\Dormitory;
  4. class dispose
  5. {
  6. private $redis;
  7. private $stations="stations";
  8. public function __construct($redis){
  9. $this->redis=$redis;
  10. }
  11. public function check_data($data){
  12. $hashKey=$data['mac'].'station';
  13. $key=$data['label'];
  14. $old_data=$this->selectHash($hashKey,$key);
  15. if($data["rssi1"]==90&&!empty($old_data)){
  16. if($old_data["rssi1"]<90){
  17. $data["rssi1"]=$old_data["rssi1"]+8;
  18. $data["rssi1"]= $data["rssi1"]>90 ? 90:$data["rssi1"];
  19. }
  20. }
  21. if($data["rssi2"]==90&&!empty($old_data)){
  22. if($old_data["rssi2"]<90){
  23. $data["rssi2"]=$old_data["rssi2"]+8;
  24. $data["rssi2"]= $data["rssi2"]>90 ? 90:$data["rssi2"];
  25. }
  26. }
  27. $this->setHash($hashKey,$key,$data);
  28. return $data;
  29. }
  30. //计算结果设计
  31. public function computeResout($data){
  32. debug_log("InAndOUT",'接收新数据'.json_encode($data));
  33. $res=0;
  34. //进出
  35. $hashkey='res'.$data['mac'];
  36. $key=$data['label'];
  37. //存入redis的数据
  38. $json_list= $this->selectHash($hashkey,$key);
  39. //最新时间
  40. $time=$data['report_time'];
  41. //进出结果
  42. $inAndOut=0;
  43. //是否参与计算
  44. $calculate=true;
  45. if($data['rssi1']==$data['rssi2']){
  46. $calculate=false;
  47. }
  48. $t1s= $data['rssi1']-$data['rssi2'];
  49. if(abs($t1s)<3){
  50. debug_log("InAndOUT","差值小于3不做计算");
  51. $calculate=false;
  52. }
  53. if($calculate==false){
  54. if(!$json_list){
  55. $arr=[
  56. "a"=>[],
  57. 'status'=> ['time'=>null,'dirt'=>null],
  58. "time"=>$time, //最新时间
  59. "in_and_out"=>0 //进出结果
  60. ];
  61. }else{
  62. $json_list['time']=$time;
  63. }
  64. $this->setHash($hashkey,$key,$json_list);
  65. return;
  66. }
  67. if($data['rssi1']<$data['rssi2']){
  68. $res=1;
  69. }
  70. if($data['rssi1']>$data['rssi2']){
  71. $res=2;
  72. }
  73. if(!$json_list){
  74. $arr=[
  75. "a"=>[['time'=>$time,'dirt'=>$res]],
  76. 'status'=> ['time'=>null,'dirt'=>null],
  77. "time"=>$time, //最新时间
  78. "in_and_out"=>0
  79. ];
  80. debug_log("InAndOUT","数据不存在,直接存储新数据".json_encode($arr));
  81. $this->setHash($hashkey,$key,$arr);
  82. return;
  83. }else{
  84. $resArray=['time'=>$data['report_time'],'dirt'=>$res];
  85. debug_log("InAndOUT","缓存的数据".json_encode($json_list));
  86. $s=$json_list;
  87. //数据列表
  88. $list=$s['a'];
  89. //进出结果
  90. $inAndOut=$s["in_and_out"];
  91. //状态
  92. $status=$s['status'];
  93. array_push($list,$resArray);
  94. while(count($list)>5){
  95. array_shift($list);
  96. debug_log("InAndOUT","数据超过5条,剔除一条旧数据");
  97. }
  98. debug_log("InAndOUT","当前队列数据:".json_encode($list));
  99. $front=0;
  100. $back=0;
  101. if(count($list)>2){
  102. //
  103. debug_log("InAndOUT","当前队列超过两条可以计算前后:".count($list));
  104. //校验权柄
  105. foreach($list as $item){
  106. if($item['dirt']==1){
  107. $front+=1;
  108. }
  109. if($item['dirt']==2){
  110. $back+=1;
  111. }
  112. }
  113. $res=$front>$back?1:2;
  114. if(empty($status['dirt'])){
  115. $status['dirt']= $res;
  116. $status['time']= $resArray['time'];
  117. debug_log("InAndOUT","初始化状态为:".json_encode($status));
  118. }else{
  119. $this->no_check_data($data['mac'],$data['label'],$status['dirt'],$time,2);
  120. //判断是否连贯
  121. $IS_OK=true;
  122. $res=0;
  123. $reverse=array_reverse($list);
  124. $res=$reverse[0]['dirt'];
  125. foreach($reverse as $aitem){
  126. if($aitem['dirt']!=$res){
  127. $IS_OK=false;
  128. }
  129. }
  130. //进行保存
  131. if($res!=$status['dirt']&&$IS_OK){
  132. $inAndOut=$status['dirt']==1?1:2;
  133. //网络推送
  134. $this->network_push($data['mac'],$data['label'],$resArray['time'],$inAndOut);
  135. //清除历史记录
  136. $this->get_label_history(3,$data['mac'],$data['label']);
  137. $status['dirt']=$res;
  138. $status['time']=$time;
  139. }else{
  140. debug_log("InAndOUT","无计算结果",json_encode($status));
  141. }
  142. }
  143. }
  144. $arr=array(
  145. "a"=>$list,
  146. 'status'=>$status,
  147. "time"=>$time,
  148. "in_and_out"=>$inAndOut
  149. );
  150. debug_log("InAndOUT","存入缓存中:".json_encode($arr));
  151. $this->setHash($hashkey,$key,$arr);
  152. debug_log("InAndOUT",'操作结束');
  153. }
  154. }
  155. /**
  156. * 用于记录 没有生成考勤的数据信息
  157. * @param $mac 基站
  158. * @param $lable 标签
  159. * @param $dir 1 外面 2 里面
  160. * @param $type 1 存入 2获取,3 清除
  161. * @param $time 时间戳
  162. * @return void
  163. */
  164. public function no_check_data($mac,$lable,$dir=0,$time=null,$type){
  165. $HASH_KEY=$mac."_no_check";
  166. $KEY=$lable;
  167. if($type==1){
  168. debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time");
  169. $frontMax= $this->get_label_history(4,$mac,$lable);
  170. $backMax= $this->get_label_history(5,$mac,$lable);
  171. $records=false;
  172. debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time.前面最小值:$frontMax.里面最小值.$backMax");
  173. if($dir==1){
  174. $records=$frontMax<65;
  175. }
  176. if($dir==2){
  177. $records=$backMax<65;
  178. }
  179. if($records){
  180. debug_log("没有生成考勤",$mac." ".$lable."初始方向:$dir.时间.$time.存入redis");
  181. $this->setHash( $HASH_KEY,$KEY,["time"=>$time,"dir"=>$dir]);
  182. }
  183. }
  184. if($type==2){
  185. $data= $this->selectHash($HASH_KEY,$KEY);
  186. if(empty($data)){
  187. return false;
  188. }else{
  189. debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"] );
  190. if($data["dir"]!=$dir){
  191. if($dir==1){
  192. $frontMax= $this->get_label_history(4,$mac,$lable);
  193. if($frontMax<65){
  194. debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"]."生成进出 2");
  195. $this->network_push($mac,$lable,$data["time"],2);
  196. }
  197. }else{
  198. $backMax= $this->get_label_history(5,$mac,$lable);
  199. if($backMax<65){
  200. debug_log("没有生成考勤","$mac.=======.$lable.新初始方向确定.$dir.原来方向确定.".$data["dir"]."生成进出 1");
  201. $this->network_push($mac,$lable,$data["time"],1);
  202. }
  203. }
  204. }
  205. }
  206. }
  207. if($type==3){
  208. $this->delHash($HASH_KEY,$KEY);
  209. }
  210. }
  211. //获取所有基站
  212. public function getStations(){
  213. $key=$this->stations;
  214. $list= $this->redis->hKeys($key);
  215. return $list;
  216. }
  217. //获取基站最新时间
  218. public function getNowStationTime($mac){
  219. $key=$this->stations;
  220. $time= $this->selectHash($key,$mac);
  221. if(empty($time))
  222. {
  223. return time();
  224. }
  225. return $time;
  226. }
  227. //存入基站号
  228. public function setStations($Stations,$time){
  229. $key=$this->stations;
  230. $this->redis->hSet($key,$Stations,$time);
  231. }
  232. /**
  233. * 获取远程推送的数据
  234. *
  235. * @param [type] $url
  236. * @param [type] $data
  237. * @return void
  238. */
  239. public function getRemoteData($data){
  240. $key="push_data";
  241. $redis=$this->redis;
  242. $redis->Rpush($key,json_encode($data));
  243. }
  244. /**
  245. * 历史标签信号
  246. *
  247. * @return void
  248. */
  249. public function set_label_history($data){
  250. $MAC=$data["mac"];
  251. $key=$MAC."_label_history";
  252. $head=$data['label']."_head";
  253. $tail=$data["label"]."_tail";
  254. $frontMaxKey=$data['label'].'_frontMax';
  255. $backMaxKey=$data['label'].'_backMax';
  256. $frontMax=null;
  257. $backMax=null;
  258. //保存头部
  259. $head_data= $this->selectHash($key,$head);
  260. $tail_data=$this->selectHash($key,$tail);
  261. //保存朝外的信号最大值
  262. $frontMax=$this->selectHash($key,$frontMaxKey);
  263. //保存朝内的信号最大值
  264. $backMax=$this->selectHash($key,$backMaxKey);
  265. if(empty($frontMax)){
  266. $frontMax=$data["rssi1"];
  267. }else{
  268. $frontMax=$data["rssi1"]<$frontMax?$data["rssi1"]:$frontMax;
  269. }
  270. if(empty($backMax)){
  271. $backMax=$data["rssi2"];
  272. }else{
  273. $backMax=$data["rssi2"]<$backMax?$data["rssi2"]:$backMax;
  274. }
  275. $this->setHash($key,$frontMaxKey,$frontMax);
  276. $this->setHash($key,$backMaxKey,$backMax);
  277. if(!empty($tail_data)){
  278. if(($data["report_time"]-$tail_data[count($tail_data)-1]["report_time"])>6){
  279. $head_data=[];
  280. $tail_data=[];
  281. }
  282. }
  283. if(empty($head_data)||count($head_data)<3){
  284. $head_data=empty($head_data)?[]: $head_data;
  285. array_push($head_data,$data);
  286. $this->setHash($key,$head,$head_data);
  287. }
  288. //保存尾部标签数据
  289. $tail_data=empty($tail_data)?[]: $tail_data;
  290. array_push($tail_data,$data);
  291. while(count($tail_data)>3){
  292. array_shift($tail_data);
  293. }
  294. $this->setHash($key,$tail,$tail_data);
  295. }
  296. /**
  297. * 获取基站
  298. *
  299. * @param [type] $type 1 头部 2 尾部 3清空
  300. * @param [type] $mac
  301. * @param [type] $label
  302. * @return void
  303. */
  304. public function get_label_history($type,$mac,$label){
  305. $key=$mac."_label_history";
  306. $head=$label."_head";
  307. $tail=$label."_tail";
  308. $frontMaxKey=$label.'_frontMax';
  309. $backMaxKey=$label.'_backMax';
  310. if($type==1){
  311. $head_data= $this->selectHash($key,$head);
  312. return $head_data;
  313. }
  314. if($type==2){
  315. $tail_data= $this->selectHash($key,$tail);
  316. return $tail_data;
  317. }
  318. if($type==3){
  319. debug_log("InAndOUT","清空头部和尾部历史:".$mac." ".$label);
  320. $this->delHash($key,$head);
  321. $this->delHash($key,$tail);
  322. $this->delHash($key,$frontMaxKey);
  323. $this->delHash($key, $backMaxKey);
  324. }
  325. if($type==4){
  326. $frontMax= $this->selectHash($key,$frontMaxKey);
  327. return $frontMax;
  328. }
  329. if($type==5){
  330. $backMax= $this->selectHash($key,$backMaxKey);
  331. return $backMax;
  332. }
  333. }
  334. /**
  335. * @param $mac
  336. * @param $label
  337. * @param $time
  338. * @param $dir 1 进 ,2 出
  339. * @return void
  340. */
  341. public function network_push($mac,$label,$time,$dir)
  342. {
  343. $data_array=[];
  344. $data_array[]=[
  345. "label"=>$label,
  346. 'time'=>$time,
  347. 'dirt'=>$dir,
  348. ];
  349. $url_data=[
  350. "mac"=>$mac,
  351. "data"=>$data_array
  352. ];
  353. debug_log("clear_label","二次生成发送给远程".json_encode($url_data));
  354. //远程推送时间
  355. $this->set_time_results($mac,$label,$time,$dir);
  356. $this->no_check_data($mac,$label,null,null,3);
  357. //远程推送
  358. $this->getRemoteData($url_data);
  359. }
  360. /**
  361. * 二次生成进出
  362. *
  363. * @return void
  364. */
  365. public function second_create_direction($mac,$label){
  366. debug_log("second_dirt","==============mac:".$mac."=======label".$label."================================");
  367. $key=$mac."_label_history";
  368. $head=$label."_head";
  369. $tail=$label."_tail";
  370. $head_dir=0;
  371. $tail_dir=0;
  372. $front=0;
  373. $behind=0;
  374. $res=0;
  375. $time=0;
  376. $head_data= $this->get_label_history(1,$mac,$label);
  377. $tail_data= $this->get_label_history(2,$mac,$label);
  378. debug_log("second_dirt","头部标签数据".json_encode($head_data));
  379. debug_log("second_dirt","尾部标签数据".json_encode($tail_data));
  380. if(empty($head_data)){
  381. return false;
  382. }
  383. if(empty($tail_data)){
  384. return false;
  385. }
  386. if(count($head_data)<3){
  387. return false;
  388. }
  389. foreach($head_data as $item){
  390. if($item["rssi1"]<$item["rssi2"]){
  391. $front+=1;
  392. }else{
  393. $behind+=1;
  394. }
  395. }
  396. $head_dir=$front>$behind?1:2;
  397. $front=0;
  398. $behind=0;
  399. foreach($tail_data as $item){
  400. if($item["rssi1"]<$item["rssi2"]){
  401. $front+=1;
  402. }else{
  403. $behind+=1;
  404. }
  405. $time=$item['report_time'];
  406. }
  407. $tail_dir=$front>$behind?1:2;
  408. if($tail_dir== $head_dir){
  409. return false;
  410. }
  411. if($head_dir==1){
  412. $res=1;
  413. }else{
  414. $res=2;
  415. }
  416. $frontMax= $this->get_label_history(4,$mac,$label);
  417. debug_log("second_dirt","标签.$label.的最朝外的最大值".$frontMax);
  418. if($frontMax>65){
  419. debug_log("second_dirt","标签.$label.的最朝外的最小值大于65不参与计算");
  420. return false;
  421. }
  422. //早上对"进寝室不做二次计算
  423. $start_time=strtotime(date("Y-m-d",time()));
  424. $end_time=$start_time+60*60*8;
  425. debug_log("second_dirt","判断的时间".date("Y-m-d H:i:s",$end_time));
  426. debug_log("second_dirt","判断的时间".date("Y-m-d H:i:s",$time));
  427. //当天结束之间 当天早上7点之前进寝室,不做二次计算
  428. if($time<$end_time&&$res==1){
  429. debug_log("second_dirt","当天早上7点之前进寝室,不做二次计算");
  430. return false;
  431. }
  432. $befor_res= $this->get_time_results($mac,$label,2);
  433. if(!empty($befor_res)){
  434. debug_log("second_dirt","间隔时间".json_encode($befor_res));
  435. if($befor_res['dir']==$res){
  436. $interval_time=$time-$befor_res["time"];
  437. debug_log("second_dirt","间隔时间".$interval_time);
  438. debug_log("second_dirt","间隔时间第一个小时,且方向相同 不做二次计算".$interval_time);
  439. if($interval_time<1*60*60){
  440. return false;
  441. }
  442. }
  443. }else{
  444. debug_log("second_dirt","数据为空,进行生成");
  445. }
  446. debug_log("second_dirt","最终结果".json_encode(["dirt"=>$res,"time"=>$time]));
  447. return ["dirt"=>$res,"time"=>$time];
  448. }
  449. /**
  450. * Undocumented function 基站配置
  451. *
  452. * @param [type] $mac
  453. * @return void
  454. */
  455. public function get_station_config($mac){
  456. $Key="station_config";
  457. $mackey=$mac;
  458. $data=[
  459. "filter_signal"=>72,//过滤信号强度
  460. "history_filter_signal"=>82,//历史记录过滤的信号强度
  461. "init_data"=>3, //需要三条数据确定初始方向
  462. "change_data"=>5, //需要5条数据确定变换的方向
  463. "timeout"=>6,
  464. "second_create_res"=>[
  465. ]//二次根据历史记录生成配置 数组中的参数配置 start_time,end_time,dir 1 前 2后;
  466. ];
  467. $config_data=$this->selectHash($Key,$mackey);
  468. if(!empty($config_data)){
  469. foreach($data as $key=>$value){
  470. $data[$key]=empty($config_data[$key])?$data[$key]:$config_data[$key];
  471. }
  472. }
  473. return $data;
  474. }
  475. /**
  476. * function 设置存储结果的时间
  477. *
  478. * @param [type] $mac
  479. * @param [type] $label
  480. * @param [type] $time
  481. * @param [type] $dir 进出结果
  482. * @return void
  483. */
  484. public function set_time_results($mac,$label,$time,$dir){
  485. $mac_key=$mac."res_time";
  486. $array=["time"=>$time,"dir"=>$dir];
  487. $this->setHash($mac_key,$label,$array);
  488. }
  489. /**
  490. * function 获取存储结果的时间
  491. *
  492. * @param [type] $mac
  493. * @param [type] $label
  494. * @param [type] $type 类型
  495. * @return void
  496. */
  497. public function get_time_results($mac,$label,$type=1){
  498. $mac_key=$mac."res_time";
  499. $data=$this->selectHash($mac_key,$label);
  500. if(empty($data)){
  501. return false;
  502. }
  503. if($type==1){
  504. return $data["time"];
  505. }else{
  506. return $data;
  507. }
  508. }
  509. //查询key hash
  510. public function selectHash($hashKey,$key){
  511. $res= $this->redis->hGet($hashKey,$key);
  512. if(empty($res)){
  513. return false;
  514. }else{
  515. return json_decode($res,true);
  516. }
  517. }
  518. public function setHash($hashKey,$key,$data){
  519. $this->redis->hSet($hashKey,$key,json_encode($data));
  520. }
  521. public function delHash($hashKey,$key){
  522. $this->redis->hDel($hashKey,$key);
  523. }
  524. /**
  525. * 解析日志
  526. */
  527. public function analysisLog(){
  528. $path=app()->getRootPath()."runtime/log/2023-05-28/label_log.log";
  529. var_dump($path);
  530. var_dump(is_file($path));
  531. $file = fopen($path, "rb");
  532. debug_log("in_label","开始解析标签");
  533. $array=[];
  534. $readCvs=function($file){
  535. while (feof($file)===false) {
  536. # code...
  537. yield fgets($file);
  538. }
  539. fclose($file);
  540. };
  541. debug_log("in_label","解析运行中");
  542. foreach ($readCvs($file) as $data) {
  543. if(strstr($data,"xsj")){
  544. $arr= explode("{",$data);
  545. $data= json_decode("{".trim($arr[1]),true);
  546. debug_log("in_label",$data);
  547. if(!in_array($data['label'],$array)&&$data["rssi1"]>$data["rssi2"]){
  548. array_push($array,$data['label']);
  549. }
  550. }
  551. }
  552. foreach($array as $item){
  553. debug_log("in_label",$item);
  554. }
  555. debug_log("in_label","标签总数".count($array));
  556. }
  557. }