This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rony.go
183 lines (161 loc) · 4.35 KB
/
rony.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package rony
import (
"mime/multipart"
"net"
"github.com/dgraph-io/badger/v3"
"github.com/goccy/go-json"
"github.com/prometheus/client_golang/prometheus"
"github.com/ronaksoft/rony/internal/metrics"
"github.com/ronaksoft/rony/log"
"google.golang.org/protobuf/proto"
)
/*
Creation Time: 2021 - Jan - 07
Created by: (ehsan)
Maintainers:
1. Ehsan N. Moosa (E2)
Auditor: Ehsan N. Moosa (E2)
Copyright Ronak Software Group 2020
*/
// Cluster is the component which create and present the whole cluster of Edge nodes.
type Cluster interface {
Start() error
Shutdown()
Join(addr ...string) (int, error)
Leave() error
Members() []ClusterMember
MembersByReplicaSet(replicaSets ...uint64) []ClusterMember
MemberByID(string) ClusterMember
MemberByHash(uint64) ClusterMember
ReplicaSet() uint64
ServerID() string
TotalReplicas() int
Addr() string
SetGatewayAddrs(hostPorts []string) error
SetTunnelAddrs(hostPorts []string) error
Subscribe(d ClusterDelegate)
}
type ClusterMember interface {
Proto(info *Edge) *Edge
ServerID() string
ReplicaSet() uint64
GatewayAddr() []string
TunnelAddr() []string
Dial() (net.Conn, error)
}
type ClusterDelegate interface {
OnJoin(hash uint64)
OnLeave(hash uint64)
}
type GatewayDelegate interface {
OnConnect(c Conn, kvs ...*KeyValue)
OnMessage(c Conn, streamID int64, data []byte)
OnClose(c Conn)
}
// Gateway defines the gateway interface where clients could connect
// and communicate with the Edge servers
type Gateway interface {
Start()
Run()
Shutdown()
GetConn(connID uint64) Conn
Addr() []string
Protocol() GatewayProtocol
Subscribe(d GatewayDelegate)
}
type GatewayProtocol int32
const (
Undefined GatewayProtocol = 0
Dummy GatewayProtocol = 1 << iota
Http
Websocket
Quic
Grpc
TCP = Http | Websocket // Http & Websocket
)
var protocolNames = map[GatewayProtocol]string{
Undefined: "Undefined",
Dummy: "Dummy",
Http: "Http",
Websocket: "Websocket",
Quic: "Quic",
Grpc: "Grpc",
TCP: "TCP",
}
func (p GatewayProtocol) String() string {
return protocolNames[p]
}
// HTTP methods were copied from net/http.
const (
MethodWild = "*"
MethodGet = "GET" // RFC 7231, 4.3.1
MethodHead = "HEAD" // RFC 7231, 4.3.2
MethodPost = "POST" // RFC 7231, 4.3.3
MethodPut = "PUT" // RFC 7231, 4.3.4
MethodPatch = "PATCH" // RFC 5789
MethodDelete = "DELETE" // RFC 7231, 4.3.5
MethodConnect = "CONNECT" // RFC 7231, 4.3.6
MethodOptions = "OPTIONS" // RFC 7231, 4.3.7
MethodTrace = "TRACE" // RFC 7231, 4.3.8
)
// Tunnel provides the communication channel between Edge servers.
// Tunnel is similar to Gateway in functionalities.
// However, Tunnel should be optimized for inter-communication between Edge servers,
// and Gateway is optimized for client-server communications.
type Tunnel interface {
Start()
Run()
Shutdown()
Addr() []string
}
type (
LocalDB = badger.DB
StoreTxn = badger.Txn
)
// Conn defines the Connection interface
type Conn interface {
ConnID() uint64
ClientIP() string
WriteBinary(streamID int64, data []byte) error
// Persistent returns FALSE if this connection will be closed when edge.DispatchCtx has
// been done. i.e. HTTP connections. It returns TRUE if this connection still alive when
// edge.DispatchCtx has been done. i.e. WebSocket connections
Persistent() bool
Get(key string) interface{}
Set(key string, val interface{})
Walk(func(k string, v interface{}) bool)
}
// RestConn is same as Conn, but it supports REST format apis.
type RestConn interface {
Conn
ReadHeader(key string) string
WriteStatus(status int)
WriteHeader(key, value string)
MultiPart() (*multipart.Form, error)
RequestURI() string
Schema() string
Method() string
Host() string
Path() string
Body() []byte
Redirect(statusCode int, newHostPort string)
RedirectURL(statusCode int, newURL string)
}
type LogLevel = log.Level
// SetLogLevel is used for debugging purpose
func SetLogLevel(l LogLevel) {
log.SetLevel(l)
}
func RegisterPrometheus(registerer prometheus.Registerer) {
metrics.Register(registerer)
}
// Router could be used by Edge servers to find entities and redirect clients to the right Edge server.
type Router interface {
Set(entityID string, replicaSet uint64, replace bool) error
Get(entityID string) (replicaSet uint64, err error)
}
type IMessage interface {
proto.Message
json.Marshaler
json.Unmarshaler
}