Source code for motion_stack.api.ik_syncer

"""
Python API to sync the movement of several end_effectors.
This requires ik lvl2 to be running.

Note:
    The ros2 implementation is available in :py:mod:`.ros2.ik_api`.

This high level API alows for multi-end-effector control and syncronization (over several legs). This is the base class where, receiving and sending data to motion stack lvl2 is left to be implemented.
"""

import copy
import warnings
from abc import ABC, abstractmethod
from typing import Awaitable, Callable, Dict, List, Optional, Set, Tuple, Type

import nptyping as nt
import numpy as np

from motion_stack.core.utils.time import Time

from ..core.utils.hypersphere_clamp import clamp_multi_xyz_quat, fuse_xyz_quat
from ..core.utils.math import Flo3, Quaternion, qt
from ..core.utils.pose import Pose, XyzQuat

#: placeholder type for a Future (ROS2 Future, asyncio or concurrent)
FutureType = Awaitable

#: A type alias representing the limb number (end effector index).
LimbNumber = int

#: A dictionary mapping limb numbers to their corresponding poses.
MultiPose = Dict[LimbNumber, Pose]


[docs] class SensorSyncWarning(Warning): pass
[docs] class IkSyncer(ABC): r"""One instance controls and syncronises several limbs end-effectors, safely executing trajectory to targets. Note: This class is an abstract base class, the ros2 implementation is available in :py:class:`.ros2.joint_api.IkSyncerRos`. Hence, parts of this class are left to be implmented by the interface/runtime: \ :py:meth:`.IkSyncer.FutureT`, :py:meth:`.IkSyncer.sensor`, :py:meth:`.IkSyncer.send_to_lvl2`. Important: \ :py:meth:`.IkSyncer.execute` must be called to compute, update and send the command. One object instance can only execute one target at a time. However, the limbs or targets can change between calls of the same instance, before the previous task is done. The trajectory interpolates between two points: - The last position (if None: uses sensor, else: last sub-target). This is handled automatically, however ``clear`` resets the last position to None. - The input target. Several interpolation strategies are available: - LERP: :py:meth:`.IkSyncer.lerp` - ASAP: :py:meth:`.IkSyncer.asap` - Unsafe: :py:meth:`.IkSyncer.unsafe` Args: interpolation_delta: (mm, rad) During movement, how much divergence is allowed from the path. If exceeded, movement slows down. on_target_delta: (mm, rad) Delta at which the trajectory/task is considered finished and the Future is switched to ``done``. """ _COMMAND_DONE_DELTA: XyzQuat[float, float] = XyzQuat(0.01, np.deg2rad(0.01)) def __init__( self, interpolation_delta: XyzQuat[float, float] = XyzQuat(40, np.deg2rad(4)), on_target_delta: XyzQuat[float, float] = XyzQuat(40, np.deg2rad(4)), ) -> None: self._interpolation_delta: XyzQuat[float, float] = interpolation_delta self._on_target_delta: XyzQuat[float, float] = on_target_delta #: Future of the latest task/trajectory that was run. self.last_future: FutureType = self.FutureT() self.__previous: MultiPose = {} self._last_sent: MultiPose = {} self._last_valid: MultiPose = {} self._trajectory_task = lambda *_: None
[docs] def execute(self): """Executes one step of the task/trajectory. This must be called frequently.""" self._trajectory_task()
[docs] def clear(self): """Resets the trajectory starting point onto the current sensor positions. Important: Use when: - The trajectory is stuck unable to interpolate. - External motion happened, thus the last position used by the syncer is no longer valid. Caution: At task creation, if the syncer applies `clear()` automatically, `SensorSyncWarning` is issued. Raise the warning as an error to interupt operation if needed. """ self.__previous = {} self._last_valid = {}
[docs] def lerp(self, target: MultiPose) -> FutureType: """Starts executing a lerp trajectory toward the target. LERP: all joints reach the target at the same time. Returns: Future of the task. Done when sensors are on target. """ return self._make_motion(target, self.lerp_toward)
[docs] def asap(self, target: MultiPose) -> FutureType: """Starts executing a asap trajectory toward the target. ASAP: (Not Implemented) joints will reach their tagets indepently, as fast as possible. Returns: Future of the task. Done when sensors are on target. """ return self._make_motion(target, self.asap_toward)
[docs] def unsafe(self, target: MultiPose) -> FutureType: """Starts executing a unsafe trajectory toward the target. Unsafe: Similar to ASAP except the final target is sent directly to the IK, so the movement will not stop in case of crash, errors, network issue AND you cannot cancel it. Returns: Future of the task. Done when sensors are on target. """ return self._make_motion(target, self.unsafe_toward)
[docs] def abs_from_rel(self, offset: MultiPose) -> MultiPose: """Absolute position of the MultiPose that corresponds to the given relative offset. Example: *joint_1* is at 45 deg, offset is 20 deg. Return will be 65 deg. Args: offset: Relative postion. Returns: Absolute position. """ track = set(offset.keys()) prev = self._previous_point(track) return { key: Pose( offset[key].time, prev[key].xyz + qt.rotate_vectors(prev[key].quat, offset[key].xyz), prev[key].quat * offset[key].quat, ) for key in track }
[docs] @abstractmethod def send_to_lvl2(self, ee_targets: MultiPose): """Sends ik command to lvl2. Important: This method must be implemented by the runtime/interface. Note: Default ROS2 implementation: :py:meth:`.ros2.ik_api.IkSyncerRos.send_to_lvl2` Args: states: Ik target to be sent to lvl1 """ ...
@property @abstractmethod def FutureT(self) -> Type[FutureType]: """Class of Future to use: ROS2 Future, asyncio or concurrent. Important: This method must be implemented by the runtime/interface. Default ROS2 implementation:: return rclpy.task.Future Returns: The Future class (not an instance). """ ... @property @abstractmethod def sensor(self) -> MultiPose: """Is called when sensor data is need. Important: This method must be implemented by the runtime/interface. Note: Default ROS2 implementation: :py:meth:`.ros2.joint_api.JointSyncerRos.sensor` Returns: """ ... def _previous_point(self, track: Set[LimbNumber]) -> MultiPose: """ Args: track: Joints to consider. Returns: Previous point in the trajectory. If missing data, uses sensor. """ missing = track - set(self.__previous.keys()) if not missing: return self.__previous sensor = self.sensor available = set(sensor.keys()) for name in missing & available: self.__previous[name] = sensor[name] return self.__previous def _update_previous_point(self, data: MultiPose) -> None: data = copy.deepcopy(data) self.__previous.update(data) return def _get_last_valid(self, track: Set[LimbNumber]) -> MultiPose: """ Args: track: Joints to consider. Returns: Previous point in the trajectory. If missing data, uses sensor. """ missing = track - set(self._last_valid.keys()) if not missing: return self._last_valid sensor = self.sensor available = set(sensor.keys()) for name in missing & available: self._last_valid[name] = sensor[name] return self._last_valid def _set_last_valid(self, data: MultiPose) -> None: data = copy.deepcopy(data) self._last_valid.update(data) return def _center_and_previous(self, track: Set[LimbNumber]): center = self.sensor assert ( set(center.keys()) >= track ), f"Sensor does not have required end-effector data. " f"target joints {track} is not a subsets of the sensor set {set(center.keys())}." previous = self._previous_point(track) assert ( set(previous.keys()) >= track ), f"Previous step does not have required end-effector data. " f"Target joints {track} is not a subsets of the sensor set {set(previous.keys())}." return center, previous def _get_lerp_step( self, start: MultiPose, target: MultiPose ) -> Tuple[MultiPose, bool]: """Result of a single step of lerp.""" track = set(target.keys()) order = list(target.keys()) center, _ = self._center_and_previous(track) previous = start clamped = clamp_multi_xyz_quat( start=_order_dict2list(order, previous), center=_order_dict2list(order, center), end=_order_dict2list(order, target), radii=self._interpolation_delta, ) validity = not bool(np.any(np.isnan(fuse_xyz_quat(clamped)))) return { k: Pose(Time(0), v.xyz, v.quat) for k, v in zip(order, clamped) }, validity def _get_asap_step( self, start: MultiPose, target: MultiPose ) -> Tuple[MultiPose, bool]: """Result of a single step of asap.""" return NotImplemented, True def _get_unsafe_step( self, start: MultiPose, target: MultiPose ) -> Tuple[MultiPose, bool]: """Result of a single step of unsafe.""" return target, True def _traj_toward( self, target: MultiPose, step_func: Callable[[MultiPose, MultiPose], Tuple[MultiPose, bool]], start: Optional[MultiPose] = None, ) -> bool: """Executes a step of the given step function.""" order = list(target.keys()) tracked = set(order) prev = self._previous_point(tracked) if start is None: start = prev next, valid = step_func(start, target) command_done = _multipose_close( set(target.keys()), target, prev, atol=self._COMMAND_DONE_DELTA ) and valid if not command_done: # print(valid) if valid: self._set_last_valid(next) else: sens, _ = self._center_and_previous(tracked) next, valid = step_func(sens, self._get_last_valid(set(order))) self.send_to_lvl2(next) self._update_previous_point(next) if not command_done: return False on_target = _multipose_close( set(target.keys()), target, self.sensor, atol=self._on_target_delta ) return on_target
[docs] def unsafe_toward( self, target: MultiPose, start: Optional[MultiPose] = None ) -> bool: """Executes one single unsafe step. Returns: True if trajectory finished """ return self._traj_toward(target, self._get_unsafe_step, start=start)
[docs] def asap_toward(self, target: MultiPose, start: Optional[MultiPose] = None) -> bool: """Executes one single asap step. Returns: True if trajectory finished """ return self._traj_toward(target, self._get_asap_step, start=start)
[docs] def lerp_toward(self, target: MultiPose, start: Optional[MultiPose] = None) -> bool: """Executes one single lerp step. Returns: True if trajectory finished """ return self._traj_toward(target, self._get_lerp_step, start=start)
def _define_pose(self, multi_pose: MultiPose): """Replaces in place None with the latest send data or sensor.""" prev = self._previous_point(set(multi_pose.keys())) for key, pose in multi_pose.items(): if pose.time is None: pose.time = Time(0) if pose.xyz is None: pose.xyz = prev[key].xyz if pose.quat is None: pose.quat = prev[key].quat def _make_motion( self, target: MultiPose, toward_func: Callable[[MultiPose, Optional[MultiPose]], bool], ) -> FutureType: """Makes the trajectory task using the toward function. Args: target: key = joint name ; value = joint angle toward_func: Function executing a step toward the target. Returns: Future of the task. Done when sensorare on target. """ future = self.FutureT() track = set(target.keys()) center, prev = self._center_and_previous(track) self._define_pose(target) if not _multipose_close(track, prev, center, atol=self._interpolation_delta): warnings.warn( "Syncer is out of sync with sensor data. Calling `syncer.clear()` to reset the syncer onto the sensor position. Raise this warning as an error to interupt operations.", SensorSyncWarning, stacklevel=3, ) self.clear() target = copy.deepcopy(target) prev = copy.deepcopy(prev) def step_toward_target(): if future.cancelled(): return if future.done(): return move_done = toward_func(target, prev) if move_done: future.set_result(move_done) self._update_previous_point(target) self._trajectory_task = step_toward_target self.last_future = future self.execute() return future
def _order_dict2list( order: List[LimbNumber], data: MultiPose ) -> List[XyzQuat[Flo3, Quaternion]]: """return List[XyzQuat[Flo3, Quaternion]] given the order""" return [XyzQuat(data[k].xyz, data[k].quat) for k in order] def _multipose_close( track: Set[int], a: MultiPose, b: MultiPose, atol: XyzQuat[float, float] ): """True if all tracked poses are close""" # print(a,b) for key in track: # print(key) close_enough = (a[key] - b[key]).close2zero(atol=atol) if not close_enough: return False return True