dispose.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  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. //判断是否连贯
  120. $IS_OK=true;
  121. $res=0;
  122. $reverse=array_reverse($list);
  123. $res=$reverse[0]['dirt'];
  124. foreach($reverse as $aitem){
  125. if($aitem['dirt']!=$res){
  126. $IS_OK=false;
  127. }
  128. }
  129. //进行保存
  130. if($res!=$status['dirt']&&$IS_OK){
  131. $data_array=[];
  132. $data_array[]=[
  133. "label"=>$data['label'],
  134. 'time'=>$resArray['time'],
  135. 'dirt'=> $status['dirt']==1?1:2 //1是进 2是出
  136. ];
  137. $inAndOut=$status['dirt']==1?1:2;
  138. $url_data=[
  139. "mac"=>$data['mac'],
  140. "data"=>$data_array
  141. ];
  142. //设定最后结果
  143. $this->set_time_results($data['mac'],$data['label'],$resArray['time'],$inAndOut);
  144. //推送远程数据
  145. $this->getRemoteData($url_data);
  146. //清除缓存数据
  147. $this->get_label_history(3,$data['mac'],$data['label']);
  148. $this->temporary_label($this->redis,$data['label'],2);
  149. $status['dirt']=$res;
  150. $status['time']=$time;
  151. }else{
  152. debug_log("InAndOUT","无计算结果",json_encode($status));
  153. }
  154. }
  155. }
  156. $arr=array(
  157. "a"=>$list,
  158. 'status'=>$status,
  159. "time"=>$time,
  160. "in_and_out"=>$inAndOut
  161. );
  162. debug_log("InAndOUT","存入缓存中:".json_encode($arr));
  163. $this->setHash($hashkey,$key,$arr);
  164. debug_log("InAndOUT",'操作结束');
  165. }
  166. }
  167. //获取所有基站
  168. public function getStations(){
  169. $key=$this->stations;
  170. $list= $this->redis->hKeys($key);
  171. return $list;
  172. }
  173. //获取基站最新时间
  174. public function getNowStationTime($mac){
  175. $key=$this->stations;
  176. $time= $this->selectHash($key,$mac);
  177. if(empty($time))
  178. {
  179. return time();
  180. }
  181. return $time;
  182. }
  183. //存入基站号
  184. public function setStations($Stations,$time){
  185. $key=$this->stations;
  186. $this->redis->hSet($key,$Stations,$time);
  187. }
  188. //排序
  189. // public function sortlist($list){
  190. // $list01=[];
  191. // $list02=[];
  192. // $list03=[];
  193. // $list04=[];
  194. // debug_log("InAndOUT","排序的数据:".json_encode($list));
  195. // foreach($list as $item){
  196. // array_push($list01,$item['rssi1']);
  197. // array_push($list02,$item['rssi2']);
  198. // array_push($list03,$item['rssi3']);
  199. // array_push($list04,$item['rssi4']);
  200. // }
  201. // if(count($list)>=3){
  202. // sort($list01);
  203. // sort($list02);
  204. // sort($list03);
  205. // sort($list04);
  206. // array_pop($list01);
  207. // array_pop($list02);
  208. // array_pop($list03);
  209. // array_pop($list04);
  210. // array_shift($list01);
  211. // array_shift($list02);
  212. // array_shift($list03);
  213. // array_shift($list04);
  214. // }
  215. // debug_log("InAndOUT","排序后的队列:".json_encode($list01));
  216. // debug_log("InAndOUT","排序后的队列:".json_encode($list02));
  217. // debug_log("InAndOUT","排序后的队列:".json_encode($list03));
  218. // debug_log("InAndOUT","排序后的队列:".json_encode($list04));
  219. // $rssi1= array_sum($list01)/count($list01);
  220. // $rssi2= array_sum($list02)/count($list02);
  221. // $rssi3= array_sum($list03)/count($list03);
  222. // $rssi4= array_sum($list04)/count($list04);
  223. // $res=[$rssi1,$rssi2,$rssi3,$rssi4];
  224. // debug_log("InAndOUT","结算后的结果:".json_encode($res));
  225. // return $res;
  226. // }
  227. /**
  228. * 获取远程推送的数据
  229. *
  230. * @param [type] $url
  231. * @param [type] $data
  232. * @return void
  233. */
  234. public function getRemoteData($data){
  235. $key="push_data";
  236. $redis=$this->redis;
  237. $redis->Rpush($key,json_encode($data));
  238. }
  239. /**
  240. * 历史标签信号
  241. *
  242. * @return void
  243. */
  244. public function set_label_history($data){
  245. $MAC=$data["mac"];
  246. $key=$MAC."_label_history";
  247. $head=$data['label']."_head";
  248. $tail=$data["label"]."_tail";
  249. $frontMaxKey=$data['label'].'_frontMax';
  250. $backMaxKey=$data['label'].'_backMax';
  251. $frontMax=null;
  252. $backMax=null;
  253. //保存头部
  254. $head_data= $this->selectHash($key,$head);
  255. $tail_data=$this->selectHash($key,$tail);
  256. //保存朝外的信号最大值
  257. $frontMax=$this->selectHash($key,$frontMaxKey);
  258. //保存朝内的信号最大值
  259. $backMax=$this->selectHash($key,$backMaxKey);
  260. if(empty($frontMax)){
  261. $frontMax=$data["rssi1"];
  262. }else{
  263. $frontMax=$data["rssi1"]<$frontMax?$data["rssi1"]:$frontMax;
  264. }
  265. if(empty($backMax)){
  266. $backMax=$data["rssi2"];
  267. }else{
  268. $backMax=$data["rssi2"]<$backMax?$data["rssi2"]:$backMax;
  269. }
  270. $this->setHash($key,$frontMaxKey,$frontMax);
  271. $this->setHash($key,$backMaxKey,$backMax);
  272. if(!empty($tail_data)){
  273. if(($data["report_time"]-$tail_data[count($tail_data)-1]["report_time"])>6){
  274. $head_data=[];
  275. $tail_data=[];
  276. }
  277. }
  278. if(empty($head_data)||count($head_data)<3){
  279. $head_data=empty($head_data)?[]: $head_data;
  280. array_push($head_data,$data);
  281. $this->setHash($key,$head,$head_data);
  282. }
  283. //保存尾部标签数据
  284. $tail_data=empty($tail_data)?[]: $tail_data;
  285. array_push($tail_data,$data);
  286. while(count($tail_data)>3){
  287. array_shift($tail_data);
  288. }
  289. $this->setHash($key,$tail,$tail_data);
  290. }
  291. /**
  292. * 获取基站
  293. *
  294. * @param [type] $type 1 头部 2 尾部 3清空
  295. * @param [type] $mac
  296. * @param [type] $label
  297. * @return void
  298. */
  299. public function get_label_history($type,$mac,$label){
  300. $key=$mac."_label_history";
  301. $head=$label."_head";
  302. $tail=$label."_tail";
  303. $frontMaxKey=$label.'_frontMax';
  304. $backMaxKey=$label.'_backMax';
  305. if($type==1){
  306. $head_data= $this->selectHash($key,$head);
  307. return $head_data;
  308. }
  309. if($type==2){
  310. $tail_data= $this->selectHash($key,$tail);
  311. return $tail_data;
  312. }
  313. if($type==3){
  314. debug_log("InAndOUT","清空头部和尾部历史:".$mac." ".$label);
  315. $this->delHash($key,$head);
  316. $this->delHash($key,$tail);
  317. $this->delHash($key,$frontMaxKey);
  318. $this->delHash($key, $backMaxKey);
  319. }
  320. if($type==4){
  321. $frontMax= $this->selectHash($key,$frontMaxKey);
  322. return $frontMax;
  323. }
  324. if($type==5){
  325. $backMax= $this->selectHash($key,$backMaxKey);
  326. return $backMax;
  327. }
  328. }
  329. /**
  330. * 二次生成进出
  331. *
  332. * @return void
  333. */
  334. public function second_create_direction($mac,$label){
  335. debug_log("second_dirt","==============mac:".$mac."=======label".$label."================================");
  336. $key=$mac."_label_history";
  337. $head=$label."_head";
  338. $tail=$label."_tail";
  339. $head_dir=0;
  340. $tail_dir=0;
  341. $front=0;
  342. $behind=0;
  343. $res=0;
  344. $time=0;
  345. $head_data= $this->get_label_history(1,$mac,$label);
  346. $tail_data= $this->get_label_history(2,$mac,$label);
  347. debug_log("second_dirt","头部标签数据".json_encode($head_data));
  348. debug_log("second_dirt","尾部标签数据".json_encode($tail_data));
  349. if(empty($head_data)){
  350. return false;
  351. }
  352. if(empty($tail_data)){
  353. return false;
  354. }
  355. if(count($head_data)<3){
  356. return false;
  357. }
  358. foreach($head_data as $item){
  359. if($item["rssi1"]<$item["rssi2"]){
  360. $front+=1;
  361. }else{
  362. $behind+=1;
  363. }
  364. }
  365. $head_dir=$front>$behind?1:2;
  366. $front=0;
  367. $behind=0;
  368. foreach($tail_data as $item){
  369. if($item["rssi1"]<$item["rssi2"]){
  370. $front+=1;
  371. }else{
  372. $behind+=1;
  373. }
  374. $time=$item['report_time'];
  375. }
  376. $tail_dir=$front>$behind?1:2;
  377. if($tail_dir== $head_dir){
  378. return false;
  379. }
  380. if($head_dir==1){
  381. $res=1;
  382. }else{
  383. $res=2;
  384. }
  385. $frontMax= $this->get_label_history(4,$mac,$label);
  386. debug_log("second_dirt","标签.$label.的最朝外的最大值".$frontMax);
  387. if($frontMax>65){
  388. debug_log("second_dirt","标签.$label.的最朝外的最小值大于65不参与计算");
  389. return false;
  390. }
  391. //早上对"进寝室不做二次计算
  392. $start_time=strtotime(date("Y-m-d",time()));
  393. $end_time=$start_time+60*60*8;
  394. debug_log("second_dirt","判断的时间".date("Y-m-d H:i:s",$end_time));
  395. debug_log("second_dirt","判断的时间".date("Y-m-d H:i:s",$time));
  396. //当天结束之间 当天早上7点之前进寝室,不做二次计算
  397. if($time<$end_time&&$res==1){
  398. debug_log("second_dirt","当天早上7点之前进寝室,不做二次计算");
  399. return false;
  400. }
  401. $befor_res= $this->get_time_results($mac,$label,2);
  402. if(!empty($befor_res)){
  403. debug_log("second_dirt","间隔时间".json_encode($befor_res));
  404. if($befor_res['dir']==$res){
  405. $interval_time=$time-$befor_res["time"];
  406. debug_log("second_dirt","间隔时间".$interval_time);
  407. debug_log("second_dirt","间隔时间第一个小时,且方向相同 不做二次计算".$interval_time);
  408. if($interval_time<1*60*60){
  409. return false;
  410. }
  411. }
  412. }else{
  413. debug_log("second_dirt","数据为空,进行生成");
  414. }
  415. debug_log("second_dirt","最终结果".json_encode(["dirt"=>$res,"time"=>$time]));
  416. return ["dirt"=>$res,"time"=>$time];
  417. }
  418. /**
  419. * Undocumented function 基站配置
  420. *
  421. * @param [type] $mac
  422. * @return void
  423. */
  424. public function get_station_config($mac){
  425. $Key="station_config";
  426. $mackey=$mac;
  427. $data=[
  428. "filter_signal"=>72,//过滤信号强度
  429. "history_filter_signal"=>82,//历史记录过滤的信号强度
  430. "init_data"=>3, //需要三条数据确定初始方向
  431. "change_data"=>5, //需要5条数据确定变换的方向
  432. "timeout"=>6,
  433. "second_create_res"=>[
  434. ]//二次根据历史记录生成配置 数组中的参数配置 start_time,end_time,dir 1 前 2后;
  435. ];
  436. $config_data=$this->selectHash($Key,$mackey);
  437. if(!empty($config_data)){
  438. foreach($data as $key=>$value){
  439. $data[$key]=empty($config_data[$key])?$data[$key]:$config_data[$key];
  440. }
  441. }
  442. return $data;
  443. }
  444. /**
  445. * function 设置存储结果的时间
  446. *
  447. * @param [type] $mac
  448. * @param [type] $label
  449. * @param [type] $time
  450. * @param [type] $dir 进出结果
  451. * @return void
  452. */
  453. public function set_time_results($mac,$label,$time,$dir){
  454. $mac_key=$mac."res_time";
  455. $array=["time"=>$time,"dir"=>$dir];
  456. $this->setHash($mac_key,$label,$array);
  457. }
  458. /**
  459. * function 获取存储结果的时间
  460. *
  461. * @param [type] $mac
  462. * @param [type] $label
  463. * @param [type] $type 类型
  464. * @return void
  465. */
  466. public function get_time_results($mac,$label,$type=1){
  467. $mac_key=$mac."res_time";
  468. $data=$this->selectHash($mac_key,$label);
  469. if(empty($data)){
  470. return false;
  471. }
  472. if($type==1){
  473. return $data["time"];
  474. }else{
  475. return $data;
  476. }
  477. }
  478. //查询key hash
  479. public function selectHash($hashKey,$key){
  480. $res= $this->redis->hGet($hashKey,$key);
  481. if(empty($res)){
  482. return false;
  483. }else{
  484. return json_decode($res,true);
  485. }
  486. }
  487. public function setHash($hashKey,$key,$data){
  488. $this->redis->hSet($hashKey,$key,json_encode($data));
  489. }
  490. public function delHash($hashKey,$key){
  491. $this->redis->hDel($hashKey,$key);
  492. }
  493. public function temporary_label($redis,$label,$type){
  494. return;
  495. $key="temporary_label";
  496. if($type==1){
  497. $res= $redis->hGet($key,$label);
  498. if($res==false){
  499. $redis->hSet($key,$label,1);
  500. }
  501. }else{
  502. $redis->hSet($key,$label,2);
  503. }
  504. }
  505. /**
  506. * 解析日志
  507. */
  508. public function analysisLog(){
  509. $path=app()->getRootPath()."runtime/log/2023-05-28/label_log.log";
  510. var_dump($path);
  511. var_dump(is_file($path));
  512. $file = fopen($path, "rb");
  513. debug_log("in_label","开始解析标签");
  514. $array=[];
  515. $readCvs=function($file){
  516. while (feof($file)===false) {
  517. # code...
  518. yield fgets($file);
  519. }
  520. fclose($file);
  521. };
  522. debug_log("in_label","解析运行中");
  523. foreach ($readCvs($file) as $data) {
  524. if(strstr($data,"xsj")){
  525. $arr= explode("{",$data);
  526. $data= json_decode("{".trim($arr[1]),true);
  527. debug_log("in_label",$data);
  528. if(!in_array($data['label'],$array)&&$data["rssi1"]>$data["rssi2"]){
  529. array_push($array,$data['label']);
  530. }
  531. }
  532. }
  533. foreach($array as $item){
  534. debug_log("in_label",$item);
  535. }
  536. debug_log("in_label","标签总数".count($array));
  537. }
  538. }