15 #ifndef OPENSCENARIO_INTERPRETER__OPENSCENARIO_INTERPRETER_HPP_
16 #define OPENSCENARIO_INTERPRETER__OPENSCENARIO_INTERPRETER_HPP_
19 #include <lifecycle_msgs/msg/state.hpp>
20 #include <lifecycle_msgs/msg/transition.hpp>
29 #include <openscenario_interpreter_msgs/msg/context.hpp>
30 #include <rclcpp/rclcpp.hpp>
31 #include <rclcpp_lifecycle/lifecycle_node.hpp>
34 #include <tier4_simulation_msgs/msg/user_defined_value.hpp>
37 #define INTERPRETER_INFO_STREAM(...) \
38 RCLCPP_INFO_STREAM(get_logger(), "\x1b[32m" << __VA_ARGS__ << "\x1b[0m")
42 #define INTERPRETER_ERROR_STREAM(...) \
43 RCLCPP_INFO_STREAM(get_logger(), "\x1b[1;31m" << __VA_ARGS__ << "\x1b[0m")
52 static inline constexpr std::chrono::seconds simulator_core_shutdown_threshold{30};
54 using Context = openscenario_interpreter_msgs::msg::Context;
56 const rclcpp_lifecycle::LifecyclePublisher<Context>::SharedPtr publisher_of_context;
58 rclcpp_lifecycle::LifecyclePublisher<tier4_simulation_msgs::msg::UserDefinedValue>::SharedPtr
59 evaluate_time_publisher;
61 rclcpp_lifecycle::LifecyclePublisher<tier4_simulation_msgs::msg::UserDefinedValue>::SharedPtr
62 update_time_publisher;
64 rclcpp_lifecycle::LifecyclePublisher<tier4_simulation_msgs::msg::UserDefinedValue>::SharedPtr
65 output_time_publisher;
67 double local_frame_rate;
69 double local_real_time_factor;
75 bool publish_empty_context;
83 std::shared_ptr<OpenScenario> script;
85 std::list<std::shared_ptr<ScenarioDefinition>> scenarios;
87 std::shared_ptr<rclcpp::TimerBase> timer;
91 std::variant<common::junit::Pass, common::junit::Failure, common::junit::Error> result;
95 using Result = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
109 auto on_activate(
const rclcpp_lifecycle::State &) -> Result
override;
111 auto on_cleanup(
const rclcpp_lifecycle::State &) -> Result
override;
113 auto on_configure(
const rclcpp_lifecycle::State &) -> Result
override;
115 auto on_deactivate(
const rclcpp_lifecycle::State &) -> Result
override;
117 auto on_error(
const rclcpp_lifecycle::State &) -> Result
override;
119 auto on_shutdown(
const rclcpp_lifecycle::State &) -> Result
override;
123 auto reset() -> void;
125 template <
typename T,
typename... Ts>
128 result = T(std::forward<decltype(
xs)>(
xs)...);
130 results.
name = std::filesystem::path(osc_path).parent_path().parent_path().string();
132 const auto suite_name = std::filesystem::path(osc_path).parent_path().filename().string();
134 const auto case_name = std::filesystem::path(osc_path).stem().string();
139 results.
testsuite(suite_name).testcase(case_name).pass.push_back(it);
142 results.
testsuite(suite_name).testcase(case_name).failure.push_back(it);
145 results.
testsuite(suite_name).testcase(case_name).error.push_back(it);
149 results.
write_to((std::filesystem::path(output_directory) /
"result.junit.xml").c_str(),
" ");
151 execution_timer.
save(std::filesystem::path(output_directory) /
"execution_timer.json");
154 template <
typename ExceptionHandler,
typename Thunk>
163 set<common::junit::Pass>();
164 return handle(action);
169 set<common::junit::Failure>(
"SimulationFailure", action.what());
170 return handle(action);
173 catch (
const AutowareError & error) {
174 set<common::junit::Error>(
"AutowareError", error.what());
175 return handle(error);
178 catch (
const SemanticError & error) {
179 set<common::junit::Error>(
"SemanticError", error.what());
180 return handle(error);
183 catch (
const SimulationError & error) {
184 set<common::junit::Error>(
"SimulationError", error.what());
185 return handle(error);
188 catch (
const SyntaxError & error) {
189 set<common::junit::Error>(
"SyntaxError", error.what());
190 return handle(error);
193 catch (
const std::exception & error)
195 set<common::junit::Error>(
"InternalError", error.what());
196 return handle(error);
201 set<common::junit::Error>(
"UnknownError",
"An unknown exception has occurred");
Definition: openscenario_interpreter.hpp:50
auto on_error(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:313
auto currentLocalFrameRate() const -> std::chrono::milliseconds
Definition: openscenario_interpreter.cpp:72
auto on_cleanup(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:306
auto on_shutdown(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:320
auto makeCurrentConfiguration() const -> traffic_simulator::Configuration
Definition: openscenario_interpreter.cpp:82
auto publishCurrentContext() const -> void
Definition: openscenario_interpreter.cpp:330
auto withExceptionHandler(ExceptionHandler &&handle, Thunk &&thunk) -> decltype(auto)
Definition: openscenario_interpreter.hpp:155
auto on_activate(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:153
OPENSCENARIO_INTERPRETER_PUBLIC Interpreter(const rclcpp::NodeOptions &)
Definition: openscenario_interpreter.cpp:38
auto on_deactivate(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:299
auto set(Ts &&... xs) -> void
Definition: openscenario_interpreter.hpp:126
auto currentScenarioDefinition() const -> const std::shared_ptr< ScenarioDefinition > &
Definition: openscenario_interpreter.cpp:77
~Interpreter() override
Definition: openscenario_interpreter.cpp:70
auto on_configure(const rclcpp_lifecycle::State &) -> Result override
Definition: openscenario_interpreter.cpp:99
auto reset() -> void
Definition: openscenario_interpreter.cpp:348
Definition: simulator_core.hpp:548
Definition: simulator_core.hpp:649
Definition: custom_command_action.hpp:38
Definition: execution_timer.hpp:40
auto save(const std::filesystem::path &output_file) -> void
Definition: execution_timer.hpp:60
std::string String
Definition: string.hpp:24
constexpr auto overload(Ts &&... xs) -> typename utility::overloaded< typename std::decay< Ts >::type... >
Definition: overload.hpp:51
Definition: junit5.hpp:25
#define OPENSCENARIO_INTERPRETER_PUBLIC
Definition: visibility.hpp:49
Definition: junit5.hpp:88
Definition: junit5.hpp:51
Definition: junit5.hpp:34
Definition: junit5.hpp:336
xs::string name
Definition: junit5.hpp:337
auto write_to(Ts &&... xs) const
Definition: junit5.hpp:381
auto testsuite(const xs::string &name) -> auto &
Definition: junit5.hpp:341
Definition: custom_command_action.hpp:32
Definition: configuration.hpp:30