ControllerBuilder.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @date 2022
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 #include <filesystem>
25 #include <fstream>
26 #include <optional>
27 #include <type_traits>
28 
29 #include <SimoxUtility/json/json.hpp>
30 
34 
36 #include <RobotAPI/interface/units/RobotUnit/RobotUnitInterface.h>
38 
42 #include <armarx/control/core/Controller.h>
43 #include <armarx/control/interface/ConfigurableNJointControllerInterface.h>
44 #include <armarx/control/memory/config/Reader.h>
45 #include <armarx/control/memory/config/Writer.h>
47 
49 {
50 
51  template <auto T>
52  class ControllerBuilder //: public AbstractControllerBuilder
53  {
54  public:
56 
57  // Use ProxyType_t to conditionally use Proxy or the default fallback
59 
60  // Use CtrlConfigClassName_v to conditionally use ctrlConfigClassName or fallback to 'name'
61  static constexpr const char* ctrlConfigClassName =
62  detail::ctrl_class_name::CtrlConfigClassName_v<ControllerDescriptionType>;
63 
64  // static constexpr auto ControllerType = ct;
65  using AronDTO = typename ControllerDescriptionType::AronDTO;
66  // using AronType = AronDTO;
67 
68  static_assert(::armarx::aron::cpp::isAronGeneratedClass<AronDTO>,
69  "The AronConfigT must be an AronGeneratedClass!");
70 
72  const memory::config::Reader& configProvider,
73  const memory::config::Writer& configWriter,
74  const std::string& controllerNamePrefix) :
75  controllerCreator(controllerCreator),
76  configReader(configProvider),
77  configWriter(configWriter),
78  controllerNamePrefix(controllerNamePrefix)
79  {
80  ARMARX_CHECK_NOT_EMPTY(controllerNamePrefix)
81  << "By convention, the controller name prefix must exist. This ensures that "
82  "in between components, no naming clashes occur.";
83  }
84 
86  withDefaultConfig(const std::string& name = "default")
87  {
88  if (auto cfg = configReader.getDefaultConfig(ControllerDescriptionType::name, name))
89  {
90  dto = AronDTO::FromAron(cfg);
91  }
92  else
93  {
94  ARMARX_WARNING << "Failed to obtain default config";
95  }
96 
97  return *this;
98  }
99 
101  withDefaultConfigFile(const std::string& name = "default",
102  const std::string& robotNameSuffix = "",
103  const std::string& appendix = "")
104  {
105  const std::string configClassName = ctrlConfigClassName;
106 
107  const armarx::PackagePath configPath("armarx_control",
108  "controller_config/" + configClassName + "/" +
109  name + robotNameSuffix + appendix + ".json");
110  ARMARX_INFO << "using default config: " << configPath.toSystemPath();
111  return withConfig(configPath.toSystemPath());
112  }
113 
116  {
117  auto cfg = configReader.getConfig(memoryId);
118  dto = AronDTO::FromAron(cfg);
119 
120  return *this;
121  }
122 
125  {
126  dto = AronDTO::FromAron(configDict);
127  return *this;
128  }
129 
131  withConfig(const std::filesystem::path& filename)
132  {
133  ARMARX_CHECK(std::filesystem::is_regular_file(filename)) << filename;
134 
135  ARMARX_INFO << "Loading config from file `" << filename << "`.";
136  std::ifstream ifs{filename};
137 
138  nlohmann::json jsonConfig;
139  ifs >> jsonConfig;
140 
141  ARMARX_VERBOSE << "Initializing config";
142  if (not this->dto.has_value())
143  {
144  this->dto = AronDTO();
145  }
146 
148 
149  ARMARX_CHECK(this->dto.has_value());
150 
151  ARMARX_VERBOSE << "reading file.";
152  this->dto->read(reader, jsonConfig);
153 
154  return *this;
155  }
156 
158  withConfig(const AronDTO& dto)
159  {
160  this->dto = dto;
161  return *this;
162  }
163 
164  AronDTO&
166  {
167  ensureInitialized();
168 
169  return dto.value();
170  }
171 
173  withNodeSet(const std::string& nodeSetName)
174  {
175  this->nodeSetName = nodeSetName;
176  return *this;
177  }
178 
180  withNamePrefix(const std::string& namePrefix)
181  {
182  if (namePrefix.empty())
183  {
184  return *this;
185  }
186  this->controllerNamePrefix = this->controllerNamePrefix + "_" + namePrefix;
187  return *this;
188  }
189 
192  {
193  this->daemonized = true;
194  return *this;
195  }
196 
197  /**
198  * @brief Creates the controller with the default name
199  *
200  * @return std::optional<ControllerWrapper<AronDTO, ct>>
201  */
202  std::unique_ptr<ControllerWrapper<T>>
204  {
205  const std::string controllerClassName = ControllerDescriptionType::name;
206  return create(controllerClassName);
207  }
208 
209  std::unique_ptr<ControllerWrapper<T>>
210  create(const std::string& name)
211  {
212  if (not ensureInitialized())
213  {
214  return nullptr;
215  }
216 
217  ::armarx::control::ConfigurableNJointControllerConfigPtr config =
218  new ::armarx::control::ConfigurableNJointControllerConfig;
219 
220  auto start = armarx::DateTime::now();
221  config->config = dto.value().toAronDTO();
222  ARMARX_DEBUG << "--> Aron conversion took "
223  << (armarx::DateTime::now() - start).toSecondsDouble() << " sec.";
224 
225  // if (not nodeSetName.has_value())
226  // {
227  // ARMARX_WARNING << "You forgot to set the node set name!";
228  // return std::nullopt;
229  // }
230  // config->nodeSetName = nodeSetName.value();
231 
232  // controllerName = controllerNamePrefix + "_" + nodeSetName.value() + "_" + name;
233  controllerName = controllerNamePrefix + "_" + name;
234  const std::string controllerClassName = ControllerDescriptionType::name;
235 
236  // reuse or create controller
237 
238  start = armarx::DateTime::now();
239  armarx::NJointControllerInterfacePrx controller =
240  controllerCreator->getNJointController(controllerName);
241  ARMARX_DEBUG << "--> get controller by name from robot unit took "
242  << (armarx::DateTime::now() - start).toSecondsDouble() << " sec.";
243 
244  this->reusing_ = [&]() -> bool
245  {
246  if (not controller)
247  {
248  ARMARX_INFO << "Controller does not exist yet.";
249  return false;
250  }
251 
252  if (not allowReuse_)
253  {
254  ARMARX_INFO << "Not allowed to reuse controller.";
255  return false;
256  }
257 
258  // check if controller has correct type
259  if (controller->getClassName() != controllerClassName)
260  {
261  ARMARX_INFO << "Controller class does not match.";
262  return false;
263  }
264 
265  // TODO: check if kinematic chains match
266  // if (controller->getNodeSetName() != nodeSetName)
267  // {
268  // return false;
269  // }
270 
271  return true;
272  }();
273 
274  // if((not allowReuse_) and controller)
275  // {
276  // ARMARX_TRACE;
277  //
278  // ARMARX_INFO << "Deleting existing controller `" << controllerName << "`";
279  // try
280  // {
281  // ARMARX_TRACE;
282  // controllerCreator->deactivateAndDeleteNJointController(controllerName);
283  // }
284  // catch(...)
285  // {
286  // ARMARX_WARNING << GetHandledExceptionString();
287  // }
288  //
289  // ARMARX_INFO << "Done deleting";
290  //
291  // Clock::WaitFor(Duration::MilliSeconds(150));
292  // }
293 
294  if ((not allowReuse_) and controller)
295  {
296  ARMARX_TRACE;
297 
298  ARMARX_INFO << "--- Deleting existing controller `" << controllerName << "`";
299  try
300  {
301  ARMARX_TRACE;
302  ARMARX_INFO << "--- Wait until controller is in-active";
303  // controllerCreator->deactivateAndDeleteNJointController(controllerName);
304  controller->deactivateController();
305 
306  while (controller->isControllerActive())
307  {
309  }
310 
311  ARMARX_INFO << "--- Controller is not active anymore, deleting controller";
312  controller->deleteController();
313  }
314  catch (...)
315  {
317  }
318 
319  ARMARX_INFO << "--- Done deleting";
320 
322  }
323  else
324  {
325  ARMARX_INFO << "Reuse of controller would be possible.";
326  }
327 
328  // create controller if necessary
329  if (not this->reusing_)
330  {
331  ARMARX_TRACE;
332 
333  ARMARX_INFO << "Creating controller `" << controllerName << "`";
334  start = armarx::DateTime::now();
335  controller = controllerCreator->createNJointController(
336  controllerClassName, controllerName, config);
337  ARMARX_DEBUG << "--> creating new controller took "
338  << (armarx::DateTime::now() - start).toSecondsDouble() << " sec.";
340  ARMARX_INFO << "Controller `" << controllerName << "` created.";
341  }
342  else
343  {
344  ARMARX_IMPORTANT << "Reusing the controller: " << controllerName;
345  }
346 
347  if (not controller)
348  {
349  ARMARX_WARNING << "Failed to create controller of type `" << controllerClassName
350  << "`";
351  return nullptr;
352  }
353 
354  auto ctrl =
355  armarx::control::ConfigurableNJointControllerInterfacePrx::checkedCast(controller);
356 
357  std::unique_ptr<ControllerWrapper<T>> ctrlWrapper =
358  std::make_unique<ControllerWrapper<T>>(
359  ctrl, controllerName, configWriter, dto.value());
360  ctrlWrapper->daemonize(daemonized);
361 
362  // Sends the data to the memory and updates the controller config.
363  // This is especially important, if the controller is reused.
364  start = armarx::DateTime::now();
365  ctrlWrapper->updateConfig();
366  ARMARX_DEBUG << "--> ctrlWrapper->updateConfig() took "
367  << (armarx::DateTime::now() - start).toSecondsDouble() << " sec.";
368  return ctrlWrapper;
369  }
370 
371  std::unique_ptr<ControllerWrapper<T>>
372  createTSComplianceCtrl(const std::string& namePrefix = "",
373  const ::armarx::aron::data::dto::DictPtr& configDict = nullptr,
374  const std::string& configFilename = "",
375  bool flagActivate = true,
376  bool flagAllowReuse = true,
377  bool flagFromMemory = false)
378  {
379  ARMARX_CHECK(not(configDict.get() == nullptr and configFilename.empty()));
380  /// load predefined config from file or use the configFilename provided by the user
381  auto start = armarx::DateTime::now();
382  if (configDict)
383  {
384  withConfig(configDict);
385  }
386  else
387  {
388  if (configFilename.empty())
389  {
390  if (flagFromMemory)
392  else
394  }
395  else
396  {
397  ARMARX_CHECK(std::filesystem::exists(configFilename))
398  << "configuration file does not exist\n"
399  << configFilename
400  << "Other tips: \n"
401  "1) if you need to configure a controller by passing configuration "
402  "file "
403  "to "
404  "controllerBuilder (me), you need to make sure the "
405  "controllerCreator "
406  "component is running "
407  "on the same PC as your application, otherwise\n"
408  "2) use the createControllerFromConfig() interface, which does not "
409  "require "
410  "where controller"
411  "creator is running";
412  ARMARX_IMPORTANT << "Using user defined configuration file:\n"
413  << configFilename;
414  withConfig(configFilename);
415  }
416  }
417  ARMARX_DEBUG << "--> Loading config took "
418  << (armarx::DateTime::now() - start).toSecondsDouble() << " sec.";
419 
420  allowReuse(flagAllowReuse);
421  daemonize();
422 
423  std::ostringstream oss;
424  for (const auto& pair : config().limbs)
425  {
426  oss << pair.first;
427  if (&pair != &(*config().limbs.rbegin()))
428  {
429  oss << ",";
430  }
431  }
432  std::string robotNodeSets = oss.str();
433 
434  if (namePrefix.empty())
435  {
436  withNamePrefix(robotNodeSets);
437  }
438  else
439  {
440  allowReuse(true);
441  withNamePrefix(namePrefix + "_" + robotNodeSets);
442  }
443 
444  ARMARX_TRACE;
445  ARMARX_INFO << "creating controller";
446 
447  auto ctrlWrapper = create();
448 
449  ARMARX_TRACE;
450 
451  ARMARX_INFO << "using controller name " << controllerName;
452  ARMARX_TRACE;
453 
454  if (getReusing())
455  {
457  << "setting nullspace target: if the default is null use the cfg from the "
458  "existing controller";
459  /// get up-to-date controller configs and update the copy of it in wrapper
460  /// with the null space target from the controller
461  auto ctrlConfig = ctrlWrapper->getConfig().limbs;
462  for (const auto& pair : config().limbs)
463  {
464  if (not pair.second.desiredNullspaceJointAngles.has_value())
465  {
466  ctrlWrapper->config.limbs.at(pair.first).desiredNullspaceJointAngles =
467  ctrlConfig.at(pair.first).desiredNullspaceJointAngles;
468  }
469  // ctrlWrapper->config.limbs.at(pair.first).desiredPose =
470  // ctrlConfig.at(pair.first).desiredPose;
471  // ARMARX_INFO << "Activating controller ..."
472  // << ctrlWrapper->config.limbs.at(pair.first)
473  // .desiredNullspaceJointAngles.has_value();
474  }
475  }
476 
477  ARMARX_TRACE;
478  // ctrlWrapper->updateConfig();
479  if (flagActivate)
480  {
481  ctrlWrapper->activate();
482  ARMARX_TRACE;
483  while (not ctrlWrapper->isActive())
484  {
486  }
487  ARMARX_INFO << "Controller " << controllerName << " is active";
488  }
489  else
490  {
491  ARMARX_INFO << "User have to activate " << controllerName
492  << " controller in your application";
493  }
494  return ctrlWrapper;
495  }
496 
497  CtrlProxy
498  createGetTSComplianceCtrl(const std::string& namePrefix = "",
499  const ::armarx::aron::data::dto::DictPtr& configDict = nullptr,
500  const std::string& configFilename = "",
501  bool flagActivate = true,
502  bool flagAllowReuse = true,
503  bool flagFromMemory = false)
504  {
505  auto ctrlWrapper = createTSComplianceCtrl(namePrefix,
506  configDict,
507  configFilename,
508  flagActivate,
509  flagAllowReuse,
510  flagFromMemory);
511  auto ctrl = CtrlProxy::checkedCast(ctrlWrapper->ctrl());
512  return ctrl;
513  }
514 
515  std::unique_ptr<ControllerWrapper<T>>
516  createTSComplianceMPCtrl(const std::string& namePrefix,
518  const ::armarx::aron::data::dto::DictPtr& configDict = nullptr,
519  const std::string& configFilename = "",
520  bool flagActivate = true,
521  bool flagAllowReuse = true,
522  bool flagFromMemory = false,
523  bool flagStart = true)
524  {
525  auto ctrlWrapper = createTSComplianceCtrl(namePrefix,
526  configDict,
527  configFilename,
528  flagActivate,
529  flagAllowReuse,
530  flagFromMemory);
531  auto ctrl = CtrlProxy::checkedCast(ctrlWrapper->ctrl());
532  ctrl->updateMPConfig(mpConfigDict);
533  ctrl->trainMP();
534 
535  if (flagStart)
536  {
537  // start controller
538  ARMARX_CHECK_NOT_NULL(ctrl);
539  ctrl->startAll();
540  }
541  return ctrlWrapper;
542  }
543 
544  CtrlProxy
545  createGetTSComplianceMPCtrl(const std::string& namePrefix,
547  const ::armarx::aron::data::dto::DictPtr& configDict = nullptr,
548  const std::string& configFilename = "",
549  bool flagActivate = true,
550  bool flagAllowReuse = true,
551  bool flagFromMemory = false,
552  bool flagStart = true)
553  {
554  auto ctrlWrapper = createTSComplianceCtrl(namePrefix,
555  configDict,
556  configFilename,
557  flagActivate,
558  flagAllowReuse,
559  flagFromMemory);
560  auto ctrl = CtrlProxy::checkedCast(ctrlWrapper->ctrl());
561  ctrl->stopAll();
562  auto start = armarx::DateTime::Now();
563  ctrl->updateMPConfig(mpConfigDict);
564  ARMARX_DEBUG << "--> ctrl->updateMPConfig(mpConfigDict: DictPtr) took "
565  << (armarx::DateTime::Now() - start).toSecondsDouble() << " sec.";
566 
567  ARMARX_DEBUG << "--> calling train mp";
568  start = armarx::DateTime::Now();
569  ctrl->trainMP();
570  ARMARX_DEBUG << "--> ctrl->trainMP() took "
571  << (armarx::DateTime::Now() - start).toSecondsDouble() << " sec.";
572 
573  if (flagStart)
574  {
575  // start controller
576  ARMARX_CHECK_NOT_NULL(ctrl);
577  ctrl->startAll();
578  }
579  return ctrl;
580  }
581 
583  allowReuse(const bool allowReuse)
584  {
585  this->allowReuse_ = allowReuse;
586  return *this;
587  }
588 
589  bool
591  {
592  return this->reusing_;
593  }
594 
595  std::string
597  {
598  return controllerName;
599  }
600 
601  private:
602  bool
603  initDefaultConfig()
604  {
605  if (auto cfg = configReader.getDefaultConfig(ControllerDescriptionType::name))
606  {
607  dto = AronDTO::FromAron(cfg);
608  return true;
609  }
610 
611  ARMARX_WARNING << "Failed to obtain default config";
612  return false;
613  }
614 
615  bool
616  ensureInitialized()
617  {
618  if (not dto.has_value())
619  {
620  return initDefaultConfig();
621  }
622 
623  return true;
624  }
625 
626  armarx::RobotUnitInterfacePrx controllerCreator;
627 
628  const memory::config::Reader configReader;
629  const memory::config::Writer configWriter;
630 
631  std::optional<AronDTO> dto;
632 
633  std::optional<std::string> nodeSetName;
634 
635  std::string controllerNamePrefix;
636  std::string controllerName;
637 
638  bool daemonized = false;
639  bool allowReuse_ = false;
640  bool reusing_ = false;
641  };
642 } // namespace armarx::control::client
armarx::control::client::ControllerBuilder::create
std::unique_ptr< ControllerWrapper< T > > create()
Creates the controller with the default name.
Definition: ControllerBuilder.h:203
armarx::control::client::ControllerBuilder::CtrlProxy
detail::proxy::ProxyType_t< ControllerDescriptionType > CtrlProxy
Definition: ControllerBuilder.h:58
armarx::control::client::ControllerBuilder::config
AronDTO & config()
Definition: ControllerBuilder.h:165
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
armarx::control::client::ControllerBuilder::createGetTSComplianceCtrl
CtrlProxy createGetTSComplianceCtrl(const std::string &namePrefix="", const ::armarx::aron::data::dto::DictPtr &configDict=nullptr, const std::string &configFilename="", bool flagActivate=true, bool flagAllowReuse=true, bool flagFromMemory=false)
Definition: ControllerBuilder.h:498
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
LocalException.h
armarx::control::client::ControllerBuilder::createTSComplianceCtrl
std::unique_ptr< ControllerWrapper< T > > createTSComplianceCtrl(const std::string &namePrefix="", const ::armarx::aron::data::dto::DictPtr &configDict=nullptr, const std::string &configFilename="", bool flagActivate=true, bool flagAllowReuse=true, bool flagFromMemory=false)
Definition: ControllerBuilder.h:372
armarx::core::time::Clock::WaitFor
static void WaitFor(const Duration &duration)
Wait for a certain duration on the virtual clock.
Definition: Clock.cpp:99
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
NlohmannJSONReaderWithoutTypeCheck.h
ARMARX_CHECK_NOT_NULL
#define ARMARX_CHECK_NOT_NULL(ptr)
This macro evaluates whether ptr is not null and if it turns out to be false it will throw an Express...
Definition: ExpressionException.h:206
armarx::control::client::ControllerBuilder::ctrlConfigClassName
static constexpr const char * ctrlConfigClassName
Definition: ControllerBuilder.h:61
armarx::control::client::ControllerBuilder::ControllerBuilder
ControllerBuilder(const armarx::RobotUnitInterfacePrx &controllerCreator, const memory::config::Reader &configProvider, const memory::config::Writer &configWriter, const std::string &controllerNamePrefix)
Definition: ControllerBuilder.h:71
armarx::control::client::ControllerBuilder::withDefaultConfig
ControllerBuilder & withDefaultConfig(const std::string &name="default")
Definition: ControllerBuilder.h:86
armarx::control::client::ControllerBuilder::AronDTO
typename ControllerDescriptionType::AronDTO AronDTO
Definition: ControllerBuilder.h:65
armarx::control::client
This file is part of ArmarX.
Definition: ComponentPlugin.cpp:20
armarx::control::client::ControllerBuilder::withConfig
ControllerBuilder & withConfig(const ::armarx::aron::data::dto::DictPtr &configDict)
Definition: ControllerBuilder.h:124
armarx::core::time::DateTime::now
static DateTime now()
Definition: DateTime.h:87
ARMARX_CHECK_NOT_EMPTY
#define ARMARX_CHECK_NOT_EMPTY(c)
Definition: ExpressionException.h:224
armarx::control::client::ControllerBuilder::withNodeSet
ControllerBuilder & withNodeSet(const std::string &nodeSetName)
Definition: ControllerBuilder.h:173
armarx::control::client::detail::proxy::ProxyType_t
typename ProxyType< T >::type ProxyType_t
Definition: ControllerDescription.h:62
armarx::control::client::ControllerBuilder
Definition: ControllerBuilder.h:52
armarx::control::client::ControllerDescription
Definition: ControllerDescription.h:103
armarx::control::client::ControllerBuilder::allowReuse
ControllerBuilder & allowReuse(const bool allowReuse)
Definition: ControllerBuilder.h:583
type.h
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
Clock.h
armarx::GetHandledExceptionString
std::string GetHandledExceptionString()
Definition: Exception.cpp:165
ARMARX_TRACE
#define ARMARX_TRACE
Definition: trace.h:77
armarx::control::client::ControllerBuilder::create
std::unique_ptr< ControllerWrapper< T > > create(const std::string &name)
Definition: ControllerBuilder.h:210
controller
Definition: AddOperation.h:39
armarx::armem::MemoryID
A memory ID.
Definition: MemoryID.h:47
armarx::PackagePath::toSystemPath
static std::filesystem::path toSystemPath(const data::PackagePath &pp)
Definition: PackagePath.cpp:47
armarx::aron::data::reader::NlohmannJSONReaderWithoutTypeCheck
Definition: NlohmannJSONReaderWithoutTypeCheck.h:35
armarx::control::client::ControllerBuilder::createGetTSComplianceMPCtrl
CtrlProxy createGetTSComplianceMPCtrl(const std::string &namePrefix, const ::armarx::aron::data::dto::DictPtr &mpConfigDict, const ::armarx::aron::data::dto::DictPtr &configDict=nullptr, const std::string &configFilename="", bool flagActivate=true, bool flagAllowReuse=true, bool flagFromMemory=false, bool flagStart=true)
Definition: ControllerBuilder.h:545
ControllerDescription.h
ARMARX_DEBUG
#define ARMARX_DEBUG
Definition: Logging.h:184
armarx::core::time::Duration::SecondsDouble
static Duration SecondsDouble(double seconds)
Constructs a duration in seconds.
Definition: Duration.cpp:78
filename
std::string filename
Definition: VisualizationRobot.cpp:86
armarx::control::client::ControllerBuilder::createTSComplianceMPCtrl
std::unique_ptr< ControllerWrapper< T > > createTSComplianceMPCtrl(const std::string &namePrefix, const ::armarx::aron::data::dto::DictPtr &mpConfigDict, const ::armarx::aron::data::dto::DictPtr &configDict=nullptr, const std::string &configFilename="", bool flagActivate=true, bool flagAllowReuse=true, bool flagFromMemory=false, bool flagStart=true)
Definition: ControllerBuilder.h:516
armarx::control::client::ControllerBuilder::withNamePrefix
ControllerBuilder & withNamePrefix(const std::string &namePrefix)
Definition: ControllerBuilder.h:180
armarx::control::client::ControllerBuilder::getControllerName
std::string getControllerName()
Definition: ControllerBuilder.h:596
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
armarx::control::client::ControllerBuilder::daemonize
ControllerBuilder & daemonize()
Definition: ControllerBuilder.h:191
constants.h
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::control::client::ControllerBuilder::withConfig
ControllerBuilder & withConfig(const AronDTO &dto)
Definition: ControllerBuilder.h:158
armarx::control::client::ControllerBuilder::getReusing
bool getReusing()
Definition: ControllerBuilder.h:590
IceInternal::ProxyHandle<::IceProxy::armarx::RobotUnitInterface >
armarx::control::client::ControllerBuilder::withDefaultConfigFile
ControllerBuilder & withDefaultConfigFile(const std::string &name="default", const std::string &robotNameSuffix="", const std::string &appendix="")
Definition: ControllerBuilder.h:101
armarx::control::client::ControllerBuilder::withConfig
ControllerBuilder & withConfig(const std::filesystem::path &filename)
Definition: ControllerBuilder.h:131
armarx::control::client::ControllerBuilder::withConfig
ControllerBuilder & withConfig(const armarx::armem::MemoryID &memoryId)
Definition: ControllerBuilder.h:115
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
armarx::PackagePath
Definition: PackagePath.h:52
AronGeneratedClass.h
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48
ControllerWrapper.h
PackagePath.h