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
use crate::utils::find_nodes; use arci::JointTrajectoryClient; use async_trait::async_trait; use std::sync::Arc; pub struct ChainWrapper { joint_names: Vec<String>, full_chain: Arc<k::Chain<f64>>, nodes: Vec<k::Node<f64>>, } impl ChainWrapper { pub fn new(joint_names: Vec<String>, full_chain: Arc<k::Chain<f64>>) -> Self { let nodes = find_nodes(&joint_names, full_chain.as_ref()).unwrap(); Self { joint_names, full_chain, nodes, } } } #[async_trait] impl JointTrajectoryClient for ChainWrapper { fn joint_names(&self) -> &[String] { &self.joint_names } fn current_joint_positions(&self) -> Result<Vec<f64>, arci::Error> { self.full_chain.update_transforms(); let mut positions = vec![0.0; self.joint_names.len()]; for (index, node) in self.nodes.iter().enumerate() { positions[index] = node .joint_position() .ok_or_else(|| anyhow::anyhow!("No joint_position for joint={}", node))?; } Ok(positions) } async fn send_joint_positions( &self, positions: Vec<f64>, _duration: std::time::Duration, ) -> Result<(), arci::Error> { for (index, node) in self.nodes.iter().enumerate() { node.set_joint_position_clamped(positions[index]); } self.full_chain.update_transforms(); Ok(()) } async fn send_joint_trajectory( &self, trajectory: Vec<arci::TrajectoryPoint>, ) -> Result<(), arci::Error> { if let Some(last_point) = trajectory.last() { self.send_joint_positions(last_point.positions.clone(), last_point.time_from_start) .await?; } Ok(()) } }