CronAction.class.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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','queue');
  9. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate', 'queue');
  10. while( (time() - $start) < 60 ){
  11. $licensPlate = $pendingElectricPlate->pop();
  12. if(!$licensPlate){
  13. echo 'no message!'.PHP_EOL;
  14. sleep(1);
  15. continue;
  16. }
  17. echo 'pop licensPlate:'.$licensPlate.PHP_EOL;
  18. $field = 'LicensePlate,VehicleColor, FullName, DetailedAdd, FrameNumber, MotorNumber, VehicleBrand, RegistrationTime';
  19. $vehicleInfo = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->field($field)->find();
  20. if(!$vehicleInfo){
  21. echo 'vehicleInfo not existed,$licensPlate = '.$licensPlate .PHP_EOL;
  22. continue;
  23. }
  24. //生成电子车牌到本地
  25. $localPath = $this->createLocalElectronicPlate($vehicleInfo);
  26. if(!$localPath){
  27. echo 'createLocalElectronicPlate failed,$licensPlate = '.$licensPlate .PHP_EOL;
  28. //生成失败的重新放回队列
  29. $result = $pendingElectricPlate->add($licensPlate);
  30. if(!$result){
  31. echo 'pendingElectricPlate->add() failed,$licensPlate = '.$licensPlate .PHP_EOL;
  32. }
  33. continue;
  34. }
  35. //生成的本地电子车牌,加入到待上传oss队列
  36. $up2ossWait = json_encode(array('licensePlate' => $licensPlate, 'localPath' => $localPath));
  37. $result = $plateLocalPath->add($up2ossWait);//push方法没有返回值,用add代替
  38. if(!$result){
  39. echo 'plateLocalPath->add() failed,$licensPlate = '.$licensPlate .PHP_EOL;
  40. continue;
  41. }
  42. usleep(100000);
  43. }
  44. }
  45. private function uploadElectronicPlate2Oss( ){
  46. $config = array(
  47. 'OssDsn' => C('OSS_DSN'),
  48. "SaveRule" => "/electronic_plate/{Y}{m}{d}/{uid}.{ext}",
  49. "AllowExts" => array('jpg', 'png', 'jpeg'), // 允许上传的文件后缀(留空为不限制)
  50. "ResizeImage" => false, // 是否自动压缩
  51. "MaxImageWidth" => 1024,
  52. "MaxImageHeight" => 1024,
  53. "IsCheckRgb" => false,
  54. "MinImgAverageRgb" => 70
  55. );
  56. $backImgLocalPath = ENTRY_PATH .'/Public/images/back.jpg';
  57. $upload = new \Jms\File\Oss2($config);
  58. //电子车牌背部固定图片第一次上传至oss
  59. $plateBackOssUrl = S('czapp_cache_plate_oss_url');
  60. if(!$plateBackOssUrl){
  61. $uploadBack = $upload->localFileUpload($backImgLocalPath);
  62. if(!$uploadBack['success']){
  63. echo $uploadBack['message'].PHP_EOL;
  64. exit;
  65. }else{
  66. $plateBackOssUrl = $uploadBack['objectname'];
  67. if(!$plateBackOssUrl){
  68. echo 'upload backImg success! But cant get the ossUrl';
  69. exit;
  70. }
  71. S('czapp_cache_plate_oss_url', $plateBackOssUrl);
  72. }
  73. }
  74. $start = time();
  75. $plateLocalPath = Redis('jyzl_wait_upload2oss_eplate', 'queue');
  76. while( (time() - $start) < 60 ){
  77. $data = $plateLocalPath->pop();
  78. if(!$data){
  79. echo 'no more data, waiting for next mesaage.'.PHP_EOL;
  80. sleep(1);
  81. continue;
  82. }
  83. $fileName = $data['localPath'];
  84. $licensPlate = $data['licensePlate'];
  85. if(!$licensPlate || !$fileName){
  86. echo 'cant get right licensPlate or fileName'.PHP_EOL;
  87. echo 'fileName:'.$fileName.PHP_EOL;
  88. echo 'licensPlate:'.$licensPlate.PHP_EOL;
  89. echo '---------------delimiter----------------'.PHP_EOL;
  90. continue;
  91. }
  92. //上传至oss
  93. $uploadRes = $upload->localFileUpload($fileName);
  94. //失败重回队列
  95. if(!$uploadRes['success']){
  96. echo $uploadRes['message'].PHP_EOL;
  97. $result = $plateLocalPath->add($data);
  98. if(!$result){
  99. echo 'plateLocalPath->add() failed,$licensPlate = '. $data['licensPlate'] .PHP_EOL;
  100. continue;
  101. }
  102. }else{
  103. echo 'upload plateFrontImg success!'.PHP_EOL;
  104. }
  105. $frontImageUrl = $uploadRes['objectname'];
  106. if(!$frontImageUrl){
  107. echo 'cant get img_oss_url'.PHP_EOL;
  108. continue;
  109. }
  110. echo 'return oss-url:'.$frontImageUrl.PHP_EOL;
  111. // $updateRes = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->setField('FrontElectronicPlateUrl',$frontImageUrl);
  112. $saveData = array( 'FrontElectronicPlateUrl' => $frontImageUrl, 'BackElectronicPlateUrl' => $plateBackOssUrl);
  113. $updateRes = M('jms_vehicle')->where(array('LicensePlate' => $licensPlate))->save($saveData);
  114. if(!$updateRes){
  115. echo 'save electricPlate in mysql failed'.PHP_EOL;
  116. continue;
  117. }
  118. echo 'save electricPlate in mysql success'.PHP_EOL;
  119. //删除本地图片
  120. $filePath = $filename;
  121. if(!file_exists($filePath)){
  122. $flag = unlink($filePath);
  123. if(!$flag){
  124. echo 'delete localImg failed'.PHP_EOL;
  125. }else{
  126. echo 'delete localImg success'.PHP_EOL;
  127. }
  128. }
  129. usleep(100000);
  130. }
  131. }
  132. public function uploadEplate_index( ){
  133. $this->uploadElectronicPlate2Oss();
  134. }
  135. public function test_function( ){
  136. $vehicleInfo = array(
  137. 'LicensePlate' => 'LY100021',
  138. 'VehicleColor' => '白色',
  139. 'FullName' => '张三',
  140. 'Address' => '浙江杭州滨江195号',
  141. 'FrameNumber' => '123456789',
  142. 'MotorNumber' => '233456789',
  143. 'VehicleBrand'=> '雅迪z123',
  144. 'RegistrationTime' => '2019-05-15 12:12:00'
  145. );
  146. $localPath = $this->createLocalElectronicPlate($vehicleInfo);
  147. echo $localPath .PHP_EOL;
  148. exit;
  149. $plate = 'BJ000100';
  150. $pendingElectricPlate = Redis("jyzl_wait_create_eplate","queue");
  151. $licensePlate = $plate;
  152. $pendingElectricPlate->push($licensePlate);
  153. }
  154. public function acrossAlarm2Kafka( ){
  155. // 从 topic :gps_location_data 取轨迹
  156. $conf = new RdKafka\Conf();
  157. // Set a rebalance callback to log partition assignments (optional)(当有新的消费进程加入或者退出消费组时,kafka 会自动重新分配分区给消费者进程,这里注册了一个回调函数,当分区被重新分配时触发)
  158. $conf->setRebalanceCb(function (RdKafka\KafkaConsumer $kafka, $err, array $partitions = null) {
  159. switch ($err) {
  160. case RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS:
  161. echo "Assign: ";
  162. var_dump($partitions);
  163. $kafka->assign($partitions);
  164. break;
  165. case RD_KAFKA_RESP_ERR__REVOKE_PARTITIONS:
  166. echo "Revoke: ";
  167. var_dump($partitions);
  168. $kafka->assign(NULL);
  169. break;
  170. default:
  171. throw new \Exception($err);
  172. }
  173. });
  174. // Configure the group.id. All consumer with the same group.id will consume( 配置groud.id 具有相同 group.id 的consumer 将会处理不同分区的消息,所以同一个组内的消费者数量如果订阅了一个topic, 那么消费者进程的数量多于这个topic 分区的数量是没有意义的。)
  175. // different partitions.
  176. $conf->set('group.id', 'fenceAlarmMsgGroup');
  177. if( !C('KAFKA_BROKER_LIST') ){
  178. echo 'please set broker list !!! ';
  179. }
  180. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  181. $conf->set('metadata.broker.list', C('KAFKA_BROKER_LIST'));
  182. $topicConf = new RdKafka\TopicConf();
  183. // Set where to start consuming messages when there is no initial offset in
  184. // offset store or the desired offset is out of range.
  185. // 'smallest': start from the beginning
  186. $topicConf->set('auto.offset.reset', 'smallest');
  187. // Set the configuration to use for subscribed/assigned topics
  188. $conf->setDefaultTopicConf($topicConf);
  189. $consumer = new RdKafka\KafkaConsumer($conf);
  190. // 订阅轨迹数据topic
  191. $consumer->subscribe(['gps_location_data']);
  192. while (true) {
  193. $message = $consumer->consume(120*1000);
  194. switch ($message->err) {
  195. case RD_KAFKA_RESP_ERR_NO_ERROR:
  196. // 判断是否超出围栏范围 ,存入 topic:gps_alarm_msg_queue
  197. $route_info = json_decode($message->payload,true);
  198. if( empty($route_info) ){
  199. echo 'empty route info.';
  200. break;
  201. }
  202. $result = $this->produceAcrossAlarmData($route_info);
  203. if($result){
  204. echo $result,PHP_EOL;
  205. debug_log('across_alarm',$result['message']);
  206. }
  207. break;
  208. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  209. echo "No more messages; will wait for more\n";
  210. break;
  211. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  212. echo "Timed out\n";
  213. break;
  214. default:
  215. throw new \Exception($message->errstr(), $message->err);
  216. break;
  217. }
  218. }
  219. }
  220. private function produceAcrossAlarmData( $route_info ){
  221. if( !$route_info['DeviceId'] ){
  222. return array('success' => false, 'message' => 'device id is not exists.');
  223. }
  224. if( !$route_info['Longitude'] ){
  225. return array('success' => false, 'message' => 'longitude is not exists.');
  226. }
  227. if( !$route_info['Latitude'] ){
  228. return array('success' => false, 'message' => 'latitude is not exists.');
  229. }
  230. if( !$route_info['DeviceTime'] ){
  231. return array('success' => false, 'message' => 'device time is not exists.');
  232. }
  233. // 从数据库中取出车牌号,缓存1天
  234. if( S('plate-'.$route_info['DeviceId']) ){
  235. $plate = S('plate-'.$route_info['DeviceId']);
  236. }else{
  237. $where = array('GpsDeviceNumber'=>$route_info['DeviceId']);
  238. $plate = M('jms_vehicle')->where($where)->getField('LicensePlate');
  239. S('plate-'.$route_info['DeviceId'], $plate, 24*60*60);
  240. }
  241. // 是否启用围栏
  242. $rlfd_vehicle_fence = Redis('rlfd_vehicle_fence','hash');
  243. $fence = $rlfd_vehicle_fence->get($plate);
  244. $fence = json_decode($fence, true);
  245. if( empty($fence) ){
  246. return array('success' => false, 'message' => '围栏信息不存在');
  247. }
  248. if( !$fence['fenceStatus'] ){
  249. return array('success' => false, 'message' => '未启用围栏');
  250. }
  251. $fence_info = $fence['fenceInfo'];
  252. if( empty($fence_info['data']) ){
  253. return array('success' => false, 'message' => '围栏坐标数据不存在');
  254. }
  255. // 是否越界
  256. $route_point = array(
  257. 'lng' => $route_info['Longitude'],
  258. 'lat' => $route_info['Latitude']
  259. );
  260. $result = true; // 默认在围栏内
  261. if( $fence_info['type'] == 'circle' ){ // 圆形围栏
  262. $distance = \Jms\Algo\Geometry::distanceBetween2BdPoints($fence_info['data']['center'], $route_point); //获取轨迹点到围栏中心点间距离,km
  263. $result = $distance*1000 < $fence_info['data']['radius'];// 距离圆心大于半径说明越界了
  264. }elseif( $fence_info['type'] == 'polygon' ){ // 多边形围栏
  265. $result = \Jms\Algo\Geometry::isInPolygon($fence_info['data']['vertex'], $route_point);
  266. }else{
  267. return array('success' => false, 'message' => '未知围栏类型');
  268. }
  269. if( !$result ){
  270. $alarm_data = array(
  271. //"type" => C('FENCE_ALARM'),
  272. "type" => \Rlfd\Alarm\PushTypeEnum::FENCE_ALARM,
  273. "title" => "超出电子围栏",
  274. "content" => "车辆 {$plate} 已超出设置的电子围栏范围,请前往停车处确认是否被盗。",
  275. "device_number" => $route_info['DeviceId']
  276. );
  277. kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
  278. return array('success' => true, 'message' => '添加围栏告警消息到 gps_alarm_msg_queue');
  279. }
  280. return array('success' => false, 'message' => '没有超出围栏');
  281. }
  282. public function mockProduce( ){
  283. /* // jyzl gps
  284. $msg_data = array(
  285. 'DeviceId' => FFFFFF123122,
  286. 'State' => 1,
  287. 'Speed' => 1.2,
  288. 'Longitude' => 121.20638,
  289. 'Latitude' => 30.18852,
  290. 'DeviceTime' => date('Y-m-d H:i:s'),
  291. 'LBS' => 'LBS',
  292. 'Direction' => 's',
  293. );
  294. kafkaProducer('gps_location_data',$msg_data);*/
  295. // fly 轨迹数据
  296. $msg_data = array(
  297. 'StationCode' => '30B5F1012539',
  298. "Longitude" => "120.600889",
  299. "Latitude" => "30.191478",
  300. "Address" => "华城·和瑞科技广场(长河路475号)",
  301. 'StationType' => 0,
  302. "CityId" => "2902",
  303. "StationName" => "基站名称",
  304. "AddTime" => date('Y-m-d H:i:s',strtotime('-3 minutes')),
  305. "VehicleNumber" => "800000241B",
  306. "VehicleStatus" => "1",
  307. "SignalCount" => 88,
  308. "OnlineTime" => date('Y-m-d H:i:s',strtotime('-2 minutes'))
  309. );
  310. kafkaProducer('fly_vroute_data',$msg_data);
  311. }
  312. private function createLocalElectronicPlate( $params ){
  313. $license_plate = $params['LicensePlate'];
  314. if(!$license_plate){
  315. echo "LicensePlate empty!".PHP_EOL;
  316. return false;
  317. }
  318. $vehicle_color = $params['VehicleColor'];
  319. if(!$vehicle_color){
  320. echo "VehicleColor empty!".PHP_EOL;
  321. return false;
  322. }
  323. $real_name = $params['FullName'];
  324. if(!$real_name){
  325. echo "FullName empty!".PHP_EOL;
  326. return false;
  327. }
  328. $address = $params['DetailedAdd'];
  329. if(!$address){
  330. echo "DetailedAdd empty!".PHP_EOL;
  331. return false;
  332. }
  333. $cjh = $params['FrameNumber'];
  334. $djh = $params['MotorNumber'];
  335. /*
  336. if(!$cjh){
  337. echo "FrameNumber empty!".PHP_EOL;
  338. return false;
  339. }
  340. if(!$djh){
  341. echo "MotorNumber empty!".PHP_EOL;
  342. return false;
  343. }
  344. */
  345. $cph = $params['VehicleBrand'];
  346. if(!$cph){
  347. echo "VehicleBrand empty!".PHP_EOL;
  348. return false;
  349. }
  350. $regist_time = strtotime($params['RegistrationTime']);
  351. if($regist_time < 1546272000){
  352. echo "RegistrationTime invalid! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  353. return false;
  354. }
  355. $date = date('Y-m-d',$regist_time);
  356. if(!$date){
  357. echo "date empty! RegistrationTime: ".$params['RegistrationTime'].PHP_EOL;
  358. return false;
  359. }
  360. $reg_date = $date;
  361. $fz_date = $date;
  362. $fz_org = "包头市公安局";
  363. $im = imagecreatetruecolor(500, 278); // 设置画布
  364. //$bg = imagecreatefromjpeg('bg.jpg'); // 设置背景图片
  365. $front_img = ENTRY_PATH . '/Public/images/front.jpg';
  366. if(!is_file($front_img)){
  367. echo "front_img not existed! front_img: ".$front_img.PHP_EOL;
  368. return false;
  369. }
  370. $bg = imagecreatefromjpeg($front_img); // 设置背景图片
  371. imagecopy($im,$bg,0,0,0,0,500,278); // 将背景图片拷贝到画布相应位置
  372. imagedestroy($bg); // 销毁背景图片
  373. $font = ENTRY_PATH .'/Public/font/stsong.ttf'; // 设置字体 // 设置字体,这里可以指向ttf文件
  374. if(!is_file($font)){
  375. echo "font file not existed! font: ".$font.PHP_EOL;
  376. return false;
  377. }
  378. $blacka = imagecolorallocate($im, 15, 23, 25); // 颜色
  379. /* 写入内容 */
  380. imagettftext($im, 12, 0, 135, 66, $blacka, $font,$license_plate ); // 车牌号
  381. imagettftext($im, 12, 0, 335, 66, $blacka, $font,$vehicle_color ); // 车辆颜色
  382. imagettftext($im, 12, 0, 135, 96, $blacka, $font,$real_name ); // 姓名
  383. imagettftext($im, 12, 0, 135, 128, $blacka, $font,$address ); // 住址
  384. imagettftext($im, 12, 0, 135, 160, $blacka, $font,$cjh ); // 车架号
  385. imagettftext($im, 12, 0, 335, 160, $blacka, $font,$djh ); // 电机号
  386. imagettftext($im, 12, 0, 263, 192, $blacka, $font,$cph ); // 厂牌型号
  387. imagettftext($im, 11, 0, 260, 222, $blacka, $font,$reg_date ); // 注册日期
  388. imagettftext($im, 11, 0, 376, 222, $blacka, $font,$fz_date ); // 发证期
  389. imagettftext($im, 12, 0, 263, 255, $blacka, $font,$fz_org ); // 发证机关
  390. $img_file_dir = SOLUTION_LOG_PATH ."/images/".date('Y-m-d')."/";
  391. if(!is_dir($img_file_dir)){
  392. $res = mkdir($img_file_dir,0777,true);
  393. if (!$res){
  394. echo "目录 $img_file_dir 创建失败!".PHP_EOL;
  395. return false;
  396. }
  397. }
  398. $img_file = $img_file_dir .$license_plate.".jpg";
  399. $result = imagejpeg($im, $img_file); // 生成jpeg格式图片
  400. imagedestroy($im); // 销毁图片
  401. if(!$result){
  402. echo "生成电子车牌失败, license_plate: ".$license_plate .PHP_EOL;
  403. return false;
  404. }
  405. echo "生成电子车牌完成, license_plate: ".$license_plate .PHP_EOL;
  406. return $img_file;
  407. }
  408. private function produceLockAlarmMessage( $route_info ){
  409. if( !$route_info['DeviceId'] ){
  410. return array('success' => false, 'message' => 'device id is not exists.');
  411. }
  412. if( !$route_info['Longitude'] ){
  413. return array('success' => false, 'message' => 'longitude is not exists.');
  414. }
  415. if( !$route_info['Latitude'] ){
  416. return array('success' => false, 'message' => 'latitude is not exists.');
  417. }
  418. if( !$route_info['DeviceTime'] ){
  419. return array('success' => false, 'message' => 'device time is not exists.');
  420. }
  421. // 从数据库中取出车牌号,缓存1天
  422. if( S('plate-'.$route_info['DeviceId']) ){
  423. $plate = S('plate-'.$route_info['DeviceId']);
  424. }else{
  425. $where = array('GpsDeviceNumber'=>$route_info['DeviceId']);
  426. $plate = M('jms_vehicle')->where($where)->getField('LicensePlate');
  427. S('plate-'.$route_info['DeviceId'], $plate, 24*60*60);
  428. }
  429. //redis获取锁车状态
  430. $vehicle = Redis('czapp_lock_status','hash');
  431. $lockStatus = $vehicle->get($plate);
  432. if(!$lockStatus){
  433. return array('success' => false, 'message' => $plate.'-'.$route_info['DeviceId'].' 未启用锁车');
  434. }
  435. $lockInfoRedis = Redis('czapp_lockinfo', 'hash');
  436. $lockInfoRes = $lockInfoRedis->get($route_info['DeviceId']);
  437. if(!$lockInfoRes){
  438. return array('success' => false, 'message' => $plate.'-'.$route_info['DeviceId'].' 无法查到redis锁车信息');
  439. }
  440. $lockInfoRes = json_decode($lockInfoRes, true);
  441. /*
  442. $deviceSleepTime = C('GPS_SLEEP_TIME');//gps休眠时间
  443. if(!$deviceSleepTime){
  444. $deviceSleepTime = 300;
  445. }
  446. $timeInterval = time() - strtotime($lockInfoRes['GpsOnlineTime']);
  447. if($timeInterval < $deviceSleepTime){//小于休眠时间不报警
  448. echo '--3'.PHP_EOL;
  449. return array('success' => false, 'message' => $plate.'-'.$route_info['DeviceId'].' 小于休眠时间不告警');
  450. }
  451. */
  452. //是否移动
  453. $distance = \Jms\Algo\Geometry::getBdDistance($lockInfoRes['GpsLatitude'], $lockInfoRes['GpsLongitude'], $route_info['Latitude'], $route_info['Longitude']) * 1000;
  454. $configDist = C('LOCK_ALARM_DISTANCE');//锁车后移动距离
  455. if(!$configDist){
  456. $configDist = 20;
  457. }
  458. $alarm = false;//默认不告警
  459. if($distance > $configDist){
  460. $alarm = true;
  461. }
  462. if($alarm){
  463. $alarm_data = array(
  464. //"type" => C('FENCE_ALARM'),
  465. "type" => \Rlfd\Alarm\PushTypeEnum::LOCK_VEHICLE_ALARM,
  466. "title" => "锁车告警",
  467. "content" => "车辆 {$plate} 有异常移动,请前往停车处确认是否被盗。",
  468. "device_number" => $route_info['DeviceId']
  469. );
  470. kafkaProducer('gps_alarm_msg_queue', $alarm_data); // 添加到kafka
  471. return array('success' => true, 'message' => $plate.'-'.$route_info['DeviceId'].' 添加告警消息到 gps_alarm_msg_queue');
  472. }
  473. return array('success' => false, 'message' => $plate.'-'.$route_info['DeviceId'].' 无异常');
  474. }
  475. public function lockAlarm2Kafka( ){
  476. // 从 topic :gps_location_data 取轨迹
  477. $conf = new RdKafka\Conf();
  478. // Set a rebalance callback to log partition assignments (optional)(当有新的消费进程加入或者退出消费组时,kafka 会自动重新分配分区给消费者进程,这里注册了一个回调函数,当分区被重新分配时触发)
  479. $conf->setRebalanceCb(function (RdKafka\KafkaConsumer $kafka, $err, array $partitions = null) {
  480. switch ($err) {
  481. case RD_KAFKA_RESP_ERR__ASSIGN_PARTITIONS:
  482. echo "Assign: ";
  483. var_dump($partitions);
  484. $kafka->assign($partitions);
  485. break;
  486. case RD_KAFKA_RESP_ERR__REVOKE_PARTITIONS:
  487. echo "Revoke: ";
  488. var_dump($partitions);
  489. $kafka->assign(NULL);
  490. break;
  491. default:
  492. throw new \Exception($err);
  493. }
  494. });
  495. // Configure the group.id. All consumer with the same group.id will consume( 配置groud.id 具有相同 group.id 的consumer 将会处理不同分区的消息,所以同一个组内的消费者数量如果订阅了一个topic, 那么消费者进程的数量多于这个topic 分区的数量是没有意义的。)
  496. // different partitions.
  497. $conf->set('group.id', 'lockAlarmMsgGroup');
  498. if( !C('KAFKA_BROKER_LIST') ){
  499. echo 'please set broker list !!! ';
  500. }
  501. // Initial list of Kafka brokers(添加 kafka集群服务器地址)
  502. $conf->set('metadata.broker.list', C('KAFKA_BROKER_LIST'));
  503. $topicConf = new RdKafka\TopicConf();
  504. // Set where to start consuming messages when there is no initial offset in
  505. // offset store or the desired offset is out of range.
  506. // 'smallest': start from the beginning
  507. $topicConf->set('auto.offset.reset', 'smallest');
  508. // Set the configuration to use for subscribed/assigned topics
  509. $conf->setDefaultTopicConf($topicConf);
  510. $consumer = new RdKafka\KafkaConsumer($conf);
  511. // 订阅轨迹数据topic
  512. $consumer->subscribe(['gps_location_data']);
  513. while (true) {
  514. $message = $consumer->consume(120*1000);
  515. switch ($message->err) {
  516. case RD_KAFKA_RESP_ERR_NO_ERROR:
  517. // 判断是否超出围栏范围 ,存入 topic:gps_alarm_msg_queue
  518. $route_info = json_decode($message->payload,true);
  519. if( empty($route_info) ){
  520. echo 'empty route info.';
  521. break;
  522. }
  523. $lockAlarmRes = $this->produceLockAlarmMessage($route_info);
  524. if($lockAlarmRes){
  525. print_r($lockAlarmRes);
  526. debug_log('lock_alarm',$lockAlarmRes['message']);
  527. }
  528. break;
  529. case RD_KAFKA_RESP_ERR__PARTITION_EOF:
  530. echo "No more messages; will wait for more\n";
  531. break;
  532. case RD_KAFKA_RESP_ERR__TIMED_OUT:
  533. echo "Timed out\n";
  534. break;
  535. default:
  536. throw new \Exception($message->errstr(), $message->err);
  537. break;
  538. }
  539. }
  540. }
  541. }