-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathzsys.go
51 lines (44 loc) · 1.96 KB
/
zsys.go
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
package zsys
import (
"context"
"fmt"
"net"
"time"
"github.com/sirupsen/logrus"
"github.com/ubuntu/zsys/internal/authorizer"
"github.com/ubuntu/zsys/internal/i18n"
"github.com/ubuntu/zsys/internal/streamlogger"
"google.golang.org/grpc"
)
//go:generate sh -c "if go run internal/generators/can_modify_repo.go 2>/dev/null; then PATH=\"`go env GOPATH`/bin:$PATH\" protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative,require_unimplemented_servers=false zsys.proto; fi"
// Takes output of protoc for second streamlogger generation.
//go:generate go run internal/streamlogger/generator.go -- zsys.pb.go
// NewZsysUnixSocketClient returns a new grpc zsys compatible client connection,
// via the unix socket path, with an initialized context and requester ID.
// It will send log request at level "level"
func NewZsysUnixSocketClient(socket string, level logrus.Level) (*ZsysLogClient, error) {
conn, err := grpc.Dial(socket,
grpc.WithInsecure(), grpc.WithDialer(unixConnect(socket)),
grpc.WithStreamInterceptor(streamlogger.ClientRequestLogInterceptor))
if err != nil {
return nil, fmt.Errorf(i18n.G("couldn't connect to unix socket %q: %w"), socket, err)
}
return newZsysClientWithLogs(context.Background(), conn, level), nil
}
// RegisterServer registers a ZsysServer after creating the grpc server which it returns.
func RegisterServer(srv ZsysServerIdleTimeout) *grpc.Server {
s := grpc.NewServer(grpc.StreamInterceptor(streamlogger.ServerIdleTimeoutInterceptor), authorizer.WithUnixPeerCreds())
registerZsysServerIdleWithLogs(s, srv)
return s
}
// unixConnect returns a given local connection on socket path.
func unixConnect(socket string) func(addr string, t time.Duration) (net.Conn, error) {
return func(addr string, t time.Duration) (net.Conn, error) {
unixAddr, err := net.ResolveUnixAddr("unix", socket)
if err != nil {
return nil, err
}
conn, err := net.DialUnix("unix", nil, unixAddr)
return conn, err
}
}