card_base.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. #include <memory>
  2. #include <message.h>
  3. #include "card_message_handle.h"
  4. #include "card_person.h"
  5. #include "card_car.h"
  6. #include "config_file.h"
  7. #include "select_tool.h"
  8. #include "module_service/module_mgr.h"
  9. #include "websocket/wsClientMgr.h"
  10. #include "websocket/wsTimerThread.h"
  11. #include "three_rates.h"
  12. #include "his_location.h"
  13. #include "event.h"
  14. #include "module_service/module_call.h"
  15. #include "mine.h"
  16. #include "common_tool.h"
  17. #include "ant.h"
  18. #include "area.h"
  19. #include "loc_point.h"
  20. #include "loc_message.h"
  21. #include "module_service/module_traffic_light_manager.h"
  22. #include "db/db_tool.h"
  23. #include "tool_time.h"
  24. #include "tool_byte.h"
  25. extern config_file config;
  26. card_location_base::card_location_base(const std::string&type,uint32_t id,uint16_t dis,int16_t t,int32_t deptid,int32_t level_id,uint32_t cid)
  27. :card(id, dis, t, deptid, level_id, cid)
  28. ,m_display_old(dis)
  29. {
  30. select_tool_manage::instance()->create_tool(type, m_sel_tool, m_smo_tool);
  31. m_his_location_card.reset(new location_card(m_id, m_type, cid));
  32. m_cb_pdoa.set_capacity(5);
  33. m_cb_tof.set_capacity(5);
  34. m_cb_point.set_capacity(5);
  35. for(int index = 0; index < 5; ++index){
  36. m_cb_pdoa.push_back(100);
  37. m_cb_tof.push_back(0);
  38. m_cb_point.push_back(point(0,0));
  39. }
  40. m_cb_stream_idx.set_capacity(2);
  41. m_cb_stream_idx.push_back(0);
  42. m_cb_stream_idx.push_back(0);
  43. }
  44. void card_location_base::do_status(int st)
  45. {
  46. time_t now = time(0);
  47. bool help_flag = false;
  48. log_info("[help-battery] card_id=%d, help_bit=%d, status=%d", m_id, m_help_bit, st);
  49. // 呼救
  50. if((m_help_bit & 1) && (st & STATUS_HELP))
  51. {
  52. // 1111111111
  53. // ^
  54. m_help_last_time = now;
  55. }
  56. else if((m_help_bit & 1) && (st & STATUS_HELP)==0)
  57. {
  58. // 11111111100000
  59. // ^
  60. m_help_bit<<=1;
  61. }
  62. else if((m_help_bit & 1)==0 && (st & STATUS_HELP))
  63. {
  64. // 00000000011111
  65. // ^
  66. // 呼救开始
  67. if((m_help_bit&0x3)==2)
  68. {
  69. //log_warn("[help-battery] handle_m_help, card_id=%d",m_id);
  70. help_flag=true;
  71. }
  72. m_help_last_time = now;
  73. m_help_bit<<=1;
  74. m_help_bit|=1;
  75. log_info("[help-battery] begin help, card_id=%d, help_bit=%d, status=%d", m_id, m_help_bit, st);
  76. }
  77. else
  78. {
  79. // 11111111100000
  80. // ^
  81. // 呼救结束后持续1分钟
  82. if(now - m_help_last_time > 60)
  83. {
  84. m_help_bit = 0;
  85. log_info("[help-battery] end help, card_id=%d, help_bit=%d, status=%d", m_id, m_help_bit, st);
  86. }
  87. }
  88. /*if(!help_flag)
  89. {
  90. st = st & (0xFFFFFFFF ^ STATUS_HELP);
  91. }*/
  92. if((STATUS_POWER_LOWER_SERIOUS & st) != 0)
  93. {
  94. m_pwr_stat = STATUS_POWER_LOWER_SERIOUS;
  95. }
  96. else
  97. {
  98. m_pwr_stat = 0;
  99. }
  100. module_mgr::do_status((STATUS_CARD)st, m_id, m_type);
  101. }
  102. //写入历史轨迹
  103. void card_location_base::make_his_location(uint64_t t,const point & pt,bool bclose /*= false*/)
  104. {
  105. int area_id = 0, map_id = 0, site_id = 0;
  106. double scale = 0.0;
  107. if(auto site_ptr = get_area_tool()->m_site)
  108. {
  109. area_id = site_ptr->m_area_id;
  110. map_id = site_ptr->m_map_id;
  111. site_id = site_ptr->m_id;
  112. scale = site_ptr->m_scale;
  113. }
  114. auto mine_ptr = get_mine_tool();
  115. if(m_time < mine_ptr->get_down_time())
  116. {
  117. return;
  118. }
  119. m_his_location_card->push(t, pt, area_id, map_id, site_id, bclose);
  120. m_his_location_card->insert(t, pt, area_id, map_id, site_id, scale);
  121. }
  122. //坐标点输入业务入口
  123. void card_location_base::on_location(const std::vector<point>&vp, const std::vector<loc_message> &lm, bool is_v_map)
  124. {
  125. loc_point pt = m_sel_tool->select_solution(vp, lm);
  126. //pt.y = pt.y;
  127. auto site_ptr = get_area_tool()->m_site;
  128. int sid = 0;
  129. if(site_ptr)
  130. sid = site_ptr->m_id;
  131. if(pt.m_useless)
  132. {
  133. if (is_person())
  134. {
  135. if (!is_v_map)
  136. {
  137. x = tool_other::round(pt.x, 3);
  138. y = tool_other::round(pt.y, 3);
  139. }
  140. else
  141. {
  142. m_v_point.x = tool_other::round(pt.x, 3);
  143. m_v_point.y = tool_other::round(pt.y, 3);
  144. log_info("useful loc m_v_point: type=%d, card=%d, site=%d, ct=%d, timestamp=%llu, x=%f, y=%f, speed=%.2f, acc=%.2f", m_type, m_id, sid, m_ct, m_time, m_v_point.x, m_v_point.y, m_speed, lm[0].m_acc);
  145. return;
  146. }
  147. }
  148. else if (is_vehicle())
  149. {
  150. if (is_v_map)
  151. {
  152. x = tool_other::round(pt.x, 3);
  153. y = tool_other::round(pt.y, 3);
  154. }
  155. else
  156. {
  157. return;
  158. }
  159. }
  160. double acc = lm[0].m_acc;
  161. m_acc = lm[0].m_acc;
  162. log_info("useful loc point: type=%d, card=%d, site=%d, ct=%d, timestamp=%llu, x=%f, y=%f, speed=%.2f, acc=%.2f",m_type,m_id,sid,m_ct,m_time,x,y, m_speed, acc);
  163. do_business(lm.front().m_sit, pt, acc);
  164. // 呼救128,正常0
  165. int val = (lm[0].m_rav?STATUS_HELP:STATUS_NORMAL);
  166. if(m_battery_value > 3){
  167. val += STATUS_POWER_NORMAL;
  168. }else{
  169. val += STATUS_POWER_LOWER_SERIOUS;
  170. }
  171. log_info("[help-battery] card_id=%d, battery=%d, val=%d", m_id, m_battery_value, val);
  172. do_status(val);
  173. }
  174. else
  175. {
  176. log_warn("坐标不可用:site=%d, type=%d, card=%d, ct=%d, x=%f, y=%f", sid, m_type, m_id, m_ct, pt.x, pt.y);
  177. }
  178. }
  179. void card_location_base::on_message(zloop<task*>* loop, message_locinfo& loc,bool is_history)
  180. {
  181. m_ct = loc.m_card_ct;
  182. m_time = loc.m_time_stamp;
  183. auto site_ptr = sit_list::instance()->get(loc.m_site_id);
  184. if(!site_ptr)
  185. {
  186. log_warn("接收到分站的数据,site=%d,card=%d,ct=%d,但是分站未定义",loc.m_site_id,m_id,loc.m_card_ct);
  187. return;
  188. }
  189. auto area_tool=get_area_tool();
  190. area_tool->set_site(site_ptr);
  191. handle_message(loc.m_card_ct,loc.m_batty_status);
  192. if(site_ptr->is_up_site())
  193. {
  194. log_info("card=%d被井上分站[site=%d]收到",m_id,site_ptr->id());
  195. area_tool->on_point(shared_from_this(),point(1,1));
  196. this->site_hover(loc.m_site_id);
  197. }
  198. else
  199. {
  200. if(site_ptr->is_path_empty())
  201. {
  202. log_warn("接收到分站的数据,site=%d,card=%d,ct=%d,但是分站路径为空",site_ptr->id(),m_id,loc.m_card_ct);
  203. return;
  204. }
  205. m_message_handle->on_message(loop,loc,is_history);
  206. }
  207. }
  208. /*
  209. * tdoa 调用算法库定位
  210. * */
  211. void card_location_base::on_message(zloop<task*>* loop, message_tdoa_locinfo& loc, bool is_history)
  212. {
  213. log_info("[tdoa] start calc location.");
  214. m_ct = loc.m_card_msg.m_sync_num;
  215. auto site_ptr = sit_list::instance()->get(loc.m_site_msg.m_site_id);
  216. if(!site_ptr){
  217. log_warn("[tdoa] 接收到分站的数据:site=%d, card=%d, ct=%d, 但是分站未定义", loc.m_site_msg.m_site_id, m_id, loc.m_card_msg.m_time_stamp);
  218. return;
  219. }
  220. auto area_tool=get_area_tool();
  221. area_tool->set_site(site_ptr);
  222. handle_message(loc.m_card_msg.m_time_stamp, loc.m_card_msg.m_battery_status);
  223. if(site_ptr->is_up_site())
  224. {}
  225. else{
  226. m_message_handle->on_message(loop, loc, is_history);
  227. }
  228. }
  229. /*
  230. * pdoa 调用算法库定位
  231. *
  232. * */
  233. void card_location_base::on_message(zloop<task*>* loop, message_pdoa_locinfo& loc, bool is_history)
  234. {
  235. m_ct = loc.m_card_ct;
  236. m_time = loc.m_time_stamp;
  237. auto site_ptr = sit_list::instance()->get(loc.m_site_id);
  238. if(!site_ptr){
  239. log_warn("[pdoa] 接收到分站的数据:site=%d, card=%d, ct=%d, 但是分站未定义", loc.m_site_id, m_id, loc.m_card_ct);
  240. return;
  241. }
  242. site_ptr->m_loc_time = time(0);
  243. // 基站覆盖距离检测
  244. do_site_coverage(loc);
  245. auto area_tool=get_area_tool();
  246. area_tool->set_site(site_ptr);
  247. m_battery_value = loc.m_batty_status; // 电量值
  248. handle_message(loc.m_card_ct, loc.m_batty_status);
  249. if(site_ptr->is_up_site()){
  250. log_info("card=%d被井上分站[site=%d]收到", m_id, site_ptr->id());
  251. area_tool->on_point(shared_from_this(), point(1,1));
  252. this->site_hover(loc.m_site_id);
  253. m_last_site_id = site_ptr->id();
  254. //m_last_down_stream_idx = site_ptr->m_down_stream_idx;
  255. m_cb_stream_idx.push_back(site_ptr->m_down_stream_idx);
  256. }
  257. else{
  258. char sql[1024] = {0};
  259. snprintf(sql, 1024, "insert into his_distance_reader(card_type, ident, reader_id, dist, dir, cur_time) values(%d, %d, %d, %.2f, %d, '%s')", loc.m_card_type, loc.m_card_id, loc.m_site_id, loc.m_tof*15.65*2.996*1E-4, (tool_other::get_pdoa(loc.m_poa, site_ptr->m_pdoa_offset)>=0?1:-1), tool_time::to_str(time(NULL)).c_str());
  260. db_tool::PushAsync(sql);
  261. log_info("[sql] %s", sql);
  262. do_site_locate_event(loc);
  263. do_card_locate_event(loc);
  264. m_message_handle->on_message(loop, loc, is_history);
  265. }
  266. }
  267. //前端推送位置函数.
  268. void card_location_base::upt_card_pos(sys::_CARD_POS_&cp, point &pt)
  269. {
  270. point _p;
  271. if(pt.empty())
  272. {
  273. _p = *this;
  274. pt = _p;
  275. }
  276. else
  277. _p = pt;
  278. cp.Type = m_type;
  279. cp.ID = m_id;
  280. cp.speed = abs(ceil(m_speed));
  281. cp.x = tool_other::round(_p.x,3);
  282. cp.y = tool_other::round(_p.y,3);
  283. cp.running_stat = m_stat;
  284. cp.dept_id = m_deptid;
  285. cp.display = m_display;
  286. cp.rec_time = m_time;
  287. cp.level_id = m_level_id;
  288. cp.battery_val = m_battery_value;
  289. if(m_pwr_stat > 0){
  290. cp.battery_stat = (m_pwr_stat<3?1:0);
  291. }
  292. cp.m_freq = m_freq;
  293. swsTimerThrd.upt_card_pos(cp);
  294. }
  295. void card_location_base::del_card_pos()
  296. {
  297. sys::_CARD_POS_ cp;
  298. cp.ID = m_id;
  299. cp.Type=m_type;
  300. swsTimerThrd.del_card_pos(cp);
  301. }
  302. int card_location_base::get_stat()
  303. {
  304. //盲区>呼救>呼叫>超时>超速>正常
  305. uint64_t now = time(0)*1000;
  306. uint64_t tlost=now>m_time?now-m_time:m_time-now;
  307. if(tlost>CARD_LOST_TIME_OUT)
  308. {
  309. // 人卡盲区: 当人卡丢失信号大于60s,判定人卡进入盲区
  310. return STATUS_LOST;
  311. }
  312. else if(auto ev_ptr = event_list::instance()->get_event_card(m_id, m_type, ET_CARD_HELP))
  313. {
  314. return (ES_DEAL_HELP == ev_ptr->m_status) ? STATUS_HELP_DEALED : STATUS_HELP;
  315. }
  316. else if(CALL_NONE != get_mine_tool()->m_status_call)
  317. {
  318. return STATUS_CALL;
  319. }
  320. else if(is_person())
  321. {
  322. if(event_list::instance()->get_event_card(m_id, m_type,ET_CARD_AREA_OVER_TIME_PERSON)||
  323. event_list::instance()->get_event_card(m_id, m_type,ET_CARD_OVER_TIME_PERSON))
  324. return STATUS_AREA_OVER_TIME;
  325. }
  326. else if(event_list::instance()->get_event_card(m_id, m_type, ET_CARD_OVER_SPEED))
  327. {
  328. return STATUS_OVER_SPEED;
  329. }
  330. return STATUS_NORMAL;
  331. }
  332. void card_location_base::clear()
  333. {
  334. // uint16_t m_display; //1显示0不显示,往前端推送
  335. m_speed=0; //速度
  336. m_stat=0; //运动静止状态
  337. //m_ct; //ct
  338. m_time=0; //时间戳
  339. //pdoa location info clear
  340. m_buff_size = 0;
  341. m_last_recv_time = 0;
  342. m_last_point = point(0,0);
  343. m_last_site_id = 0;
  344. m_last_site_dir = -1;
  345. m_last_ct = 0;
  346. m_last_dist = 0.0;
  347. m_pdoa_diff = m_last_pdoa_diff = 100.0;
  348. m_last_over_site = false;
  349. m_cache_nums = 0;
  350. m_cb_pdoa.clear();
  351. m_cb_tof.clear();
  352. m_cb_point.clear();
  353. }
  354. void card_location_base::put_three_rates(card_pos & cp)
  355. {
  356. if(!three_rates_flag)
  357. return;
  358. cp.rec_time = m_time;
  359. cp.type = m_type;
  360. cp.id = m_id;
  361. cp.identifier_id= m_cid;
  362. cp.running_stat = m_stat;
  363. cp.final_v = m_speed;
  364. cp.dpt_id = m_deptid;
  365. std::shared_ptr<area_tool> _areatool = get_area_tool();
  366. if(nullptr != _areatool && nullptr != _areatool->m_site)
  367. {
  368. cp.reader_x = _areatool->m_site->x;
  369. cp.reader_y = _areatool->m_site->y;
  370. cp.reader_id = _areatool->m_site->m_id;
  371. }
  372. log_info("three_rates:type:%d,id:%d,cid:%d",cp.type,cp.id,cp.identifier_id);
  373. three_rates::get_instance()->put(cp);
  374. }
  375. void card_location_base::put_traffic_light(card_pos& cp)
  376. {
  377. if(!traffic_light_flag){
  378. return;
  379. }
  380. light_message lm;
  381. lm.m_cmd = cmd_card_data;
  382. lm.m_pos.x = cp.x;
  383. lm.m_pos.y = cp.y;
  384. lm.m_pos.z = cp.z;
  385. lm.m_pos.m_card_id = m_id;
  386. lm.m_pos.m_type = m_type;
  387. lm.m_pos.m_site_id = cp.reader_id;
  388. auto site_ptr = get_area_tool()->m_site;
  389. if(site_ptr){
  390. lm.m_pos.m_area_id = site_ptr->m_area_id;
  391. }
  392. //lm.m_pos.m_bigger = 0;
  393. lm.m_pos.m_speed = m_speed;
  394. log_info("[traffic_light] put locate info into traffic light module, card_id=%d, ctype=%d, x=%.2f, y=%.2f, site_id=%d", m_id, m_type, x, y, cp.reader_id);
  395. traffic_light_manager::instance()->put(lm);
  396. }
  397. bool card_location_base::is_person() const
  398. {
  399. return tool_other::is_person(m_type);
  400. }
  401. bool card_location_base::is_vehicle() const
  402. {
  403. return tool_other::is_vehicle(m_type);
  404. }
  405. void card_location_base::set_base_data(uint32_t cid,uint16_t type,uint32_t deptid,int32_t level_id) {
  406. m_cid = cid;
  407. m_type = type;
  408. m_deptid = deptid;
  409. m_level_id = level_id;
  410. m_his_location_card->set_cid(cid);
  411. }
  412. card_location_base::~card_location_base()
  413. {
  414. }
  415. std::shared_ptr<card_location_base> card_location_base::make_person(const std::string&type,uint32_t cardid,uint16_t needdisplay,int16_t t,
  416. int32_t deptid,int32_t level_id,uint32_t cid,int wl,const std::string &sname,const std::string & dname,int worktype_id)
  417. {
  418. return std::make_shared<person>(type, cardid, needdisplay, t, deptid, level_id, cid, wl, sname, dname, worktype_id);
  419. }
  420. /*
  421. * @brief 创建车辆对象
  422. * @param const std::string& type
  423. * @param uint32_t cardid 卡id
  424. * @param uint16_t needdisplay 是否需要显示
  425. * @param int16_t t
  426. * @param int32_t deptid 部门id
  427. * @param int32_t categoryid
  428. * @param int type_id 卡类型id
  429. * @param int32_t level_id 职级id
  430. * @param uint32_t cid
  431. * @return 车辆对象
  432. * @note
  433. * @bug
  434. * @warning
  435. * */
  436. std::shared_ptr<card_location_base> card_location_base::make_car(const std::string&type, uint32_t cardid, uint16_t needdisplay, int16_t t,
  437. int32_t deptid, int32_t categoryid, int type_id,int32_t level_id,uint32_t cid)
  438. {
  439. return std::make_shared<car>(type, cardid, needdisplay, t, deptid, categoryid, type_id, level_id, cid);
  440. }
  441. /*
  442. * @brief 基站覆盖距离检测
  443. * @param message_pdoa_locinfo& loc 卡数据
  444. * @return 无
  445. * @note
  446. * @bug
  447. * @warning
  448. * */
  449. void card_location_base::do_site_coverage(message_pdoa_locinfo& loc)
  450. {
  451. auto site_ptr = sit_list::instance()->get(loc.m_site_id);
  452. if(!site_ptr){
  453. log_warn("[pdoa] 接收到分站的数据:site=%d, card=%d, ct=%d, 但是分站未定义", loc.m_site_id, m_id, loc.m_card_ct);
  454. return;
  455. }
  456. double pdoa = tool_other::get_pdoa(loc.m_poa, site_ptr->m_pdoa_offset);
  457. double dist = loc.m_tof*15.65*2.996*1e-4;
  458. bool is_update = false;
  459. if(pdoa > 0){
  460. if(dist > site_ptr->m_coverage[0].m_distance){
  461. site_ptr->m_coverage[0].m_distance = dist;
  462. site_ptr->m_coverage[0].m_cid = tool_byte::to_cardid(loc.m_card_type, loc.m_card_id);
  463. site_ptr->m_coverage[0].m_time = time(0);
  464. is_update = true;
  465. }
  466. }else{
  467. if(dist > site_ptr->m_coverage[1].m_distance){
  468. site_ptr->m_coverage[1].m_distance = dist;
  469. site_ptr->m_coverage[1].m_cid = tool_byte::to_cardid(loc.m_card_type, loc.m_card_id);
  470. site_ptr->m_coverage[1].m_time = time(0);
  471. is_update = true;
  472. }
  473. }
  474. if(is_update){
  475. char sql[1024] = {0};
  476. snprintf(sql, 1024, "REPLACE INTO his_reader_coverage(reader_id, plus_dist, plus_card_id, plus_occur_time, minus_dist, minus_card_id, minus_occur_time, last_update) VALUES(%d,%.2f,'%s','%s',%.2f,'%s','%s','%s');", site_ptr->m_id, site_ptr->m_coverage[0].m_distance, site_ptr->m_coverage[0].m_cid.c_str(), tool_time::to_str(site_ptr->m_coverage[0].m_time).c_str(), site_ptr->m_coverage[1].m_distance, site_ptr->m_coverage[1].m_cid.c_str(), tool_time::to_str(site_ptr->m_coverage[1].m_time).c_str(), tool_time::to_str(time(0)).c_str());
  477. db_tool::PushAsync(sql);
  478. logn_info(2, "[sql] %s", sql);
  479. }
  480. }
  481. /*
  482. * @brief 卡定位异常检测
  483. * @param message_pdoa_locinfo& loc 卡数据
  484. * @return 无
  485. * @note
  486. * @bug
  487. * @warning
  488. * */
  489. void card_location_base::do_card_locate_event(const message_pdoa_locinfo& loc)
  490. {
  491. bool status = false;
  492. status = ((loc.m_tof == 0)?true:false);
  493. uint64_t id = tool_other::type_id_to_u64(m_type, m_id);
  494. event_tool::instance()->handle_event(OT_CARD, ET_CARD_LOCATE_ERROR, id, 0, 0, status);
  495. //log_info("[card-locate-event] card_id=%d, ct=%d, tof=%lld", m_id, m_ct, loc.m_tof);
  496. }
  497. /*
  498. * @brief 基站定位异常检测
  499. * @param message_pdoa_locinfo& loc 卡数据
  500. * @return 无
  501. * @note
  502. * @bug
  503. * @warning
  504. * */
  505. void card_location_base::do_site_locate_event(const message_pdoa_locinfo& loc)
  506. {
  507. //log_info("[site-locate-event] cur_ct=%d, ct=%d, m_last_ct=%d, m_last_site_id=%d, loc.m_site_id=%d", loc.m_card_ct, ct, m_last_ct, m_last_site_id, loc.m_site_id);
  508. if(m_last_ct <= 0 || m_last_site_id == 0){
  509. return;
  510. }
  511. if(loc.m_site_id != m_last_site_id){
  512. return;
  513. }
  514. int dt = 0;
  515. if(loc.m_card_ct > m_last_ct){
  516. dt = loc.m_card_ct - m_last_ct;
  517. }else{
  518. dt = 65535 + loc.m_card_ct - m_last_ct;
  519. }
  520. event_tool::instance()->handle_event(OT_DEVICE_READER, ET_READER_LONG_TIME_NO_POSITION, loc.m_site_id, 3, dt, (dt>=3));
  521. log_info("[site-locate-event] site_id=%d, card_id=%d, ct=%d, dt=%d", loc.m_site_id, m_id, loc.m_card_ct, dt);
  522. }