-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrtc_relay.go
255 lines (200 loc) · 5.93 KB
/
wrtc_relay.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
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// WebRTC relay connection. Used to receive WebRTC data from another node
package main
import (
"encoding/json"
"sync"
"github.com/pion/webrtc/v3"
)
// WRTC_Relay - This data structure contains the status data
// of an inter-node INPUT connection
// Receives the tracks of a remote WRTC_Source
type WRTC_Relay struct {
sid string // WebRTC stream ID
remoteId string // ID of the remote node sending it
node *WebRTC_CDN_Node // Reference to the node
ready bool
peerConnection *webrtc.PeerConnection
statusMutex *sync.Mutex
hasAudio bool
hasVideo bool
localTrackVideo *webrtc.TrackLocalStaticRTP
localTrackAudio *webrtc.TrackLocalStaticRTP
}
// Initialize
func (relay *WRTC_Relay) init() {
relay.ready = false
relay.statusMutex = &sync.Mutex{}
}
// Called when an offer SDP message is received
func (relay *WRTC_Relay) onOffer(offerJSON string, hasVideo bool, hasAudio bool) {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
relay.hasVideo = hasVideo
relay.hasAudio = hasAudio
// Clear old peer connection
if relay.peerConnection != nil {
relay.peerConnection.OnICECandidate(nil)
relay.peerConnection.OnConnectionStateChange(nil)
relay.peerConnection.OnTrack(nil)
relay.peerConnection.Close()
}
peerConnectionConfig := loadWebRTCConfig() // Load WebRTC configuration
// Create a new PeerConnection
peerConnection, err := webrtc.NewPeerConnection(peerConnectionConfig)
if err != nil {
LogError(err)
go relay.onClose()
return
}
relay.peerConnection = peerConnection
peerConnection.OnTrack(func(remoteTrack *webrtc.TrackRemote, receiver *webrtc.RTPReceiver) {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
if remoteTrack.Kind() == webrtc.RTPCodecTypeVideo {
if relay.localTrackVideo != nil {
return
}
localTrack, newTrackErr := webrtc.NewTrackLocalStaticRTP(remoteTrack.Codec().RTPCodecCapability, "video", "pion")
if newTrackErr != nil {
LogError(newTrackErr)
}
relay.localTrackVideo = localTrack
go pipeTrack(remoteTrack, localTrack)
} else if remoteTrack.Kind() == webrtc.RTPCodecTypeAudio {
if relay.localTrackAudio != nil {
return
}
localTrack, newTrackErr := webrtc.NewTrackLocalStaticRTP(remoteTrack.Codec().RTPCodecCapability, "audio", "pion")
if newTrackErr != nil {
LogError(newTrackErr)
}
relay.localTrackAudio = localTrack
go pipeTrack(remoteTrack, localTrack)
} else {
return
}
if (!relay.hasAudio || relay.localTrackAudio != nil) && (!relay.hasVideo || relay.localTrackVideo != nil) {
// Received all the tracks, the relay is now ready
relay.node.onRelayReady(relay)
}
})
peerConnection.OnICECandidate(func(i *webrtc.ICECandidate) {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
if i != nil {
b, e := json.Marshal(i.ToJSON())
if e != nil {
LogError(e)
} else {
relay.sendICECandidate(string(b))
}
} else {
relay.sendICECandidate("")
}
})
peerConnection.OnConnectionStateChange(func(state webrtc.PeerConnectionState) {
if state == webrtc.PeerConnectionStateClosed || state == webrtc.PeerConnectionStateFailed {
LogDebug("Source relay Disconnected | RemoteNode: " + relay.remoteId + " | SreamID: " + relay.sid)
relay.onClose()
} else if state == webrtc.PeerConnectionStateConnected {
LogDebug("Source relay Connected | RemoteNode: " + relay.remoteId + " | SreamID: " + relay.sid)
}
})
// Set the remote SessionDescription
sd := webrtc.SessionDescription{}
err = json.Unmarshal([]byte(offerJSON), &sd)
if err != nil {
LogError(err)
return
}
err = relay.peerConnection.SetRemoteDescription(sd)
if err != nil {
LogError(err)
return
}
// Create SDP answer
answer, err := relay.peerConnection.CreateAnswer(nil)
if err != nil {
LogError(err)
return
}
// Sets the LocalDescription, and starts our UDP listeners
err = relay.peerConnection.SetLocalDescription(answer)
if err != nil {
LogError(err)
return
}
// Send ANSWER to the signaling system
answerJSON, e := json.Marshal(answer)
if e != nil {
LogError(e)
return
}
relay.sendAnswer(string(answerJSON))
}
// Call when an ICE Candidate message is received from the remote node
func (relay *WRTC_Relay) onICECandidate(candidateJSON string) {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
if relay.peerConnection == nil {
return
}
if candidateJSON == "" {
return
}
candidate := webrtc.ICECandidateInit{}
err := json.Unmarshal([]byte(candidateJSON), &candidate)
if err != nil {
LogError(err)
}
err = relay.peerConnection.AddICECandidate(candidate)
if err != nil {
LogError(err)
}
}
// SEND
// Send candidate message to the remote node
func (relay *WRTC_Relay) sendICECandidate(candidateJSON string) {
mp := make(map[string]string)
mp["type"] = "CANDIDATE"
mp["src"] = relay.node.id
mp["dst"] = relay.remoteId
mp["sid"] = relay.sid
mp["data"] = candidateJSON
relay.node.sendRedisMessage(relay.remoteId, &mp)
}
// Send answer SDP message to the remote node
func (relay *WRTC_Relay) sendAnswer(answerJSON string) {
mp := make(map[string]string)
mp["type"] = "ANSWER"
mp["src"] = relay.node.id
mp["dst"] = relay.remoteId
mp["sid"] = relay.sid
mp["data"] = answerJSON
relay.node.sendRedisMessage(relay.remoteId, &mp)
}
// Called if the peer connection is closed
func (relay *WRTC_Relay) onClose() {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
if relay.peerConnection != nil {
relay.peerConnection.OnICECandidate(nil)
relay.peerConnection.OnConnectionStateChange(nil)
relay.peerConnection.OnTrack(nil)
relay.peerConnection.Close()
}
relay.peerConnection = nil
relay.node.onRelayClosed(relay)
}
// Close the relay
func (relay *WRTC_Relay) close() {
relay.statusMutex.Lock()
defer relay.statusMutex.Unlock()
if relay.peerConnection != nil {
relay.peerConnection.OnICECandidate(nil)
relay.peerConnection.OnConnectionStateChange(nil)
relay.peerConnection.OnTrack(nil)
relay.peerConnection.Close()
}
relay.peerConnection = nil
}