-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.go
468 lines (400 loc) · 11.1 KB
/
api.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
package rawrtc
/*
#cgo CFLAGS : -g -I../../include
#cgo linux LDFLAGS: -L../../lib -ldl
#cgo windows LDFLAGS: -L../../lib
#include "api.h"
*/
import "C"
import (
"fmt"
"runtime/debug"
"sync"
"unsafe"
)
const (
TRACK_KIND_AUDIO = "audio"
TRACK_KIND_VIDEO = "video"
)
const (
SOURCE_STATE_INITIALIZING uint32 = iota
SOURCE_STATE_LIVE
SOURCE_STATE_ENDED
SOURCE_STATE_MUTED
)
const (
TRACK_STATE_LIVE uint32 = iota
TRACK_STATE_ENDED
)
const (
RTP_TRANSCEIVER_DIRECTION_SENDRECV = "sendrecv"
RTP_TRANSCEIVER_DIRECTION_SENDONLY = "sendonly"
RTP_TRANSCEIVER_DIRECTION_RECVONLY = "recvonly"
RTP_TRANSCEIVER_DIRECTION_INACTIVE = "inactive"
)
var (
mtx_ sync.Mutex
observers_ = make(map[uintptr]interface{})
)
// RTCConstraints dictionary is used to describe a set of rtc library.
type RTCConstraints struct {
KeyframeInterval int64 // ms. 0: auto.
Logger struct {
Directory string
MaxSize int64
History int64
}
}
func InitializeLibrary(path string, constraints *RTCConstraints) error {
file := C.CString(path)
var config C.raw_rtc_constraints_t
config.keyframe_interval = C.int64_t(constraints.KeyframeInterval)
config.logger.directory = C.CString(constraints.Logger.Directory)
config.logger.max_size = C.size_t(constraints.Logger.MaxSize)
config.logger.history = C.size_t(constraints.Logger.History)
defer func() {
C.free(unsafe.Pointer(file))
C.free(unsafe.Pointer(config.logger.directory))
}()
eno := int(C.InitializeLibrary(file, config))
if eno != 0 {
fmt.Printf("Failed to initialize library: %d\n", eno)
return fmt.Errorf("error %d", eno)
}
return nil
}
type PeerConnectionFactoryInterface interface {
CreatePeerConnection(config RTCConfiguration) (PeerConnectionInterface, error)
GetRtpSenderCapabilities(kind string) RtpCapabilities
GetRtpReceiverCapabilities(kind string) RtpCapabilities
CreateAudioTrack(id string, source MediaSourceInterface) (MediaStreamTrackInterface, error)
CreateVideoTrack(id string, source MediaSourceInterface) (MediaStreamTrackInterface, error)
}
type MediaSourceInterface interface {
Remote() bool
State() string
Release()
}
type MediaStreamTrackInterface interface {
ID() string
Kind() string
Muted() bool
State() string
GetSource() MediaSourceInterface
Stop()
Release()
// OnEnded func()
// OnMute func()
// OnUnmute func()
}
type MediaStreamInterface interface {
ID() string
AddTrack(track MediaStreamTrackInterface) bool
RemoveTrack(track MediaStreamTrackInterface) bool
GetAudioTracks() []MediaStreamTrackInterface
GetVideoTracks() []MediaStreamTrackInterface
FindAudioTrack(id string) MediaStreamTrackInterface
FindVideoTrack(id string) MediaStreamTrackInterface
Release()
// OnAddTrack func(track MediaStreamTrackInterface)
// OnRemoveTrack func(track MediaStreamTrackInterface)
}
type RtpSenderInterface interface {
SetTrack(track MediaStreamTrackInterface) bool
Track() MediaStreamTrackInterface
SetStreams(stream_ids ...string)
Streams() []string
SetParameters(parameters RtpParameters) error
GetParameters() RtpParameters
GetStats() map[string]interface{}
Release()
}
type RtpReceiverInterface interface {
Track() MediaStreamTrackInterface
Streams() []MediaStreamInterface
GetParameters() RtpParameters
GetStats() map[string]interface{}
Release()
}
type RtpTransceiverInterface interface {
Direction() string
Mid() string
Receiver() RtpReceiverInterface
Sender() RtpSenderInterface
SetCodecPreferences(codecs []RtpCodecCapability)
SetDirection(new_direction string) error
Stop()
Release()
}
type RtpCapabilities struct {
Codecs []RtpCodecCapability
}
type RtpCodecCapability struct {
fd unsafe.Pointer
MimeType string
ClockRate int
Channels int
SdpFmtpLine string
}
func (me *RtpCodecCapability) Release() {
C.RtpCodecCapabilityRelease(me.fd)
}
type RtpParameters struct {
Codecs []RtpCodecParameters
}
type RtpCodecParameters struct {
fd unsafe.Pointer
PayloadType int
MimeType string
ClockRate int
Channels int
SdpFmtpLine string
}
func (me *RtpCodecParameters) Release() {
C.RtpCodecParametersRelease(me.fd)
}
type RtpTransceiverInit struct {
Direction string
StreamIDs []string
}
type PeerConnectionInterface interface {
ConnectionState() string
IceConnectionState() string
IceGatheringState() string
SignalingState() string
AddTrack(track MediaStreamTrackInterface, streams ...MediaStreamInterface) (RtpSenderInterface, error)
RemoveTrack(sender RtpSenderInterface) error
AddTransceiver(kind string, init RtpTransceiverInit) (RtpTransceiverInterface, error)
CreateOffer(observer *CreateSessionDescriptionObserver)
CreateAnswer(observer *CreateSessionDescriptionObserver)
SetLocalDescription(observer *SetSessionDescriptionObserver, desc *SessionDescription)
SetRemoteDescription(observer *SetSessionDescriptionObserver, desc *SessionDescription)
AddIceCandidate(candidate *IceCandidate) bool
GetReceivers() []RtpReceiverInterface
GetSenders() []RtpSenderInterface
GetTransceivers() []RtpTransceiverInterface
GetStats() map[string]interface{}
Close()
Release()
// OnSignalingChange func(new_state string)
// OnDataChannel func(data_channel interface{})
// OnRenegotiationNeeded func()
// OnConnectionChange func(new_state string)
// OnIceConnectionChange func(new_state string)
// OnIceGatheringChange func(new_state string)
// OnIceCandidate func(candidate *IceCandidate)
// OnIceCandidateError func(address string, port int, url string, error_code int, error_text string)
// OnTrack func(track MediaStreamTrackInterface, streams ...MediaStreamInterface)
}
func LogInfo(message string) {
msg := C.CString(message)
defer func() {
C.free(unsafe.Pointer(msg))
}()
C.LogInfo(msg)
}
func LogWarn(message string) {
msg := C.CString(message)
defer func() {
C.free(unsafe.Pointer(msg))
}()
C.LogWarn(msg)
}
func LogError(message string) {
msg := C.CString(message)
defer func() {
C.free(unsafe.Pointer(msg))
}()
C.LogError(msg)
}
func LogInfof(format string, args ...interface{}) {
LogInfo(fmt.Sprintf(format, args...))
}
func LogWarnf(format string, args ...interface{}) {
LogWarn(fmt.Sprintf(format, args...))
}
func LogErrorf(format string, args ...interface{}) {
LogError(fmt.Sprintf(format, args...))
}
//export __onsignalingchange__
func __onsignalingchange__(target unsafe.Pointer, new_state *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnSignalingChange(C.GoString(new_state))
}
}
//export __ondatachannel__
func __ondatachannel__(target unsafe.Pointer, data_channel unsafe.Pointer) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnDataChannel(data_channel)
}
}
//export __onrenegotiationneeded__
func __onrenegotiationneeded__(target unsafe.Pointer) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnRenegotiationNeeded()
}
}
//export __onconnectionchange__
func __onconnectionchange__(target unsafe.Pointer, new_state *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnConnectionChange(C.GoString(new_state))
}
}
//export __oniceconnectionchange__
func __oniceconnectionchange__(target unsafe.Pointer, new_state *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnIceConnectionChange(C.GoString(new_state))
}
}
//export __onicegatheringchange__
func __onicegatheringchange__(target unsafe.Pointer, new_state *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnIceGatheringChange(C.GoString(new_state))
}
}
//export __onicecandidate__
func __onicecandidate__(target unsafe.Pointer, candidate *C.char, sdp_mid *C.char, sdp_mline_index C.int) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnIceCandidate(&IceCandidate{
Candidate: C.GoString(candidate),
SDPMid: C.GoString(sdp_mid),
SDPMLineIndex: int(sdp_mline_index),
})
}
}
//export __onicecandidateerror__
func __onicecandidateerror__(target unsafe.Pointer, address *C.char, port C.int, url *C.char, error_code C.int, error_text *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnIceCandidateError(C.GoString(address), int(port), C.GoString(url), int(error_code), C.GoString(error_text))
}
}
//export __ontrack__
func __ontrack__(target unsafe.Pointer, transceiver unsafe.Pointer) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
t := new(RtpTransceiver).Init()
t.fd = transceiver
pc := (*PeerConnection)(target)
if pc != nil {
pc.OnTrack(t)
}
}
//export __oncreatesessiondescriptionsuccess__
func __oncreatesessiondescriptionsuccess__(target unsafe.Pointer, typ *C.char, sdp *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
ob := (*CreateSessionDescriptionObserver)(target)
if ob != nil && ob.OnSuccess != nil {
ob.OnSuccess(SessionDescription{
Type: C.GoString(typ),
SDP: C.GoString(sdp),
})
}
ob.release()
}
//export __oncreatesessiondescriptionfailure__
func __oncreatesessiondescriptionfailure__(target unsafe.Pointer, name *C.char, message *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
ob := (*CreateSessionDescriptionObserver)(target)
if ob != nil && ob.OnFailure != nil {
ob.OnFailure(new(RTCError).Init(C.GoString(name), C.GoString(message)))
}
ob.release()
}
//export __onsetsessiondescriptionsuccess__
func __onsetsessiondescriptionsuccess__(target unsafe.Pointer) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
ob := (*SetSessionDescriptionObserver)(target)
if ob != nil && ob.OnSuccess != nil {
ob.OnSuccess()
}
ob.release()
}
//export __onsetsessiondescriptionfailure__
func __onsetsessiondescriptionfailure__(target unsafe.Pointer, name *C.char, message *C.char) {
defer func() {
if err := recover(); err != nil {
LogErrorf("Unexpected error occurred: %v", err)
debug.PrintStack()
}
}()
ob := (*SetSessionDescriptionObserver)(target)
if ob != nil && ob.OnFailure != nil {
ob.OnFailure(new(RTCError).Init(C.GoString(name), C.GoString(message)))
}
ob.release()
}