blob: 7d945addbe1ad2b80e4d1f8d57a168c6d5a2e921 (
plain)
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
|
// Package rpc contains wrapper around RPC client ONLY for internal usage.
package rpc
import (
"net/rpc"
"github.com/roadrunner-server/errors"
goridgeRpc "github.com/roadrunner-server/goridge/v3/pkg/rpc"
rpcPlugin "github.com/roadrunner-server/rpc/v2"
"github.com/spf13/viper"
)
// NewClient creates client ONLY for internal usage (communication between our application with RR side).
// Client will be connected to the RPC.
func NewClient(cfg string) (*rpc.Client, error) {
v := viper.New()
v.SetConfigFile(cfg)
err := v.ReadInConfig()
if err != nil {
return nil, err
}
if !v.IsSet(rpcPlugin.PluginName) {
return nil, errors.E("rpc service disabled")
}
rpcConfig := &rpcPlugin.Config{}
err = v.UnmarshalKey(rpcPlugin.PluginName, rpcConfig)
if err != nil {
return nil, err
}
rpcConfig.InitDefaults()
conn, err := rpcConfig.Dialer()
if err != nil {
return nil, err
}
return rpc.NewClientWithCodec(goridgeRpc.NewClientCodec(conn)), nil
}
|