Apollo 10.0
自动驾驶开放平台
plugin_description.h
浏览该文件的文档.
1/******************************************************************************
2 * Copyright 2023 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#pragma once
17#include <map>
18#include <string>
19
20namespace apollo {
21namespace cyber {
22namespace plugin_manager {
23
24// plugin description struct
26 public:
27 std::string name_;
29 std::string description_path_;
31 std::string library_path_;
33
34 std::map<std::string, std::string> class_name_base_class_name_map_;
35
37 explicit PluginDescription(const std::string& name);
38 PluginDescription(const std::string& name,
39 const std::string& description_index_path,
40 const std::string& description_path,
41 const std::string& actual_description_path,
42 const std::string& library_path,
43 const std::string& actual_library_path);
44
51 bool ParseFromIndexFile(const std::string& file_path);
52
59 bool ParseFromDescriptionFile(const std::string& file_path);
60};
61
62} // namespace plugin_manager
63} // namespace cyber
64} // namespace apollo
bool ParseFromIndexFile(const std::string &file_path)
parse plugin description metadata from plugin index file
std::map< std::string, std::string > class_name_base_class_name_map_
bool ParseFromDescriptionFile(const std::string &file_path)
parse plugin description metadata from plugin description file
class register implement
Definition arena_queue.h:37