Files
doris/be/src/plugin/plugin_mgr.h
Seaven 8426669472 [Plugin] Add BE plugin framework (#2348) (#2618)
Support BE plugin framework, include:

* update Plugin Manager, support Plugin find method
* support Builtin-Plugin register method

* plugin install/uninstall process
	* PluginLoader:
		* dynamic install and check Plugin .so file
		* dynamic uninstall and check Plugin status
	* PluginZip:
		* support plugin remote/local .zip file download and extract

TODO:

* We should support a PluginContext to transmit necessary system variable when the plugin's init/close method invoke

* Add the entry which is BE dynamic Plugin install/uninstall process, include:
	* The FE send install/uninstall Plugin statement (RPC way)
	* The FE meta update request with Plugin list information
	* The FE operation request(update/query) with Plugin (maybe don't need)

* Add the plugin status upload way
* Load already install Plugin when BE start
2020-03-25 21:55:44 +08:00

70 lines
2.0 KiB
C++

// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef DORIS_BE_PLUGIN_PLUGIN_MGR_H
#define DORIS_BE_PLUGIN_PLUGIN_MGR_H
#include <string>
#include <unordered_map>
#include <memory>
#include <mutex>
#include "gen_cpp/MasterService_types.h"
#include "gen_cpp/AgentService_types.h"
#include "common/status.h"
#include "plugin/plugin_loader.h"
#include "plugin/plugin.h"
namespace doris {
typedef std::unordered_map<std::string, std::unique_ptr<PluginLoader>> PluginLoaderMap;
class PluginMgr {
public:
PluginMgr() {}
~PluginMgr() {}
Status install_plugin(const TPluginMetaInfo& info);
Status uninstall_plugin(const TPluginMetaInfo& info);
Status register_builtin_plugin(const std::string& name, int type, const Plugin* plugin);
Status get_plugin(const std::string& name, int type, std::shared_ptr<Plugin>* plugin);
Status get_plugin(const std::string& name, std::shared_ptr<Plugin>* plugin);
Status get_plugin_list(int type, std::vector<std::shared_ptr<Plugin>>* plugin_list);
Status get_all_plugin_info(std::vector<TPluginInfo>* plugin_info_list);
private:
PluginLoaderMap _plugins[PLUGIN_TYPE_MAX];
std::mutex _lock;
};
}
#endif // DORIS_BE_PLUGIN_PLUGIN_LOADER_H