6 Star 46 Fork 28

Hyperledger/fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pluginfactory.go 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package factory
import (
"errors"
"fmt"
"os"
"plugin"
"github.com/hyperledger/fabric/bccsp"
)
const (
// PluginFactoryName is the factory name for BCCSP plugins
PluginFactoryName = "PLUGIN"
)
// PluginOpts contains the options for the PluginFactory
type PluginOpts struct {
// Path to plugin library
Library string
// Config map for the plugin library
Config map[string]interface{}
}
// PluginFactory is the factory for BCCSP plugins
type PluginFactory struct{}
// Name returns the name of this factory
func (f *PluginFactory) Name() string {
return PluginFactoryName
}
// Get returns an instance of BCCSP using Opts.
func (f *PluginFactory) Get(config *FactoryOpts) (bccsp.BCCSP, error) {
// check for valid config
if config == nil || config.PluginOpts == nil {
return nil, errors.New("Invalid config. It must not be nil.")
}
// Library is required property
if config.PluginOpts.Library == "" {
return nil, errors.New("Invalid config: missing property 'Library'")
}
// make sure the library exists
if _, err := os.Stat(config.PluginOpts.Library); err != nil {
return nil, fmt.Errorf("Could not find library '%s' [%s]", config.PluginOpts.Library, err)
}
// attempt to load the library as a plugin
plug, err := plugin.Open(config.PluginOpts.Library)
if err != nil {
return nil, fmt.Errorf("Failed to load plugin '%s' [%s]", config.PluginOpts.Library, err)
}
// lookup the required symbol 'New'
sym, err := plug.Lookup("New")
if err != nil {
return nil, fmt.Errorf("Could not find required symbol 'CryptoServiceProvider' [%s]", err)
}
// check to make sure symbol New meets the required function signature
new, ok := sym.(func(config map[string]interface{}) (bccsp.BCCSP, error))
if !ok {
return nil, fmt.Errorf("Plugin does not implement the required function signature for 'New'")
}
return new(config.PluginOpts.Config)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyperledger/fabric.git
git@gitee.com:hyperledger/fabric.git
hyperledger
fabric
fabric
v1.4.6

搜索帮助