forked from jiyeyuran/mediasoup-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransport.go
853 lines (700 loc) · 22.4 KB
/
transport.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
package mediasoup
import (
"errors"
"fmt"
"sync"
"sync/atomic"
uuid "github.com/satori/go.uuid"
)
type ITransport interface {
IEventEmitter
Id() string
Closed() bool
AppData() interface{}
Observer() IEventEmitter
Close()
routerClosed()
Dump() (*TransportDump, error)
GetStats() ([]*TransportStat, error)
Connect(TransportConnectOptions) error
SetMaxIncomingBitrate(bitrate int) error
Produce(ProducerOptions) (*Producer, error)
Consume(ConsumerOptions) (*Consumer, error)
ProduceData(DataProducerOptions) (*DataProducer, error)
ConsumeData(DataConsumerOptions) (*DataConsumer, error)
EnableTraceEvent(types ...TransportTraceEventType) error
}
type TransportListenIp struct {
/**
* Listening IPv4 or IPv6.
*/
Ip string `json:"ip,omitempty"`
/**
* Announced IPv4 or IPv6 (useful when running mediasoup behind NAT with
* private IP).
*/
AnnouncedIp string `json:"announcedIp,omitempty"`
}
/**
* Transport protocol.
*/
type TransportProtocol string
const (
TransportProtocol_Udp TransportProtocol = "udp"
TransportProtocol_Tcp TransportProtocol = "tcp"
)
type TransportTraceEventType string
const (
TransportTraceEventType_Probation TransportTraceEventType = "probation"
TransportTraceEventType_Bwe TransportTraceEventType = "bwe"
)
type TransportTuple struct {
LocalIp string `json:"localIp,omitempty"`
LocalPort uint16 `json:"localPort,omitempty"`
RemoteIp string `json:"remoteIp,omitempty"`
RemotePort uint16 `json:"remotePort,omitempty"`
Protocol string `json:"protocol,omitempty"`
}
type TransportTraceEventData struct {
/**
* Trace type.
*/
Type TransportTraceEventType `json:"type,omitempty"`
/**
* Event timestamp.
*/
Timestamp int64 `json:"timestamp,omitempty"`
/**
* Event direction.
*/
Direction string `json:"direction,omitempty"`
/**
* Per type information.
*/
Info interface{} `json:"info,omitempty"`
}
type SctpState string
const (
SctpState_New = "new"
SctpState_Connecting = "connecting"
SctpState_Connected = "connected"
SctpState_Failed = "failed"
SctpState_Closed = "closed"
)
type TransportStat struct {
// Common to all Transports.
Type string `json:"type,omitempty"`
TransportId string `json:"transportId,omitempty"`
Timestamp int64 `json:"timestamp,omitempty"`
SctpState SctpState `json:"sctpState,omitempty"`
BytesReceived int64 `json:"bytesReceived,omitempty"`
RecvBitrate int64 `json:"recvBitrate,omitempty"`
BytesSent int64 `json:"bytesSent,omitempty"`
SendBitrate int64 `json:"sendBitrate,omitempty"`
RtpBytesReceived int64 `json:"rtpBytesReceived,omitempty"`
RtpRecvBitrate int64 `json:"rtpRecvBitrate,omitempty"`
RtpBytesSent int64 `json:"rtpBytesSent,omitempty"`
RtpSendBitrate int64 `json:"rtpSendBitrate,omitempty"`
RtxBytesReceived int64 `json:"rtxBytesReceived,omitempty"`
RtxRecvBitrate int64 `json:"rtxRecvBitrate,omitempty"`
RtxBytesSent int64 `json:"rtxBytesSent,omitempty"`
RtxSendBitrate int64 `json:"rtxSendBitrate,omitempty"`
ProbationBytesSent int64 `json:"probationBytesSent,omitempty"`
ProbationSendBitrate int64 `json:"probationSendBitrate,omitempty"`
AvailableOutgoingBitrate int64 `json:"availableOutgoingBitrate,omitempty"`
AvailableIncomingBitrate int64 `json:"availableIncomingBitrate,omitempty"`
MaxIncomingBitrate int64 `json:"maxIncomingBitrate,omitempty"`
RtpPacketLossReceived float64 `json:"rtpPacketLossReceived,omitempty"`
RtpPacketLossSent float64 `json:"rtpPacketLossSent,omitempty"`
*WebRtcTransportSpecificStat
*PlainTransportSpecificStat // share tuple with pipe transport stat
}
type TransportConnectOptions struct {
// pipe and plain transport
Ip string `json:"ip,omitempty"`
Port uint16 `json:"port,omitempty"`
SrtpParameters *SrtpParameters `json:"srtpParameters,omitempty"`
// plain transport
RtcpPort uint16 `json:"rtcpPort,omitempty"`
// webrtc transport
DtlsParameters *DtlsParameters `json:"dtlsParameters,omitempty"`
}
type TransportType string
const (
TransportType_Direct TransportType = "DirectTransport"
TransportType_Plain TransportType = "PlainTransport"
TransportType_Pipe TransportType = "PipeTransport"
TransportType_Webrtc TransportType = "WebrtcTransport"
)
type transportData struct {
sctpParameters SctpParameters
sctpState SctpState
transportType TransportType
}
type transportParams struct {
// {
// routerId: string;
// transportId: string;
// };
internal internalData
data interface{}
channel *Channel
payloadChannel *PayloadChannel
appData interface{}
getRouterRtpCapabilities func() RtpCapabilities
getProducerById func(string) *Producer
getDataProducerById func(string) *DataProducer
logger Logger
}
/**
* Transport
* @emits routerclose
* @emits @close
* @emits @newproducer - (producer: Producer)
* @emits @producerclose - (producer: Producer)
* @emits @newdataproducer - (dataProducer: DataProducer)
* @emits @dataproducerclose - (dataProducer: DataProducer)
*/
type Transport struct {
IEventEmitter
logger Logger
// Internal data.
internal internalData
// Transport data. This is set by the subclass.
data transportData
// Channel instance.
channel *Channel
// PayloadChannel instance.
payloadChannel *PayloadChannel
// Close flag.
closed uint32
// Custom app data.
appData interface{}
// Method to retrieve Router RTP capabilities.
getRouterRtpCapabilities func() RtpCapabilities
// Method to retrieve a Producer.
getProducerById func(string) *Producer
// Method to retrieve a DataProducer.
getDataProducerById func(string) *DataProducer
// Producers map.
producers sync.Map
// Consumers map.
consumers sync.Map
// DataProducers map.
dataProducers sync.Map
// DataConsumers map.
dataConsumers sync.Map
// RTCP CNAME for Producers.
cnameForProducers string
// Next MID for Consumers. It's converted into string when used.
nextMidForConsumers uint32
// Buffer with available SCTP stream ids.
sctpStreamIds []byte
// Next SCTP stream id.
nextSctpStreamId int
// Observer instance.
observer IEventEmitter
// locker instance
locker sync.Mutex
}
func newTransport(params transportParams) ITransport {
params.logger.Debug("constructor()")
transport := &Transport{
IEventEmitter: NewEventEmitter(),
logger: params.logger,
internal: params.internal,
data: params.data.(transportData),
channel: params.channel,
payloadChannel: params.payloadChannel,
appData: params.appData,
getRouterRtpCapabilities: params.getRouterRtpCapabilities,
getProducerById: params.getProducerById,
getDataProducerById: params.getDataProducerById,
observer: NewEventEmitter(),
}
return transport
}
// Transport id
func (transport *Transport) Id() string {
return transport.internal.TransportId
}
// Whether the Transport is closed.
func (transport *Transport) Closed() bool {
return atomic.LoadUint32(&transport.closed) > 0
}
//App custom data.
func (transport *Transport) AppData() interface{} {
return transport.appData
}
/**
* Observer.
*
* @emits close
* @emits newproducer - (producer: Producer)
* @emits newconsumer - (producer: Producer)
* @emits newdataproducer - (dataProducer: DataProducer)
* @emits newdataconsumer - (dataProducer: DataProducer)
*/
func (transport *Transport) Observer() IEventEmitter {
return transport.observer
}
// Close the Transport.
func (transport *Transport) Close() {
if atomic.CompareAndSwapUint32(&transport.closed, 0, 1) {
transport.logger.Debug("close()")
// Remove notification subscriptions.
transport.channel.RemoveAllListeners(transport.Id())
transport.payloadChannel.RemoveAllListeners(transport.Id())
transport.channel.Request("transport.close", transport.internal)
transport.producers.Range(func(key, value interface{}) bool {
producer := value.(*Producer)
producer.transportClosed()
transport.Emit("@producerclose", producer)
return true
})
transport.consumers.Range(func(key, value interface{}) bool {
value.(*Consumer).transportClosed()
return true
})
transport.dataProducers.Range(func(key, value interface{}) bool {
producer := value.(*DataProducer)
producer.transportClosed()
transport.Emit("@dataproducerclose", producer)
return true
})
transport.dataConsumers.Range(func(key, value interface{}) bool {
value.(*DataConsumer).transportClosed()
return true
})
transport.Emit("@close")
transport.RemoveAllListeners()
// Emit observer event.
transport.observer.SafeEmit("close")
transport.observer.RemoveAllListeners()
}
}
/**
* Router was closed.
*
* @virtual
*/
func (transport *Transport) routerClosed() {
if atomic.CompareAndSwapUint32(&transport.closed, 0, 1) {
transport.logger.Debug("routerClosed()")
// Remove notification subscriptions.
transport.channel.RemoveAllListeners(transport.Id())
transport.payloadChannel.RemoveAllListeners(transport.Id())
transport.producers.Range(func(key, value interface{}) bool {
producer := value.(*Producer)
producer.transportClosed()
transport.Emit("@producerclose", producer)
return true
})
transport.consumers.Range(func(key, value interface{}) bool {
value.(*Consumer).transportClosed()
return true
})
transport.dataProducers.Range(func(key, value interface{}) bool {
producer := value.(*DataProducer)
producer.transportClosed()
transport.Emit("@dataproducerclose", producer)
return true
})
transport.dataConsumers.Range(func(key, value interface{}) bool {
value.(*DataConsumer).transportClosed()
return true
})
transport.SafeEmit("routerclose")
transport.RemoveAllListeners()
// Emit observer event.
transport.observer.SafeEmit("close")
transport.observer.RemoveAllListeners()
}
}
// Dump Transport.
func (transport *Transport) Dump() (data *TransportDump, err error) {
transport.logger.Debug("dump()")
resp := transport.channel.Request("transport.dump", transport.internal)
err = resp.Unmarshal(&data)
return
}
// Get Transport stats.
func (transport *Transport) GetStats() (stat []*TransportStat, err error) {
transport.logger.Debug("getStats()")
resp := transport.channel.Request("transport.getStats", transport.internal)
err = resp.Unmarshal(&stat)
return
}
/**
* Provide the Transport remote parameters.
*/
func (transport *Transport) Connect(TransportConnectOptions) error {
return errors.New("method not implemented in the subclass")
}
/**
* Set maximum incoming bitrate for receiving media.
*/
func (transport *Transport) SetMaxIncomingBitrate(bitrate int) error {
transport.logger.Debug("SetMaxIncomingBitrate() [bitrate:%d]", bitrate)
resp := transport.channel.Request(
"transport.setMaxIncomingBitrate", transport.internal, H{"bitrate": bitrate})
return resp.Err()
}
/**
* Create a Producer.
*/
func (transport *Transport) Produce(options ProducerOptions) (producer *Producer, err error) {
transport.logger.Debug("produce()")
id := options.Id
kind := options.Kind
rtpParameters := options.RtpParameters
paused := options.Paused
keyFrameRequestDelay := options.KeyFrameRequestDelay
appData := options.AppData
if len(id) > 0 {
if _, ok := transport.producers.Load(id); ok {
err = NewTypeError(`a Producer with same id "%s" already exists`, id)
return
}
} else {
id = uuid.NewV4().String()
}
// This may throw.
if err = validateRtpParameters(&rtpParameters); err != nil {
return
}
// If missing or empty encodings, add one.
if len(rtpParameters.Encodings) == 0 {
rtpParameters.Encodings = []RtpEncodingParameters{{}}
}
// Don"t do this in PipeTransports since there we must keep CNAME value in each Producer.
if transport.data.transportType != TransportType_Pipe {
// If CNAME is given and we don"t have yet a CNAME for Producers in this
// Transport, take it.
if len(transport.cnameForProducers) == 0 && len(rtpParameters.Rtcp.Cname) > 0 {
transport.cnameForProducers = rtpParameters.Rtcp.Cname
} else if len(transport.cnameForProducers) == 0 {
// Otherwise if we don"t have yet a CNAME for Producers and the RTP parameters
// do not include CNAME, create a random one.
transport.cnameForProducers = uuid.NewV4().String()[:8]
}
// Override Producer"s CNAME.
rtpParameters.Rtcp.Cname = transport.cnameForProducers
}
routerRtpCapabilities := transport.getRouterRtpCapabilities()
rtpMapping, err := getProducerRtpParametersMapping(
rtpParameters, routerRtpCapabilities)
if err != nil {
return
}
consumableRtpParameters, err := getConsumableRtpParameters(
kind, rtpParameters, routerRtpCapabilities, rtpMapping)
if err != nil {
return
}
internal := transport.internal
internal.ProducerId = id
reqData := H{
"kind": kind,
"rtpParameters": rtpParameters,
"rtpMapping": rtpMapping,
"keyFrameRequestDelay": keyFrameRequestDelay,
"paused": paused,
}
resp := transport.channel.Request("transport.produce", internal, reqData)
var status struct {
Type ProducerType
}
if err = resp.Unmarshal(&status); err != nil {
return
}
producerData := producerData{
Kind: kind,
RtpParameters: rtpParameters,
Type: status.Type,
ConsumableRtpParameters: consumableRtpParameters,
}
producer = newProducer(producerParams{
internal: internal,
data: producerData,
channel: transport.channel,
payloadChannel: transport.payloadChannel,
appData: appData,
paused: paused,
})
transport.producers.Store(producer.Id(), producer)
producer.On("@close", func() {
transport.producers.Delete(producer.Id())
transport.Emit("@producerclose", producer)
})
transport.Emit("@newproducer", producer)
// Emit observer event.
transport.observer.SafeEmit("newproducer", producer)
return
}
/**
* Create a Consumer.
*/
func (transport *Transport) Consume(options ConsumerOptions) (consumer *Consumer, err error) {
transport.logger.Debug("consume()")
producerId := options.ProducerId
rtpCapabilities := options.RtpCapabilities
paused := options.Paused
preferredLayers := options.PreferredLayers
appData := options.AppData
producer := transport.getProducerById(producerId)
if producer == nil {
err = fmt.Errorf(`Producer with id "%s" not found`, producerId)
return
}
rtpParameters, err := getConsumerRtpParameters(producer.ConsumableRtpParameters(), rtpCapabilities, options.Pipe)
if err != nil {
return
}
if !options.Pipe {
if len(options.Mid) > 0 {
rtpParameters.Mid = options.Mid
} else {
transport.locker.Lock()
// Set MID.
rtpParameters.Mid = fmt.Sprintf("%d", transport.nextMidForConsumers)
transport.nextMidForConsumers++
// We use up to 8 bytes for MID (string).
if maxMid := uint32(100000000); transport.nextMidForConsumers == maxMid {
transport.logger.Error(`consume() | reaching max MID value "%d"`, maxMid)
transport.nextMidForConsumers = 0
}
transport.locker.Unlock()
}
}
internal := transport.internal
internal.ConsumerId = uuid.NewV4().String()
internal.ProducerId = producerId
typ := producer.Type()
if options.Pipe {
typ = "pipe"
}
reqData := H{
"kind": producer.Kind(),
"rtpParameters": rtpParameters,
"type": typ,
"consumableRtpEncodings": producer.ConsumableRtpParameters().Encodings,
"paused": paused,
"preferredLayers": preferredLayers,
}
resp := transport.channel.Request("transport.consume", internal, reqData)
var status struct {
Paused bool
ProducerPaused bool
Score ConsumerScore
}
if err = resp.Unmarshal(&status); err != nil {
return
}
consumerData := consumerData{
Kind: producer.Kind(),
RtpParameters: rtpParameters,
Type: typ,
}
consumer = newConsumer(consumerParams{
internal: internal,
data: consumerData,
channel: transport.channel,
payloadChannel: transport.payloadChannel,
appData: appData,
paused: status.Paused,
producerPaused: status.ProducerPaused,
score: status.Score,
preferredLayers: preferredLayers,
})
transport.consumers.Store(consumer.Id(), consumer)
consumer.On("@close", func() {
transport.consumers.Delete(consumer.Id())
})
consumer.On("@producerclose", func() {
transport.consumers.Delete(consumer.Id())
})
// Emit observer event.
transport.observer.SafeEmit("newconsumer", consumer)
return
}
/**
* Create a DataProducer.
*/
func (transport *Transport) ProduceData(options DataProducerOptions) (dataProducer *DataProducer, err error) {
transport.logger.Debug("produceData()")
id := options.Id
sctpStreamParameters := options.SctpStreamParameters
label := options.Label
protocol := options.Protocol
appData := options.AppData
if len(id) > 0 {
if _, ok := transport.dataProducers.Load(id); ok {
err = NewTypeError(`a DataProducer with same id "%s" already exists`, id)
return
}
} else {
id = uuid.NewV4().String()
}
var typ DataProducerType
if transport.data.transportType == TransportType_Direct {
typ = DataProducerType_Direct
if sctpStreamParameters != nil {
transport.logger.Warn(
"produceData() | sctpStreamParameters are ignored when producing data on a DirectTransport")
}
} else {
typ = DataProducerType_Sctp
if err = validateSctpStreamParameters(sctpStreamParameters); err != nil {
return
}
}
internal := transport.internal
internal.DataProducerId = id
reqData := H{
"type": typ,
"label": label,
"protocol": protocol,
}
if sctpStreamParameters != nil {
reqData["sctpStreamParameters"] = sctpStreamParameters
}
resp := transport.channel.Request("transport.produceData", internal, reqData)
var data dataProducerData
if err = resp.Unmarshal(&data); err != nil {
return
}
dataProducer = newDataProducer(dataProducerParams{
internal: internal,
data: data,
channel: transport.channel,
payloadChannel: transport.payloadChannel,
appData: appData,
})
transport.dataProducers.Store(dataProducer.Id(), dataProducer)
dataProducer.On("@close", func() {
transport.dataProducers.Delete(dataProducer.Id())
transport.Emit("@dataproducerclose", dataProducer)
})
transport.Emit("@newdataproducer", dataProducer)
// Emit observer event.
transport.observer.SafeEmit("newdataproducer", dataProducer)
return
}
/**
* Create a DataConsumer.
*/
func (transport *Transport) ConsumeData(options DataConsumerOptions) (dataConsumer *DataConsumer, err error) {
transport.logger.Debug("consumeData()")
dataProducerId := options.DataProducerId
ordered := options.Ordered
maxPacketLifeTime := options.MaxPacketLifeTime
maxRetransmits := options.MaxRetransmits
appData := options.AppData
dataProducer := transport.getDataProducerById(dataProducerId)
if dataProducer == nil {
err = fmt.Errorf(`DataProducer with id "%s" not found`, dataProducerId)
return
}
var typ DataProducerType
var sctpStreamParameters SctpStreamParameters
var sctpStreamId int = -1
if transport.data.transportType == TransportType_Direct {
typ = DataProducerType_Direct
if ordered != nil || maxPacketLifeTime > 0 || maxRetransmits > 0 {
transport.logger.Warn(
"consumeData() | ordered, maxPacketLifeTime and maxRetransmits are ignored when consuming data on a DirectTransport")
}
} else {
typ = DataProducerType_Sctp
sctpStreamParameters = dataProducer.SctpStreamParameters()
// Override if given.
if ordered != nil {
sctpStreamParameters.Ordered = ordered
}
if maxPacketLifeTime > 0 {
sctpStreamParameters.MaxPacketLifeTime = maxPacketLifeTime
}
if maxRetransmits > 0 {
sctpStreamParameters.MaxRetransmits = maxRetransmits
}
transport.locker.Lock()
if sctpStreamId, err = transport.getNextSctpStreamId(); err != nil {
return
}
transport.sctpStreamIds[sctpStreamId] = 1
sctpStreamParameters.StreamId = uint16(sctpStreamId)
transport.locker.Unlock()
}
internal := transport.internal
internal.DataConsumerId = uuid.NewV4().String()
internal.DataProducerId = dataProducerId
reqData := H{
"type": typ,
"sctpStreamParameters": sctpStreamParameters,
"label": dataProducer.Label(),
"protocol": dataProducer.Protocol(),
}
resp := transport.channel.Request("transport.consumeData", internal, reqData)
var data dataConsumerData
if err = resp.Unmarshal(&data); err != nil {
return
}
dataConsumer = newDataConsumer(dataConsumerParams{
internal: internal,
data: data,
channel: transport.channel,
payloadChannel: transport.payloadChannel,
appData: appData,
})
transport.dataConsumers.Store(dataConsumer.Id(), dataConsumer)
dataConsumer.On("@close", func() {
transport.dataConsumers.Delete(dataConsumer.Id())
transport.locker.Lock()
if sctpStreamId >= 0 {
transport.sctpStreamIds[sctpStreamId] = 0
}
transport.locker.Unlock()
})
dataConsumer.On("@dataproducerclose", func() {
transport.dataConsumers.Delete(dataConsumer.Id())
transport.locker.Lock()
if sctpStreamId >= 0 {
transport.sctpStreamIds[sctpStreamId] = 0
}
transport.locker.Unlock()
})
// Emit observer event.
transport.observer.SafeEmit("newdataconsumer", dataConsumer)
return
}
/**
* Enable 'trace' event.
*/
func (transport *Transport) EnableTraceEvent(types ...TransportTraceEventType) error {
transport.logger.Debug("pause()")
if types == nil {
types = []TransportTraceEventType{}
}
resp := transport.channel.Request("transport.enableTraceEvent", transport.internal, H{"types": types})
return resp.Err()
}
func (transport *Transport) getNextSctpStreamId() (sctpStreamId int, err error) {
if transport.data.sctpParameters.MIS == 0 {
err = NewTypeError("missing data.sctpParameters.MIS")
return
}
numStreams := transport.data.sctpParameters.MIS
if len(transport.sctpStreamIds) == 0 {
transport.sctpStreamIds = make([]byte, numStreams)
}
for idx := 0; idx < len(transport.sctpStreamIds); idx++ {
sctpStreamId = (transport.nextSctpStreamId + idx) % len(transport.sctpStreamIds)
if transport.sctpStreamIds[sctpStreamId] == 0 {
transport.nextSctpStreamId = sctpStreamId + 1
return
}
}
err = errors.New("no sctpStreamId available")
return
}