8#include <viam/sdk/common/pose.hpp>
9#include <viam/sdk/common/proto_value.hpp>
10#include <viam/sdk/common/utils.hpp>
11#include <viam/sdk/common/world_state.hpp>
12#include <viam/sdk/resource/resource_api.hpp>
13#include <viam/sdk/services/service.hpp>
14#include <viam/sdk/spatialmath/geometry.hpp>
119 using step = std::unordered_map<std::string, pose>;
138 friend bool operator==(
const plan& lhs,
const plan& rhs);
161 float line_tolerance_mm;
162 float orientation_tolerance_degs;
169 float orientation_tolerance_degs;
179 std::vector<allowed_frame_collisions> allows;
186 std::vector<linear_constraint> linear_constraints;
187 std::vector<orientation_constraint> orientation_constraints;
188 std::vector<collision_specification> collision_specifications;
202 const std::shared_ptr<WorldState>& world_state,
217 const std::shared_ptr<WorldState>& world_state,
219 const ProtoStruct& extra) = 0;
228 const pose& destination,
229 const Name& component_name,
230 const Name& slam_name,
232 const std::vector<GeometryConfig>& obstacles) {
245 const pose& destination,
246 const Name& component_name,
247 const Name& slam_name,
249 const std::vector<GeometryConfig>& obstacles,
250 const ProtoStruct& extra) = 0;
264 const boost::optional<double>& heading,
265 const Name& component_name,
266 const Name& movement_sensor_name,
267 const std::vector<geo_geometry>& obstacles,
269 const std::vector<geo_geometry>& bounding_regions) {
273 movement_sensor_name,
293 const boost::optional<double>& heading,
294 const Name& component_name,
295 const Name& movement_sensor_name,
296 const std::vector<geo_geometry>& obstacles,
298 const std::vector<geo_geometry>& bounding_regions,
299 const ProtoStruct& extra) = 0;
309 const Name& component_name,
310 const std::string& destination_frame,
311 const std::vector<WorldState::transform>& supplemental_transforms) {
312 return get_pose(component_name, destination_frame, supplemental_transforms, {});
324 const Name& component_name,
325 const std::string& destination_frame,
326 const std::vector<WorldState::transform>& supplemental_transforms,
327 const ProtoStruct& extra) = 0;
338 virtual void stop_plan(
const Name& component_name,
const ProtoStruct& extra) = 0;
356 const ProtoStruct& extra) = 0;
364 inline std::pair<plan_with_status, std::vector<plan_with_status>>
376 virtual std::pair<plan_with_status, std::vector<plan_with_status>>
386 return get_plan(component_name, execution_id, {});
397 const std::string& execution_id,
398 const ProtoStruct& extra) = 0;
408 const Name& component_name,
const std::string& execution_id) {
421 const Name& component_name,
const std::string& execution_id,
const ProtoStruct& extra) = 0;
452 const ProtoStruct& extra) = 0;
457 virtual ProtoStruct
do_command(
const ProtoStruct& command) = 0;
Definition resource_api.hpp:21
The Motion service coordinates motion planning across all components of a given robot....
Definition motion.hpp:68
pose_in_frame get_pose(const Name &component_name, const std::string &destination_frame, const std::vector< WorldState::transform > &supplemental_transforms)
Get the pose of any component on the robot.
Definition motion.hpp:308
API api() const override
Returns the API associated with a particular resource.
virtual std::vector< plan_status_with_id > list_plan_statuses(const ProtoStruct &extra)=0
Returns the status of plans created by MoveOnGlobe requests. Includes statuses of plans that are exec...
std::string move_on_map(const pose &destination, const Name &component_name, const Name &slam_name, const std::shared_ptr< motion_configuration > &motion_configuration, const std::vector< GeometryConfig > &obstacles)
Moves any component on the robot to a specific destination on a SLAM map.
Definition motion.hpp:227
bool move(const pose_in_frame &destination, const Name &name, const std::shared_ptr< WorldState > &world_state, const std::shared_ptr< constraints > &constraints)
Moves any compononent on the robot to a specified destination.
Definition motion.hpp:200
std::string move_on_globe(const geo_point &destination, const boost::optional< double > &heading, const Name &component_name, const Name &movement_sensor_name, const std::vector< geo_geometry > &obstacles, const std::shared_ptr< motion_configuration > &motion_configuration, const std::vector< geo_geometry > &bounding_regions)
Moves any component on the robot to a specific destination on a globe.
Definition motion.hpp:262
void stop_plan(const Name &component_name)
Stop a currently executing motion plan.
Definition motion.hpp:331
virtual std::pair< plan_with_status, std::vector< plan_with_status > > get_plan_with_replan_history(const Name &component_name, const std::string &execution_id, const ProtoStruct &extra)=0
Returns the plan, state history, and replan history of the requested plan. Returns a result if the la...
plan_with_status get_plan(const Name &component_name, const std::string &execution_id)
Returns the plan and state history of the requested plan. Returns a result if the last execution is s...
Definition motion.hpp:385
virtual plan_with_status get_plan(const Name &component_name, const std::string &execution_id, const ProtoStruct &extra)=0
Returns the plan and state history of the requested plan. Returns a result if the last execution is s...
virtual pose_in_frame get_pose(const Name &component_name, const std::string &destination_frame, const std::vector< WorldState::transform > &supplemental_transforms, const ProtoStruct &extra)=0
Get the pose of any component on the robot.
plan_state
Describes the possible states a plan can be in.
Definition motion.hpp:73
std::pair< plan_with_status, std::vector< plan_with_status > > get_latest_plan_with_replan_history(Name component_name)
Returns the plan, state history, and replan history of the most recent execution to move a component....
Definition motion.hpp:365
virtual std::string move_on_map(const pose &destination, const Name &component_name, const Name &slam_name, const std::shared_ptr< motion_configuration > &motion_configuration, const std::vector< GeometryConfig > &obstacles, const ProtoStruct &extra)=0
Moves any component on the robot to a specific destination on a SLAM map.
std::pair< plan_with_status, std::vector< plan_with_status > > get_plan_with_replan_history(const Name &component_name, const std::string &execution_id)
Returns the plan, state history, and replan history of the requested plan. Returns a result if the la...
Definition motion.hpp:407
virtual std::vector< plan_status_with_id > list_active_plan_statuses(const ProtoStruct &extra)=0
Returns the status of currently active plans created by MoveOnGlobe requests. Includes statuses of pl...
std::vector< plan_status_with_id > list_plan_statuses()
Returns the status of plans created by MoveOnGlobe requests. Includes statuses of plans that are exec...
Definition motion.hpp:427
virtual void stop_plan(const Name &component_name, const ProtoStruct &extra)=0
Stop a currently executing motion plan.
plan_with_status get_latest_plan(const Name &component_name)
Returns the plan and state history of the most recent execution to move a component....
Definition motion.hpp:345
virtual std::pair< plan_with_status, std::vector< plan_with_status > > get_latest_plan_with_replan_history(const Name &component_name, const ProtoStruct &extra)=0
Returns the plan, state history, and replan history of the most recent execution to move a component....
virtual ProtoStruct do_command(const ProtoStruct &command)=0
Send/receive arbitrary commands to the resource.
std::unordered_map< std::string, pose > step
An individual "step", representing the state each component (keyed as a fully qualified component nam...
Definition motion.hpp:119
virtual plan_with_status get_latest_plan(const Name &component_name, const ProtoStruct &extra)=0
Returns the plan and state history of the most recent execution to move a component....
virtual bool move(const pose_in_frame &destination, const Name &name, const std::shared_ptr< WorldState > &world_state, const std::shared_ptr< constraints > &constraints, const ProtoStruct &extra)=0
Moves any compononent on the robot to a specified destination.
std::vector< plan_status_with_id > list_active_plan_statuses()
Returns the status of currently active plans created by MoveOnGlobe requests. Includes statuses of pl...
Definition motion.hpp:442
virtual std::string move_on_globe(const geo_point &destination, const boost::optional< double > &heading, const Name &component_name, const Name &movement_sensor_name, const std::vector< geo_geometry > &obstacles, const std::shared_ptr< motion_configuration > &motion_configuration, const std::vector< geo_geometry > &bounding_regions, const ProtoStruct &extra)=0
Moves any component on the robot to a specific destination on a globe.
A name for specific instances of resources.
Definition resource_api.hpp:61
virtual std::string name() const
Return the resource's name.
Definition service.hpp:10
Definition resource_api.hpp:46
Definition motion.hpp:175
used to selectively apply obstacle avoidance to specific parts of the robot.
Definition motion.hpp:174
Specifies all constraints to be passed to Viam's motion planning, along with any optional parameters.
Definition motion.hpp:185
Specifies that the component being moved should move linearly to its goal.
Definition motion.hpp:160
Specifies that the component being moved will not deviate its orientation beyond the specified thresh...
Definition motion.hpp:168
The motion plan status, plus plan ID, component name, and execution ID.
Definition motion.hpp:100
plan_status status
The plan status.
Definition motion.hpp:111
Name component_name
The component to be moved. Used for tracking and stopping.
Definition motion.hpp:105
std::string execution_id
The unique ID which identifies the plan execution.
Definition motion.hpp:108
std::string plan_id
The unique ID of the plan.
Definition motion.hpp:102
Describes the state of a given plan at a point in time.
Definition motion.hpp:83
plan_state state
The state of the plan execution.
Definition motion.hpp:85
time_pt timestamp
The time the executing plan transitioned to the state.
Definition motion.hpp:88
boost::optional< std::string > reason
The reason for the state change. The error message if the plan failed, or the re-plan reason if re-pl...
Definition motion.hpp:92
Describes a plan, its current status, and all status changes that have occurred previously on that pl...
Definition motion.hpp:145
plan_status status
The current status of the plan.
Definition motion.hpp:150
std::vector< plan_status > status_history
The prior status changes that have happened during plan execution.
Definition motion.hpp:153
Describes a motion plan.
Definition motion.hpp:124
Name component_name
The component requested to be moved. Used for tracking and stopping.
Definition motion.hpp:129
std::string id
The plan's unique ID.
Definition motion.hpp:126
std::string execution_id
The unique ID which identifies the execution. Multiple plans can share the same execution_id if they ...
Definition motion.hpp:133
std::vector< step > steps
An ordered list of plan steps.
Definition motion.hpp:136
Definition geometry.hpp:79
Defines configuration options for certain Motion APIs.
Definition motion.hpp:36
boost::optional< double > angular_degs_per_sec
Optional angular velocity to target when turning.
Definition motion.hpp:53
std::vector< obstacle_detector > obstacle_detectors
The obstacle detectors to be used for the API call.
Definition motion.hpp:38
boost::optional< double > linear_m_per_sec
Optional linear velocity to target when moving.
Definition motion.hpp:50
boost::optional< double > position_polling_frequency_hz
If not null, sets the frequency to poll for the position of the robot.
Definition motion.hpp:41
boost::optional< double > plan_deviation_m
Optional distance in meters a robot is allowed to deviate from the motion plan.
Definition motion.hpp:47
boost::optional< double > obstacle_polling_frequency_hz
If not null, sets the frequency to poll the vision service(s) for new obstacles.
Definition motion.hpp:44
Name camera
The name of the camera component to be used for obstacle detection.
Definition motion.hpp:27
Name vision_service
The name of the vision service to be used for obstacle detection.
Definition motion.hpp:25