ant.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. /**
  2. * 分站数据结构 site_list
  3. */
  4. #ifndef _ANT_LIST_HPP_
  5. #define _ANT_LIST_HPP_
  6. #include <math.h>
  7. #include <array>
  8. #include <deque>
  9. #include <tuple>
  10. #include <memory>
  11. #include <algorithm>
  12. #include <sstream>
  13. #include "log.h"
  14. #include "line.h"
  15. #include "point.h"
  16. #include "write-copy.h"
  17. #include"net-service.h"
  18. #include"common.h"
  19. class client;
  20. class area;
  21. struct path
  22. {
  23. std::array<line_v,2> m_line;
  24. std::array<double,2> m_slope;
  25. path()
  26. {
  27. for(auto &d:m_slope)
  28. d=0;
  29. }
  30. std::string to_str() const
  31. {
  32. std::stringstream ss;
  33. for(int i=0;i<2;i++)
  34. {
  35. ss<<"line:" <<m_line[i].to_string()<<"slope:"<<m_slope[i]<< " cos:"<<m_line[i].cos()<<" sin:"<<m_line[i].sin()<<" | ";
  36. }
  37. return ss.str();
  38. }
  39. bool vaild() const
  40. {
  41. return !m_line[0].empty();
  42. }
  43. line_v & operator[](int i)
  44. {
  45. return m_line[i];
  46. }
  47. const line_v & operator[](int i) const
  48. {
  49. return m_line[i];
  50. }
  51. };
  52. //?
  53. struct algo_config
  54. {
  55. const char*desc;
  56. int min_msg_cnt;
  57. int best_msg_cnt;
  58. double min_wait_time;
  59. double max_wait_time;
  60. };
  61. //
  62. struct ant :point
  63. {
  64. int m_id;
  65. std::vector<path> m_path;
  66. path & operator[](int i)
  67. {
  68. return m_path[i];
  69. }
  70. const path & operator[](int i) const
  71. {
  72. return m_path[i];
  73. }
  74. size_t size() const
  75. {
  76. return m_path.size();
  77. }
  78. std::vector<point> getsol(const double &dist) const
  79. {
  80. std::vector<point> v;
  81. for(const auto & p : m_path)
  82. {
  83. double d = dist;
  84. if(p.vaild())
  85. {
  86. point pt;
  87. if(dist <= p.m_line[0].length() || (dist > p.m_line[0].length() && p.m_line[1].empty()))
  88. {
  89. d += d*p.m_slope[0];
  90. 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());
  91. }
  92. else
  93. {
  94. d -= p.m_line[0].length();
  95. d += d*p.m_slope[1];
  96. 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());
  97. }
  98. v.push_back(pt);
  99. //std_info("get_sol:x:%.2f,y:%.2f",pt.x,pt.y);
  100. }
  101. //else
  102. // std_error("ant[%d]::getsol empty path..",);
  103. }
  104. return std::move(v);
  105. }
  106. };
  107. struct site:point,std::enable_shared_from_this<site>
  108. {
  109. static algo_config g_config[];
  110. int m_algo; //TOF:0,TDOA:1
  111. int m_num_dims; //1维:0,2维:1,3维:2
  112. double m_scale = 2.0; // 地图比例尺
  113. point m_position;
  114. mutable double m_height=1.5;
  115. int m_id;
  116. bool m_path_empty;
  117. std::array<ant,2> m_ant;
  118. mutable double m_ant_dist=0;
  119. mutable double m_ant_dist_sum_new=0;
  120. mutable int m_ant_dist_cnt_new=0;
  121. ///分站位置 READER_TYPE_ID
  122. int m_reader_type_id = 0;
  123. int m_map_id = 0;
  124. int m_area_id = 0;
  125. /// 设备类型,分站、通信分站、交通灯等
  126. int m_device_type_id=0;
  127. /// 指定分站定位类型:一维定位,二维定位,三维定位
  128. int m_dimension=0;
  129. std::shared_ptr<client> m_clt=nullptr;
  130. std::shared_ptr<area> m_area=nullptr;
  131. time_t m_time;
  132. time_t m_rec_time; // 接收数据的时间
  133. time_t m_lost_time; // 丢失时间
  134. time_t m_last_send_time; // 最后向前端发送时间
  135. unsigned char m_reader_dir; // 分站方向,对于大小分站适用
  136. unsigned char m_relay_counts; // 大小分站经过中继数
  137. int m_tick_count; // 分站发生消息的计数器
  138. bool m_power_check_enable=false;//该分站是否启用交流掉电检测功能(告警功能)
  139. bool m_power_ac_down=false; //false=交流电供电状态
  140. site(int id=-1);
  141. int index()const;
  142. const algo_config&config()const;
  143. int id()const
  144. {
  145. return m_id;
  146. }
  147. void set_client(std::shared_ptr<client>& clt)
  148. {
  149. if(m_clt != clt)
  150. m_clt = clt;
  151. m_time=time(0);
  152. }
  153. std::shared_ptr<client> get_client()
  154. {
  155. return m_clt;
  156. }
  157. bool is_up_site()
  158. {
  159. return READER_TYPE_ID_UP == m_reader_type_id;
  160. }
  161. void create_area();
  162. const std::shared_ptr<area>& get_area()const{return m_area;}
  163. point get_dstp(const point pt) const
  164. {
  165. point tmp;
  166. for(const auto & p : m_ant[0].m_path)
  167. {
  168. for(int i=0;i<2;i++)
  169. {
  170. if(!p[i].empty())
  171. {
  172. if(p[i].contain(pt,0.01))
  173. {
  174. //if(i==0)
  175. // return *this;
  176. //else
  177. tmp = p[i][0];
  178. }
  179. }
  180. }
  181. }
  182. return tmp;
  183. }
  184. void count_ant_dist(double dist_tof1, double dist_tof2)const
  185. {
  186. if(dist_tof1<10 || dist_tof2<10)
  187. return;
  188. double dist = fabs(dist_tof1 - dist_tof2);
  189. if(dist>5)
  190. return;
  191. m_ant_dist_sum_new += dist;
  192. m_ant_dist_cnt_new++;
  193. if(m_ant_dist_cnt_new >= 2500)
  194. {
  195. m_ant_dist = m_ant_dist_sum_new / m_ant_dist_cnt_new;
  196. m_ant_dist_sum_new = 0;
  197. m_ant_dist_cnt_new = 0;
  198. }
  199. }
  200. void swap()
  201. {
  202. auto v0 = m_ant[0].m_path;
  203. auto v1 = m_ant[1].m_path;
  204. std::copy (std::begin(v0),std::end(v0),std::back_inserter(m_ant[1].m_path));
  205. std::copy (std::begin(v1),std::end(v1),std::back_inserter(m_ant[0].m_path));
  206. }
  207. double ant_dist()const
  208. {
  209. return m_ant[0].dist(m_ant[1]);
  210. }
  211. bool is_path_empty()const
  212. {
  213. return m_path_empty;
  214. }
  215. bool have_valid_path()const
  216. {
  217. return m_id != -1 && ant_dist() > 0.1;
  218. }
  219. std::string to_string()const
  220. {
  221. std::stringstream ss;
  222. ss<<"site_id:"<<m_id<<"x:"<<x<<" y: "<<y<<" scale:"<<m_scale;
  223. for(const auto a:m_ant)
  224. {
  225. ss<<"<";
  226. for(const auto p:a.m_path)
  227. {
  228. ss<<"{"<<p.to_str()<<"}";
  229. }
  230. ss<<">";
  231. }
  232. return ss.str();
  233. }
  234. const point&path(int i)const
  235. {
  236. static point p;
  237. if(i>=(int)m_ant[0].m_path.size())
  238. return p ;
  239. return m_ant[0].m_path[i].m_line[0][1];
  240. }
  241. std::vector<point> solving(int ant_id, double dist)const
  242. {
  243. const ant &a = m_ant[ant_id];
  244. if(dist<50 && dist>0)
  245. {
  246. if(dist<m_height)
  247. {
  248. m_height=dist;
  249. dist=0;
  250. }
  251. else
  252. {
  253. dist=sqrt(dist*dist-m_height*m_height);
  254. }
  255. }
  256. return std::move(a.getsol(dist));
  257. }
  258. ant operator[](int i)
  259. {
  260. return m_ant[i];
  261. }
  262. const ant operator[](int i) const
  263. {
  264. return m_ant[i];
  265. }
  266. void set_ex()
  267. {
  268. if(-1 == m_id)
  269. {
  270. return;
  271. }
  272. if(m_ant[0]==m_ant[1])
  273. {
  274. log_warn("%d分站天线坐标相等.", m_id);
  275. }
  276. set( (m_ant[0].x+m_ant[1].x)/2,(m_ant[0].y+m_ant[1].y)/2);
  277. }
  278. void deal_path()
  279. {
  280. if(m_id==-1)
  281. return;
  282. swap();
  283. if((path(0).empty() && path(1).empty()))
  284. return;
  285. m_path_empty=false;
  286. for(auto &a:m_ant)
  287. for(auto &p:a.m_path)
  288. {
  289. if(!p.m_line[0].empty())
  290. {
  291. point px = p.m_line[0].line::projection(a);
  292. p.m_line[0]=line_v(px,p.m_line[0][1]);
  293. }
  294. }
  295. //std_info("%s",sit_ptr->to_string().c_str());
  296. log_info("%s",to_string().c_str());
  297. //std_info("%f----%f",sit_ptr->x,sit_ptr->y);
  298. }
  299. void delete_antenna(int antidx)
  300. {
  301. m_ant[antidx].m_path.clear();
  302. m_ant[antidx].m_id=0;
  303. point pt;
  304. m_ant[antidx].set(pt);
  305. }
  306. void clear_path()
  307. {
  308. m_ant[0].m_path.clear();
  309. m_ant[1].m_path.clear();
  310. }
  311. /*
  312. 处理分站供电状态,交流供电时,ac_down=false,直流供电时,ac_down=true
  313. 目前只有大分站实现了这个功能,并且井下安装时是否接入了该电信号也不确定
  314. ,所以需要有张表定义某个ID是否需要告警
  315. */
  316. void on_power_status(bool ac_down);//电源状态
  317. };
  318. struct visit_site_status:visitor<std::shared_ptr<site>>
  319. {
  320. bool visit(std::shared_ptr<site> s);
  321. };
  322. struct sit_list:single_base<sit_list,int,std::shared_ptr<site>>
  323. {
  324. void load()
  325. {
  326. read_sit_list(-1);
  327. read_ant_path(-1);
  328. }
  329. ///id=-1为初始化所有
  330. void load_from_db(int id=-1)
  331. {
  332. init_site(id);
  333. load();
  334. }
  335. void read_sit_list(int id);
  336. void read_ant_path(int id);
  337. void init_site(int id);
  338. };
  339. #endif