-
Notifications
You must be signed in to change notification settings - Fork 22
/
server.go
161 lines (136 loc) · 4.48 KB
/
server.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE.VEGA file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package admin
import (
"context"
"fmt"
"net"
"net/http"
"os"
"github.com/gorilla/mux"
"github.com/gorilla/rpc"
"github.com/gorilla/rpc/json"
"code.vegaprotocol.io/vega/core/nodewallets"
"code.vegaprotocol.io/vega/core/types"
"code.vegaprotocol.io/vega/logging"
"code.vegaprotocol.io/vega/paths"
)
type ProtocolUpgradeService interface {
// is vega core ready to be stopped and upgraded
GetUpgradeStatus() types.UpgradeStatus
}
// Server implement a socket server allowing to run simple RPC commands.
type Server struct {
log *logging.Logger
cfg Config
srv *http.Server
nodeWallet *NodeWallet
protocolUpgradeService *ProtocolUpgradeAdminService
}
// NewNonValidatorServer returns a new instance of the non-validator RPC socket server.
func NewNonValidatorServer(
log *logging.Logger,
config Config,
protocolUpgradeService ProtocolUpgradeService,
) (*Server, error) {
// setup logger
log = log.Named(nvServerNamedLogger)
log.SetLevel(config.Level.Get())
return &Server{
log: log,
cfg: config,
nodeWallet: nil,
srv: nil,
protocolUpgradeService: NewProtocolUpgradeService(protocolUpgradeService),
}, nil
}
// NewValidatorServer returns a new instance of the validator RPC socket server.
func NewValidatorServer(
log *logging.Logger,
config Config,
vegaPaths paths.Paths,
nodeWalletPassphrase string,
nodeWallets *nodewallets.NodeWallets,
protocolUpgradeService ProtocolUpgradeService,
) (*Server, error) {
// setup logger
log = log.Named(vServerNamedLogger)
log.SetLevel(config.Level.Get())
nodeWallet, err := NewNodeWallet(log, vegaPaths, nodeWalletPassphrase, nodeWallets)
if err != nil {
return nil, fmt.Errorf("failed to create node wallet service: %w", err)
}
return &Server{
log: log,
cfg: config,
nodeWallet: nodeWallet,
srv: nil,
protocolUpgradeService: NewProtocolUpgradeService(protocolUpgradeService),
}, nil
}
// ReloadConf update the internal configuration of the server.
func (s *Server) ReloadConf(cfg Config) {
s.log.Info("reloading configuration")
if s.log.GetLevel() != cfg.Level.Get() {
s.log.Info("updating log level",
logging.String("old", s.log.GetLevel().String()),
logging.String("new", cfg.Level.String()),
)
s.log.SetLevel(cfg.Level.Get())
}
// TODO(): not updating the actual server for now, may need to look at this later
// e.g restart the http server on another port or whatever
s.cfg = cfg
}
// Start starts the server.
func (s *Server) Start() {
logger := s.log
logger.Info("Starting Server<>RPC based API",
logging.String("socket-path", s.cfg.Server.SocketPath),
logging.String("http-path", s.cfg.Server.HTTPPath))
rs := rpc.NewServer()
rs.RegisterCodec(json.NewCodec(), "application/json")
rs.RegisterCodec(json.NewCodec(), "application/json;charset=UTF-8")
if s.nodeWallet != nil {
if err := rs.RegisterService(s.nodeWallet, ""); err != nil {
logger.Panic("Failed to register node wallet service", logging.Error(err))
}
}
if err := rs.RegisterService(s.protocolUpgradeService, "protocolupgrade"); err != nil {
logger.Panic("Failed to register protocol upgrade service", logging.Error(err))
}
r := mux.NewRouter()
r.Handle(s.cfg.Server.HTTPPath, rs)
// Try to remove just in case
os.Remove(s.cfg.Server.SocketPath)
l, err := net.Listen("unix", s.cfg.Server.SocketPath)
if err != nil {
logger.Panic("Failed to open unix socket", logging.Error(err))
}
s.srv = &http.Server{
Handler: r,
}
logger.Info("Serving Server<>RPC based API")
if err := s.srv.Serve(l); err != nil && err != http.ErrServerClosed {
logger.Error("Error serving admin API", logging.Error(err))
}
}
// Stop stops the server.
func (s *Server) Stop() {
if s.srv != nil {
s.log.Info("Stopping Server<>RPC based API")
if err := s.srv.Shutdown(context.Background()); err != nil {
s.log.Error("Failed to stop Server<>RPC based API cleanly",
logging.Error(err))
}
}
}