CronAction.class.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <?php
  2. class CronAction extends Action {
  3. public function createEplate_index( ){
  4. $this->createElectronicPlate();
  5. }
  6. private function createElectronicPlate( ){
  7. $start = time();
  8. $pendingElectricPlate = Redis('jyzl_wait_create_eplate');
  9. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate', 'queue');
  10. while( (time() - $start) < 60 ){
  11. $licensPlate = $pendingElectricPlate->pop();
  12. if($licensPlate){
  13. echo 'pop licensPlate:'.$licensPlate.PHP_EOL;
  14. $field = 'LicensPlate,VehicleColor, FullName, Address, FrameNumber, MotorNumber, VehicleBrand';
  15. $vehicleInfo = M('jms_vehicle')->where(array('LicensPlate' => $licensPlate))->field($field);
  16. $localPath = '生成函数';
  17. $up2ossWait = json_encode(array('licensPlate' => $licensPlate, 'localPath' => $localPath));
  18. $plateLocalPath->push($up2ossWait);
  19. }
  20. sleep(1);
  21. }
  22. }
  23. private function uploadElectronicPlate2Oss( ){
  24. $config = array(
  25. 'OssDsn' => C('OSS_DSN'),
  26. 'filePathDir' => '/data/wwwroot/czapp.rltest.cn/1.0.0//uploadimage/',
  27. "SaveRule" => "/electronic_plate/{Y}{m}{d}/{uid}.{ext}",
  28. "AllowExts" => array('jpg', 'png', 'jpeg'), // 允许上传的文件后缀(留空为不限制)
  29. "ResizeImage" => true, // 是否自动压缩
  30. "MaxImageWidth" => 1024,
  31. "MaxImageHeight" => 1024,
  32. "IsCheckRgb" => true,
  33. "MinImgAverageRgb" => 70
  34. );
  35. $upload = new \Jms\File\Oss2($config);
  36. $start = time();
  37. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate');
  38. while( (time() - $start) < 60 ){
  39. $data = $plateLocalPath->pop();
  40. var_dump($data);
  41. json_decode($data,true);
  42. var_dump($data);
  43. if($data){
  44. //TEST
  45. $fileName = 'gravatar.jpg';
  46. //$fileName = $data['localPath'];
  47. $uploadRes = $upload->localFileUpload($fileName);
  48. if(!$uploadRes['success']){
  49. echo $uploadRes['message'].PHP_EOL;
  50. continue;
  51. }
  52. $frontImageUrl = $uploadRes['objectname'];
  53. $updateRes = M('jms_vehicle')->where(array('LicensePlate' => $data['licensPlate']))->setField('FrontElectronicPlateUrl',$frontImageUrl);
  54. if(!$updateRes){
  55. echo 'update failed'.PHP_EOL;
  56. continue;
  57. }
  58. if(file_exists($filename)){
  59. unlink($filename);
  60. }
  61. }
  62. sleep(1);
  63. }
  64. }
  65. public function uploadEplate_index( ){
  66. $this->uploadElectronicPlate2Oss();
  67. }
  68. public function test_function( ){
  69. $plate = 'BJ000100';
  70. $pendingElectricPlate = Redis("jyzl_wait_create_eplate","queue");
  71. $licensePlate = $plate;
  72. $pendingElectricPlate->push($licensePlate);
  73. }
  74. public function acrossAlarm2Kafka( ){
  75. // 从 topic :gps_location_data 取轨迹
  76. $conf = new RdKafka\Conf();
  77. // Set a rebalance callback to log partition assignments (optional)(当有新的消费进程加入或者退出消费组时,kafka 会自动重新分配分区给消费者进程,这里注册了一个回调函数,当分区被重新分配时触发)
  78. $conf->setRebalanceCb(function (RdKafka\KafkaConsumer $kafka, $err, array $partitions = null) {
  79. switch ($err) {
  80. case RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS:
  81. echo "Assign: ";
  82. var_dump($partitions);
  83. $kafka->assign($partitions);
  84. break;
  85. case RD_KAFKA_RESP_ERR__REVOKE_PARTITIONS:
  86. echo "Revoke: ";
  87. var_dump($partitions);
  88. $kafka->assign(NULL);
  89. break;
  90. default:
  91. throw new \Exception($err);
  92. }
  93. });
  94. // Configure the group.id. All consumer with the same group.id will consume( 配置groud.id 具有相同 group.id 的consumer 将会处理不同分区的消息,所以同一个组内的消费者数量如果订阅了一个topic, 那么消费者进程的数量多于这个topic 分区的数量是没有意义的。)
  95. // different partitions.
  96. $conf->set('group.id', 'myConsumerGroup');
  97. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  98. $conf->set('metadata.broker.list', '127.0.0.1');
  99. $topicConf = new RdKafka\TopicConf();
  100. // Set where to start consuming messages when there is no initial offset in
  101. // offset store or the desired offset is out of range.
  102. // 'smallest': start from the beginning
  103. $topicConf->set('auto.offset.reset', 'smallest');
  104. // Set the configuration to use for subscribed/assigned topics
  105. $conf->setDefaultTopicConf($topicConf);
  106. $consumer = new RdKafka\KafkaConsumer($conf);
  107. // 订阅轨迹数据topic
  108. $consumer->subscribe(['gps_location_data']);
  109. while (true) {
  110. $message = $consumer->consume(120*1000);
  111. switch ($message->err) {
  112. case RD_KAFKA_RESP_ERR_NO_ERROR:
  113. // 判断是否超出围栏范围 ,存入 topic:gps_alarm_msg_queue
  114. $route_info = json_decode($message->payload,true);
  115. if( empty($route_info) ){
  116. echo 'empty route info.';
  117. break;
  118. }
  119. $result = $this->produceAcrossAlarmData($route_info);
  120. if($result){
  121. echo $result,PHP_EOL;
  122. }
  123. break;
  124. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  125. echo "No more messages; will wait for more\n";
  126. break;
  127. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  128. echo "Timed out\n";
  129. break;
  130. default:
  131. throw new \Exception($message->errstr(), $message->err);
  132. break;
  133. }
  134. }
  135. }
  136. private function produceAcrossAlarmData( $route_info ){
  137. if( !$route_info['DeviceId'] ){
  138. return 'device id is not exists.';
  139. }
  140. if( !$route_info['Longitude'] ){
  141. return 'longitude is not exists.';
  142. }
  143. if( !$route_info['Latitude'] ){
  144. return 'latitude is not exists.';
  145. }
  146. if( !$route_info['DeviceTime'] ){
  147. return 'device time is not exists.';
  148. }
  149. // 从数据库中取出车牌号,缓存1天
  150. if( S('plate-'.$route_info['DeviceId']) ){
  151. $plate = S('plate-'.$route_info['DeviceId']);
  152. }else{
  153. $where = array('GpsDeviceNumber'=>$route_info['DeviceId']);
  154. $plate = M('jms_vehicle')->where($where)->getField('LicensePlate');
  155. S('plate-'.$route_info['DeviceId'], $plate, 24*60*60);
  156. }
  157. // 是否启用围栏
  158. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  159. $fence = $rlfd_vehicle_fence->get($plate);
  160. $fence = json_decode($fence, true);
  161. if( empty($fence) ){
  162. return '围栏信息不存在';
  163. }
  164. if( !$fence['fenceStatus'] ){
  165. return '未启用围栏';
  166. }
  167. $fence_info = $fence['fenceInfo'];
  168. if( empty($fence_info['data']) ){
  169. return '围栏坐标数据不存在';
  170. }
  171. // 是否越界
  172. $route_point = array(
  173. 'lng' => $route_info['Longitude'],
  174. 'lat' => $route_info['Latitude']
  175. );
  176. $result = true; // 默认在围栏内
  177. if( $fence_info['type'] == 'circle' ){ // 圆形围栏
  178. $distance = \Jms\Algo\Geometry::distanceBetween2BdPoints($fence_info['data']['center'], $route_point); //获取轨迹点到围栏中心点间距离,km
  179. $result = $distance*1000 < $fence_info['data']['radius'];// 距离圆心大于半径说明越界了
  180. }elseif( $fence_info['type'] == 'polygon' ){ // 多边形围栏
  181. $result = \Jms\Algo\Geometry::isInPolygon($fence_info['data']['vertex'], $route_point);
  182. }else{
  183. return '未知围栏类型';
  184. }
  185. if( !$result ){
  186. $alarm_data = array(
  187. "type" => C('FENCE_ALARM'),
  188. "title" => "超出电子围栏",
  189. "content" => "车辆 {$plate} 已超出设置的电子围栏范围,请前往停车处确认是否被盗。",
  190. "device_number" => $route_info['DeviceId']
  191. );
  192. kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
  193. return '添加告警消息到 gps_alarm_msg_queue ';
  194. }
  195. return '没有超出围栏';
  196. }
  197. public function mockProduce( ){
  198. $msg_data = array(
  199. 'DeviceId' => FFFFFF123122,
  200. 'State' => 1,
  201. 'Speed' => 1.2,
  202. 'Longitude' => 121.20638,
  203. 'Latitude' => 30.18852,
  204. 'DeviceTime' => date('Y-m-d H:i:s'),
  205. 'LBS' => 'LBS',
  206. 'Direction' => 's',
  207. );
  208. $msg_data = json_encode($msg_data, JSON_UNESCAPED_UNICODE);
  209. kafkaProducer('gps_location_data',$msg_data);
  210. }
  211. }