main.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package main
  2. import (
  3. "eta/eta_chart_lib/plugin/basic/shared"
  4. "github.com/hashicorp/go-hclog"
  5. "github.com/hashicorp/go-plugin"
  6. "log"
  7. "os"
  8. "os/exec"
  9. )
  10. // handshakeConfigs are used to just do a basic handshake between
  11. // a plugin and host. If the handshake fails, a user friendly error is shown.
  12. // This prevents users from executing bad plugins or executing a plugin
  13. // directory. It is a UX feature, not a security feature.
  14. var handshakeConfig = plugin.HandshakeConfig{
  15. ProtocolVersion: 1,
  16. MagicCookieKey: "BASIC_PLUGIN",
  17. MagicCookieValue: "xxyBASIC_PLUGIN",
  18. }
  19. // pluginMap is the map of plugins we can dispense.
  20. var pluginMap = map[string]plugin.Plugin{
  21. "ChartServiceGetData": &shared.ChartPlugin{},
  22. }
  23. func main() {
  24. // Create an hclog.Logger
  25. logger := hclog.New(&hclog.LoggerOptions{
  26. Name: "plugin",
  27. Output: os.Stdout,
  28. Level: hclog.Debug,
  29. })
  30. // We're a host! Start by launching the plugin process.
  31. client := plugin.NewClient(&plugin.ClientConfig{
  32. HandshakeConfig: handshakeConfig,
  33. Plugins: pluginMap,
  34. Cmd: exec.Command("./plugin/chart"),
  35. Logger: logger,
  36. })
  37. defer client.Kill()
  38. // Connect via RPC
  39. rpcClient, err := client.Client()
  40. if err != nil {
  41. log.Fatal(err)
  42. }
  43. raw, err := rpcClient.Dispense("ChartServiceGetData")
  44. if err != nil {
  45. log.Fatal(err)
  46. }
  47. chartData := raw.(shared.ChartInterface)
  48. resp := chartData.GetChartData(1)
  49. log.Println("Success resp1: ", resp)
  50. resp2, err := chartData.GetChartThemeConfig(1, 1, 1)
  51. if err != nil {
  52. log.Println("Failed resp2: ", err.Error())
  53. log.Fatal(err)
  54. }
  55. log.Println("Success resp2: ", resp2.ChartThemeName)
  56. }