2020-04-02 09:30:16 +00:00
|
|
|
package eu.siacs.conversations.xmpp.jingle;
|
|
|
|
|
|
|
|
import android.util.Log;
|
|
|
|
|
2020-04-02 19:12:38 +00:00
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
2020-04-03 08:46:42 +00:00
|
|
|
|
2020-04-04 13:30:13 +00:00
|
|
|
import org.webrtc.AudioSource;
|
|
|
|
import org.webrtc.AudioTrack;
|
|
|
|
import org.webrtc.DataChannel;
|
|
|
|
import org.webrtc.IceCandidate;
|
|
|
|
import org.webrtc.MediaConstraints;
|
|
|
|
import org.webrtc.MediaStream;
|
|
|
|
import org.webrtc.PeerConnection;
|
|
|
|
import org.webrtc.PeerConnectionFactory;
|
|
|
|
import org.webrtc.RtpReceiver;
|
|
|
|
import org.webrtc.SdpObserver;
|
2020-04-02 19:12:38 +00:00
|
|
|
|
|
|
|
import java.util.Collection;
|
2020-04-04 13:30:13 +00:00
|
|
|
import java.util.Collections;
|
2020-04-02 19:12:38 +00:00
|
|
|
import java.util.Map;
|
|
|
|
|
2020-04-02 09:30:16 +00:00
|
|
|
import eu.siacs.conversations.Config;
|
2020-04-02 14:29:33 +00:00
|
|
|
import eu.siacs.conversations.xml.Element;
|
2020-04-02 19:12:38 +00:00
|
|
|
import eu.siacs.conversations.xml.Namespace;
|
2020-04-03 08:46:42 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.IceUdpTransportInfo;
|
2020-04-02 09:30:16 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.JinglePacket;
|
2020-04-03 08:46:42 +00:00
|
|
|
import eu.siacs.conversations.xmpp.jingle.stanzas.RtpDescription;
|
2020-04-02 19:12:38 +00:00
|
|
|
import eu.siacs.conversations.xmpp.stanzas.MessagePacket;
|
2020-04-02 14:29:33 +00:00
|
|
|
import rocks.xmpp.addr.Jid;
|
2020-04-02 09:30:16 +00:00
|
|
|
|
|
|
|
public class JingleRtpConnection extends AbstractJingleConnection {
|
|
|
|
|
2020-04-02 19:12:38 +00:00
|
|
|
private static final Map<State, Collection<State>> VALID_TRANSITIONS;
|
|
|
|
|
|
|
|
static {
|
|
|
|
final ImmutableMap.Builder<State, Collection<State>> transitionBuilder = new ImmutableMap.Builder<>();
|
|
|
|
transitionBuilder.put(State.NULL, ImmutableList.of(State.PROPOSED, State.SESSION_INITIALIZED));
|
|
|
|
transitionBuilder.put(State.PROPOSED, ImmutableList.of(State.ACCEPTED, State.PROCEED));
|
2020-04-03 08:46:42 +00:00
|
|
|
transitionBuilder.put(State.PROCEED, ImmutableList.of(State.SESSION_INITIALIZED));
|
2020-04-02 19:12:38 +00:00
|
|
|
VALID_TRANSITIONS = transitionBuilder.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
private State state = State.NULL;
|
2020-04-05 11:58:05 +00:00
|
|
|
private RtpContentMap initialRtpContentMap;
|
2020-04-05 14:12:44 +00:00
|
|
|
private PeerConnection peerConnection;
|
2020-04-02 19:12:38 +00:00
|
|
|
|
2020-04-02 09:30:16 +00:00
|
|
|
|
2020-04-03 06:16:55 +00:00
|
|
|
public JingleRtpConnection(JingleConnectionManager jingleConnectionManager, Id id, Jid initiator) {
|
|
|
|
super(jingleConnectionManager, id, initiator);
|
2020-04-02 09:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
void deliverPacket(final JinglePacket jinglePacket) {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": packet delivered to JingleRtpConnection");
|
2020-04-03 08:46:42 +00:00
|
|
|
switch (jinglePacket.getAction()) {
|
|
|
|
case SESSION_INITIATE:
|
|
|
|
receiveSessionInitiate(jinglePacket);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: received unhandled jingle action %s", id.account.getJid().asBareJid(), jinglePacket.getAction()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void receiveSessionInitiate(final JinglePacket jinglePacket) {
|
2020-04-05 14:12:44 +00:00
|
|
|
Log.d(Config.LOGTAG,jinglePacket.toString());
|
2020-04-03 08:46:42 +00:00
|
|
|
if (isInitiator()) {
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: received session-initiate even though we were initiating", id.account.getJid().asBareJid()));
|
|
|
|
//TODO respond with out-of-order
|
|
|
|
return;
|
|
|
|
}
|
2020-04-05 08:20:34 +00:00
|
|
|
final RtpContentMap contentMap;
|
2020-04-03 08:46:42 +00:00
|
|
|
try {
|
2020-04-05 08:20:34 +00:00
|
|
|
contentMap = RtpContentMap.of(jinglePacket);
|
2020-04-03 08:46:42 +00:00
|
|
|
} catch (IllegalArgumentException | NullPointerException e) {
|
2020-04-04 13:30:13 +00:00
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": improperly formatted contents", e);
|
2020-04-03 08:46:42 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-04-05 08:20:34 +00:00
|
|
|
Log.d(Config.LOGTAG, "processing session-init with " + contentMap.contents.size() + " contents");
|
2020-04-03 08:46:42 +00:00
|
|
|
final State oldState = this.state;
|
|
|
|
if (transition(State.SESSION_INITIALIZED)) {
|
|
|
|
if (oldState == State.PROCEED) {
|
2020-04-05 08:20:34 +00:00
|
|
|
processContents(contentMap);
|
2020-04-03 08:46:42 +00:00
|
|
|
sendSessionAccept();
|
|
|
|
} else {
|
|
|
|
//TODO start ringing
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: received session-initiate while in state %s", id.account.getJid().asBareJid(), state));
|
|
|
|
}
|
2020-04-02 09:30:16 +00:00
|
|
|
}
|
2020-04-02 14:29:33 +00:00
|
|
|
|
2020-04-05 08:20:34 +00:00
|
|
|
private void processContents(final RtpContentMap contentMap) {
|
|
|
|
for (Map.Entry<String, RtpContentMap.DescriptionTransport> content : contentMap.contents.entrySet()) {
|
|
|
|
final RtpContentMap.DescriptionTransport descriptionTransport = content.getValue();
|
2020-04-03 13:25:19 +00:00
|
|
|
final RtpDescription rtpDescription = descriptionTransport.description;
|
2020-04-04 13:30:13 +00:00
|
|
|
Log.d(Config.LOGTAG, "receive content with name " + content.getKey() + " and media=" + rtpDescription.getMedia());
|
|
|
|
for (RtpDescription.PayloadType payloadType : rtpDescription.getPayloadTypes()) {
|
|
|
|
Log.d(Config.LOGTAG, "payload type: " + payloadType.toString());
|
2020-04-03 13:25:19 +00:00
|
|
|
}
|
2020-04-04 13:30:13 +00:00
|
|
|
for (RtpDescription.RtpHeaderExtension extension : rtpDescription.getHeaderExtensions()) {
|
|
|
|
Log.d(Config.LOGTAG, "extension: " + extension.toString());
|
2020-04-03 13:25:19 +00:00
|
|
|
}
|
|
|
|
final IceUdpTransportInfo iceUdpTransportInfo = descriptionTransport.transport;
|
2020-04-04 13:30:13 +00:00
|
|
|
Log.d(Config.LOGTAG, "transport: " + descriptionTransport.transport);
|
|
|
|
Log.d(Config.LOGTAG, "fingerprint " + iceUdpTransportInfo.getFingerprint());
|
2020-04-03 13:25:19 +00:00
|
|
|
}
|
2020-04-05 14:12:44 +00:00
|
|
|
setupWebRTC();
|
|
|
|
org.webrtc.SessionDescription sessionDescription = new org.webrtc.SessionDescription(org.webrtc.SessionDescription.Type.OFFER, SessionDescription.of(contentMap).toString());
|
|
|
|
Log.d(Config.LOGTAG, "debug print for sessionDescription:" + sessionDescription.description);
|
|
|
|
this.peerConnection.setRemoteDescription(new SdpObserver() {
|
|
|
|
@Override
|
|
|
|
public void onCreateSuccess(org.webrtc.SessionDescription sessionDescription) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetSuccess() {
|
|
|
|
Log.d(Config.LOGTAG, "onSetSuccess() for setRemoteDescription");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateFailure(String s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetFailure(String s) {
|
|
|
|
Log.d(Config.LOGTAG, "onSetFailure() for setRemoteDescription. " + s);
|
|
|
|
|
|
|
|
}
|
|
|
|
}, sessionDescription);
|
2020-04-03 13:25:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-03 08:46:42 +00:00
|
|
|
void deliveryMessage(final Jid from, final Element message) {
|
2020-04-02 14:29:33 +00:00
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": delivered message to JingleRtpConnection " + message);
|
2020-04-02 19:12:38 +00:00
|
|
|
switch (message.getName()) {
|
|
|
|
case "propose":
|
2020-04-03 08:46:42 +00:00
|
|
|
receivePropose(from, message);
|
2020-04-02 19:12:38 +00:00
|
|
|
break;
|
2020-04-03 08:46:42 +00:00
|
|
|
case "proceed":
|
|
|
|
receiveProceed(from, message);
|
2020-04-02 19:12:38 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 08:46:42 +00:00
|
|
|
private void receivePropose(final Jid from, final Element propose) {
|
|
|
|
final boolean originatedFromMyself = from.asBareJid().equals(id.account.getJid().asBareJid());
|
|
|
|
if (originatedFromMyself) {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": saw proposal from mysql. ignoring");
|
|
|
|
} else if (transition(State.PROPOSED)) {
|
|
|
|
//TODO start ringing or something
|
|
|
|
pickUpCall();
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid() + ": ignoring session proposal because already in " + state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void receiveProceed(final Jid from, final Element proceed) {
|
|
|
|
if (from.equals(id.with)) {
|
|
|
|
if (isInitiator()) {
|
2020-04-04 09:31:53 +00:00
|
|
|
if (transition(State.PROCEED)) {
|
2020-04-03 08:46:42 +00:00
|
|
|
this.sendSessionInitiate();
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: ignoring proceed because already in %s", id.account.getJid().asBareJid(), this.state));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: ignoring proceed because we were not initializing", id.account.getJid().asBareJid()));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.d(Config.LOGTAG, String.format("%s: ignoring proceed from %s. was expected from %s", id.account.getJid().asBareJid(), from, id.with));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void sendSessionInitiate() {
|
2020-04-05 08:20:34 +00:00
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": prepare session-initiate");
|
2020-04-05 14:12:44 +00:00
|
|
|
setupWebRTC();
|
|
|
|
createOffer();
|
2020-04-05 08:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void sendSessionInitiate(RtpContentMap rtpContentMap) {
|
2020-04-05 11:58:05 +00:00
|
|
|
this.initialRtpContentMap = rtpContentMap;
|
|
|
|
final JinglePacket sessionInitiate = rtpContentMap.toJinglePacket(JinglePacket.Action.SESSION_INITIATE, id.sessionId);
|
|
|
|
Log.d(Config.LOGTAG, sessionInitiate.toString());
|
2020-04-05 14:12:44 +00:00
|
|
|
Log.d(Config.LOGTAG, "here is what we think the sdp looks like" + SessionDescription.of(rtpContentMap).toString());
|
2020-04-05 11:58:05 +00:00
|
|
|
send(sessionInitiate);
|
2020-04-03 08:46:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-05 11:58:05 +00:00
|
|
|
private void sendTransportInfo(final String contentName, IceUdpTransportInfo.Candidate candidate) {
|
|
|
|
final RtpContentMap transportInfo;
|
|
|
|
try {
|
|
|
|
transportInfo = this.initialRtpContentMap.transportInfo(contentName, candidate);
|
|
|
|
} catch (Exception e) {
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": unable to prepare transport-info from candidate for content=" + contentName);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final JinglePacket jinglePacket = transportInfo.toJinglePacket(JinglePacket.Action.TRANSPORT_INFO, id.sessionId);
|
|
|
|
Log.d(Config.LOGTAG, jinglePacket.toString());
|
|
|
|
send(jinglePacket);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void send(final JinglePacket jinglePacket) {
|
|
|
|
jinglePacket.setTo(id.with);
|
|
|
|
//TODO track errors
|
|
|
|
xmppConnectionService.sendIqPacket(id.account, jinglePacket, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-03 08:46:42 +00:00
|
|
|
private void sendSessionAccept() {
|
2020-04-04 13:30:13 +00:00
|
|
|
Log.d(Config.LOGTAG, "sending session-accept");
|
2020-04-03 08:46:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-02 19:12:38 +00:00
|
|
|
public void pickUpCall() {
|
|
|
|
switch (this.state) {
|
|
|
|
case PROPOSED:
|
|
|
|
pickupCallFromProposed();
|
|
|
|
break;
|
|
|
|
case SESSION_INITIALIZED:
|
|
|
|
pickupCallFromSessionInitialized();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new IllegalStateException("Can not pick up call from " + this.state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-04 13:30:13 +00:00
|
|
|
private void setupWebRTC() {
|
|
|
|
PeerConnectionFactory.initialize(
|
|
|
|
PeerConnectionFactory.InitializationOptions.builder(xmppConnectionService).createInitializationOptions()
|
|
|
|
);
|
|
|
|
final PeerConnectionFactory.Options options = new PeerConnectionFactory.Options();
|
|
|
|
PeerConnectionFactory peerConnectionFactory = PeerConnectionFactory.builder().createPeerConnectionFactory();
|
|
|
|
|
|
|
|
final AudioSource audioSource = peerConnectionFactory.createAudioSource(new MediaConstraints());
|
|
|
|
|
|
|
|
final AudioTrack audioTrack = peerConnectionFactory.createAudioTrack("my-audio-track", audioSource);
|
|
|
|
final MediaStream stream = peerConnectionFactory.createLocalMediaStream("my-media-stream");
|
|
|
|
stream.addTrack(audioTrack);
|
|
|
|
|
|
|
|
|
2020-04-05 14:12:44 +00:00
|
|
|
this.peerConnection = peerConnectionFactory.createPeerConnection(Collections.emptyList(), new PeerConnection.Observer() {
|
2020-04-04 13:30:13 +00:00
|
|
|
@Override
|
|
|
|
public void onSignalingChange(PeerConnection.SignalingState signalingState) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIceConnectionChange(PeerConnection.IceConnectionState iceConnectionState) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIceConnectionReceivingChange(boolean b) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIceGatheringChange(PeerConnection.IceGatheringState iceGatheringState) {
|
2020-04-05 11:58:05 +00:00
|
|
|
Log.d(Config.LOGTAG, "onIceGatheringChange() " + iceGatheringState);
|
2020-04-04 13:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIceCandidate(IceCandidate iceCandidate) {
|
2020-04-05 11:58:05 +00:00
|
|
|
IceUdpTransportInfo.Candidate candidate = IceUdpTransportInfo.Candidate.fromSdpAttribute(iceCandidate.sdp);
|
|
|
|
Log.d(Config.LOGTAG, "onIceCandidate: " + iceCandidate.sdp);
|
|
|
|
sendTransportInfo(iceCandidate.sdpMid, candidate);
|
2020-04-04 13:30:13 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onIceCandidatesRemoved(IceCandidate[] iceCandidates) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAddStream(MediaStream mediaStream) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRemoveStream(MediaStream mediaStream) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDataChannel(DataChannel dataChannel) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRenegotiationNeeded() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAddTrack(RtpReceiver rtpReceiver, MediaStream[] mediaStreams) {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-04-05 11:58:05 +00:00
|
|
|
peerConnection.addStream(stream);
|
2020-04-05 14:12:44 +00:00
|
|
|
}
|
2020-04-04 13:30:13 +00:00
|
|
|
|
2020-04-05 14:12:44 +00:00
|
|
|
private void createOffer() {
|
|
|
|
Log.d(Config.LOGTAG, "createOffer()");
|
2020-04-05 11:58:05 +00:00
|
|
|
peerConnection.createOffer(new SdpObserver() {
|
2020-04-04 13:30:13 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateSuccess(org.webrtc.SessionDescription description) {
|
|
|
|
final SessionDescription sessionDescription = SessionDescription.parse(description.description);
|
2020-04-05 08:20:34 +00:00
|
|
|
Log.d(Config.LOGTAG, "description: " + description.description);
|
|
|
|
final RtpContentMap rtpContentMap = RtpContentMap.of(sessionDescription);
|
|
|
|
sendSessionInitiate(rtpContentMap);
|
2020-04-05 11:58:05 +00:00
|
|
|
peerConnection.setLocalDescription(new SdpObserver() {
|
|
|
|
@Override
|
|
|
|
public void onCreateSuccess(org.webrtc.SessionDescription sessionDescription) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetSuccess() {
|
|
|
|
Log.d(Config.LOGTAG, "onSetSuccess()");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateFailure(String s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetFailure(String s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}, description);
|
2020-04-04 13:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetSuccess() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateFailure(String s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSetFailure(String s) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}, new MediaConstraints());
|
|
|
|
}
|
|
|
|
|
2020-04-02 19:12:38 +00:00
|
|
|
private void pickupCallFromProposed() {
|
|
|
|
transitionOrThrow(State.PROCEED);
|
|
|
|
final MessagePacket messagePacket = new MessagePacket();
|
|
|
|
messagePacket.setTo(id.with);
|
2020-04-03 08:46:42 +00:00
|
|
|
//Note that Movim needs 'accept', correct is 'proceed' https://github.com/movim/movim/issues/916
|
2020-04-04 09:31:53 +00:00
|
|
|
messagePacket.addChild("proceed", Namespace.JINGLE_MESSAGE).setAttribute("id", id.sessionId);
|
2020-04-02 19:12:38 +00:00
|
|
|
Log.d(Config.LOGTAG, messagePacket.toString());
|
|
|
|
xmppConnectionService.sendMessagePacket(id.account, messagePacket);
|
2020-04-02 14:29:33 +00:00
|
|
|
}
|
2020-04-02 19:12:38 +00:00
|
|
|
|
|
|
|
private void pickupCallFromSessionInitialized() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private synchronized boolean transition(final State target) {
|
|
|
|
final Collection<State> validTransitions = VALID_TRANSITIONS.get(this.state);
|
|
|
|
if (validTransitions != null && validTransitions.contains(target)) {
|
|
|
|
this.state = target;
|
|
|
|
Log.d(Config.LOGTAG, id.account.getJid().asBareJid() + ": transitioned into " + target);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-04 09:31:53 +00:00
|
|
|
public void transitionOrThrow(final State target) {
|
2020-04-02 19:12:38 +00:00
|
|
|
if (!transition(target)) {
|
|
|
|
throw new IllegalStateException(String.format("Unable to transition from %s to %s", this.state, target));
|
|
|
|
}
|
|
|
|
}
|
2020-04-02 09:30:16 +00:00
|
|
|
}
|