代码拉取完成,页面将自动刷新
/*
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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。