plugeth/plugins/plugin_loader.go

176 lines
4.4 KiB
Go
Raw Normal View History

2021-03-15 20:02:37 +00:00
package plugins
import (
"github.com/openrelayxyz/plugeth-utils/core"
2021-03-15 20:02:37 +00:00
"flag"
"fmt"
2021-03-15 20:02:37 +00:00
"io/ioutil"
"path"
"plugin"
2021-06-25 19:57:24 +00:00
"reflect"
"strings"
2021-03-15 20:02:37 +00:00
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"gopkg.in/urfave/cli.v1"
)
2021-03-15 20:02:37 +00:00
type Subcommand func(*cli.Context, []string) error
type PluginLoader struct {
Plugins []*plugin.Plugin
2021-03-15 20:02:37 +00:00
Subcommands map[string]Subcommand
Flags []*flag.FlagSet
LookupCache map[string][]interface{}
}
func (pl *PluginLoader) Lookup(name string, validate func(interface{}) bool) []interface{} {
if v, ok := pl.LookupCache[name]; ok {
return v
}
results := []interface{}{}
for _, plugin := range pl.Plugins {
if v, err := plugin.Lookup(name); err == nil {
if validate(v) {
results = append(results, v)
}
}
}
pl.LookupCache[name] = results
return results
}
func Lookup(name string, validate func(interface{}) bool) []interface{} {
if DefaultPluginLoader == nil {
log.Warn("Lookup attempted, but PluginLoader is not initialized", "name", name)
return []interface{}{}
}
return DefaultPluginLoader.Lookup(name, validate)
2021-03-15 20:02:37 +00:00
}
var DefaultPluginLoader *PluginLoader
2021-03-15 20:02:37 +00:00
func NewPluginLoader(target string) (*PluginLoader, error) {
pl := &PluginLoader{
Plugins: []*plugin.Plugin{},
2021-03-15 20:02:37 +00:00
Subcommands: make(map[string]Subcommand),
Flags: []*flag.FlagSet{},
LookupCache: make(map[string][]interface{}),
2021-03-15 20:02:37 +00:00
}
files, err := ioutil.ReadDir(target)
if err != nil {
log.Warn("Could not load plugins directory. Skipping.", "path", target)
return pl, nil
}
for _, file := range files {
fpath := path.Join(target, file.Name())
if !strings.HasSuffix(file.Name(), ".so") {
log.Debug("File inplugin directory is not '.so' file. Skipping.", "file", fpath)
2021-03-15 20:02:37 +00:00
continue
}
plug, err := plugin.Open(fpath)
if err != nil {
log.Warn("File in plugin directory could not be loaded: %v", "file", fpath, "error", err.Error())
continue
}
// Any type of plugin can potentially specify flags
f, err := plug.Lookup("Flags")
if err == nil {
flagset, ok := f.(*flag.FlagSet)
if !ok {
log.Warn("Found plugin.Flags, but it its not a *FlagSet", "file", fpath)
} else {
pl.Flags = append(pl.Flags, flagset)
}
}
sb, err := plug.Lookup("Subcommands")
if err == nil {
2021-06-25 19:57:24 +00:00
subcommands, ok := sb.(*map[string]func(*cli.Context, []string) error)
2021-03-15 20:02:37 +00:00
if !ok {
2021-06-25 19:57:24 +00:00
log.Warn("Could not cast plugin.Subcommands to `map[string]func(*cli.Context, []string) error`", "file", fpath, "type", reflect.TypeOf(sb))
} else {
2021-06-25 19:57:24 +00:00
for k, v := range *subcommands {
if _, ok := pl.Subcommands[k]; ok {
log.Warn("Subcommand redeclared", "file", fpath, "subcommand", k)
}
pl.Subcommands[k] = v
}
2021-03-15 20:02:37 +00:00
}
}
pl.Plugins = append(pl.Plugins, plug)
2021-03-15 20:02:37 +00:00
}
return pl, nil
}
2021-07-12 19:45:42 +00:00
func Initialize(target string, ctx *cli.Context) (err error) {
DefaultPluginLoader, err = NewPluginLoader(target)
if err != nil {
return err
}
2021-07-12 19:45:42 +00:00
DefaultPluginLoader.Initialize(ctx)
return nil
}
func (pl *PluginLoader) Initialize(ctx *cli.Context) {
fns := pl.Lookup("Initialize", func(i interface{}) bool {
_, ok := i.(func(*cli.Context, core.PluginLoader, core.Logger))
2021-07-12 19:45:42 +00:00
return ok
})
for _, fni := range fns {
if fn, ok := fni.(func(*cli.Context, core.PluginLoader, core.Logger)); ok {
fn(ctx, pl, log.Root())
2021-07-12 19:45:42 +00:00
}
}
}
2021-03-15 20:02:37 +00:00
func (pl *PluginLoader) RunSubcommand(ctx *cli.Context) (bool, error) {
args := ctx.Args()
if len(args) == 0 {
return false, fmt.Errorf("no subcommand arguments")
}
2021-03-15 20:02:37 +00:00
subcommand, ok := pl.Subcommands[args[0]]
if !ok {
return false, fmt.Errorf("Subcommand %v does not exist", args[0])
}
2021-03-15 20:02:37 +00:00
return true, subcommand(ctx, args[1:])
}
func RunSubcommand(ctx *cli.Context) (bool, error) {
if DefaultPluginLoader == nil {
return false, fmt.Errorf("Plugin loader not initialized")
}
return DefaultPluginLoader.RunSubcommand(ctx)
}
2021-03-15 20:02:37 +00:00
func (pl *PluginLoader) ParseFlags(args []string) bool {
for _, flagset := range pl.Flags {
flagset.Parse(args)
}
return len(pl.Flags) > 0
}
func ParseFlags(args []string) bool {
if DefaultPluginLoader == nil {
log.Warn("Attempting to parse flags, but default PluginLoader has not been initialized")
return false
}
return DefaultPluginLoader.ParseFlags(args)
2021-03-15 20:02:37 +00:00
}
type feedWrapper struct {
feed *event.Feed
}
func (f *feedWrapper) Send(item interface{}) int {
return f.feed.Send(item)
}
func (f *feedWrapper) Subscribe(ch interface{}) core.Subscription {
return f.feed.Subscribe(ch)
}
func (pl *PluginLoader) GetFeed() core.Feed {
return &feedWrapper{&event.Feed{}}
}