ShapeHand.cpp
Go to the documentation of this file.
1 #include "ShapeHand.h"
2 
5 
7 {
9  ::armarx::skills::SpecializedSkill<ParamType>(GetSkillDescription()), srv_(srv)
10  {
11  }
12 
14  ShapeHand::main()
15  {
16  // verify exactly one of the parameters 'shapeName' and 'jointAngles' is set
17  if ((not getParameters().shapeName) and (not getParameters().jointAngles))
18  {
19  ARMARX_ERROR << "Exactly one of the parameters 'shapeName' and 'jointAngles' must be "
20  "set. However, neither has been set.";
21  return MakeFailedResult();
22  }
23  else if (getParameters().shapeName and getParameters().jointAngles)
24  {
25  ARMARX_ERROR << "Exactly one of the parameters 'shapeName' and 'jointAngles' must be "
26  "set. However, both have been set.";
27  return MakeFailedResult();
28  }
29 
30  // set shape/joinAngles
31 
32  auto& handUnit = srv_.getHandUnit(getParameters().hand);
33 
34  if (getParameters().shapeName)
35  {
36  const auto shape = getParameters().shapeName.value();
37  ARMARX_INFO << VAROUT(shape);
38 
39  // check that the shape is defined
40  const auto defShapes =
41  ::armarx::SingleTypeVariantListPtr::dynamicCast(handUnit->getShapeNames())
42  ->toStdVector<std::string>();
43 
44  if (not std::any_of(defShapes.begin(),
45  defShapes.end(),
46  [&shape](const auto& defShape) { return shape == defShape; }))
47  {
48  ARMARX_ERROR << "Shape with name '" << shape
49  << "' not defined. Defined shapes: " << defShapes;
50  return MakeFailedResult();
51  }
52 
53  // set shape
54  ARMARX_INFO << "Setting shape of hand '" << handUnit->getHandName() << "' to '" << shape
55  << "'.";
56 
57  handUnit->setShape(shape);
58 
59  if (getParameters().waitUntilFinished)
60  {
61  return waitUntilFinished(handUnit->getShapeJointValues(shape));
62  }
63  }
64 
65  else // getParameters().jointAngles
66  {
67  const auto jointAngles = getParameters().jointAngles.value();
68 
69  ARMARX_INFO << "Setting joint angles of hand '" << handUnit->getHandName()
70  << "' to: " << jointAngles;
71 
72  handUnit->setJointAngles(jointAngles);
73 
74  if (getParameters().waitUntilFinished)
75  {
76  return waitUntilFinished(jointAngles);
77  }
78  }
79  return MakeSucceededResult();
80  }
81 
83  ShapeHand::waitUntilFinished(const NameValueMap& targetAngles)
84  {
85  auto& handUnit = srv_.getHandUnit(getParameters().hand);
86  const auto movementTimeout = getParameters().waitUntilFinished->movementTimeout;
87 
88  ARMARX_INFO << "Waiting until target position is reached"
89  << (movementTimeout ? " or movement times out" : "");
90 
91  struct
92  {
93  NameValueMap angles;
94  ::armarx::DateTime time;
95  } pastJointAngles{handUnit->getCurrentJointValues(), DateTime::Now()};
96 
97  const Clock clock;
98  const auto sleepTime = Duration::MilliSeconds(20);
99 
100  bool reached = false;
101  bool movementTimedOut = false;
102 
103  while (not shouldSkillTerminate() and not reached and not movementTimedOut)
104  {
105  const auto currentAngles = handUnit->getCurrentJointValues();
106 
107  // check if target reached
108  reached = true;
109  for (const auto& [jointName, targetAngle] : targetAngles)
110  {
111  if (std::abs(targetAngle - currentAngles.at(jointName)) > getAccuracy(jointName))
112  {
113  reached = false;
115  << deactivateSpam(1) << "Delta for joint '" << jointName
116  << "' is: " << std::abs(targetAngle - currentAngles.at(jointName)) << " > "
117  << getAccuracy(jointName) << "(accuracy)";
118  break;
119  }
120  }
121 
122  // check if movement timed out
123  if (movementTimeout and (DateTime::Now() - pastJointAngles.time).toSecondsDouble() >=
124  movementTimeout.value())
125  {
126  movementTimedOut = true;
127  for (const auto& [jointName, targetAngle] : targetAngles)
128  {
129  if (std::abs(currentAngles.at(jointName) -
130  pastJointAngles.angles.at(jointName)) > getAccuracy(jointName))
131  {
132  movementTimedOut = false;
134  << deactivateSpam(1) << "Joint '" << jointName << "' still moving: "
135  << std::abs(currentAngles.at(jointName) -
136  pastJointAngles.angles.at(jointName))
137  << " > " << getAccuracy(jointName) << "(accuracy)"
138  << "in the last " << movementTimeout.value() << "s (movement timeout)";
139  break;
140  }
141  }
142  pastJointAngles = {currentAngles, DateTime::Now()};
143  }
144 
145  clock.waitFor(sleepTime);
146  }
147 
148  if (reached)
149  {
150  ARMARX_INFO << "Target position reached!";
151  }
152  else if (movementTimedOut)
153  {
154  ARMARX_INFO << "Movement timed out! Joints stopped moving. Not waiting anymore until "
155  "target postion is reached";
156  }
157  else if (shouldSkillTerminate())
158  {
160  << "Skill aborted. Not waiting anymore until target position is reached";
161  return MakeAbortedResult();
162  }
163 
164  return MakeSucceededResult();
165  }
166 
167  float
168  ShapeHand::getAccuracy(const std::string& jointName)
169  {
170  const auto accuracy = getParameters().waitUntilFinished->accuracy;
171  const auto accuracyOverride = getParameters().waitUntilFinished->accuracyOverride;
172 
173  return accuracyOverride.count(jointName) > 0 ? accuracyOverride.at(jointName) : accuracy;
174  }
175 
176  OpenHand::OpenHand() : armarx::skills::SpecializedSkill<ParamType>(GetSkillDescription())
177  {
178  }
179 
181  OpenHand::main()
182  {
183  // call ShapeHand-skill
186  id.providerId = getSkillId().providerId;
187 
188  arondto::ShapeHandParams params;
189  params.hand = getParameters().hand;
190  params.shapeName = "Open";
191  params.waitUntilFinished = getParameters().waitUntilFinished;
192 
193  return {(*callSubskill(::armarx::skills::SkillProxy(manager, id), params.toAron())).status};
194  }
195 
196  CloseHand::CloseHand() : armarx::skills::SpecializedSkill<ParamType>(GetSkillDescription())
197  {
198  }
199 
201  CloseHand::main()
202  {
203  // call ShapeHand-skill
206  id.providerId = getSkillId().providerId;
207 
208  arondto::ShapeHandParams params;
209  params.hand = getParameters().hand;
210  params.shapeName = "Close";
211  params.waitUntilFinished = getParameters().waitUntilFinished;
212 
213  return {(*callSubskill(::armarx::skills::SkillProxy(manager, id), params.toAron())).status};
214  }
215 
216 } // namespace armarx::control::skills::skills
ARMARX_VERBOSE
#define ARMARX_VERBOSE
Definition: Logging.h:187
SingleTypeVariantList.h
armarx::skills::Skill::manager
manager::dti::SkillManagerInterfacePrx manager
Definition: Skill.h:291
armarx::control::skills::skills::ShapeHand::ShapeHand
ShapeHand(const HandUnitServices &)
Definition: ShapeHand.cpp:8
skills
This file is part of ArmarX.
ARMARX_IMPORTANT
#define ARMARX_IMPORTANT
Definition: Logging.h:190
armarx::control::skills::HandUnitServices
Definition: HandUnitServices.h:17
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
armarx::core::time::DateTime::Now
static DateTime Now()
Definition: DateTime.cpp:51
armarx::skills::SkillID::providerId
std::optional< ProviderID > providerId
Definition: SkillID.h:40
armarx::skills::SpecializedSkill< arondto::ShapeHandParams >::getParameters
arondto::ShapeHandParams getParameters() const
Overwrite getter for parameters. Shadow Skill::getParameters()
Definition: SpecializedSkill.h:26
armarx::skills::Skill::callSubskill
std::optional< TerminatedSkillStatusUpdate > callSubskill(const skills::SkillProxy &proxy)
Call a subskill with default parameters and block until the subskill terminates.
Definition: Skill.cpp:32
Clock.h
armarx::skills::SkillProxy
Definition: SkillProxy.h:13
armarx::skills::Skill::MakeFailedResult
static MainResult MakeFailedResult()
Definition: Skill.cpp:338
armarx::status
status
Definition: FiniteStateMachine.h:244
armarx::abs
std::vector< T > abs(const std::vector< T > &v)
Definition: VectorHelpers.h:281
armarx::control::skills::skills::OpenHand::OpenHand
OpenHand()
Definition: ShapeHand.cpp:176
ShapeHand.h
armarx::skills::Skill::MakeAbortedResult
static MainResult MakeAbortedResult()
Definition: Skill.cpp:347
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::skills::Skill::MakeSucceededResult
static MainResult MakeSucceededResult(aron::data::DictPtr data=nullptr)
Definition: Skill.cpp:329
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
armarx::control::skills::HandUnitServices::getHandUnit
::armarx::HandUnitInterfacePrx & getHandUnit(const arondto::Hand hand)
Definition: HandUnitServices.h:23
armarx::control::skills::constants::SHAPE_HAND_SKILL_NAME
std::string SHAPE_HAND_SKILL_NAME
Definition: constants.cpp:12
armarx::control::njoint_controller::platform::platform_follower_controller::NameValueMap
std::map< std::string, float > NameValueMap
Definition: PlatformFollowerController.h:88
armarx::core::time::DateTime
Represents a point in time.
Definition: DateTime.h:24
armarx::channels::KinematicUnitObserver::jointAngles
const KinematicUnitDatafieldCreator jointAngles("jointAngles")
armarx::skills::SpecializedSkill< arondto::ShapeHandParams >::ParamType
arondto::ShapeHandParams ParamType
Definition: SpecializedSkill.h:13
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::control::skills::skills
Definition: ExecuteTrajectory.cpp:18
armarx::skills::Skill::shouldSkillTerminate
bool shouldSkillTerminate() const
Returns whether the skill should terminate as soon as possible.
Definition: Skill.cpp:385
armarx::Logging::deactivateSpam
SpamFilterDataPtr deactivateSpam(float deactivationDurationSec=10.0f, const std::string &identifier="", bool deactivate=true) const
disables the logging for the current line for the given amount of seconds.
Definition: Logging.cpp:99
armarx::skills::SkillID
Definition: SkillID.h:14
stopwatch::Clock
std::chrono::system_clock Clock
Definition: Stopwatch.h:10
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::skills::Skill::getSkillId
SkillID getSkillId() const
Get the id of the skill.
Definition: Skill.cpp:497
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48
armarx::control::skills::skills::CloseHand::CloseHand
CloseHand()
Definition: ShapeHand.cpp:196