Apollo 10.0
自动驾驶开放平台
emergency_pull_over_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 <memory>
24
25#include "cyber/common/log.h"
29
30namespace apollo {
31namespace planning {
32
34 std::shared_ptr<DependencyInjector> injector, const std::string& name) {
35 if (init_) {
36 return true;
37 }
38
39 if (!Scenario::Init(injector, name)) {
40 AERROR << "failed to init scenario" << Name();
41 return false;
42 }
43
44 if (!Scenario::LoadConfig<ScenarioEmergencyPullOverConfig>(
45 &context_.scenario_config)) {
46 AERROR << "fail to get config of scenario" << Name();
47 return false;
48 }
49
50 init_ = true;
51 return true;
52}
53
55 const Scenario* const other_scenario, const Frame& frame) {
56 if (frame.reference_line_info().empty()) {
57 return false;
58 }
59 const auto& pad_msg_driving_action = frame.GetPadMsgDrivingAction();
60 if (pad_msg_driving_action == PadMessage::PULL_OVER) {
61 return true;
62 }
63 return false;
64}
65
67 injector_->planning_context()->mutable_planning_status()->clear_pull_over();
68 return true;
69}
70
72 auto* pull_over = injector_->planning_context()
73 ->mutable_planning_status()
74 ->mutable_pull_over();
75 pull_over->set_pull_over_type(PullOverStatus::EMERGENCY_PULL_OVER);
76 return true;
77}
78
79} // namespace planning
80} // namespace apollo
bool Init(std::shared_ptr< DependencyInjector > injector, const std::string &name) override
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...
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
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