lidarmain.cpp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. #include <QCoreApplication>
  2. //#include "ivdriver_lidar_rs16.h"
  3. #include "ivdriver_lidar.h"
  4. #include <signal.h>
  5. #include <getopt.h>
  6. #include <iostream>
  7. #include <iostream>
  8. #include <fstream>
  9. #include <yaml-cpp/yaml.h>
  10. iv::ivmodule * gpivmodule;
  11. QCoreApplication * gpapp;
  12. void sigint_handler(int sig){
  13. if(sig == SIGINT){
  14. // ctrl+c退出时执行的代码
  15. delete gpivmodule;
  16. gpapp->exit(0);
  17. }
  18. }
  19. char gstr_memname[256];
  20. char gstr_rollang[256];
  21. char gstr_inclinationang_yaxis[256]; //from y axis
  22. char gstr_inclinationang_xaxis[256]; //from x axis
  23. char gstr_hostip[256];
  24. char gstr_port[256];
  25. char gstr_yaml[256];
  26. void print_useage()
  27. {
  28. std::cout<<" -m --memname $memname : share memory name. eq. -m lidar_pc"<<std::endl;
  29. std::cout<<" -r --rollang $rollang : roll angle. eq. -r 10.0"<<std::endl;
  30. std::cout<<" -x --inclinationang_xaxis $inclinationang_xaxis : inclination angle from x axis. eq. -x 0.0"<<std::endl;
  31. std::cout<<" -y --inclinationang_yaxis $inclinationang_yaxis : inclination angle from y axis. eq. -y 0.0"<<std::endl;
  32. std::cout<<" -o --hostip $hostip : host ip. eq. -o 192.168.1.111"<<std::endl;
  33. std::cout<<" -p --port $port : port . eq. -p 2368"<<std::endl;
  34. std::cout<<" -s --setyaml $yaml : port . eq. -s rs1.yaml"<<std::endl;
  35. std::cout<<" -h --help print help"<<std::endl;
  36. }
  37. int GetOptLong(int argc, char *argv[]) {
  38. int nRtn = 0;
  39. int opt; // getopt_long() 的返回值
  40. int digit_optind = 0; // 设置短参数类型及是否需要参数
  41. // 如果option_index非空,它指向的变量将记录当前找到参数符合long_opts里的
  42. // 第几个元素的描述,即是long_opts的下标值
  43. int option_index = 0;
  44. // 设置短参数类型及是否需要参数
  45. const char *optstring = "m:r:x:y:o:p:s:h";
  46. // 设置长参数类型及其简写,比如 --reqarg <==>-r
  47. /*
  48. struct option {
  49. const char * name; // 参数的名称
  50. int has_arg; // 是否带参数值,有三种:no_argument, required_argument,optional_argument
  51. int * flag; // 为空时,函数直接将 val 的数值从getopt_long的返回值返回出去,
  52. // 当非空时,val的值会被赋到 flag 指向的整型数中,而函数返回值为0
  53. int val; // 用于指定函数找到该选项时的返回值,或者当flag非空时指定flag指向的数据的值
  54. };
  55. 其中:
  56. no_argument(即0),表明这个长参数不带参数(即不带数值,如:--name)
  57. required_argument(即1),表明这个长参数必须带参数(即必须带数值,如:--name Bob)
  58. optional_argument(即2),表明这个长参数后面带的参数是可选的,(即--name和--name Bob均可)
  59. */
  60. static struct option long_options[] = {
  61. {"memname", required_argument, NULL, 'm'},
  62. {"rollang", required_argument, NULL, 'r'},
  63. {"inclinationang_xaxis", required_argument, NULL, 'x'},
  64. {"inclinationang_yaxis", required_argument, NULL, 'y'},
  65. {"hostip", required_argument, NULL, 'o'},
  66. {"port", required_argument, NULL, 'p'},
  67. {"setyaml", required_argument, NULL, 's'},
  68. {"help", no_argument, NULL, 'h'},
  69. // {"optarg", optional_argument, NULL, 'o'},
  70. {0, 0, 0, 0} // 添加 {0, 0, 0, 0} 是为了防止输入空值
  71. };
  72. while ( (opt = getopt_long(argc,
  73. argv,
  74. optstring,
  75. long_options,
  76. &option_index)) != -1) {
  77. // printf("opt = %c\n", opt); // 命令参数,亦即 -a -b -n -r
  78. // printf("optarg = %s\n", optarg); // 参数内容
  79. // printf("optind = %d\n", optind); // 下一个被处理的下标值
  80. // printf("argv[optind - 1] = %s\n", argv[optind - 1]); // 参数内容
  81. // printf("option_index = %d\n", option_index); // 当前打印参数的下标值
  82. // printf("\n");
  83. switch(opt)
  84. {
  85. case 'm':
  86. strncpy(gstr_memname,optarg,255);
  87. break;
  88. case 'r':
  89. strncpy(gstr_rollang,optarg,255);
  90. break;
  91. case 'x':
  92. strncpy(gstr_inclinationang_xaxis,optarg,255);
  93. break;
  94. case 'y':
  95. strncpy(gstr_inclinationang_yaxis,optarg,255);
  96. break;
  97. case 'o':
  98. strncpy(gstr_hostip,optarg,255);
  99. break;
  100. case 'p':
  101. strncpy(gstr_port,optarg,255);
  102. break;
  103. case 's':
  104. strncpy(gstr_yaml,optarg,255);
  105. break;
  106. case 'h':
  107. print_useage();
  108. nRtn = 1; //because use -h
  109. break;
  110. default:
  111. break;
  112. }
  113. }
  114. return nRtn;
  115. }
  116. void decodeyaml(const char * stryaml)
  117. {
  118. YAML::Node config;
  119. try
  120. {
  121. config = YAML::LoadFile(stryaml);
  122. }
  123. catch(YAML::BadFile e)
  124. {
  125. qDebug("load yaml error.");
  126. return;
  127. }
  128. if(config["memname"])
  129. {
  130. strncpy(gstr_memname,config["memname"].as<std::string>().data(),255);
  131. }
  132. if(config["rollang"])
  133. {
  134. strncpy(gstr_rollang,config["rollang"].as<std::string>().data(),255);
  135. }
  136. if(config["inclinationang_xaxis"])
  137. {
  138. strncpy(gstr_inclinationang_xaxis,config["inclinationang_xaxis"].as<std::string>().data(),255);
  139. }
  140. if(config["inclinationang_yaxis"])
  141. {
  142. strncpy(gstr_inclinationang_yaxis,config["inclinationang_yaxis"].as<std::string>().data(),255);
  143. }
  144. if(config["hostip"])
  145. {
  146. strncpy(gstr_hostip,config["hostip"].as<std::string>().data(),255);
  147. }
  148. if(config["port"])
  149. {
  150. strncpy(gstr_port,config["port"].as<std::string>().data(),255);
  151. }
  152. // std::cout<<gstr_memname<<std::endl;
  153. // std::cout<<gstr_rollang<<std::endl;
  154. // std::cout<<gstr_inclinationang_xaxis<<std::endl;
  155. // std::cout<<gstr_inclinationang_yaxis<<std::endl;
  156. // std::cout<<gstr_hostip<<std::endl;
  157. // std::cout<<gstr_port<<std::endl;
  158. }
  159. int lidarmain(iv::ivdriver_lidar * pivm,int argc, char *argv[],QCoreApplication * pa,const char * strmodulename)
  160. {
  161. int nRtn = GetOptLong(argc,argv);
  162. if(nRtn == 1) //show help,so exit.
  163. {
  164. return 0;
  165. }
  166. if(strnlen(gstr_yaml,255)>0)
  167. {
  168. decodeyaml(gstr_yaml);
  169. }
  170. strncpy(pivm->mstr_memname,gstr_memname,256);
  171. strncpy(pivm->mstr_hostip,gstr_hostip,256);
  172. strncpy(pivm->mstr_port,gstr_port,256);
  173. pivm->mfrollang = atof(gstr_rollang)*M_PI/180.0;
  174. pivm->mfinclinationang_xaxis = atof(gstr_inclinationang_xaxis)*M_PI/180.0;
  175. pivm->mfinclinationang_yaxis = atof(gstr_inclinationang_yaxis)*M_PI/180.0;
  176. iv::ivmodule * pivmodule = pivm;
  177. signal(SIGINT, sigint_handler);
  178. gpivmodule = pivmodule;
  179. pivmodule->start();
  180. gpapp = pa;
  181. return 1;
  182. }