FastDeploy  latest
Fast & Easy to Deploy!
plugin_create.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <string>
18 #include <unordered_map>
19 
20 namespace baidu {
21 namespace mirana {
22 namespace poros {
23 
24 class IPlugin {
25  public:
26  virtual ~IPlugin() {}
27  virtual const std::string who_am_i() = 0;
28 };
29 
30 typedef IPlugin* (*plugin_creator_t)();
31 typedef std::unordered_map<std::string, plugin_creator_t> plugin_creator_map_t;
32 
33 IPlugin* create_plugin(const std::string& plugin_name);
34 IPlugin* create_plugin(const std::string& plugin_name,
35  const plugin_creator_map_t& plugin_creator_map);
36 
37 void create_all_plugins(const plugin_creator_map_t& plugin_creator_map,
38  std::unordered_map<std::string, IPlugin*>& plugin_m);
39 // void create_all_plugins(std::unordered_map<std::string, IPlugin*>& plugin_m);
40 
41 template <typename PluginType> IPlugin* default_plugin_creator() {
42  return new (std::nothrow) PluginType;
43 }
44 
45 void register_plugin_creator(const std::string& plugin_name,
46  plugin_creator_t creator);
47 void register_plugin_creator(const std::string& plugin_name,
48  plugin_creator_t creator,
49  plugin_creator_map_t& plugin_creator_map);
50 
51 template <typename PluginType>
52 void register_plugin_class(const std::string& plugin_name) {
53  return register_plugin_creator(plugin_name,
54  default_plugin_creator<PluginType>);
55 }
56 
57 // This version is recommended
58 template <typename PluginType>
59 void register_plugin_class(const std::string& plugin_name,
60  plugin_creator_map_t& plugin_creator_map) {
61  return register_plugin_creator(
62  plugin_name, default_plugin_creator<PluginType>, plugin_creator_map);
63 }
64 
65 } // namespace poros
66 } // namespace mirana
67 } // namespace baidu
68 
69 /* vim: set ts=4 sw=4 sts=4 tw=100 */
Definition: compile.h:26