ant.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <math.h>
  4. #include "ant.h"
  5. #include "db_api/CDBSingletonDefine.h"
  6. #include "event.h"
  7. #include "tool_time.h"
  8. #include "area.h"
  9. #include "card_path.h"
  10. #include "websocket/wsTimerThread.h"
  11. int site::index()const
  12. {
  13. //return m_algo+(m_num_dims<<1);
  14. return (m_algo<<4) + m_num_dims;
  15. }
  16. site::site(int id)
  17. :m_algo(0)
  18. ,m_num_dims(0)
  19. ,m_id(id)
  20. ,m_path_empty(true)
  21. {
  22. //m_time = time(0);
  23. for(uint32_t i=0;i<m_timeoff_count.size();i++)
  24. m_timeoff_count[i]=0;
  25. }
  26. const algo_config&site::config()const
  27. {
  28. return g_config[index()];
  29. }
  30. void ant::set_path(const std::vector<line_v>& v_line, std::vector<line_v>::const_iterator itm)
  31. {
  32. auto it = itm;
  33. for(int i = 0; i < 2 && it != v_line.end(); ++it,++i)
  34. m_path[0][i]=*it;
  35. it=itm-1;
  36. for(int i=0;i<2 && it>=v_line.begin();--it,++i)
  37. {
  38. m_path[1][i]=*it;
  39. m_path[1][i].swap_point();
  40. }
  41. for(int i=0;i<2;i++)
  42. {
  43. point _p=m_path[i][0].line::projection(*this);
  44. m_path[i][0].set_point(0,_p);
  45. }
  46. for(const auto&p:m_path)
  47. {
  48. log_info("site-path: %s",p.to_str().c_str());
  49. }
  50. }
  51. void ant::set_path(const std::vector<line_v>&v_line_)
  52. {
  53. std::vector<line_v> vl(v_line_);
  54. vl.reserve(vl.size()+2);
  55. //找到距离天线最近的端点
  56. auto min_it = vl.begin();
  57. double dist = 10;
  58. for(auto it = vl.begin(); it != vl.end(); it++)
  59. {
  60. double d = it->as_line().dist(*this);
  61. if(d < dist)
  62. {
  63. dist = d;
  64. min_it = it;
  65. }
  66. }
  67. if(min_it==vl.end())
  68. {
  69. log_error("分站路径距离分站太远site_id=%d",m_id);
  70. return;
  71. }
  72. if(abs(min_it->v[0].dist(*this) - dist) < 1)
  73. {
  74. set_path(vl, min_it);
  75. }
  76. else if(abs(min_it->v[1].dist(*this) - dist) < 1)
  77. {
  78. set_path(vl, min_it+1);
  79. }
  80. else
  81. {
  82. point proj=min_it->projection(*this);
  83. vl.insert(min_it+1,line_v(proj,min_it->v[1]));
  84. min_it->set_point(1,proj);
  85. if(min_it->v[0].z)//slope ..555
  86. {
  87. double slope=min_it->v[0].z;
  88. double len_a=min_it->v[0].dist((min_it+1)->v[1]);
  89. double len_0=slope*min_it->length()/len_a;
  90. double len_1=slope-len_0;
  91. min_it->v[0].z=min_it->v[1].z=len_0;
  92. (min_it+1)->v[0].z=(min_it+1)->v[1].z=len_1;
  93. }
  94. set_path(vl,min_it+1);
  95. }
  96. }
  97. void site::set_path(const std::vector<line_v>&v_line)
  98. {
  99. if(v_line.empty())
  100. return;
  101. const auto&find_line=[](const point&pt,int first,std::vector<line_v>&vl){
  102. for(auto it=vl.begin();it!=vl.end();it++)
  103. {
  104. if(it->v[first].dist(pt)<1)
  105. return it;
  106. if(it->v[first?0:1].dist(pt)<1)
  107. {
  108. point p=it->v[0];
  109. it->v[0]=it->v[1];
  110. it->v[1]=p;
  111. return it;
  112. }
  113. }
  114. return vl.end();
  115. };
  116. //构造一个首尾相连的结构
  117. std::vector<line_v> vl(v_line.begin()+1,v_line.end());
  118. std::vector<line_v> target(v_line.begin(),v_line.begin()+1);
  119. #if 0
  120. target[0][0].z=target[0][1].z=slope[0];
  121. for(int i=0,c=vl.size();i<c;i++)
  122. vl[i][0].z=vl[i][1].z=slope[i+1];
  123. #endif
  124. for(;;)
  125. {
  126. auto it=find_line(target.back().v[1],0,vl);
  127. if(it==vl.end())
  128. break;
  129. target.insert(target.end(),it,it+1);
  130. vl.erase(it);
  131. }
  132. for(;;)
  133. {
  134. auto it=find_line(target.front().v[0],1,vl);
  135. if(it==vl.end())
  136. break;
  137. target.insert(target.begin(),it,it+1);
  138. vl.erase(it);
  139. }
  140. log_info("初始化分站路径:site_id=%d",m_id);
  141. for(int i=0,c=target.size();i<c;i++)
  142. {
  143. log_info("path-id=%d,line=%s",i,target[i].to_string().c_str());
  144. }
  145. for(int i = 0,c = m_ant.size(); i < c; i++)
  146. {
  147. if(m_ant[i].empty())
  148. {
  149. log_error("分站未设置天线坐标 site_id=%d,ant_index=%d", m_id, i);
  150. continue;
  151. }
  152. m_ant[i].set_path(target);
  153. }
  154. m_path_empty= !m_ant[0][0].valid() && !m_ant[0][1].valid() ;
  155. }
  156. double site::get_site_dist(const int& sid)
  157. {
  158. auto it_site = sit_list::instance()->get(sid);
  159. if(it_site){
  160. return this->dist(*it_site);
  161. }else{
  162. return 0.0;
  163. }
  164. }
  165. std::vector<point> ant::getsol(const double &dist) const
  166. {
  167. std::vector<point> v;
  168. for(const auto & p : m_path)
  169. {
  170. if(!p.valid())
  171. continue;
  172. point pt;
  173. double d = dist;
  174. //logn_info(3, "[pdoa] dist=%.2f, line.length()=%.2f, %s", dist, p.m_line[0].length(), p.to_str().c_str());
  175. if(dist <= p.m_line[0].length())
  176. {
  177. d += d*p.m_line[0][0].z;
  178. pt = point(p.m_line[0][0].x + d*p.m_line[0].cos() , p.m_line[0][0].y + d*p.m_line[0].sin());
  179. }
  180. else if(p.m_line[1].length()>0)
  181. {
  182. d -= p.m_line[0].length()*(1-d*p.m_line[0][1].z);
  183. d += d*p.m_line[1][0].z;
  184. pt = point(p.m_line[1][0].x+d*p.m_line[1].cos(),p.m_line[1][0].y+d*p.m_line[1].sin());
  185. }
  186. else
  187. {
  188. continue;
  189. }
  190. v.push_back(pt);
  191. }
  192. return std::move(v);
  193. }
  194. bool visit_site_status::visit(std::shared_ptr<site> s)
  195. {
  196. time_t now = time(0);
  197. int diff = now - s->m_time;
  198. event_tool::instance()->handle_event(OT_DEVICE_READER, ET_READER_ERROR, s->m_id, READER_TIMEOUT, diff, diff>READER_TIMEOUT);
  199. // 更新设备状态
  200. int state = (diff > READER_TIMEOUT ? 1 : 0);
  201. //log_info("[device_state] rid=%d, diff=%d, timeout=%d, state=%d, now=%lld, rtime=%lld", s->m_id, diff, READER_TIMEOUT, state, now, s->m_time);
  202. sys::device_state ds(s->m_id, s->m_device_type_id, state, now);
  203. swsTimerThrd.upt_device_state(ds);
  204. return true;
  205. }
  206. void sit_list::read_ant_path(int id)
  207. {
  208. std::string sql = "SELECT reader_id,tof_flag,b_x,b_y,b_z,e_x,e_y,e_z,spacing_ratio FROM dat_reader_path_tof_n";
  209. std::map<int,std::vector<line_v>> map_path;
  210. if(-1 == id)
  211. {
  212. sql.append(";");
  213. }
  214. else
  215. {
  216. sql.append(" where reader_id=");
  217. sql.append(std::to_string(id));
  218. sql.append(";");
  219. std_debug("修改path sql=%s", sql.c_str());
  220. log_info("修改path sql=%s", sql.c_str());
  221. }
  222. std::string Error;
  223. YADB::CDBResultSet DBRes;
  224. sDBConnPool.Query(sql.c_str(),DBRes,Error);
  225. int nCount = DBRes.GetRecordCount( Error );
  226. if (nCount < 1)
  227. {
  228. log_error("修改path失败,数据库中找不到(dat_reader_path_tof_n): 分站id=%d", id);
  229. return ;
  230. }
  231. log_info( "read_ant_path. The record count=%ld\n", nCount );
  232. while ( DBRes.GetNextRecod(Error) )
  233. {
  234. int reader_id = 0;
  235. DBRes.GetField( "reader_id",reader_id, Error );
  236. auto site_ptr=sit_list::instance()->get(reader_id);
  237. if(nullptr==site_ptr)
  238. {
  239. log_error("[site] 定义了分站路径,但是没有定义分站:%d",reader_id);
  240. continue;
  241. }else if(site_ptr->m_num_dims != 1){
  242. log_info("[site] 多维定位分站,无需定义路径:%d", reader_id);
  243. continue;
  244. }
  245. int pid=0;
  246. DBRes.GetField( "tof_flag",pid, Error );
  247. double b_x= 0;
  248. DBRes.GetField( "b_x",b_x, Error );
  249. double b_y= 0;
  250. DBRes.GetField( "b_y",b_y, Error );
  251. double b_z= 0;
  252. DBRes.GetField( "b_z",b_z, Error );
  253. double e_x= 0;
  254. DBRes.GetField( "e_x",e_x, Error );
  255. double e_y= 0;
  256. DBRes.GetField( "e_y",e_y, Error );
  257. double e_z= 0;
  258. DBRes.GetField( "e_z",e_z, Error );
  259. double spacing_ratio = 0;
  260. DBRes.GetField( "spacing_ratio",spacing_ratio, Error );
  261. log_info("src-path:site=%d,x0=%.2f,y0=%.2f,x1=%.2f,y1=%.2f",reader_id,b_x,b_y,e_x,e_y);
  262. point p1(b_x, b_y, spacing_ratio);
  263. point p2(e_x, e_y, spacing_ratio);
  264. map_path.insert(std::make_pair(reader_id,std::vector<line_v>()));
  265. map_path.find(reader_id)->second.push_back(line_v(p1,p2));
  266. #if 0
  267. auto &sit_ = *site_ptr;
  268. if(-1!=id)//清空path
  269. {
  270. sit_.clear_path();
  271. log_info( "修改path 清空path,分站id=%d\n", id );
  272. }
  273. if(pid == 0)
  274. {
  275. line_v l(p1,p2);
  276. {
  277. point px = l.line::projection(sit_);
  278. sit_.set(px);
  279. for(int i=0;i<2;i++)
  280. {
  281. path p;
  282. p.m_slope[0] = spacing_ratio;
  283. p.m_line[0] = line_v(px,l[i]);
  284. sit_.m_ant[i].m_path.push_back(p);
  285. }
  286. }
  287. }
  288. else
  289. {
  290. ant &a = pid<0?sit_.m_ant[0]:sit_.m_ant[1];
  291. if(a.m_path.size()!=0)
  292. {
  293. path &p = a.m_path[0];
  294. p.m_line[abs(pid)-1] = line_v(p1,p2);
  295. p.m_slope[abs(pid)-1] = spacing_ratio;
  296. }
  297. else
  298. {
  299. path p;
  300. p.m_line[abs(pid)-1] = line_v(p1,p2);
  301. p.m_slope[abs(pid)-1] = spacing_ratio;
  302. a.m_path.push_back(p);
  303. }
  304. if(abs(pid)==1)
  305. sit_.set(p1);
  306. }
  307. #endif
  308. }
  309. #if 0
  310. if(-1==id)
  311. {
  312. for(auto&_s:sit_list::instance()->m_map)
  313. {
  314. _s.second->deal_path();
  315. }
  316. }
  317. else
  318. {
  319. auto sit_ptr=sit_list::instance()->get(id);
  320. if(sit_ptr)
  321. {
  322. sit_ptr->deal_path();
  323. log_info( "修改path成功,分站id=%d\n", id );
  324. }
  325. }
  326. #endif
  327. for(auto&vl:map_path)
  328. {
  329. auto sit_ptr=sit_list::instance()->get(vl.first);
  330. if(!sit_ptr)
  331. {
  332. log_error("[site] 定义了分站路径,但是没有定义分站:%d",vl.first);
  333. continue;
  334. }else if(sit_ptr->m_num_dims > 1){
  335. log_info("[site] 多维定位分站,无需定义路径:%d", vl.first);
  336. continue;
  337. }
  338. sit_ptr->set_path(vl.second);
  339. point p;
  340. if(!sit_ptr->m_path_empty){
  341. p=(*sit_ptr)[0][0][0].line::projection(*sit_ptr);
  342. sit_ptr->set(p);
  343. }
  344. if(p==*sit_ptr)
  345. log_info("[site_path]%s",sit_ptr->to_string().c_str());
  346. else
  347. log_info("[site_path_diff](%f,%f)--%f--%s",p.x,p.y,p.dist(*sit_ptr),sit_ptr->to_string().c_str());
  348. }
  349. card_path::init();
  350. }
  351. void sit_list::init_site(const std::string &ids /*=""*/)
  352. {
  353. std::string sql = "SELECT reader_id, reader_type_id, dat_reader.map_id, \
  354. area_id, device_type_id, dimension, dat_map.scale,need_power_alarm \
  355. ,x,y, pdoa_offset, pdoa_direction, isSpecial, down_stream_idx \
  356. FROM dat_reader, dat_map where \
  357. dat_reader.map_id=dat_map.map_id and state=0";
  358. if(ids.empty())
  359. {
  360. sql.append(";");
  361. }
  362. else
  363. {
  364. sql.append(" AND reader_id in (");
  365. sql+=ids;
  366. sql.append(");");
  367. std_debug("增加或修改分站 sql=%s", sql.c_str());
  368. log_info("增加或修改分站 sql=%s", sql.c_str());
  369. }
  370. std::string Error;
  371. YADB::CDBResultSet DBRes;
  372. sDBConnPool.Query(sql.c_str(),DBRes,Error);
  373. int nCount = DBRes.GetRecordCount( Error );
  374. if (nCount < 1)
  375. {
  376. log_error("增加或修改失败,数据库中找不到: 分站id=%s", ids.c_str());
  377. return ;
  378. }
  379. log_info( "init_site. The record count=%ld\n", nCount );
  380. while ( DBRes.GetNextRecod(Error) )
  381. {
  382. int reader_id = 0;
  383. DBRes.GetField( "reader_id",reader_id, Error );
  384. auto site_ptr=sit_list::instance()->get(reader_id);
  385. if(nullptr==site_ptr)
  386. {
  387. site_ptr = std::make_shared<site>(reader_id);
  388. sit_list::instance()->add(reader_id,site_ptr);
  389. }
  390. int reader_type_id = 0;
  391. DBRes.GetField( "reader_type_id",reader_type_id, Error );
  392. int map_id = 0;
  393. DBRes.GetField( "map_id",map_id, Error );
  394. int area_id = 0;
  395. DBRes.GetField( "area_id",area_id, Error );
  396. int device_type_id = 0;
  397. DBRes.GetField( "device_type_id",device_type_id, Error );
  398. int dimension = 0;
  399. DBRes.GetField( "dimension",dimension, Error );
  400. double scale= 0;
  401. DBRes.GetField( "scale",scale, Error );
  402. int power_alarm = 0;
  403. DBRes.GetField( "need_power_alarm",power_alarm, Error );
  404. int down_stream_idx = 0;
  405. DBRes.GetField("down_stream_idx", down_stream_idx, Error);
  406. site_ptr->m_reader_type_id = reader_type_id;
  407. site_ptr->m_map_id = map_id;
  408. site_ptr->m_area_id = area_id;
  409. site_ptr->m_power_check_enable=power_alarm;
  410. site_ptr->m_device_type_id = device_type_id;
  411. site_ptr->m_num_dims = dimension;
  412. site_ptr->m_scale = scale;
  413. site_ptr->m_down_stream_idx = down_stream_idx;
  414. site_ptr->create_area();
  415. double x = 0, y = 0;
  416. DBRes.GetField("x", x, Error);
  417. DBRes.GetField("y", y, Error);
  418. site_ptr->x = x;
  419. site_ptr->y = y;
  420. double offset = 0.0;
  421. DBRes.GetField("pdoa_offset", offset, Error);
  422. site_ptr->m_pdoa_offset = offset;
  423. int direction = 0;
  424. if(DBRes.GetField("pdoa_direction", direction, Error)){
  425. site_ptr->m_pdoa_direction = direction;
  426. }
  427. int special = 0;
  428. if(DBRes.GetField("isSpecial", special, Error)){
  429. site_ptr->m_special = special;
  430. }
  431. log_info ("site_position: site=%d, x=%.2lf, y=%.2lf, area_id=%d, m_scale=%.2f, pdoa_offset=%.2f, pdoa_direction=%d, special=%d", reader_id, x, y, area_id, scale, offset, direction, special);
  432. }
  433. }
  434. void sit_list::read_sit_list(int id)
  435. {
  436. std::string sql = "SELECT antenna_id, a.reader_id, idx, a.x, a.y, a.z, a.angle \
  437. FROM dat_antenna a, dat_reader r \
  438. WHERE a.reader_id = r.reader_id";
  439. if(-1 == id)
  440. {
  441. sql.append(";");
  442. }
  443. else
  444. {
  445. sql.append(" AND antenna_id=");
  446. sql.append(std::to_string(id));
  447. sql.append(";");
  448. log_info("基础数据 增加或修改天线 sql=%s", sql.c_str());
  449. }
  450. std::string Error;
  451. YADB::CDBResultSet DBRes;
  452. sDBConnPool.Query(sql.c_str(),DBRes,Error);
  453. int nCount = DBRes.GetRecordCount( Error );
  454. if (nCount < 1)
  455. {
  456. log_error("基础数据 增加或修改失败,数据库中找不到: 天线id=%d", id);
  457. return ;
  458. }
  459. log_info( "init_antenna. The record count=%ld\n", nCount );
  460. while ( DBRes.GetNextRecod(Error) )
  461. {
  462. int antenna_id = 0;
  463. DBRes.GetField( "antenna_id",antenna_id, Error );
  464. int reader_id = 0;
  465. DBRes.GetField( "reader_id",reader_id, Error );
  466. int idx=0;
  467. DBRes.GetField( "idx",idx, Error );
  468. int antid = idx-1;
  469. if(antid >= 2 || antid < 0)
  470. continue;
  471. double x= 0;
  472. DBRes.GetField( "x",x, Error );
  473. double y= 0;
  474. DBRes.GetField( "y",y, Error );
  475. double z= 0;
  476. DBRes.GetField( "z",z, Error );
  477. double _angle = 0;
  478. DBRes.GetField("angle", _angle, Error);
  479. log_info("ant-position:reader=%d, antid=%d, x=%.2lf, y=%.2lf, angle=%.2f", reader_id, antid, x, y, _angle);
  480. if(-1 == id)
  481. {
  482. std::shared_ptr<site> site_ptr=nullptr;
  483. site_ptr = sit_list::instance()->get(reader_id);
  484. if(!site_ptr)
  485. continue;
  486. site_ptr->m_ant[antid].m_id = antenna_id;
  487. site_ptr->m_ant[antid].set(x, y);
  488. site_ptr->m_ant[antid].m_angle = _angle;
  489. site_ptr->set_ex();
  490. }
  491. else
  492. {
  493. auto site_ptr = sit_list::instance()->get(reader_id);
  494. if(site_ptr)
  495. {
  496. site_ptr->m_ant[antid].set(x, y);
  497. site_ptr->m_ant[antid].m_angle = _angle;
  498. site_ptr->set_ex();
  499. }
  500. log_info("基础数据 增加或修改天线成功:天线id:%d,分站id:%d",id,reader_id);
  501. }
  502. }
  503. }
  504. void site::create_area()
  505. {
  506. m_area=std::make_shared<area>(-m_id,0,0,m_scale,m_map_id,1<<7);
  507. }
  508. void site::clear_event()
  509. {
  510. event_tool::instance()->handle_event(OT_DEVICE_READER, ET_READER_ERROR, id(), READER_TIMEOUT, 0, false);
  511. event_tool::instance()->handle_event(OT_DEVICE_READER, ET_READER_POWER_BY_BATTERY, id(), 0, 0, false);
  512. }
  513. /*
  514. 处理分站供电状态,交流供电时,ac_down=false,直流供电时,ac_down=true
  515. 目前只有大分站实现了这个功能,并且井下安装时是否接入了该电信号也不确定
  516. ,所以需要有张表定义某个ID是否需要告警
  517. */
  518. void site::on_power_status(bool ac_down)//电源状态
  519. {
  520. if(!m_power_check_enable || ac_down == m_power_ac_down)
  521. {
  522. return;
  523. }
  524. m_power_ac_down=ac_down;
  525. event_tool::instance()->handle_event(OT_DEVICE_READER,ET_READER_POWER_BY_BATTERY,id(),tool_time::now_to_seconds(),ac_down,m_power_ac_down);
  526. log_info("[event warning: reader power supply by battery] reader_id: Power %d->%d.",id(),!m_power_ac_down,m_power_ac_down);
  527. }
  528. algo_config site::g_config[]=
  529. {
  530. { "tof-1", 1, 2, 0.1, 1 },
  531. { "tdoa-1", 2, 2, 0.1, 1 },
  532. { "tof-2", 2, 3, 0.1, 1 },
  533. { "tdoa-2", 3, 3, 0.1, 1 },
  534. { "tof-3", 3, 4, 0.1, 1 },
  535. { "tdoa-3", 4, 4, 0.1, 1 }
  536. };
  537. /*
  538. #ifdef _TEST
  539. int main()
  540. {
  541. log_init("./log.ini");
  542. //sit_list *sl = sit_list::instance();
  543. sit_list::instance()->load("data_reader_antenna.txt","path_tof.txt");
  544. sit_list::instance()->get(209)->solving(0,100);
  545. sit_list::instance()->get(209)->solving(1,100.5);
  546. //std_info("---%d",(*sl)[209].m_ant[0].m_path.size());
  547. //std_info("---%d",(*sl)[209][0].size());
  548. //std_info("---%s",(*sl)[209][0][0][0].to_string().c_str());
  549. }
  550. #endif
  551. */