文章目录

  • 1.C++编写Config类
    • 1.1Config的头文件
    • 1.2Config的cpp文件
    • 1.3调用Config的类读取txt
  • 2.ROS中的Config动态参数
    • 2.1动态参数编写
    • 2.2动态参数生成
    • 2.3调用动态参数

1.C++编写Config类

1.1Config的头文件

//Config.h
#pragma once  #include <string>
#include <map>
#include <iostream>
#include <fstream>
#include <sstream>  /*
* \brief Generic configuration Class
*
*/
class Config {  // Data
protected:  std::string m_Delimiter;  //!< separator between key and value  std::string m_Comment;    //!< separator between value and comments  std::map<std::string,std::string> m_Contents;  //!< extracted keys and values  typedef std::map<std::string,std::string>::iterator mapi;  typedef std::map<std::string,std::string>::const_iterator mapci;  // Methods
public:  Config( std::string filename,std::string delimiter = "=",std::string comment = "#" );  Config();  template<class T> T Read( const std::string& in_key ) const;  //!<Search for key and read value or optional default value, call as read<T>  template<class T> T Read( const std::string& in_key, const T& in_value ) const;  template<class T> bool ReadInto( T& out_var, const std::string& in_key ) const;  template<class T>  bool ReadInto( T& out_var, const std::string& in_key, const T& in_value ) const;  bool FileExist(std::string filename);  void ReadFile(std::string filename,std::string delimiter = "=",std::string comment = "#" );  // Check whether key exists in configuration  bool KeyExists( const std::string& in_key ) const;  // Modify keys and values  template<class T> void Add( const std::string& in_key, const T& in_value );  void Remove( const std::string& in_key );  // Check or change configuration syntax  std::string GetDelimiter() const { return m_Delimiter; }  std::string GetComment() const { return m_Comment; }  std::string SetDelimiter( const std::string& in_s )  { std::string old = m_Delimiter;  m_Delimiter = in_s;  return old; }    std::string SetComment( const std::string& in_s )  { std::string old = m_Comment;  m_Comment =  in_s;  return old; }  // Write or read configuration  friend std::ostream& operator<<( std::ostream& os, const Config& cf );  friend std::istream& operator>>( std::istream& is, Config& cf );  protected:  template<class T> static std::string T_as_string( const T& t );  template<class T> static T string_as_T( const std::string& s );  static void Trim( std::string& inout_s );  // Exception types
public:  struct File_not_found {  std::string filename;  File_not_found( const std::string& filename_ = std::string() )  : filename(filename_) {} };  struct Key_not_found {  // thrown only by T read(key) variant of read()  std::string key;  Key_not_found( const std::string& key_ = std::string() )  : key(key_) {} };
};  /* static */
template<class T>
std::string Config::T_as_string( const T& t )
{  // Convert from a T to a string  // Type T must support << operator  std::ostringstream ost;  ost << t;  return ost.str();
}  /* static */
template<class T>
T Config::string_as_T( const std::string& s )
{  // Convert from a string to a T  // Type T must support >> operator  T t;  std::istringstream ist(s);  ist >> t;  return t;
}  /* static */
template<>
inline std::string Config::string_as_T<std::string>( const std::string& s )
{  // Convert from a string to a string  // In other words, do nothing  return s;
}  /* static */
template<>
inline bool Config::string_as_T<bool>( const std::string& s )
{  // Convert from a string to a bool  // Interpret "false", "F", "no", "n", "0" as false  // Interpret "true", "T", "yes", "y", "1", "-1", or anything else as true  bool b = true;  std::string sup = s;  for( std::string::iterator p = sup.begin(); p != sup.end(); ++p )  *p = toupper(*p);  // make string all caps  if( sup==std::string("FALSE") || sup==std::string("F") ||  sup==std::string("NO") || sup==std::string("N") ||  sup==std::string("0") || sup==std::string("NONE") )  b = false;  return b;
}  template<class T>
T Config::Read( const std::string& key ) const
{  // Read the value corresponding to key  mapci p = m_Contents.find(key);  if( p == m_Contents.end() ) throw Key_not_found(key);  return string_as_T<T>( p->second );
}  template<class T>
T Config::Read( const std::string& key, const T& value ) const
{  // Return the value corresponding to key or given default value  // if key is not found  mapci p = m_Contents.find(key);  if( p == m_Contents.end() ) return value;  return string_as_T<T>( p->second );
}  template<class T>
bool Config::ReadInto( T& var, const std::string& key ) const
{  // Get the value corresponding to key and store in var  // Return true if key is found  // Otherwise leave var untouched  mapci p = m_Contents.find(key);  bool found = ( p != m_Contents.end() );  if( found ) var = string_as_T<T>( p->second );  return found;
}  template<class T>
bool Config::ReadInto( T& var, const std::string& key, const T& value ) const
{  // Get the value corresponding to key and store in var  // Return true if key is found  // Otherwise set var to given default  mapci p = m_Contents.find(key);  bool found = ( p != m_Contents.end() );  if( found )  var = string_as_T<T>( p->second );  else  var = value;  return found;
}  template<class T>
void Config::Add( const std::string& in_key, const T& value )
{  // Add a key with given value  std::string v = T_as_string( value );  std::string key=in_key;  Trim(key);  Trim(v);  m_Contents[key] = v;  return;
}

1.2Config的cpp文件

// Config.cpp  #include "Config.h"  using namespace std;  Config::Config( string filename, string delimiter,  string comment )  : m_Delimiter(delimiter), m_Comment(comment)
{  // Construct a Config, getting keys and values from given file  std::ifstream in( filename.c_str() );  if( !in ) throw File_not_found( filename );   in >> (*this);
}  Config::Config()
: m_Delimiter( string(1,'=') ), m_Comment( string(1,'#') )
{  // Construct a Config without a file; empty
}  bool Config::KeyExists( const string& key ) const
{  // Indicate whether key is found  mapci p = m_Contents.find( key );  return ( p != m_Contents.end() );
}  /* static */
void Config::Trim( string& inout_s )
{  // Remove leading and trailing whitespace  static const char whitespace[] = " \n\t\v\r\f";  inout_s.erase( 0, inout_s.find_first_not_of(whitespace) );  inout_s.erase( inout_s.find_last_not_of(whitespace) + 1U );
}  std::ostream& operator<<( std::ostream& os, const Config& cf )
{  // Save a Config to os  for( Config::mapci p = cf.m_Contents.begin();  p != cf.m_Contents.end();  ++p )  {  os << p->first << " " << cf.m_Delimiter << " ";  os << p->second << std::endl;  }  return os;
}  void Config::Remove( const string& key )
{  // Remove key and its value  m_Contents.erase( m_Contents.find( key ) );  return;
}  std::istream& operator>>( std::istream& is, Config& cf )
{  // Load a Config from is  // Read in keys and values, keeping internal whitespace  typedef string::size_type pos;  const string& delim  = cf.m_Delimiter;  // separator  const string& comm   = cf.m_Comment;    // comment  const pos skip = delim.length();        // length of separator  string nextline = "";  // might need to read ahead to see where value ends  while( is || nextline.length() > 0 )  {  // Read an entire line at a time  string line;  if( nextline.length() > 0 )  {  line = nextline;  // we read ahead; use it now  nextline = "";  }  else  {  std::getline( is, line );  }  // Ignore comments  line = line.substr( 0, line.find(comm) );  // Parse the line if it contains a delimiter  pos delimPos = line.find( delim );  if( delimPos < string::npos )  {  // Extract the key  string key = line.substr( 0, delimPos );  line.replace( 0, delimPos+skip, "" );  // See if value continues on the next line  // Stop at blank line, next line with a key, end of stream,  // or end of file sentry  bool terminate = false;  while( !terminate && is )  {  std::getline( is, nextline );  terminate = true;  string nlcopy = nextline;  Config::Trim(nlcopy);  if( nlcopy == "" ) continue;  nextline = nextline.substr( 0, nextline.find(comm) );  if( nextline.find(delim) != string::npos )  continue;  nlcopy = nextline;  Config::Trim(nlcopy);  if( nlcopy != "" ) line += "\n";  line += nextline;  terminate = false;  }  // Store key and value  Config::Trim(key);  Config::Trim(line);  cf.m_Contents[key] = line;  // overwrites if key is repeated  }  }  return is;
}
bool Config::FileExist(std::string filename)
{  bool exist= false;  std::ifstream in( filename.c_str() );  if( in )   exist = true;  return exist;
}  void Config::ReadFile( string filename, string delimiter,  string comment )
{  m_Delimiter = delimiter;  m_Comment = comment;  std::ifstream in( filename.c_str() );  if( !in ) throw File_not_found( filename );   in >> (*this);
}

1.3调用Config的类读取txt

//main.cpp
#include "Config.h"
int main()
{  int port;  std::string ipAddress;  std::string username;  std::string password;  const char ConfigFile[]= "..//src//config.txt";   Config configSettings(ConfigFile);  port = configSettings.Read("port", 0);  ipAddress = configSettings.Read("ipAddress", ipAddress);  username = configSettings.Read("username", username);  password = configSettings.Read("password", password);  std::cout<<"port:"<<port<<std::endl;  std::cout<<"ipAddress:"<<ipAddress<<std::endl;  std::cout<<"username:"<<username<<std::endl;  std::cout<<"password:"<<password<<std::endl;  //float level = configSettings.Read("level", level);  std::cout<<"level:"<<level<<std::endl;  return 0;
}

2.ROS中的Config动态参数

2.1动态参数编写

在ROS系统中实现某个功能时,时常需要外部动态调整参数。例如控制中PID参数的调节,或者需要查看机器人在不同参数下的性能表现,此时外部参数的动态调节显得极其便利。在ROS中可以通过动态参数功能来实现。接下讲解ROS中动态参数的应用。
msf_core中的imu的噪声和漂移参数设置文件如下:

1.利用python语言编写.cfg文件,设置动态参数
#! /usr/bin/env python
PACKAGE='msf_core'
import roslib; roslib.load_manifest(PACKAGE)
#from driver_base.msg import SensorLevels
from dynamic_reconfigure.parameter_generator_catkin import *gen = ParameterGenerator()#以上代码初始化ROS并导入参数生成器#       Name                 Type      Reconfiguration level                Description   Default   Min   Max
gen.add("core_fixed_bias",        bool_t,   0,                           "fix biases",                    False)
gen.add("core_noise_acc",         double_t, 0,                           "accelerations noise spectral density (nsd) [m/s^2/sqrt(Hz)]",       6.93e-4,      1.0e-5,     1.0e-3)
gen.add("core_noise_accbias",     double_t, 0,                           "acceleration biases random walk [m/s^3/sqrt(Hz)]", 2e-8,  1.0e-8,     1.0e-3)
gen.add("core_noise_gyr",         double_t, 0,                           "gyros noise spectral density (nsd) [rad/s/sqrt(Hz)]",                 1.39e-5,    1.0e-6,     1.0e-3)
gen.add("core_noise_gyrbias",     double_t, 0,                           "gyro biases random walk [rad/s^2/sqrt(Hz)]",                 3e-6,    1.0e-7,     1.0e-3)exit(gen.generate(PACKAGE, "Config", "MSF_Core"))#以上代码为加入不同的参数。其中gen.add(...)格式如下:
# gen.add(name, type, level, description, default, min, max)
# name: 参数的名称
# type: 参数类型#level:一个传递给回调的位掩码#description: 一个描述参数#default: 节点启动的初始值
# min: 参数最小值
# max: 参数最大值

2.2动态参数生成

2. 编辑CMakeLists.txt文件加入以下代码find_package(catkin REQUIRED COMPONENTSroscppstd_msgsmessage_generationdynamic_reconfigure#加入所需要的包
)generate_dynamic_reconfigure_options(cfg/MSF_Core.cfg)#生成动态参数

2.3调用动态参数

在MSF_SensorManagerROS.h文件中调用了该动态参数


#include <ros/ros.h>
#include <dynamic_reconfigure/server.h>
#include <msf_core/MSF_CoreConfig.h>//消息类型typedef dynamic_reconfigure::Server<msf_core::MSF_CoreConfig> ReconfigureServer;//重命名#在自定义的结构体MSF_SensorManagerROS中进行调用
struct MSF_SensorManagerROS : public msf_core::MSF_SensorManager<EKFState_T> {
....MSF_SensorManagerROS(ros::NodeHandle pnh = ros::NodeHandle("~core")) {//构造函数reconfServer_ = new ReconfigureServer(pnh);// 初始化服务器,忽略config的配置ReconfigureServer::CallbackType f = boost::bind(&MSF_SensorManagerROS::Config, this, _1, _2);//Config将会输出参数的新值reconfServer_->setCallback(f);//向服务器发送Config函数,进行回调触发//当服务器得到重新配置请求,一般运行$rosrun rqt_reconfigure rqt_reconfigure//会调用回调函数f}
....//回调函数实现,把Gui的参数从新赋值个config_(结构体中的私有成员变量)void Config(msf_core::MSF_CoreConfig &config, uint32_t level) {config_ = config;//私有成员变量msf_core::MSF_CoreConfig config_;  ///< Dynamic reconfigure config.CoreConfigCallback(config, level);}.......
}

$rosrun rqt_reconfigure rqt_reconfigure
运行显示

参考博客

C++编写Config类ROS动态参数总结相关推荐

  1. [ROS]动态参数设置-可视化调试-创建cfg文件

    用途:调试时(尤其在导航和建图应用中)需要经常修改程序中的参数值,这时无论时修改命令行,还是编写固定修改参数的可执行文件,都无法满足要求.ROS为我们提供了动态参数设置机制. 一.创建cfg文件 创建 ...

  2. C++编写Config类读取配置文件

    老外写的一段代码,在Server中编写这个类读取配置文件比较实用 C++代码   //Config.h #pragma once #include <string> #include &l ...

  3. ROS:Dynamic Reconfigure 动态参数调节

    1.什么是动态参数调节   ROS中的参数服务器无法在线动态更新,也就是说如果Listener不主动查询参数值,就无法获知Talker是否已经修改了参数.这就对ROS参数服务器的使用造成了很大的局限, ...

  4. ROS中动态坐标变换(动态参数调节+动态坐标变换)

    目录 坐标变换详解 静态坐标变换与动态坐标变换的区别 项目文件解析 CMakelist文件的配置 Package.xml文件配置 动态参数调节:frame_change.cfg 动态参数调用+坐标系数 ...

  5. ROS机器人程序设计(原书第2版)3.4 设置动态参数

    3.4 设置动态参数 如果一个节点配置了一个动态重配置参数服务器,在工作中就可以使用rqt_reconfigure进行修改.运行下面的代码启动一个带有几个参数动态重配置的服务器(见功能包cfg文件夹中 ...

  6. 编写一个类的方法,其输入参数为一个整数,输出为该整数各个位上的最大数字

    1. 编写一个类的方法,其输入参数为一个整数,输出为该整数各个位上的最大数字. import java.util.*;public class Main {public static int s(in ...

  7. C++模板学习02(类模板)(类模板语法、类模板与函数模板的区别、类模板中的成员函数创建时机、类模板对象做函数参数、类模板与继承、类模板成员函数类外实现、类模板分文件编写、类模板与友元)

    C++引用详情(引用的基本语法,注意事项,做函数的参数以及引用的本质,常量引用) 函数高级C++(函数的默认参数,函数的占位参数,函数重载的基本语法以及注意事项) C++类和对象-封装(属性和行为作为 ...

  8. java 自定义classloader_编写自定义classloader实现类的动态加载

    目标:实现类的动态加载 原理:使用java的自定义classloader机制实现类的动态加载. 代码实现://自定义classloader public class StrategyClassLoad ...

  9. Java动态生成类以及动态添加属性 本篇文章来源于 Linux公社网站(www.linuxidc.c

    2019独角兽企业重金招聘Python工程师标准>>> 有个技术实现需求:动态生成类,其中类中的属性来自参数对象中的全部属性以及来自参数对象propertities文件. 那么技术实 ...

最新文章

  1. Cent OS – Tomcat 7 - 集群
  2. 系统故障——管理员口令丢失
  3. C++11新标准 default 和 delete的使用
  4. [android网络有效性检测] NetworkMonitor代码造成内存泄漏
  5. QSlider QLCDNumber 最常用的函数和 信号槽 (以后用到在加)
  6. 装 linux后 win7消失了,win7系统重装后ubuntu启动消失不见的解决方法
  7. Dreamoon and Ranking Collection CodeForces - 1330A (贪心)
  8. 2021年中国中级订单选择器(3至8+m)市场趋势报告、技术动态创新及2027年市场预测
  9. Ps提示“脚本错误-50出现一般Photoshop错误,如何解决?
  10. Arduino 利用PWM对板载LED实现呼吸灯效果
  11. 从零到一搭建Kconfig配置系统
  12. 对称密钥与非对称密钥算法
  13. vue实现tagsview多页签导航功能
  14. 金九银十,测试思维面试题最新整理!
  15. Chrome浏览器快速切换DOH DNS
  16. 第031讲:永久存储,腌制一缸美味的泡菜 | 学习记录(小甲鱼零基础入门学习Python)
  17. sphinx启动searchd进程出现search error failed to open No such file or directory
  18. 中国非处方彩色美瞳隐形眼镜行业销售动态与营销前景预测报告2022-2027
  19. 如何理解充分条件和必要条件
  20. vs2008与vss2005用后感

热门文章

  1. nodeJs相关知识
  2. 用ANSYS画矩形_【图片】日系楼梯怎么画?教你用一点透视画日系楼梯!【猫爪绘画吧】...
  3. scp的安装与文件复制
  4. ffmpeg 取消打印信息
  5. 白话文说哈希Hash是啥?
  6. 专题·扩展欧几里得定理【including 求解二元一次方程,线性同余方程
  7. python_强化学习算法DQN_玩五子棋游戏
  8. 扩展面板:Shadowify
  9. JAVA十大排序算法动画_十大排序算法(java实现)
  10. 【EdgeX(11)】 :通过研究openvino项目发现一个好东西,CVAT项目数据标注工具,可以使用docker-compose进行本地部署,本地局域网中使用,也非常安全