Apollo 11.0
自动驾驶开放平台
emergency_stop_scenario.cc
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2019 The Apollo Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *****************************************************************************/
16
22
23#include "cyber/common/log.h"
26
27namespace apollo {
28namespace planning {
29
30bool EmergencyStopScenario::Init(std::shared_ptr<DependencyInjector> injector,
31 const std::string& name) {
32 if (init_) {
33 return true;
34 }
35
36 if (!Scenario::Init(injector, name)) {
37 AERROR << "failed to init scenario" << Name();
38 return false;
39 }
40
41 if (!Scenario::LoadConfig<apollo::planning::ScenarioEmergencyStopConfig>(
42 &context_.scenario_config)) {
43 AERROR << "fail to get config of scenario" << Name();
44 return false;
45 }
46
47 init_ = true;
48 return true;
49}
50
51bool EmergencyStopScenario::IsTransferable(const Scenario* const other_scenario,
52 const Frame& frame) {
53 const auto& pad_msg_driving_action = frame.GetPadMsgDrivingAction();
54 if (pad_msg_driving_action == PadMessage::STOP) {
55 return true;
56 }
57 return false;
58}
59
61 const common::TrajectoryPoint& planning_init_point, Frame* frame) {
62 ScenarioResult stage_result;
63 if (frame->reference_line_info().empty()) {
65 "Reference line is empty!");
66 AERROR << "Reference line is empty in EmergencyStopScenario!";
67 return stage_result;
68 }
69 return Scenario::Process(planning_init_point, frame);
70}
71
73 auto* emergency_stop = injector_->planning_context()
74 ->mutable_planning_status()
75 ->mutable_emergency_stop();
76 emergency_stop->Clear();
77 return true;
78}
79
80} // namespace planning
81} // namespace apollo
bool IsTransferable(const Scenario *const other_scenario, const Frame &frame) override
Each scenario should define its own transfer condition, i.e., when it should allow to transfer from o...
ScenarioResult Process(const common::TrajectoryPoint &planning_init_point, Frame *frame) override
bool Init(std::shared_ptr< DependencyInjector > injector, const std::string &name) override
Frame holds all data for one planning cycle.
Definition frame.h:62
const PadMessage::DrivingAction & GetPadMsgDrivingAction() const
Definition frame.h:173
const std::list< ReferenceLineInfo > & reference_line_info() const
Definition frame.cc:123
const ScenarioResult & SetStageResult(const StageResult &stage_result)
Set the stage status.
virtual ScenarioResult Process(const common::TrajectoryPoint &planning_init_point, Frame *frame)
Definition scenario.cc:86
virtual bool Init(std::shared_ptr< DependencyInjector > injector, const std::string &name)
Definition scenario.cc:43
std::shared_ptr< DependencyInjector > injector_
Definition scenario.h:113
const std::string & Name() const
Definition scenario.h:98
Planning module main class.
#define AERROR
Definition log.h:44
class register implement
Definition arena_queue.h:37