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
|
//go:build !js
// +build !js
package webrtc
import (
"github.com/pion/webrtc/v3/internal/util"
)
type testORTCStack struct {
api *API
gatherer *ICEGatherer
ice *ICETransport
dtls *DTLSTransport
sctp *SCTPTransport
}
func (s *testORTCStack) setSignal(sig *testORTCSignal, isOffer bool) error {
iceRole := ICERoleControlled
if isOffer {
iceRole = ICERoleControlling
}
err := s.ice.SetRemoteCandidates(sig.ICECandidates)
if err != nil {
return err
}
// Start the ICE transport
err = s.ice.Start(nil, sig.ICEParameters, &iceRole)
if err != nil {
return err
}
// Start the DTLS transport
err = s.dtls.Start(sig.DTLSParameters)
if err != nil {
return err
}
// Start the SCTP transport
err = s.sctp.Start(sig.SCTPCapabilities)
if err != nil {
return err
}
return nil
}
func (s *testORTCStack) getSignal() (*testORTCSignal, error) {
gatherFinished := make(chan struct{})
s.gatherer.OnLocalCandidate(func(i *ICECandidate) {
if i == nil {
close(gatherFinished)
}
})
if err := s.gatherer.Gather(); err != nil {
return nil, err
}
<-gatherFinished
iceCandidates, err := s.gatherer.GetLocalCandidates()
if err != nil {
return nil, err
}
iceParams, err := s.gatherer.GetLocalParameters()
if err != nil {
return nil, err
}
dtlsParams, err := s.dtls.GetLocalParameters()
if err != nil {
return nil, err
}
sctpCapabilities := s.sctp.GetCapabilities()
return &testORTCSignal{
ICECandidates: iceCandidates,
ICEParameters: iceParams,
DTLSParameters: dtlsParams,
SCTPCapabilities: sctpCapabilities,
}, nil
}
func (s *testORTCStack) close() error {
var closeErrs []error
if err := s.sctp.Stop(); err != nil {
closeErrs = append(closeErrs, err)
}
if err := s.ice.Stop(); err != nil {
closeErrs = append(closeErrs, err)
}
return util.FlattenErrs(closeErrs)
}
type testORTCSignal struct {
ICECandidates []ICECandidate
ICEParameters ICEParameters
DTLSParameters DTLSParameters
SCTPCapabilities SCTPCapabilities
}
func newORTCPair() (stackA *testORTCStack, stackB *testORTCStack, err error) {
sa, err := newORTCStack()
if err != nil {
return nil, nil, err
}
sb, err := newORTCStack()
if err != nil {
return nil, nil, err
}
return sa, sb, nil
}
func newORTCStack() (*testORTCStack, error) {
// Create an API object
api := NewAPI()
// Create the ICE gatherer
gatherer, err := api.NewICEGatherer(ICEGatherOptions{})
if err != nil {
return nil, err
}
// Construct the ICE transport
ice := api.NewICETransport(gatherer)
// Construct the DTLS transport
dtls, err := api.NewDTLSTransport(ice, nil)
if err != nil {
return nil, err
}
// Construct the SCTP transport
sctp := api.NewSCTPTransport(dtls)
return &testORTCStack{
api: api,
gatherer: gatherer,
ice: ice,
dtls: dtls,
sctp: sctp,
}, nil
}
func signalORTCPair(stackA *testORTCStack, stackB *testORTCStack) error {
sigA, err := stackA.getSignal()
if err != nil {
return err
}
sigB, err := stackB.getSignal()
if err != nil {
return err
}
a := make(chan error)
b := make(chan error)
go func() {
a <- stackB.setSignal(sigA, false)
}()
go func() {
b <- stackA.setSignal(sigB, true)
}()
errA := <-a
errB := <-b
closeErrs := []error{errA, errB}
return util.FlattenErrs(closeErrs)
}
|