Pingo is a simple standalone library to create plugins for your Go program. As Go is statically linked, all plugins run as external processes.
The library aims to be as simple as possible and to mimic the standard RPC package to be immediately familiar to most developers.
Pingo supports both TCP and Unix as communication protocols. However, remote plugins are currently not supported. Remote plugins might be implemented if requested.
Create a new plugin. Make a directory named after the plugin (for example plugins/hello-world
)
and write main.go
as follows:
// Always create a new binary
package main
import "github.com/dullgiulio/pingo"
// Create an object to be exported
type MyPlugin struct{}
// Exported method, with a RPC signature
func (p *MyPlugin) SayHello(name string, msg *string) error {
*msg = "Hello, " + name
return nil
}
func main() {
plugin := &MyPlugin{}
// Register the objects to be exported
pingo.Register(plugin)
// Run the main events handler
pingo.Run()
}
And compile it:
$ cd plugins/hello-world
$ go build
You should get an executable called hello-world
. Congratulations, this is your plugin.
Now, time to use the newly create plugin.
In your main executable, invoke the plugin you have just created:
package main
import (
"log"
"github.com/dullgiulio/pingo"
)
func main() {
// Make a new plugin from the executable we created. Connect to it via TCP
p := pingo.NewPlugin("tcp", "plugins/hello-world/hello-world")
// Actually start the plugin
p.Start()
// Remember to stop the plugin when done using it
defer p.Stop()
var resp string
// Call a function from the object we created previously
if err := p.Call("MyPlugin.SayHello", "Go developer", &resp); err != nil {
log.Print(err)
} else {
log.Print(resp)
}
}
Now, build your executable and all should work! Remember to use the correct path to your plugins when you make the Plugin object. Ideally, always pass an absolute path.
When allocating a new plugin (via NewPlugin
), you have to choose whether to
use Unix or TCP.
In general, prefer Unix: it has way less overhead. However, if you choose Unix you
should provide a writable directory where to place the temporary socket. Do so using
SetSocketDirectory
before you call Start
.
If you do not specify a directory, the default temporary directory for your OS will be used. Note, however, that for security reasons, it might not be possible to create a socket there. It is advised to always specify a local directory.
Otherwise, the overhead of using TCP locally is negligible.
Your Pingo plugin will not accept non-local connections even via TCP.
Report bugs in Github. Pull requests are welcome!
- Automatically restart crashed plugins
- Automatically switch between
unix
andTCP
if setup of one fails
MIT