-
Notifications
You must be signed in to change notification settings - Fork 118
/
titan.go
78 lines (66 loc) · 2.25 KB
/
titan.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
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
package titan
import (
"net"
"time"
"github.com/distributedio/titan/command"
"github.com/distributedio/titan/context"
"github.com/distributedio/titan/metrics"
"go.uber.org/zap"
)
//Server implements the redis prototol server
type Server struct {
servCtx *context.ServerContext
lis net.Listener
idgen func() int64
}
//New a server instance
func New(ctx *context.ServerContext) *Server {
// id generator starts from 1(the first client's id is 2, the same as redis)
return &Server{servCtx: ctx, idgen: GetClientID()}
}
//Serve the redis requests
func (s *Server) Serve(lis net.Listener) error {
zap.L().Info("titan server start", zap.String("addr", lis.Addr().String()))
s.servCtx.StartAt = time.Now()
s.lis = lis
for {
conn, err := lis.Accept()
if err != nil {
zap.L().Error("server accept failed", zap.String("addr", lis.Addr().String()), zap.Error(err))
return err
}
cliCtx := context.NewClientContext(s.idgen(), conn)
cliCtx.DB = s.servCtx.Store.DB(cliCtx.Namespace, 0)
s.servCtx.Clients.Store(cliCtx.ID, cliCtx)
cli := newClient(cliCtx, s, command.NewExecutor())
zap.L().Info("recv connection", zap.String("addr", cliCtx.RemoteAddr),
zap.Int64("clientid", cliCtx.ID), zap.String("namespace", cliCtx.Namespace))
go func(cli *client, conn net.Conn) {
metrics.GetMetrics().ConnectionOnlineGaugeVec.WithLabelValues(cli.cliCtx.Namespace).Inc()
if err := cli.serve(conn); err != nil {
zap.L().Error("serve conn failed", zap.String("addr", cli.cliCtx.RemoteAddr),
zap.Int64("clientid", cliCtx.ID), zap.Error(err))
}
metrics.GetMetrics().ConnectionOnlineGaugeVec.WithLabelValues(cli.cliCtx.Namespace).Dec()
s.servCtx.Clients.Delete(cli.cliCtx.ID)
}(cli, conn)
}
}
// ListenAndServe serves on a specified address
func (s *Server) ListenAndServe(addr string) error {
lis, err := net.Listen("tcp", addr)
if err != nil {
return err
}
return s.Serve(lis)
}
//Stop the server
func (s *Server) Stop() error {
zap.L().Info("titan serve stop", zap.String("addr", s.lis.Addr().String()))
return s.lis.Close()
}
//GracefulStop the server, TODO close clients connections first
func (s *Server) GracefulStop() error {
zap.L().Info("titan serve graceful", zap.String("addr", s.lis.Addr().String()))
return s.lis.Close()
}