-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay_motion.py
192 lines (176 loc) · 7.32 KB
/
play_motion.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#!/usr/bin/env python
# Copyright 2020 CNRS - Airbus SAS
# Author: Florent Lamiraux
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from csv import writer
import roslib
import rospy
import math
import tf2_ros
from std_msgs.msg import Float64
from sensor_msgs.msg import JointState
from dynamic_graph_bridge_msgs.msg import Vector
import geometry_msgs.msg
from sensor_msgs.msg import JointState
from smach_msgs.msg import SmachContainerStatus
from std_msgs.msg import Bool, UInt32, String
from hpp.corbaserver import Client as HppClient
## Control calibration motions on Talos robot
#
# iteratively
# - trigger motions planned by HPP by publishing in "/agimus/start_path"
# topic,
# - wait for end of motion by listening "/agimus/status/running" topic,
# - record tf transformation between camera (topic ) and gripper
# - record joint values (topic ).
class CalibrationControl (object):
maxDelay = rospy.Duration (1,0)
def __init__ (self) :
rospy.init_node ('calibration_control')
self.tfBuffer = tf2_ros.Buffer(rospy.Duration (1,0))
self.tf2Listener = tf2_ros.TransformListener(self.tfBuffer)
self.pubStartPath = rospy.Publisher ("/agimus/start_path", UInt32,
queue_size=1)
self.subRunning = rospy.Subscriber ("/agimus/status/running", Bool,
self.runningCallback)
self.subStatus = rospy.Subscriber \
("/agimus/agimus/smach/container_status",
SmachContainerStatus, self.statusCallback)
self.subStatusDescription = rospy.Subscriber\
("/agimus/status/description", String, self.statusDescriptionCallback)
self.subReleaseContact = rospy.Subscriber\
("/agimus/release_contact", Float64, self.collectDataCallback)
self.running = False
self.rosJointStates = None
self.jointNames = None
self.pathId = 0
self.hppClient = HppClient ()
self.count = 0
self.measurements = list ()
self.gripper = None
self.handle = None
def playPath (self, pathId):
nbPaths = self.hppClient.problem.numberPaths ()
if pathId >= nbPaths:
raise RuntimeError ("pathId ({}) is bigger than number paths {}"
.format (pathId, nbPaths - 1))
self.errorOccured = False
self.pubStartPath.publish (pathId)
self.waitForEndOfMotion ()
def collectData (self, gripper, handle):
# Subscribe to joint_state only for collecting data
self.rosJointStates = None
self.subRosJointState = rospy.Subscriber ("/joint_states", JointState,
self.rosJointStateCallback)
# Wait for callback to be called
while not self.rosJointStates:
rospy.sleep(1e-3)
self.subRosJointState.unregister()
self.subRosJointState = None
measurement = dict ()
measurement["gripper"] = gripper
measurement["handle"] = handle
# Get joint values
measurement ["joint_states"] = self.rosJointStates
print("Saved joint states.")
self.measurements.append (measurement)
def save (self, filename):
with open (filename, "w") as f:
# Write joint names
if self.jointNames:
w = writer (f)
w.writerow (['joint_names'] + self.jointNames)
# write measurements
for measurement in self.measurements:
line = ""
# gripper
line += "gripper,"
line += measurement["gripper"]
# handle
line += ",handle,"
line += measurement["handle"]
# joint_states
assert measurement.has_key ("joint_states")
line += ",joint_states,"
for jv in measurement ["joint_states"]:
line += "{},".format (jv)
line = line [:-1] + "\n"
f.write (line)
def waitForEndOfMotion (self):
rate = rospy.Rate(2) # 2hz
# wait for motion to start
rospy.loginfo ("wait for motion to start")
while not self.running:
rate.sleep ()
if rospy.is_shutdown (): raise RuntimeError ("rospy shutdown.")
# wait for motion to end
rospy.loginfo ("wait for motion to end")
while self.running:
rate.sleep ()
if rospy.is_shutdown (): raise RuntimeError ("rospy shutdown.")
# wait for one more second
rospy.loginfo ("motion stopped")
for i in range (2):
rate.sleep ()
def runningCallback (self, msg):
self.running = msg.data
def statusCallback (self, msg):
if msg.active_states [0] == 'Error':
self.errorOccured = True
rospy.loginfo ('Error occured.')
def rosJointStateCallback (self, msg):
self.rosJointStates = msg.position
if not self.jointNames:
self.jointNames = msg.name
def statusDescriptionCallback(self, msg):
text = msg.data
if text[:21] != "Executing pre-action ": return
text = text[21:]
i = text.find(' > ')
if i == -1: return
gripper = text[:i]
text = text[i+3:]
i = text.find(' | ')
if i == -1: return
handle = text[:i]
text = text[i+3:]
if text.find('_12') != -1:
self.gripper = gripper
self.handle = handle
print("gripper: {}, handle: {}".format(self.gripper, self.handle))
def collectDataCallback(self, msg):
if self.gripper and self.handle:
self.collectData(self.gripper, self.handle)
else:
print('no gripper or no handle')
def playAllPaths (startIndex):
i = startIndex
while i < nbPaths:
cc.playPath (i)
if not cc.errorOccured:
print("Ran {}".format(i))
i+=1
rospy.sleep (1)
if __name__ == '__main__':
cc = CalibrationControl ()
nbPaths = cc.hppClient.problem.numberPaths ()
# playAllPaths (0)