HEBI C++ API  3.12.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
robot_config.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <map>
4 #include <memory>
5 #include <string>
6 #include <vector>
7 
8 #include "arm/plugin_config.hpp"
9 
10 namespace hebi {
11 
12 // A wrapper for loading robot configurations. (See https://github.com/HebiRobotics/robot-config)
13 class RobotConfig {
14 public:
15  // Reads the robot config from the given file. This reads all included
16  // parameters/references, and verifies that all referenced paths exist and
17  // load properly.
18  //
19  // Any errors when loading are added to the passed in vector. For non-fatal
20  // errors, an object may still be returned.
21  static std::unique_ptr<RobotConfig> loadConfig(std::string filepath, std::vector<std::string>& errors);
22 
24 
25  // Return names (required)
26  const std::vector<std::string>& getNames() const { return names_; }
27  // Return families (required)
28  const std::vector<std::string>& getFamilies() const { return families_; }
29  // Return HRDF absolute file path (optional)
30  const std::string& getHrdf() const { return hrdf_; }
31  // Return gain for specific key
32  std::string getGains(const std::string& key) const { return gains_.count(key) == 0 ? "" : gains_.at(key); }
33  // Return all gains (absolute paths; may be empty)
34  const std::map<std::string, std::string>& getGains() const { return gains_; }
35  // Get absolute path of the parent directory of the config file
36  const std::string& getParentDirectory() const { return location_; }
37  // Get ordered list of plugin parameters
38  const std::vector<arm::PluginConfig>& getPluginConfigs() const { return plugin_configs_; }
39 
40  // Each user data field can have a dictionary of three types of parameters.
41  struct UserData {
42  // Optional boolean values
43  std::map<std::string, bool> bools_;
44 
45  // Optional float values
46  std::map<std::string, double> floats_;
47 
48  // Optional string values
49  std::map<std::string, std::string> strings_;
50 
51  // Optional lists of boolean values
52  std::map<std::string, std::vector<bool>> bool_lists_;
53 
54  // Optional lists of float values
55  std::map<std::string, std::vector<double>> float_lists_;
56 
57  // Optional lists of string values
58  std::map<std::string, std::vector<std::string>> string_lists_;
59 
60  // Getter for a bool value
61  bool getBool(const std::string& key, bool default_value = false) const {
62  auto it = bools_.find(key);
63  if (it != bools_.end()) {
64  return it->second;
65  }
66  return default_value; // Default value if the key is not found
67  }
68 
69  // Check if a bool key exists
70  bool hasBool(const std::string& key) const {
71  return bools_.find(key) != bools_.end();
72  }
73 
74  // Getter for a float value
75  double getFloat(const std::string& key, double default_value = 0.0) const {
76  auto it = floats_.find(key);
77  if (it != floats_.end()) {
78  return it->second;
79  }
80  return default_value; // Default value if the key is not found
81  }
82 
83  // Check if a float key exists
84  bool hasFloat(const std::string& key) const {
85  return floats_.find(key) != floats_.end();
86  }
87 
88  // Getter for a string value
89  std::string getString(const std::string& key, std::string default_value = "") const {
90  auto it = strings_.find(key);
91  if (it != strings_.end()) {
92  return it->second;
93  }
94  return default_value; // Default value if the key is not found
95  }
96 
97  // Check if a string key exists
98  bool hasString(const std::string& key) const {
99  return strings_.find(key) != strings_.end();
100  }
101 
102  // Getter for a bool list
103  std::vector<bool> getBoolList(const std::string& key, std::vector<bool> default_value = {}) const {
104  auto it = bool_lists_.find(key);
105  if (it != bool_lists_.end()) {
106  return it->second;
107  }
108  return default_value; // Default empty list if the key is not found
109  }
110 
111  // Check if a bool list key exists
112  bool hasBoolList(const std::string& key) const {
113  return bool_lists_.find(key) != bool_lists_.end();
114  }
115 
116  // Getter for a float list
117  std::vector<double> getFloatList(const std::string& key, std::vector<double> default_value = {}) const {
118  auto it = float_lists_.find(key);
119  if (it != float_lists_.end()) {
120  return it->second;
121  }
122  return default_value; // Default empty list if the key is not found
123  }
124 
125  // Check if a float list key exists
126  bool hasFloatList(const std::string& key) const {
127  return float_lists_.find(key) != float_lists_.end();
128  }
129 
130  // Getter for a string list
131  std::vector<std::string> getStringList(const std::string& key, std::vector<std::string> default_value = {}) const {
132  auto it = string_lists_.find(key);
133  if (it != string_lists_.end()) {
134  return it->second;
135  }
136  return default_value; // Default empty list if the key is not found
137  }
138 
139  // Check if a string list key exists
140  bool hasStringList(const std::string& key) const {
141  return string_lists_.find(key) != string_lists_.end();
142  }
143  };
144 
145  // Any listed user_data keys
146  const UserData& getUserData() const { return user_data_; }
147 
148 private:
149  RobotConfig() = default;
150 
151  std::vector<std::string> names_;
152  std::vector<std::string> families_;
153  // Stored as an absolute path for reading later
154  std::string hrdf_;
155  // Stored as absolute paths for reading later
156  std::map<std::string, std::string> gains_;
157  // plugins
158  std::vector<arm::PluginConfig> plugin_configs_;
159  // Absolute path of parent directory
160  std::string location_;
161  // user_data
162  UserData user_data_;
163 };
164 
165 } // namespace hebi
const std::map< std::string, std::string > & getGains() const
Definition: robot_config.hpp:34
const std::string & getParentDirectory() const
Definition: robot_config.hpp:36
Definition: group.hpp:33
bool hasFloat(const std::string &key) const
Definition: robot_config.hpp:84
Definition: arm.cpp:10
std::vector< bool > getBoolList(const std::string &key, std::vector< bool > default_value={}) const
Definition: robot_config.hpp:103
std::map< std::string, bool > bools_
Definition: robot_config.hpp:43
std::vector< double > getFloatList(const std::string &key, std::vector< double > default_value={}) const
Definition: robot_config.hpp:117
const std::vector< std::string > & getFamilies() const
Definition: robot_config.hpp:28
bool hasFloatList(const std::string &key) const
Definition: robot_config.hpp:126
bool hasBoolList(const std::string &key) const
Definition: robot_config.hpp:112
Definition: robot_config.hpp:41
const UserData & getUserData() const
Definition: robot_config.hpp:146
static std::unique_ptr< RobotConfig > loadConfig(std::string filepath, std::vector< std::string > &errors)
Definition: robot_config.cpp:73
std::string getGains(const std::string &key) const
Definition: robot_config.hpp:32
std::map< std::string, std::string > strings_
Definition: robot_config.hpp:49
const std::vector< arm::PluginConfig > & getPluginConfigs() const
Definition: robot_config.hpp:38
std::string getString(const std::string &key, std::string default_value="") const
Definition: robot_config.hpp:89
std::map< std::string, std::vector< std::string > > string_lists_
Definition: robot_config.hpp:58
bool hasBool(const std::string &key) const
Definition: robot_config.hpp:70
std::map< std::string, std::vector< double > > float_lists_
Definition: robot_config.hpp:55
std::map< std::string, std::vector< bool > > bool_lists_
Definition: robot_config.hpp:52
std::vector< std::string > getStringList(const std::string &key, std::vector< std::string > default_value={}) const
Definition: robot_config.hpp:131
std::map< std::string, double > floats_
Definition: robot_config.hpp:46
Definition: robot_config.hpp:13
bool getBool(const std::string &key, bool default_value=false) const
Definition: robot_config.hpp:61
const std::string & getHrdf() const
Definition: robot_config.hpp:30
double getFloat(const std::string &key, double default_value=0.0) const
Definition: robot_config.hpp:75
bool hasStringList(const std::string &key) const
Definition: robot_config.hpp:140
bool hasString(const std::string &key) const
Definition: robot_config.hpp:98
const std::vector< std::string > & getNames() const
Definition: robot_config.hpp:26