|
@@ -1,23 +1,16 @@
|
|
|
<?php
|
|
|
-/*
|
|
|
- * @Descripttion:
|
|
|
- * @version: 1.0.0
|
|
|
- * @Author: likang
|
|
|
- * @Date: 2022-08-12 10:33:24
|
|
|
- * @LastEditors: likang 1186820806@qq.com
|
|
|
- * @LastEditTime: 2023-04-18 17:06:51
|
|
|
- */
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
namespace catchAdmin\api\controller;
|
|
|
|
|
|
+use catchAdmin\api\service\dispose;
|
|
|
+use catchAdmin\tag_history\model\Access;
|
|
|
+use catchAdmin\tag_history\model\Dormitory;
|
|
|
use catchAdmin\tag_history\model\TagHistory;
|
|
|
use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
|
|
|
use catcher\base\CatchRequest as Request;
|
|
|
use catcher\CatchResponse;
|
|
|
use catcher\base\CatchController;
|
|
|
+use Exception;
|
|
|
+use think\facade\Cache;
|
|
|
use \think\facade\Db;
|
|
|
|
|
|
|
|
@@ -60,11 +53,104 @@ class Api extends CatchController
|
|
|
$tage->saveAll($data);
|
|
|
json_success('上传成功');
|
|
|
}
|
|
|
- //储存数据到mysql
|
|
|
- // public function redis_to_mysql(){
|
|
|
- // Cache::store('redis')->
|
|
|
+ //储存数据到redis
|
|
|
+ public function redis_to_mysql(){
|
|
|
+
|
|
|
+ $ues_redis=Cache::store('redis')->handler();
|
|
|
+ $text=null;
|
|
|
+
|
|
|
+ while(1){
|
|
|
+ $jsonData= $ues_redis->rpop("mqtt_data");
|
|
|
+ debug_log("InAndOUT",'数据redis'.$jsonData);
|
|
|
+
|
|
|
+ if(empty($jsonData)){
|
|
|
+ debug_log("InAndOUT",'没有数据');
|
|
|
+ sleep(1);
|
|
|
+ continue;
|
|
|
+
|
|
|
+ }
|
|
|
+ // debug_log("InAndOUT",$jsonData);
|
|
|
+ $data=json_decode($jsonData,true);
|
|
|
+ // debug_log("InAndOUT",$data['cnt']);
|
|
|
+ $time=$data['time'];
|
|
|
+ $mac=$data['imei'];
|
|
|
+ $list=[];
|
|
|
+ $text=$text.$data['cnt'];
|
|
|
+
|
|
|
+ if(strlen($text)<24){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ while(strlen($text)>=24){
|
|
|
+
|
|
|
+ $da=substr($text,0,24);
|
|
|
+
|
|
|
+ $t1 = substr($da,8,2)=='00'||substr($da,8,2)=='10'||substr($da,8,2)=='01' ? true:false;
|
|
|
+ $t2 =substr($da,10,6)=="FFFFFF"||substr($da,10,6)=="000000" ?true:false;
|
|
|
+
|
|
|
+ if($t1&&$t2){
|
|
|
+
|
|
|
+ $label= substr($da,0,8);
|
|
|
+ $rssi1= substr($da,16,2);
|
|
|
+ $rssi2= substr($da,18,2);
|
|
|
+ $rssi3= substr($da,20,2);
|
|
|
+ $rssi4= substr($da,22,2);
|
|
|
+ $DA=[
|
|
|
+ 'mac' => $mac,
|
|
|
+ 'label' =>$label,
|
|
|
+ 'rssi1' => hexdec($rssi1),
|
|
|
+ 'rssi2' => hexdec($rssi2),
|
|
|
+ 'rssi3' => hexdec($rssi3),
|
|
|
+ 'rssi4' => hexdec($rssi4),
|
|
|
+ 'report_time'=>$time
|
|
|
+ ];
|
|
|
+
|
|
|
+ debug_log("InAndOUT","数据:".json_encode($DA,true));
|
|
|
+ //保存计算中
|
|
|
+ //分为8个桶
|
|
|
+ // $num=Hexdec($label);
|
|
|
+ // $Identification=$num%8;
|
|
|
+ // $key="buckets".$Identification;
|
|
|
+ // $ues_redis->rPush($key,json_encode($DA,true));
|
|
|
+
|
|
|
+ try{
|
|
|
+ $dispose = new dispose($ues_redis);
|
|
|
+ $computedata=$dispose->computeData($DA);
|
|
|
+ debug_log("InAndOUT","计算完成的数据:".json_encode($DA,true));
|
|
|
+ $dispose->computeResout($computedata);
|
|
|
+
|
|
|
+ }catch(Exception $e){
|
|
|
+ debug_log("InAndOUT","抛出异常".json_encode($DA,true));
|
|
|
+ }
|
|
|
+
|
|
|
+ $text=substr($text,24);
|
|
|
+ }else{
|
|
|
+ $text=substr($text,1);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // $tage = new Access();
|
|
|
+ // $tage->saveAll($list);
|
|
|
+ }
|
|
|
|
|
|
- // }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public function test(){
|
|
|
+
|
|
|
+ try{
|
|
|
+ $ues_redis=Cache::store('redis')->handler();
|
|
|
+ $jsonData= $ues_redis->rpop("mqtt_data");
|
|
|
+ debug_log("InAndOUT","1212");
|
|
|
+ }catch(Exception $e){
|
|
|
+ var_dump($e->getMessage());
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -114,6 +200,7 @@ class Api extends CatchController
|
|
|
$data["version"]="1.1.1";
|
|
|
json_success("查询版本成功",$data);
|
|
|
}
|
|
|
+
|
|
|
|
|
|
|
|
|
|