dispose.php 20 KB

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