ros_functions.cpp
Go to the documentation of this file.
1 //
2 // Created by nakakura on 22/09/04.
3 //
4 
5 #include "ros_functions.h"
6 
7 #include "rust_functions.h"
8 
9 // Rust側から呼び出されるC++側関数の実体
10 extern "C" {
11 // loggers
12 void log_debug_c(char* message) {
13  ROS_DEBUG("%s", message);
14  release_string(message);
15 }
16 void log_info_c(char* message) {
17  ROS_INFO("%s", message);
18  release_string(message);
19 }
20 void log_warn_c(char* message) {
21  ROS_WARN("%s", message);
22  release_string(message);
23 }
24 void log_err_c(char* message) {
25  ROS_ERROR("%s", message);
26  release_string(message);
27 }
28 
29 // ros control functions
30 bool is_ok_c() { return ros::ok(); }
32 void ros_sleep_c(double dur) { ros::Duration(dur).sleep(); }
35 }
shutdown_c
void shutdown_c()
Definition: ros_functions.cpp:34
log_err_c
void log_err_c(char *message)
Definition: ros_functions.cpp:24
release_string
void release_string(char *message)
ros::shutdown
ROSCPP_DECL void shutdown()
ros_functions.h
ros::ok
ROSCPP_DECL bool ok()
wait_for_shutdown_c
void wait_for_shutdown_c()
Definition: ros_functions.cpp:33
ROS_DEBUG
#define ROS_DEBUG(...)
ros_sleep_c
void ros_sleep_c(double dur)
Definition: ros_functions.cpp:32
ROS_WARN
#define ROS_WARN(...)
log_info_c
void log_info_c(char *message)
Definition: ros_functions.cpp:16
rust_functions.h
log_warn_c
void log_warn_c(char *message)
Definition: ros_functions.cpp:20
is_ok_c
bool is_ok_c()
Definition: ros_functions.cpp:30
ros::waitForShutdown
ROSCPP_DECL void waitForShutdown()
ROS_ERROR
#define ROS_ERROR(...)
log_debug_c
void log_debug_c(char *message)
Definition: ros_functions.cpp:12
ros::isShuttingDown
ROSCPP_DECL bool isShuttingDown()
ros::Duration::sleep
bool sleep() const
ROS_INFO
#define ROS_INFO(...)
ros::Duration
is_shutting_down_c
bool is_shutting_down_c()
Definition: ros_functions.cpp:31


skyway
Author(s): Toshiya Nakakura
autogenerated on Thu Oct 26 2023 02:42:21