
* no static initialization of states anymore * make transition labels more descriptive * introduce labeled keys * define default transition keys * fix memory management * introduce service for transition graph * export transition keys * remove keys, transition id unique, label ambiguous * semicolon for macro call
149 lines
3.9 KiB
C
149 lines
3.9 KiB
C
// Copyright 2016 Open Source Robotics Foundation, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef RCL_LIFECYCLE__RCL_LIFECYCLE_H_
|
|
#define RCL_LIFECYCLE__RCL_LIFECYCLE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "rcl_lifecycle/data_types.h"
|
|
#include "rcl_lifecycle/default_state_machine.h"
|
|
#include "rcl_lifecycle/visibility_control.h"
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
rcl_lifecycle_state_t
|
|
rcl_lifecycle_get_zero_initialized_state();
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_state_init(
|
|
rcl_lifecycle_state_t * state,
|
|
unsigned int id,
|
|
const char * label,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_state_fini(
|
|
rcl_lifecycle_state_t * state,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
rcl_lifecycle_transition_t
|
|
rcl_lifecycle_get_zero_initialized_transition();
|
|
|
|
/// Initialize transition with existing states
|
|
/**
|
|
* Note: the transition pointer will take ownership
|
|
* of the start and goal state. When calling
|
|
* rcl_lifecycle_transition_fini(), the two states
|
|
* will be freed.
|
|
*/
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_transition_init(
|
|
rcl_lifecycle_transition_t * transition,
|
|
unsigned int id,
|
|
const char * label,
|
|
rcl_lifecycle_state_t * start,
|
|
rcl_lifecycle_state_t * goal,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_transition_fini(
|
|
rcl_lifecycle_transition_t * transition,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
rcl_lifecycle_state_machine_t
|
|
rcl_lifecycle_get_zero_initialized_state_machine();
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_state_machine_init(
|
|
rcl_lifecycle_state_machine_t * state_machine,
|
|
rcl_node_t * node_handle,
|
|
const rosidl_message_type_support_t * ts_pub_notify,
|
|
const rosidl_service_type_support_t * ts_srv_change_state,
|
|
const rosidl_service_type_support_t * ts_srv_get_state,
|
|
const rosidl_service_type_support_t * ts_srv_get_available_states,
|
|
const rosidl_service_type_support_t * ts_srv_get_available_transitions,
|
|
const rosidl_service_type_support_t * ts_srv_get_transition_graph,
|
|
bool default_states,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_state_machine_fini(
|
|
rcl_lifecycle_state_machine_t * state_machine,
|
|
rcl_node_t * node_handle,
|
|
const rcl_allocator_t * allocator);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_state_machine_is_initialized(
|
|
const rcl_lifecycle_state_machine_t * state_machine);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
const rcl_lifecycle_transition_t *
|
|
rcl_lifecycle_get_transition_by_id(
|
|
const rcl_lifecycle_state_t * state,
|
|
uint8_t id);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
const rcl_lifecycle_transition_t *
|
|
rcl_lifecycle_get_transition_by_label(
|
|
const rcl_lifecycle_state_t * state,
|
|
const char * label);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_trigger_transition_by_id(
|
|
rcl_lifecycle_state_machine_t * state_machine,
|
|
uint8_t id,
|
|
bool publish_notification);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
RCL_WARN_UNUSED
|
|
rcl_ret_t
|
|
rcl_lifecycle_trigger_transition_by_label(
|
|
rcl_lifecycle_state_machine_t * state_machine,
|
|
const char * label,
|
|
bool publish_notification);
|
|
|
|
RCL_LIFECYCLE_PUBLIC
|
|
void
|
|
rcl_print_state_machine(const rcl_lifecycle_state_machine_t * state_machine);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // extern "C"
|
|
|
|
#endif // RCL_LIFECYCLE__RCL_LIFECYCLE_H_
|