1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
"github.com/hashicorp/go-plugin"
"github.com/hashicorp/go-plugin/examples/grpc/shared"
)
func main() {
// We don't want to see the plugin logs.
log.SetOutput(ioutil.Discard)
plugins := map[int]plugin.PluginSet{}
// Both version can be supported, but switch the implementation to
// demonstrate version negoation.
switch os.Getenv("KV_PROTO") {
case "netrpc":
plugins[2] = plugin.PluginSet{
"kv": &shared.KVPlugin{},
}
case "grpc":
plugins[3] = plugin.PluginSet{
"kv": &shared.KVGRPCPlugin{},
}
default:
fmt.Println("must set KV_PROTO to netrpc or grpc")
os.Exit(1)
}
// We're a host. Start by launching the plugin process.
client := plugin.NewClient(&plugin.ClientConfig{
HandshakeConfig: shared.Handshake,
VersionedPlugins: plugins,
Cmd: exec.Command("./kv-plugin"),
AllowedProtocols: []plugin.Protocol{
plugin.ProtocolNetRPC, plugin.ProtocolGRPC},
})
defer client.Kill()
rpcClient, err := client.Client()
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
// Request the plugin
raw, err := rpcClient.Dispense("kv")
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
// We should have a KV store now! This feels like a normal interface
// implementation but is in fact over an RPC connection.
kv := raw.(shared.KV)
os.Args = os.Args[1:]
switch os.Args[0] {
case "get":
result, err := kv.Get(os.Args[1])
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
fmt.Println(string(result))
case "put":
err := kv.Put(os.Args[1], []byte(os.Args[2]))
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
default:
fmt.Println("Please only use 'get' or 'put'")
os.Exit(1)
}
}
|