-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathlocalparticipant.go
879 lines (753 loc) · 24.7 KB
/
localparticipant.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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
// Copyright 2023 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package lksdk
import (
"mime"
"os"
"path/filepath"
"sort"
"sync"
"time"
"github.com/google/uuid"
"github.com/pion/webrtc/v4"
"google.golang.org/protobuf/proto"
"github.com/livekit/protocol/livekit"
)
const (
trackPublishTimeout = 10 * time.Second
)
type LocalParticipant struct {
baseParticipant
engine *RTCEngine
subscriptionPermission *livekit.SubscriptionPermission
serverInfo *livekit.ServerInfo
rpcPendingAcks *sync.Map
rpcPendingResponses *sync.Map
}
func newLocalParticipant(engine *RTCEngine, roomcallback *RoomCallback, serverInfo *livekit.ServerInfo) *LocalParticipant {
p := &LocalParticipant{
baseParticipant: *newBaseParticipant(roomcallback),
engine: engine,
serverInfo: serverInfo,
rpcPendingAcks: &sync.Map{},
rpcPendingResponses: &sync.Map{},
}
engine.OnRpcAck = p.handleIncomingRpcAck
engine.OnRpcResponse = p.handleIncomingRpcResponse
return p
}
func (p *LocalParticipant) PublishTrack(track webrtc.TrackLocal, opts *TrackPublicationOptions) (*LocalTrackPublication, error) {
if opts == nil {
opts = &TrackPublicationOptions{}
}
kind := KindFromRTPType(track.Kind())
// default sources, since clients generally look for camera/mic
if opts.Source == livekit.TrackSource_UNKNOWN {
if kind == TrackKindVideo {
opts.Source = livekit.TrackSource_CAMERA
} else if kind == TrackKindAudio {
opts.Source = livekit.TrackSource_MICROPHONE
}
}
publisher, ok := p.engine.Publisher()
if !ok {
return nil, ErrNoPeerConnection
}
pubChan := make(chan *livekit.TrackPublishedResponse, 1)
p.engine.RegisterTrackPublishedListener(track.ID(), pubChan)
defer p.engine.UnregisterTrackPublishedListener(track.ID())
pub := NewLocalTrackPublication(kind, track, *opts, p.engine.client)
pub.onMuteChanged = p.onTrackMuted
req := &livekit.AddTrackRequest{
Cid: track.ID(),
Name: opts.Name,
Source: opts.Source,
Type: kind.ProtoType(),
Width: uint32(opts.VideoWidth),
Height: uint32(opts.VideoHeight),
DisableDtx: opts.DisableDTX,
Stereo: opts.Stereo,
Stream: opts.Stream,
Encryption: opts.Encryption,
}
if kind == TrackKindVideo {
// single layer
req.Layers = []*livekit.VideoLayer{
{
Quality: livekit.VideoQuality_HIGH,
Width: uint32(opts.VideoWidth),
Height: uint32(opts.VideoHeight),
},
}
}
err := p.engine.client.SendRequest(&livekit.SignalRequest{
Message: &livekit.SignalRequest_AddTrack{
AddTrack: req,
},
})
if err != nil {
return nil, err
}
// add transceivers - re-use if possible, AddTrack will try to re-use.
// NOTE: `AddTrack` technically cannot re-use transceiver if it was ever
// used to send media, i. e. if it was ever in a `sendrecv` or `sendonly`
// direction. But, pion does not enforce that based on browser behaviour
// observed in practice.
sender, err := publisher.PeerConnection().AddTrack(track)
if err != nil {
return nil, err
}
// LocalTrack will consume rtcp packets so we don't need to consume again
_, isSampleTrack := track.(*LocalTrack)
pub.setSender(sender, !isSampleTrack)
publisher.Negotiate()
var pubRes *livekit.TrackPublishedResponse
select {
case pubRes = <-pubChan:
break
case <-time.After(trackPublishTimeout):
return nil, ErrTrackPublishTimeout
}
pub.updateInfo(pubRes.Track)
p.addPublication(pub)
p.Callback.OnLocalTrackPublished(pub, p)
p.roomCallback.OnLocalTrackPublished(pub, p)
p.engine.log.Infow("published track", "name", opts.Name, "source", opts.Source.String(), "trackID", pubRes.Track.Sid)
return pub, nil
}
// PublishSimulcastTrack publishes up to three layers to the server
func (p *LocalParticipant) PublishSimulcastTrack(tracks []*LocalTrack, opts *TrackPublicationOptions) (*LocalTrackPublication, error) {
if len(tracks) == 0 {
return nil, nil
}
for _, track := range tracks {
if track.Kind() != webrtc.RTPCodecTypeVideo {
return nil, ErrUnsupportedSimulcastKind
}
if track.videoLayer == nil || track.RID() == "" {
return nil, ErrInvalidSimulcastTrack
}
}
tracksCopy := make([]*LocalTrack, len(tracks))
copy(tracksCopy, tracks)
// tracks should be low to high
sort.Slice(tracksCopy, func(i, j int) bool {
return tracksCopy[i].videoLayer.Width < tracksCopy[j].videoLayer.Width
})
if opts == nil {
opts = &TrackPublicationOptions{}
}
// default sources, since clients generally look for camera/mic
if opts.Source == livekit.TrackSource_UNKNOWN {
opts.Source = livekit.TrackSource_CAMERA
}
mainTrack := tracksCopy[len(tracksCopy)-1]
pubChan := make(chan *livekit.TrackPublishedResponse, 1)
p.engine.RegisterTrackPublishedListener(mainTrack.ID(), pubChan)
defer p.engine.UnregisterTrackPublishedListener(mainTrack.ID())
pub := NewLocalTrackPublication(KindFromRTPType(mainTrack.Kind()), nil, *opts, p.engine.client)
pub.onMuteChanged = p.onTrackMuted
var layers []*livekit.VideoLayer
for _, st := range tracksCopy {
layers = append(layers, st.videoLayer)
}
err := p.engine.client.SendRequest(&livekit.SignalRequest{
Message: &livekit.SignalRequest_AddTrack{
AddTrack: &livekit.AddTrackRequest{
Cid: mainTrack.ID(),
Name: opts.Name,
Source: opts.Source,
Type: pub.Kind().ProtoType(),
Width: mainTrack.videoLayer.Width,
Height: mainTrack.videoLayer.Height,
Layers: layers,
SimulcastCodecs: []*livekit.SimulcastCodec{
{
Codec: mainTrack.Codec().MimeType,
Cid: mainTrack.ID(),
},
},
},
},
})
if err != nil {
return nil, err
}
var pubRes *livekit.TrackPublishedResponse
select {
case pubRes = <-pubChan:
break
case <-time.After(trackPublishTimeout):
return nil, ErrTrackPublishTimeout
}
publisher, ok := p.engine.Publisher()
if !ok {
return nil, ErrNoPeerConnection
}
// add transceivers
publishPC := publisher.PeerConnection()
var transceiver *webrtc.RTPTransceiver
var sender *webrtc.RTPSender
for idx, st := range tracksCopy {
if idx == 0 {
// add transceivers - re-use if possible, AddTrack will try to re-use.
// NOTE: `AddTrack` technically cannot re-use transceiver if it was ever
// used to send media, i. e. if it was ever in a `sendrecv` or `sendonly`
// direction. But, pion does not enforce that based on browser behaviour
// observed in practice.
sender, err = publishPC.AddTrack(st)
if err != nil {
return nil, err
}
// as there is no way to get transceiver from sender, search
for _, tr := range publishPC.GetTransceivers() {
if tr.Sender() == sender {
transceiver = tr
break
}
}
pub.setSender(sender, false)
} else {
if err = sender.AddEncoding(st); err != nil {
return nil, err
}
}
pub.addSimulcastTrack(st)
st.SetTransceiver(transceiver)
}
pub.updateInfo(pubRes.Track)
p.addPublication(pub)
publisher.Negotiate()
p.Callback.OnLocalTrackPublished(pub, p)
p.roomCallback.OnLocalTrackPublished(pub, p)
p.engine.log.Infow("published simulcast track", "name", opts.Name, "source", opts.Source.String(), "trackID", pubRes.Track.Sid)
return pub, nil
}
func (p *LocalParticipant) republishTracks() {
var localPubs []*LocalTrackPublication
p.tracks.Range(func(key, value interface{}) bool {
track := value.(*LocalTrackPublication)
if track.Track() != nil || len(track.simulcastTracks) > 0 {
localPubs = append(localPubs, track)
}
p.tracks.Delete(key)
p.audioTracks.Delete(key)
p.videoTracks.Delete(key)
p.Callback.OnLocalTrackUnpublished(track, p)
p.roomCallback.OnLocalTrackUnpublished(track, p)
return true
})
for _, pub := range localPubs {
opt := pub.PublicationOptions()
if len(pub.simulcastTracks) > 0 {
var tracks []*LocalTrack
for _, st := range pub.simulcastTracks {
tracks = append(tracks, st)
}
p.PublishSimulcastTrack(tracks, &opt)
} else if track := pub.TrackLocal(); track != nil {
_, err := p.PublishTrack(track, &opt)
if err != nil {
p.engine.log.Warnw("could not republish track", err, "track", pub.SID())
}
} else {
p.engine.log.Warnw("could not republish track as no track local found", nil, "track", pub.SID())
}
}
}
func (p *LocalParticipant) closeTracks() {
var localPubs []*LocalTrackPublication
p.tracks.Range(func(key, value interface{}) bool {
track := value.(*LocalTrackPublication)
if track.Track() != nil || len(track.simulcastTracks) > 0 {
localPubs = append(localPubs, track)
}
p.tracks.Delete(key)
p.audioTracks.Delete(key)
p.videoTracks.Delete(key)
return true
})
for _, pub := range localPubs {
pub.CloseTrack()
}
}
// PublishData sends custom user data via WebRTC data channel.
//
// By default, the message can be received by all participants in a room,
// see WithDataPublishDestination for choosing specific participants.
//
// Messages are sent via a LOSSY channel by default, see WithDataPublishReliable for sending reliable data.
//
// Deprecated: Use PublishDataPacket with UserData instead.
func (p *LocalParticipant) PublishData(payload []byte, opts ...DataPublishOption) error {
options := &dataPublishOptions{}
for _, opt := range opts {
opt(options)
}
return p.PublishDataPacket(UserData(payload), opts...)
}
// PublishDataPacket sends a packet via a WebRTC data channel. UserData can be used for sending custom user data.
//
// By default, the message can be received by all participants in a room,
// see WithDataPublishDestination for choosing specific participants.
//
// Messages are sent via UDP and offer no delivery guarantees, see WithDataPublishReliable for sending data reliably (with retries).
func (p *LocalParticipant) PublishDataPacket(pck DataPacket, opts ...DataPublishOption) error {
options := &dataPublishOptions{}
for _, opt := range opts {
opt(options)
}
dataPacket := pck.ToProto()
if options.Topic != "" {
if u, ok := dataPacket.Value.(*livekit.DataPacket_User); ok && u.User != nil {
u.User.Topic = proto.String(options.Topic)
}
}
// This matches the default value of Kind on protobuf level.
kind := livekit.DataPacket_LOSSY
if options.Reliable != nil && *options.Reliable {
kind = livekit.DataPacket_RELIABLE
}
dataPacket.DestinationIdentities = options.DestinationIdentities
if u, ok := dataPacket.Value.(*livekit.DataPacket_User); ok && u.User != nil {
//lint:ignore SA1019 backward compatibility
u.User.DestinationIdentities = options.DestinationIdentities
}
return p.engine.publishDataPacket(dataPacket, kind)
}
func (p *LocalParticipant) UnpublishTrack(sid string) error {
obj, loaded := p.tracks.LoadAndDelete(sid)
if !loaded {
return ErrCannotFindTrack
}
p.audioTracks.Delete(sid)
p.videoTracks.Delete(sid)
pub, ok := obj.(*LocalTrackPublication)
if !ok {
return nil
}
var err error
if localTrack, ok := pub.track.(webrtc.TrackLocal); ok {
publisher, ok := p.engine.Publisher()
if !ok {
return ErrNoPeerConnection
}
for _, sender := range publisher.pc.GetSenders() {
if sender.Track() == localTrack {
err = publisher.pc.RemoveTrack(sender)
break
}
}
publisher.Negotiate()
}
pub.CloseTrack()
p.Callback.OnLocalTrackUnpublished(pub, p)
p.roomCallback.OnLocalTrackUnpublished(pub, p)
p.engine.log.Infow("unpublished track", "name", pub.Name(), "trackID", sid)
return err
}
// GetSubscriberPeerConnection is a power-user API that gives access to the underlying subscriber peer connection
// subscribed tracks are received using this PeerConnection
func (p *LocalParticipant) GetSubscriberPeerConnection() *webrtc.PeerConnection {
if subscriber, ok := p.engine.Subscriber(); ok {
return subscriber.PeerConnection()
}
return nil
}
// GetPublisherPeerConnection is a power-user API that gives access to the underlying publisher peer connection
// local tracks are published to server via this PeerConnection
func (p *LocalParticipant) GetPublisherPeerConnection() *webrtc.PeerConnection {
if publisher, ok := p.engine.Publisher(); ok {
return publisher.PeerConnection()
}
return nil
}
// SetName sets the name of the current participant.
// updates will be performed only if the participant has canUpdateOwnMetadata grant
func (p *LocalParticipant) SetName(name string) {
_ = p.engine.client.SendUpdateParticipantMetadata(&livekit.UpdateParticipantMetadata{
Name: name,
})
}
// SetMetadata sets the metadata of the current participant.
// Updates will be performed only if the participant has canUpdateOwnMetadata grant.
func (p *LocalParticipant) SetMetadata(metadata string) {
_ = p.engine.client.SendUpdateParticipantMetadata(&livekit.UpdateParticipantMetadata{
Metadata: metadata,
})
}
// SetAttributes sets the KV attributes of the current participant.
// To remove an attribute, set it to empty value.
// Updates will be performed only if the participant has canUpdateOwnMetadata grant.
func (p *LocalParticipant) SetAttributes(attrs map[string]string) {
_ = p.engine.client.SendUpdateParticipantMetadata(&livekit.UpdateParticipantMetadata{
Attributes: attrs,
})
}
func (p *LocalParticipant) updateInfo(info *livekit.ParticipantInfo) {
p.baseParticipant.updateInfo(info, p)
// detect tracks that have been muted remotely, and apply changes
for _, ti := range info.Tracks {
pub := p.getLocalPublication(ti.Sid)
if pub == nil {
continue
}
if pub.IsMuted() != ti.Muted {
_ = p.engine.client.SendMuteTrack(pub.SID(), pub.IsMuted())
}
}
}
func (p *LocalParticipant) getLocalPublication(sid string) *LocalTrackPublication {
if pub, ok := p.getPublication(sid).(*LocalTrackPublication); ok {
return pub
}
return nil
}
func (p *LocalParticipant) onTrackMuted(pub *LocalTrackPublication, muted bool) {
if muted {
p.Callback.OnTrackMuted(pub, p)
p.roomCallback.OnTrackMuted(pub, p)
} else {
p.Callback.OnTrackUnmuted(pub, p)
p.roomCallback.OnTrackUnmuted(pub, p)
}
}
// Control who can subscribe to LocalParticipant's published tracks.
//
// By default, all participants can subscribe. This allows fine-grained control over
// who is able to subscribe at a participant and track level.
//
// Note: if access is given at a track-level (i.e. both `AllParticipants` and
// `TrackPermission.AllTracks` are false), any newer published tracks
// will not grant permissions to any participants and will require a subsequent
// permissions update to allow subscription.
func (p *LocalParticipant) SetSubscriptionPermission(sp *livekit.SubscriptionPermission) {
p.lock.Lock()
p.subscriptionPermission = proto.Clone(sp).(*livekit.SubscriptionPermission)
p.updateSubscriptionPermissionLocked()
p.lock.Unlock()
}
func (p *LocalParticipant) updateSubscriptionPermission() {
p.lock.RLock()
defer p.lock.RUnlock()
p.updateSubscriptionPermissionLocked()
}
func (p *LocalParticipant) updateSubscriptionPermissionLocked() {
if p.subscriptionPermission == nil {
return
}
err := p.engine.client.SendRequest(&livekit.SignalRequest{
Message: &livekit.SignalRequest_SubscriptionPermission{
SubscriptionPermission: p.subscriptionPermission,
},
})
if err != nil {
logger.Errorw(
"could not send subscription permission", err,
"participant", p.identity,
"pID", p.sid,
)
}
}
func (p *LocalParticipant) handleParticipantDisconnected(identity string) {
p.rpcPendingAcks.Range(func(key, value interface{}) bool {
if value.(rpcPendingAckHandler).participantIdentity == identity {
p.rpcPendingAcks.Delete(key)
}
return true
})
p.rpcPendingResponses.Range(func(key, value interface{}) bool {
if value.(rpcPendingResponseHandler).participantIdentity == identity {
value, ok := p.rpcPendingResponses.LoadAndDelete(key)
if ok {
value.(rpcPendingResponseHandler).resolve(nil, rpcErrorFromBuiltInCodes(RpcRecipientDisconnected, nil))
}
}
return true
})
}
func (p *LocalParticipant) handleIncomingRpcAck(requestId string) {
handler, ok := p.rpcPendingAcks.Load(requestId)
if !ok {
p.engine.log.Errorw("ack received for unexpected RPC request", nil, "requestId", requestId)
} else {
handler.(rpcPendingAckHandler).resolve()
p.rpcPendingAcks.Delete(requestId)
}
}
func (p *LocalParticipant) handleIncomingRpcResponse(requestId string, payload *string, error *RpcError) {
handler, ok := p.rpcPendingResponses.Load(requestId)
if !ok {
p.engine.log.Errorw("response received for unexpected RPC request", nil, "requestId", requestId)
} else {
handler.(rpcPendingResponseHandler).resolve(payload, error)
p.rpcPendingResponses.Delete(requestId)
}
}
// Initiate an RPC call to a remote participant
// - @param params - For parameters for initiating the RPC call, see PerformRpcParams
// - @returns A string payload or an error
func (p *LocalParticipant) PerformRpc(params PerformRpcParams) (*string, error) {
responseTimeout := 10000 * time.Millisecond
if params.ResponseTimeout != nil {
responseTimeout = *params.ResponseTimeout
}
resultChan := make(chan *string, 1)
errorChan := make(chan error, 1)
maxRoundTripLatency := 2000 * time.Millisecond
go func() {
if byteLength(params.Payload) > MaxPayloadBytes {
errorChan <- rpcErrorFromBuiltInCodes(RpcRequestPayloadTooLarge, nil)
return
}
if p.serverInfo != nil && compareVersions(p.serverInfo.Version, "1.8.0") < 0 {
errorChan <- rpcErrorFromBuiltInCodes(RpcUnsupportedServer, nil)
return
}
id := uuid.New().String()
p.engine.publishRpcRequest(params.DestinationIdentity, id, params.Method, params.Payload, responseTimeout-maxRoundTripLatency)
responseTimer := time.AfterFunc(responseTimeout, func() {
p.rpcPendingResponses.Delete(id)
select {
case errorChan <- rpcErrorFromBuiltInCodes(RpcResponseTimeout, nil):
default:
}
})
ackTimer := time.AfterFunc(maxRoundTripLatency, func() {
p.rpcPendingAcks.Delete(id)
p.rpcPendingResponses.Delete(id)
responseTimer.Stop()
select {
case errorChan <- rpcErrorFromBuiltInCodes(RpcConnectionTimeout, nil):
default:
}
})
p.rpcPendingAcks.Store(id, rpcPendingAckHandler{
resolve: func() {
ackTimer.Stop()
},
participantIdentity: params.DestinationIdentity,
})
p.rpcPendingResponses.Store(id, rpcPendingResponseHandler{
resolve: func(payload *string, error *RpcError) {
responseTimer.Stop()
if _, ok := p.rpcPendingAcks.Load(id); ok {
p.engine.log.Warnw("RPC response received before ack", nil, "requestId", id)
p.rpcPendingAcks.Delete(id)
ackTimer.Stop()
}
if error != nil {
errorChan <- error
} else {
if payload != nil {
resultChan <- payload
} else {
emptyStr := ""
resultChan <- &emptyStr
}
}
},
participantIdentity: params.DestinationIdentity,
})
}()
select {
case result := <-resultChan:
return result, nil
case err := <-errorChan:
return nil, err
}
}
func (p *LocalParticipant) cleanup() {
p.rpcPendingAcks.Clear()
p.rpcPendingResponses.Clear()
}
// StreamText creates a new text stream writer with the provided options.
func (p *LocalParticipant) StreamText(options StreamTextOptions) *TextStreamWriter {
if options.StreamId == nil {
streamId := uuid.New().String()
options.StreamId = &streamId
}
if options.Attributes == nil {
options.Attributes = make(map[string]string)
}
var totalSize *uint64
if options.TotalSize != 0 {
totalSize = &options.TotalSize
}
info := TextStreamInfo{
baseStreamInfo: &baseStreamInfo{
Id: *options.StreamId,
MimeType: "text/plain",
Topic: options.Topic,
Timestamp: time.Now().UnixMilli(),
Size: totalSize,
Attributes: options.Attributes,
},
}
header := &livekit.DataStream_Header{
StreamId: info.Id,
MimeType: info.MimeType,
Topic: info.Topic,
Timestamp: info.Timestamp,
TotalLength: info.Size,
Attributes: info.Attributes,
ContentHeader: &livekit.DataStream_Header_TextHeader{
TextHeader: &livekit.DataStream_TextHeader{
OperationType: livekit.DataStream_CREATE,
AttachedStreamIds: options.AttachedStreamIds,
},
},
}
if options.ReplyToStreamId != nil {
if textHeader, ok := header.ContentHeader.(*livekit.DataStream_Header_TextHeader); ok {
textHeader.TextHeader.ReplyToStreamId = *options.ReplyToStreamId
}
}
writer := newTextStreamWriter(info, header, p.engine, options.DestinationIdentities, options.OnProgress)
p.engine.OnClose(func() {
writer.Close()
})
return writer
}
// SendText creates a new text stream writer with the provided options.
// It will return a TextStreamInfo that can be used to get metadata about the stream.
func (p *LocalParticipant) SendText(text string, options StreamTextOptions) *TextStreamInfo {
if options.TotalSize == 0 {
textInBytes := []byte(text)
options.TotalSize = uint64(len(textInBytes))
}
// Ensure that the number of attached stream ids matches the number of attachments, generate if necessary
attachedStreamIds := options.AttachedStreamIds
numberOfAttachments := len(options.Attachments)
numberOfAttachedStreamIds := len(attachedStreamIds)
if numberOfAttachments > 0 {
if numberOfAttachedStreamIds != numberOfAttachments {
for i := numberOfAttachedStreamIds; i < numberOfAttachments; i++ {
attachedStreamIds = append(attachedStreamIds, uuid.New().String())
}
}
}
options.AttachedStreamIds = attachedStreamIds
var progresses sync.Map
for i := range numberOfAttachments + 1 {
progresses.Store(i, float64(0))
}
handleProgress := func(progress float64, id int) {
progresses.Store(id, progress)
var totalProgress float64
progresses.Range(func(_, value interface{}) bool {
totalProgress += value.(float64)
return true
})
if options.OnProgress != nil {
options.OnProgress(totalProgress / float64(numberOfAttachments+1))
}
}
textOptions := options
textOnProgress := func(progress float64) {
handleProgress(progress, 0)
}
textOptions.OnProgress = textOnProgress
writer := p.StreamText(textOptions)
onDone := func() {
writer.Close()
}
writer.Write(text, &onDone)
for i, attachment := range options.Attachments {
onProgress := func(progress float64) {
handleProgress(progress, i+1)
}
p.SendFile(attachment, StreamBytesOptions{
Topic: options.Topic,
DestinationIdentities: options.DestinationIdentities,
StreamId: &attachedStreamIds[i],
OnProgress: onProgress,
Attributes: options.Attributes,
})
}
return &writer.Info
}
// StreamBytes creates a new byte stream writer with the provided options.
func (p *LocalParticipant) StreamBytes(options StreamBytesOptions) *ByteStreamWriter {
if options.StreamId == nil {
streamId := uuid.New().String()
options.StreamId = &streamId
}
if options.Attributes == nil {
options.Attributes = make(map[string]string)
}
var totalSize *uint64
if options.TotalSize != 0 {
totalSize = &options.TotalSize
}
info := ByteStreamInfo{
baseStreamInfo: &baseStreamInfo{
Id: *options.StreamId,
MimeType: options.MimeType,
Topic: options.Topic,
Timestamp: time.Now().UnixMilli(),
Size: totalSize,
Attributes: options.Attributes,
},
}
header := &livekit.DataStream_Header{
StreamId: info.Id,
MimeType: info.MimeType,
Topic: info.Topic,
Timestamp: info.Timestamp,
TotalLength: info.Size,
Attributes: info.Attributes,
ContentHeader: &livekit.DataStream_Header_ByteHeader{
ByteHeader: &livekit.DataStream_ByteHeader{},
},
}
if options.FileName != nil {
if byteHeader, ok := header.ContentHeader.(*livekit.DataStream_Header_ByteHeader); ok {
byteHeader.ByteHeader.Name = *options.FileName
}
info.Name = options.FileName
}
writer := newByteStreamWriter(info, header, p.engine, options.DestinationIdentities, options.OnProgress)
p.engine.OnClose(func() {
writer.Close()
})
return writer
}
// SendFile sends a file to the remote participant as a byte stream with the provided options.
// It will return a ByteStreamInfo that can be used to get metadata about the stream.
// Error is returned if the file cannot be read.
func (p *LocalParticipant) SendFile(filePath string, options StreamBytesOptions) (*ByteStreamInfo, error) {
if options.TotalSize == 0 {
fileInfo, err := os.Stat(filePath)
if err != nil {
return nil, err
}
options.TotalSize = uint64(fileInfo.Size())
}
if options.MimeType == "" {
mimeType := mime.TypeByExtension(filepath.Ext(filePath))
options.MimeType = mimeType
}
writer := p.StreamBytes(options)
fileBytes, err := os.ReadFile(filePath)
if err != nil {
writer.Close()
return nil, err
}
onDone := func() {
writer.Close()
}
writer.Write(fileBytes, &onDone)
return &writer.Info, nil
}