Apollo 10.0
自动驾驶开放平台
task.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
37class Task {
38 public:
39 Task();
40
41 virtual ~Task() = default;
42
43 const std::string& Name() const;
44
45 virtual bool Init(const std::string& config_dir, const std::string& name,
46 const std::shared_ptr<DependencyInjector>& injector);
47
48 virtual common::Status Execute(Frame* frame,
49 ReferenceLineInfo* reference_line_info);
50
51 virtual common::Status Execute(Frame* frame);
52
53 protected:
54 template <typename T>
55 bool LoadConfig(T* config);
56
59 std::shared_ptr<DependencyInjector> injector_;
60
61 std::string config_path_;
63 std::string name_;
64};
65
66template <typename T>
71
72} // namespace planning
73} // namespace apollo
A general class to denote the return status of an API call.
Definition status.h:43
static bool LoadMergedConfig(const std::string &default_config_path, const std::string &config_path, T *config)
Load the config and merge the default and user defined config.
Definition config_util.h:76
Frame holds all data for one planning cycle.
Definition frame.h:62
ReferenceLineInfo holds all data for one reference line.
std::string config_path_
Definition task.h:61
const std::string & Name() const
Definition task.cc:58
bool LoadConfig(T *config)
Definition task.h:67
std::shared_ptr< DependencyInjector > injector_
Definition task.h:59
ReferenceLineInfo * reference_line_info_
Definition task.h:58
std::string name_
Definition task.h:63
virtual ~Task()=default
virtual bool Init(const std::string &config_dir, const std::string &name, const std::shared_ptr< DependencyInjector > &injector)
Definition task.cc:40
std::string default_config_path_
Definition task.h:62
virtual common::Status Execute(Frame *frame, ReferenceLineInfo *reference_line_info)
Definition task.cc:60
Planning module main class.
class register implement
Definition arena_queue.h:37