2022-11-06 19:57:20 -06:00
|
|
|
package gui
|
|
|
|
|
2022-11-09 08:38:50 -06:00
|
|
|
// This is based off of the excellent example and documentation here:
|
|
|
|
// https://github.com/vladimirvivien/go-plugin-example
|
|
|
|
// There truly are great people in this world.
|
|
|
|
// It's a pleasure to be here with all of you
|
|
|
|
|
2022-11-06 19:57:20 -06:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"plugin"
|
2022-11-13 08:53:03 -06:00
|
|
|
|
|
|
|
"git.wit.org/wit/gui/toolkit"
|
2022-11-06 19:57:20 -06:00
|
|
|
)
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
var err error
|
|
|
|
type Symbol any
|
|
|
|
|
|
|
|
type aplug struct {
|
|
|
|
// Ok bool
|
|
|
|
name string
|
|
|
|
filename string
|
|
|
|
plug *plugin.Plugin
|
|
|
|
sym *plugin.Symbol
|
|
|
|
LoadOk bool
|
|
|
|
InitOk bool
|
|
|
|
MainOk bool
|
|
|
|
|
|
|
|
Init func()
|
2023-04-07 21:22:51 -05:00
|
|
|
|
|
|
|
// This passes the go channel to the plugin
|
|
|
|
// the plugin then passes actions back to
|
|
|
|
// here where they are processed. If you wit/gui this is how
|
|
|
|
// you are passed information like a user clicking a button
|
|
|
|
// or a user changing a dropdown menu or a checkbox
|
|
|
|
//
|
|
|
|
// from this channel, the information is then passed into your
|
|
|
|
// Custom() function
|
|
|
|
//
|
|
|
|
// the custom functions are run from inside of your own goroutine
|
|
|
|
// where you initialize the gui
|
|
|
|
Callback func(chan toolkit.Action)
|
|
|
|
|
|
|
|
// This is how actions are sent to the plugin
|
|
|
|
//
|
|
|
|
// for example, when you you create a new button, it sends
|
|
|
|
// a structure to the goroutine that is handling the gui
|
|
|
|
// each toolkit has it's own goroutine and each one is sent this
|
|
|
|
// add button request
|
|
|
|
pluginChan chan toolkit.Action
|
|
|
|
|
2023-04-07 21:54:57 -05:00
|
|
|
PluginChannel func() chan toolkit.Action
|
|
|
|
|
2023-04-07 21:22:51 -05:00
|
|
|
// deprecate all this
|
2023-03-01 11:35:36 -06:00
|
|
|
// TODO: make Main() main() and never allow the user to call it
|
|
|
|
// run plugin.Main() when the plugin is loaded
|
|
|
|
Main func(func ()) // this never returns. Each plugin must have it's own goroutine
|
2022-11-13 08:53:03 -06:00
|
|
|
Quit func()
|
2023-04-06 18:00:18 -05:00
|
|
|
|
2023-03-01 11:35:36 -06:00
|
|
|
// simplifies passing to the plugin
|
2023-03-29 23:03:04 -05:00
|
|
|
// Send func(*toolkit.Widget, *toolkit.Widget)
|
2023-03-23 12:35:12 -05:00
|
|
|
// should replace Send()
|
2023-04-08 11:43:58 -05:00
|
|
|
// Action func(*toolkit.Action)
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
var allPlugins []*aplug
|
|
|
|
|
|
|
|
// loads and initializes a toolkit (andlabs/ui, gocui, etc)
|
2023-04-07 09:18:03 -05:00
|
|
|
func LoadToolkit(name string) *aplug {
|
|
|
|
var newPlug *aplug
|
|
|
|
newPlug = new(aplug)
|
2022-11-13 08:53:03 -06:00
|
|
|
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "LoadToolkit() START")
|
2022-11-13 08:53:03 -06:00
|
|
|
newPlug.LoadOk = false
|
|
|
|
|
|
|
|
for _, aplug := range allPlugins {
|
2023-04-08 14:31:00 -05:00
|
|
|
log(debugGui, "LoadToolkit() already loaded toolkit plugin =", aplug.name)
|
2022-11-13 08:53:03 -06:00
|
|
|
if (aplug.name == name) {
|
2023-04-08 14:31:00 -05:00
|
|
|
log(debugError, "LoadToolkit() SKIPPING", name, "as you can't load it twice")
|
2023-04-07 09:18:03 -05:00
|
|
|
return aplug
|
2022-11-13 08:53:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// locate the shared library file
|
|
|
|
filename := name + ".so"
|
2023-04-07 09:18:03 -05:00
|
|
|
loadPlugin(newPlug, filename)
|
2022-11-13 08:53:03 -06:00
|
|
|
if (newPlug.plug == nil) {
|
2023-03-03 14:41:38 -06:00
|
|
|
log(true, "attempt to find plugin", filename, "failed")
|
2023-04-07 09:18:03 -05:00
|
|
|
return nil
|
2022-11-13 08:53:03 -06:00
|
|
|
}
|
|
|
|
// newPlug.Ok = true
|
|
|
|
newPlug.name = name
|
2022-11-06 19:57:20 -06:00
|
|
|
|
2023-03-01 11:35:36 -06:00
|
|
|
// deprecate Init(?)
|
2023-04-07 09:18:03 -05:00
|
|
|
newPlug.Init = loadFuncE(newPlug, "Init")
|
2022-11-06 19:57:20 -06:00
|
|
|
|
2023-03-01 11:35:36 -06:00
|
|
|
// should make a goroutine that never exits
|
2023-04-07 09:18:03 -05:00
|
|
|
newPlug.Main = loadFuncF(newPlug, "Main")
|
2023-03-01 11:35:36 -06:00
|
|
|
|
|
|
|
// should send things to the goroutine above
|
2023-03-29 23:03:04 -05:00
|
|
|
// newPlug.Queue = loadFuncF(&newPlug, "Queue")
|
2022-11-09 08:38:50 -06:00
|
|
|
|
2023-03-01 11:35:36 -06:00
|
|
|
// unload the plugin and restore state
|
2023-04-07 09:18:03 -05:00
|
|
|
newPlug.Quit = loadFuncE(newPlug, "Quit")
|
2023-03-01 11:35:36 -06:00
|
|
|
|
2023-03-23 12:35:12 -05:00
|
|
|
// Sends instructions like "Add", "Delete", "Disable", etc
|
|
|
|
// Sends a widget (button, checkbox, etc) and it's parent widget
|
2023-04-08 11:43:58 -05:00
|
|
|
// newPlug.Action = loadFuncA(newPlug, "Action")
|
2022-11-06 19:57:20 -06:00
|
|
|
|
2023-04-07 21:54:57 -05:00
|
|
|
// this tells the toolkit plugin how to send user events back to us
|
|
|
|
// for things like: the user clicked on the 'Check IPv6'
|
|
|
|
newPlug.Callback = sendCallback(newPlug, "Callback")
|
|
|
|
|
|
|
|
// this let's us know where to send requests to the toolkit
|
|
|
|
// for things like: add a new button called 'Check IPv6'
|
|
|
|
newPlug.PluginChannel = getPluginChannel(newPlug, "PluginChannel")
|
2023-04-06 18:00:18 -05:00
|
|
|
|
2023-04-07 09:18:03 -05:00
|
|
|
allPlugins = append(allPlugins, newPlug)
|
2022-11-13 08:53:03 -06:00
|
|
|
|
2023-04-08 14:31:00 -05:00
|
|
|
log(debugPlugin, "LoadToolkit() END", newPlug.name, filename)
|
2023-02-25 14:05:25 -06:00
|
|
|
newPlug.Init()
|
2023-04-08 15:34:36 -05:00
|
|
|
|
|
|
|
// set the communication to the plugins
|
2023-04-08 12:08:57 -05:00
|
|
|
newPlug.pluginChan = newPlug.PluginChannel()
|
2023-04-08 15:34:36 -05:00
|
|
|
newPlug.Callback(Config.guiChan)
|
2023-04-08 12:08:57 -05:00
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
newPlug.LoadOk = true
|
2023-04-07 09:18:03 -05:00
|
|
|
return newPlug
|
2022-11-13 08:53:03 -06:00
|
|
|
}
|
|
|
|
|
2023-02-25 14:05:25 -06:00
|
|
|
// TODO: All these functions need to be done a smarter way
|
|
|
|
// but I haven't worked out the golang syntax to make it smarter
|
2022-11-13 08:53:03 -06:00
|
|
|
func loadFuncE(p *aplug, funcName string) func() {
|
|
|
|
var newfunc func()
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
|
|
|
|
|
|
|
test, err = p.plug.Lookup(funcName)
|
2022-11-06 19:57:20 -06:00
|
|
|
if err != nil {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
2022-11-09 08:38:50 -06:00
|
|
|
return nil
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
newfunc, ok = test.(func())
|
|
|
|
if !ok {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
2022-11-09 08:38:50 -06:00
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
return newfunc
|
|
|
|
}
|
|
|
|
|
2023-04-07 21:54:57 -05:00
|
|
|
// newPlug.PluginChannel = getPluginChannel(newPlug, "PluginChannel")
|
|
|
|
func getPluginChannel(p *aplug, funcName string) func() chan toolkit.Action {
|
|
|
|
var newfunc func() chan toolkit.Action
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
|
|
|
|
|
|
|
test, err = p.plug.Lookup(funcName)
|
|
|
|
if err != nil {
|
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newfunc, ok = test.(func() chan toolkit.Action)
|
|
|
|
if !ok {
|
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return newfunc
|
|
|
|
}
|
|
|
|
|
|
|
|
func sendCallback(p *aplug, funcName string) func(chan toolkit.Action) {
|
2023-04-06 18:00:18 -05:00
|
|
|
var newfunc func(chan toolkit.Action)
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
|
|
|
|
|
|
|
test, err = p.plug.Lookup(funcName)
|
|
|
|
if err != nil {
|
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newfunc, ok = test.(func(chan toolkit.Action))
|
|
|
|
if !ok {
|
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return newfunc
|
|
|
|
}
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
func loadFunc2(p *aplug, funcName string) func(*toolkit.Widget, *toolkit.Widget) {
|
|
|
|
var newfunc func(*toolkit.Widget, *toolkit.Widget)
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
|
|
|
|
|
|
|
test, err = p.plug.Lookup(funcName)
|
|
|
|
if err != nil {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
|
|
|
|
newfunc, ok = test.(func(*toolkit.Widget, *toolkit.Widget))
|
|
|
|
if !ok {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return newfunc
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
|
|
|
|
2023-03-23 12:35:12 -05:00
|
|
|
// does this fix loadFuncE problems?
|
|
|
|
// TODO: still need to move to channels here
|
|
|
|
func loadFuncA(p *aplug, funcName string) func(*toolkit.Action) {
|
|
|
|
var newfunc func(*toolkit.Action)
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
|
|
|
|
|
|
|
test, err = p.plug.Lookup(funcName)
|
|
|
|
if err != nil {
|
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newfunc, ok = test.(func(*toolkit.Action))
|
|
|
|
if !ok {
|
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return newfunc
|
|
|
|
}
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
// This is probably dangerous and should never be done
|
|
|
|
// executing arbitrary functions will cause them to run inside the goroutine that
|
|
|
|
// the GUI toolkit itself is running in. TODO: move to channels here
|
|
|
|
func loadFuncF(p *aplug, funcName string) func(func ()) {
|
|
|
|
var newfunc func(func ())
|
|
|
|
var ok bool
|
|
|
|
var test plugin.Symbol
|
2022-11-06 19:57:20 -06:00
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
test, err = p.plug.Lookup(funcName)
|
|
|
|
if err != nil {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "DID NOT FIND: name =", test, "err =", err)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newfunc, ok = test.(func(func ()))
|
|
|
|
if !ok {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "function name =", funcName, "names didn't map correctly. Fix the plugin name =", p.name)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
return newfunc
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
|
|
|
|
2023-02-25 14:05:25 -06:00
|
|
|
/*
|
|
|
|
This searches in the following order for the plugin .so files:
|
|
|
|
./toolkit/
|
|
|
|
~/go/src/go.wit.org/gui/toolkit/
|
|
|
|
/usr/lib/go-gui/
|
|
|
|
*/
|
2022-11-13 08:53:03 -06:00
|
|
|
func loadPlugin(p *aplug, name string) {
|
|
|
|
var filename string
|
|
|
|
|
2023-02-25 14:05:25 -06:00
|
|
|
homeDir, err := os.UserHomeDir()
|
|
|
|
if err != nil {
|
2023-03-29 23:03:04 -05:00
|
|
|
log(logError, "loadPlugin() error. exiting here?")
|
|
|
|
return
|
2023-02-25 14:05:25 -06:00
|
|
|
}
|
|
|
|
|
2022-11-13 08:53:03 -06:00
|
|
|
// attempt to write out the file from the internal resource
|
2023-02-25 14:05:25 -06:00
|
|
|
filename = "toolkit/" + name
|
|
|
|
p.plug = loadfile(filename)
|
|
|
|
if (p.plug != nil) {
|
|
|
|
p.filename = filename
|
|
|
|
return
|
2022-11-13 08:53:03 -06:00
|
|
|
}
|
|
|
|
|
2023-02-25 14:05:25 -06:00
|
|
|
filename = homeDir + "/go/src/git.wit.org/wit/gui/toolkit/" + name
|
2022-11-13 08:53:03 -06:00
|
|
|
p.plug = loadfile(filename)
|
|
|
|
if (p.plug != nil) {
|
|
|
|
p.filename = filename
|
|
|
|
return
|
|
|
|
}
|
2022-11-06 19:57:20 -06:00
|
|
|
|
2023-02-25 14:05:25 -06:00
|
|
|
filename = "/usr/lib/go-gui/" + name
|
2022-11-13 08:53:03 -06:00
|
|
|
p.plug = loadfile(filename)
|
|
|
|
if (p.plug != nil) {
|
|
|
|
p.filename = filename
|
2022-11-06 19:57:20 -06:00
|
|
|
return
|
|
|
|
}
|
2022-11-13 08:53:03 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// load module
|
|
|
|
// 1. open the shared object file to load the symbols
|
|
|
|
func loadfile(filename string) *plugin.Plugin {
|
|
|
|
plug, err := plugin.Open(filename)
|
|
|
|
if err != nil {
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "plugin FAILED =", filename, err)
|
2022-11-13 08:53:03 -06:00
|
|
|
return nil
|
|
|
|
}
|
2023-02-25 14:05:25 -06:00
|
|
|
log(debugGui, "plugin WORKED =", filename)
|
2023-03-03 14:41:38 -06:00
|
|
|
log(true, "loading plugin", filename, "worked")
|
2022-11-13 08:53:03 -06:00
|
|
|
return plug
|
2022-11-06 19:57:20 -06:00
|
|
|
}
|
2023-03-01 11:35:36 -06:00
|
|
|
|
2023-04-06 20:50:00 -05:00
|
|
|
// 2023/04/06 Queue() is also being used and channels are being used. memcopy() only
|
2023-03-23 12:35:12 -05:00
|
|
|
func newaction(a *toolkit.Action, n *Node, where *Node) {
|
|
|
|
if (n != nil) {
|
2023-03-29 23:03:04 -05:00
|
|
|
a.WidgetId = n.id
|
|
|
|
a.WidgetType = n.widget.Type
|
|
|
|
a.ActionType = a.ActionType
|
2023-03-23 12:35:12 -05:00
|
|
|
}
|
|
|
|
|
2023-04-06 20:50:00 -05:00
|
|
|
// TODO: redo this grid logic
|
2023-03-23 12:35:12 -05:00
|
|
|
if (where != nil) {
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() START on where X,Y, Next X,Y =", where.Name, where.X, where.Y, where.NextX, where.NextY)
|
2023-03-29 23:03:04 -05:00
|
|
|
a.ParentId = where.id
|
2023-03-23 12:35:12 -05:00
|
|
|
switch where.widget.Type {
|
|
|
|
case toolkit.Grid:
|
2023-03-29 23:03:04 -05:00
|
|
|
// where.Dump(true)
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() START on Grid (X,Y)", where.X, where.Y, "put next thing at (X,Y) =", where.NextX, where.NextY)
|
2023-03-23 12:35:12 -05:00
|
|
|
//
|
|
|
|
// fix values here if they are invalid. Index starts at 1
|
|
|
|
if (where.NextX < 1) {
|
|
|
|
where.NextX = 1
|
|
|
|
}
|
|
|
|
if (where.NextY < 1) {
|
|
|
|
where.NextY = 1
|
|
|
|
}
|
|
|
|
//
|
2023-03-29 23:03:04 -05:00
|
|
|
a.X = where.NextX
|
|
|
|
a.Y = where.NextY
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() END on Grid (X,Y)", where.X, where.Y, "put next thing at (X,Y) =", where.NextX, where.NextY)
|
2023-03-23 12:35:12 -05:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, aplug := range allPlugins {
|
2023-03-29 23:03:04 -05:00
|
|
|
log(debugPlugin, "Action() aplug =", aplug.name, "Action type=", a.ActionType)
|
2023-04-07 21:54:57 -05:00
|
|
|
if (aplug.pluginChan == nil) {
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() retrieving the aplug.PluginChannel()", aplug.name)
|
2023-04-08 00:28:33 -05:00
|
|
|
aplug.pluginChan = aplug.PluginChannel()
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() retrieved", aplug.pluginChan)
|
2023-04-07 21:54:57 -05:00
|
|
|
}
|
2023-04-08 14:31:00 -05:00
|
|
|
log(logInfo, "Action() SEND to pluginChan", aplug.name)
|
2023-04-08 11:43:58 -05:00
|
|
|
aplug.pluginChan <- *a
|
2023-04-08 14:31:00 -05:00
|
|
|
sleep(.02)
|
2023-03-23 12:35:12 -05:00
|
|
|
}
|
|
|
|
// increment where to put the next widget in a grid or table
|
|
|
|
if (where != nil) {
|
|
|
|
switch where.widget.Type {
|
|
|
|
case toolkit.Grid:
|
2023-03-29 23:03:04 -05:00
|
|
|
log(logInfo, "Action() START size (X,Y)", where.X, where.Y, "put next thing at (X,Y) =", where.NextX, where.NextY)
|
2023-03-23 12:35:12 -05:00
|
|
|
where.NextY += 1
|
|
|
|
if (where.NextY > where.Y) {
|
|
|
|
where.NextX += 1
|
|
|
|
where.NextY = 1
|
|
|
|
}
|
2023-03-29 23:03:04 -05:00
|
|
|
log(logInfo, "Action() END size (X,Y)", where.X, where.Y, "put next thing at (X,Y) =", where.NextX, where.NextY)
|
2023-03-23 12:35:12 -05:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|