-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrpc.go
More file actions
214 lines (173 loc) · 4.2 KB
/
Copy pathrpc.go
File metadata and controls
214 lines (173 loc) · 4.2 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
package fastrpc
import (
"bufio"
"context"
"encoding/binary"
"encoding/json"
"errors"
"net"
"os"
"sync"
"time"
)
type RpcMaster struct {
counter uint32
socket *net.TCPListener
mutex *sync.Mutex
discarder *os.File
registrar map[uint32]*MasterCapabilities
}
func NewMaster() (*RpcMaster, error) {
discarder, err := os.OpenFile("/dev/null", os.O_RDWR, 0600)
if err != nil {
return nil, err
}
var master RpcMaster = RpcMaster{
mutex: new(sync.Mutex),
discarder: discarder,
registrar: make(map[uint32]*MasterCapabilities),
}
master.RegisterRPC(
"capabilities",
"Get Master's All Capabilities",
"application/json",
"application/json",
func(stream *IOOperator) error {
capabilities, err := master.ShowCapabilities()
if err != nil {
return err
}
capabilitiesBytes, err := json.Marshal(&capabilities)
if err != nil {
return err
}
return stream.WriteIOFromBuffer(capabilitiesBytes)
},
)
return &master, nil
}
func (r *RpcMaster) RegisterRPC(name string, description string, incomingType string, returningType string,
rpc func(*IOOperator) error) {
r.mutex.Lock()
defer r.mutex.Unlock()
r.registrar[r.counter] = &MasterCapabilities{
Name: name,
Description: description,
IncomingType: incomingType,
ReturningType: returningType,
rpc: rpc,
}
r.counter++
}
func (r *RpcMaster) ShowCapabilities() ([]MasterCapabilitiesDTO, error) {
var capabilities []MasterCapabilitiesDTO = make([]MasterCapabilitiesDTO, 0)
for id, rpc := range r.registrar {
capabilities = append(capabilities, MasterCapabilitiesDTO{
RpcID: id,
Name: rpc.Name,
Description: rpc.Description,
IncomingType: rpc.IncomingType,
ReturningType: rpc.ReturningType,
})
}
return capabilities, nil
}
func (r *RpcMaster) Start(ctx context.Context, ip net.IP, port int) error {
r.mutex.Lock()
defer r.mutex.Unlock()
socket, err := net.ListenTCP("tcp", &net.TCPAddr{
IP: ip,
Port: port,
})
if err != nil {
return err
}
r.socket = socket
for {
select {
case <-ctx.Done():
return ctx.Err()
default:
tcpStream, err := socket.AcceptTCP()
if err != nil {
return err
}
go func() {
defer tcpStream.Close()
streamError := tcpStream.SetReadBuffer(BUFFER_SIZE)
if streamError != nil {
return
}
streamError = tcpStream.SetWriteBuffer(BUFFER_SIZE)
if streamError != nil {
return
}
streamError = tcpStream.SetKeepAliveConfig(net.KeepAliveConfig{
Enable: true,
Idle: time.Hour,
Interval: time.Minute,
Count: 5,
})
if streamError != nil {
return
}
bufReader := bufio.NewReaderSize(tcpStream, BUFFER_SIZE)
bufWriter := bufio.NewWriterSize(tcpStream, BUFFER_SIZE)
for {
headersBuffer, streamError := readSpecifiedBytes(bufReader, 12)
if streamError != nil {
return
}
ioStream := NewIOOperator(bufReader, bufWriter, binary.BigEndian.Uint64(headersBuffer[4:]))
capability, ok := r.registrar[binary.BigEndian.Uint32(headersBuffer[:4])]
if !ok {
streamError = ioStream.WriteError("rpc not found")
if streamError != nil {
return
}
if ioStream.leftLength != 0 {
streamError = discard(bufReader, r.discarder, ioStream.leftLength)
if streamError != nil {
return
}
}
streamError = bufWriter.Flush()
if streamError != nil {
return
}
continue
}
rpcError := capability.rpc(ioStream)
if rpcError != nil && !ioStream.written {
streamError = ioStream.WriteError(rpcError.Error())
if streamError != nil {
return
}
}
if ioStream.leftLength != 0 {
streamError = discard(bufReader, r.discarder, ioStream.leftLength)
if streamError != nil {
return
}
}
if !ioStream.written {
streamError = ioStream.WriteNothing()
if streamError != nil {
return
}
}
streamError = bufWriter.Flush()
if streamError != nil {
return
}
}
}()
}
}
}
func (r *RpcMaster) Close() error {
if r.socket == nil {
return errors.New("invalid state for close operation")
}
return r.socket.Close()
}