parameter-server.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2015, Andrea Del Prete, LAAS-CNRS
3  *
4  * This file is part of sot-torque-control.
5  * sot-torque-control is free software: you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public License
7  * as published by the Free Software Foundation, either version 3 of
8  * the License, or (at your option) any later version.
9  * sot-torque-control is distributed in the hope that it will be
10  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
11  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details. You should
13  * have received a copy of the GNU Lesser General Public License along
14  * with sot-torque-control. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef __sot_torque_control_parameter_server_H__
18 #define __sot_torque_control_parameter_server_H__
19 
20 /* --------------------------------------------------------------------- */
21 /* --- API ------------------------------------------------------------- */
22 /* --------------------------------------------------------------------- */
23 
24 #if defined(WIN32)
25 #if defined(__sot_torque_parameter_server_H__)
26 #define SOTParameterServer_EXPORT __declspec(dllexport)
27 #else
28 #define SOTParameterServer_EXPORT __declspec(dllimport)
29 #endif
30 #else
31 #define SOTParameterServer_EXPORT
32 #endif
33 
34 /* --------------------------------------------------------------------- */
35 /* --- INCLUDE --------------------------------------------------------- */
36 /* --------------------------------------------------------------------- */
37 
39 
40 #include <map>
42 #include <sot/core/robot-utils.hh>
43 
44 #include "boost/assign.hpp"
45 
46 namespace dynamicgraph {
47 namespace sot {
48 
49 /* --------------------------------------------------------------------- */
50 /* --- CLASS ----------------------------------------------------------- */
51 /* --------------------------------------------------------------------- */
52 
54 #define CTRL_MODE_TRANSITION_TIME_STEP 1000.0
55 
57  : public ::dynamicgraph::Entity {
60 
61  public:
62  /* --- CONSTRUCTOR ---- */
63  ParameterServer(const std::string &name);
64 
66 
70  void init(const double &dt, const std::string &urdfFile,
71  const std::string &robotRef);
72 
77  void init_simple(const double &dt);
78  /* --- SIGNALS --- */
79 
80  /* --- COMMANDS --- */
81 
83  void setNameToId(const std::string &jointName, const double &jointId);
84  void setJointLimitsFromId(const double &jointId, const double &lq,
85  const double &uq);
86 
88  void setForceLimitsFromId(const double &jointId,
89  const dynamicgraph::Vector &lq,
90  const dynamicgraph::Vector &uq);
91  void setForceNameToForceId(const std::string &forceName,
92  const double &forceId);
93 
96  void setRightFootSoleXYZ(const dynamicgraph::Vector &);
97  void setRightFootForceSensorXYZ(const dynamicgraph::Vector &);
98  void setFootFrameName(const std::string &, const std::string &);
99  void setHandFrameName(const std::string &, const std::string &);
100  void setImuJointName(const std::string &);
101  void displayRobotUtil();
105  template <typename Type>
106  void setParameter(const std::string &ParameterName,
107  const Type &ParameterValue) {
108  if (!m_initSucceeded) {
110  << "Cannot set parameter " << ParameterName << " to "
111  << ParameterValue << " before initialization!\n";
112  return;
113  }
114 
115  m_robot_util->set_parameter<Type>(ParameterName, ParameterValue);
116  }
117 
118  template <typename Type>
119  Type getParameter(const std::string &ParameterName) {
120  if (!m_initSucceeded) {
122  << "Cannot get parameter " << ParameterName
123  << " before initialization!\n";
124  throw std::runtime_error("Cannot get parameter before initialization");
125  }
126  return m_robot_util->get_parameter<Type>(ParameterName);
127  }
128 
131  void setJoints(const dynamicgraph::Vector &);
132 
133  /* --- ENTITY INHERITANCE --- */
134  virtual void display(std::ostream &os) const;
135 
136  protected:
138  bool
140  double m_dt;
142  bool m_is_first_iter;
146  double m_sleep_time;
147 
149  bool convertJointNameToJointId(const std::string &name, std::size_t &id);
150  bool isJointInRange(std::size_t id, double q);
151  void updateJointCtrlModesOutputSignal();
152 
153 }; // class ParameterServer
154 
155 } // namespace sot
156 } // namespace dynamicgraph
157 
158 #endif // #ifndef __sot_torque_control_control_manager_H__
init
void init(bool compute_local_aabb=true)
dynamicgraph::sot::ParameterServer::m_robot_util
RobotUtilShrPtr m_robot_util
Definition: parameter-server.hh:137
dynamicgraph::sot::ParameterServer::setParameter
void setParameter(const std::string &ParameterName, const Type &ParameterValue)
Definition: parameter-server.hh:106
dynamicgraph
dynamicgraph::Entity
dynamicgraph::sot::ParameterServer::getParameter
Type getParameter(const std::string &ParameterName)
Definition: parameter-server.hh:119
robot-utils.hh
DYNAMIC_GRAPH_ENTITY_DECL
#define DYNAMIC_GRAPH_ENTITY_DECL()
dynamicgraph::sot::RobotUtilShrPtr
std::shared_ptr< RobotUtil > RobotUtilShrPtr
Accessors - This should be changed to RobotUtilPtrShared.
Definition: robot-utils.hh:300
dynamicgraph::sot::ParameterServer::m_dt
double m_dt
true if the entity has been successfully initialized
Definition: parameter-server.hh:140
dynamicgraph::size_type
Matrix::Index size_type
display
dynamicgraph::Vector
Eigen::VectorXd Vector
DYNAMIC_GRAPH_ENTITY_WARNING
#define DYNAMIC_GRAPH_ENTITY_WARNING(entity)
dynamicgraph::sot::ParameterServer::EntityClassName
ParameterServer EntityClassName
Definition: parameter-server.hh:58
signal-helper.h
matrix-geometry.hh
dynamicgraph::sot::ParameterServer::m_initSucceeded
bool m_initSucceeded
Definition: parameter-server.hh:139
dynamicgraph::sot::ParameterServer
Definition: parameter-server.hh:56
dynamicgraph::sot::ParameterServer::m_emergency_stop_triggered
bool m_emergency_stop_triggered
control loop time period
Definition: parameter-server.hh:141
test-parameter-server.dt
float dt
Definition: test-parameter-server.py:14
dynamicgraph::sot::ParameterServer::m_sleep_time
double m_sleep_time
Definition: parameter-server.hh:146
Type
Eigen::Block< Mat > Type
SOTParameterServer_EXPORT
#define SOTParameterServer_EXPORT
Definition: parameter-server.hh:31
dynamicgraph::sot::ParameterServer::~ParameterServer
~ParameterServer()
Definition: parameter-server.hh:65
dynamicgraph::sot::ParameterServer::m_iter
size_type m_iter
true at the first iteration, false otherwise
Definition: parameter-server.hh:145
compile.name
name
Definition: compile.py:23


sot-core
Author(s): Olivier Stasse, ostasse@laas.fr
autogenerated on Tue Oct 24 2023 02:26:31