Apollo 10.0
自动驾驶开放平台
traffic_rule.h
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2017 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
21#pragma once
22
23#include <memory>
24#include <string>
25
26#include <cxxabi.h>
27
33
34namespace apollo {
35namespace planning {
36
38 public:
40
41 virtual ~TrafficRule() = default;
42
43 virtual bool Init(const std::string& name,
44 const std::shared_ptr<DependencyInjector>& injector);
45
47 Frame* const frame, ReferenceLineInfo* const reference_line_info) = 0;
48
49 virtual void Reset() = 0;
50
51 std::string Getname() { return name_; }
52
53 protected:
54 template <typename T>
55 bool LoadConfig(T* config);
56
57 std::shared_ptr<DependencyInjector> injector_;
58
59 std::string config_path_;
60 std::string name_;
61};
62
63template <typename T>
64bool TrafficRule::LoadConfig(T* config) {
65 CHECK_NOTNULL(config);
66 if (!apollo::cyber::common::LoadConfig<T>(config_path_, config)) {
67 AERROR << "Failed to load default config file" << config_path_;
68 return false;
69 }
70 return true;
71}
72} // namespace planning
73} // namespace apollo
A general class to denote the return status of an API call.
Definition status.h:43
Frame holds all data for one planning cycle.
Definition frame.h:62
ReferenceLineInfo holds all data for one reference line.
virtual ~TrafficRule()=default
virtual bool Init(const std::string &name, const std::shared_ptr< DependencyInjector > &injector)
virtual common::Status ApplyRule(Frame *const frame, ReferenceLineInfo *const reference_line_info)=0
std::shared_ptr< DependencyInjector > injector_
Planning module main class.
#define AERROR
Definition log.h:44
class register implement
Definition arena_queue.h:37