chart_interface.go 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package shared
  2. import (
  3. "eta/eta_chart_lib/models/data_manage/chart_theme"
  4. "github.com/hashicorp/go-plugin"
  5. "net/rpc"
  6. )
  7. type ChartDataResp struct {
  8. DataList []int
  9. }
  10. // 定义插件接口,即插件对外暴露的接口
  11. // ChartInterface is the interface that we're exposing as a plugin.
  12. type ChartInterface interface {
  13. GetChartData(int) ChartDataResp
  14. GetChartThemeConfig(chartThemeId, source, chartType int) (chartTheme chart_theme.ChartTheme, err error)
  15. }
  16. // 定义一个rpc客户端,并实现接口里的方法
  17. // Here is an implementation that talks over RPC
  18. type ChartRpc struct {
  19. client *rpc.Client
  20. }
  21. // ChartRpc客户端从ChartRpcServer rpc服务器端调用GetChartData方法
  22. func (g *ChartRpc) GetChartData(chartId int) ChartDataResp {
  23. var resp ChartDataResp
  24. err := g.client.Call("Plugin.GetChartData", chartId, &resp)
  25. if err != nil {
  26. // You usually want your interfaces to return errors. If they don't,
  27. // there isn't much other choice here.
  28. panic(err)
  29. }
  30. return resp
  31. }
  32. // ChartRpc客户端从ChartRpcServer rpc服务器端调用GetChartThemeConfig方法
  33. func (g *ChartRpc) GetChartThemeConfig(chartThemeId, source, chartType int) (chartTheme chart_theme.ChartTheme, err error) {
  34. args := make(map[string]interface{})
  35. args["chartThemeId"] = chartThemeId
  36. args["source"] = source
  37. args["chartType"] = chartType
  38. err = g.client.Call("Plugin.GetChartThemeConfig", args, &chartTheme)
  39. if err != nil {
  40. // You usually want your interfaces to return errors. If they don't,
  41. // there isn't much other choice here.
  42. //panic(err)
  43. return
  44. }
  45. return
  46. }
  47. // ChartRpcServer是一个rpc服务器,用于RPC通信,该服务器与ChartRpc进行通信,并符合net/rpc包的要求。
  48. // Here is the RPC server that ChartRpc talks to, conforming to
  49. // the requirements of net/rpc
  50. type ChartRpcServer struct {
  51. Impl ChartInterface
  52. }
  53. // 定义服务方法并注册到 RPC 服务器
  54. func (s *ChartRpcServer) GetChartData(args int, resp *ChartDataResp) error {
  55. *resp = s.Impl.GetChartData(args)
  56. return nil
  57. }
  58. func (s *ChartRpcServer) GetChartThemeConfig(args map[string]interface{}, resp *chart_theme.ChartTheme) error {
  59. var err error
  60. *resp, err = s.Impl.GetChartThemeConfig(args["chartThemeId"].(int), args["source"].(int), args["chartType"].(int))
  61. return err
  62. }
  63. // 实现了plugin.Plugin接口的结构体,plugin.Plugin接口要求实现两个方法:Server和Client。
  64. // Server 方法:此方法需要返回一个RPC服务器实例,这个服务器将负责处理来自客户端的RPC调用。
  65. // Client 方法:此方法需要返回一个实现了特定接口的客户端实例,这个客户端将用于向RPC服务器发送请求并接收响应。
  66. // This is the implementation of plugin.Plugin so we can serve/consume this
  67. //
  68. // This has two methods: Server must return an RPC server for this plugin
  69. // type. We construct a GreeterRPCServer for this.
  70. //
  71. // Client must return an implementation of our interface that communicates
  72. // over an RPC client. We return GreeterRPC for this.
  73. //
  74. // Ignore MuxBroker. That is used to create more multiplexed streams on our
  75. // plugin connection and is a more advanced use case.
  76. type ChartPlugin struct {
  77. Impl ChartInterface
  78. }
  79. func (p *ChartPlugin) Server(*plugin.MuxBroker) (interface{}, error) {
  80. return &ChartRpcServer{Impl: p.Impl}, nil
  81. }
  82. func (p *ChartPlugin) Client(broker *plugin.MuxBroker, c *rpc.Client) (interface{}, error) {
  83. return &ChartRpc{client: c}, nil
  84. }