454 lines
16 KiB
JavaScript
454 lines
16 KiB
JavaScript
var RTC = require('../RTC/RTC');
|
|
var RTCBrowserType = require("../RTC/RTCBrowserType.js");
|
|
var XMPPEvents = require("../../service/xmpp/XMPPEvents");
|
|
var SSRCReplacement = require("./LocalSSRCReplacement");
|
|
|
|
function TraceablePeerConnection(ice_config, constraints, session) {
|
|
var self = this;
|
|
var RTCPeerConnectionType = null;
|
|
if (RTCBrowserType.isFirefox()) {
|
|
RTCPeerConnectionType = mozRTCPeerConnection;
|
|
} else if (RTCBrowserType.isTemasysPluginUsed()) {
|
|
RTCPeerConnectionType = RTCPeerConnection;
|
|
} else {
|
|
RTCPeerConnectionType = webkitRTCPeerConnection;
|
|
}
|
|
this.peerconnection = new RTCPeerConnectionType(ice_config, constraints);
|
|
this.updateLog = [];
|
|
this.stats = {};
|
|
this.statsinterval = null;
|
|
this.maxstats = 0; // limit to 300 values, i.e. 5 minutes; set to 0 to disable
|
|
var Interop = require('sdp-interop').Interop;
|
|
this.interop = new Interop();
|
|
var Simulcast = require('sdp-simulcast');
|
|
this.simulcast = new Simulcast({numOfLayers: 3, explodeRemoteSimulcast: false});
|
|
|
|
// override as desired
|
|
this.trace = function (what, info) {
|
|
/*console.warn('WTRACE', what, info);
|
|
if (info && RTCBrowserType.isIExplorer()) {
|
|
if (info.length > 1024) {
|
|
console.warn('WTRACE', what, info.substr(1024));
|
|
}
|
|
if (info.length > 2048) {
|
|
console.warn('WTRACE', what, info.substr(2048));
|
|
}
|
|
}*/
|
|
self.updateLog.push({
|
|
time: new Date(),
|
|
type: what,
|
|
value: info || ""
|
|
});
|
|
};
|
|
this.onicecandidate = null;
|
|
this.peerconnection.onicecandidate = function (event) {
|
|
// FIXME: this causes stack overflow with Temasys Plugin
|
|
if (!RTCBrowserType.isTemasysPluginUsed())
|
|
self.trace('onicecandidate', JSON.stringify(event.candidate, null, ' '));
|
|
if (self.onicecandidate !== null) {
|
|
self.onicecandidate(event);
|
|
}
|
|
};
|
|
this.onaddstream = null;
|
|
this.peerconnection.onaddstream = function (event) {
|
|
self.trace('onaddstream', event.stream.id);
|
|
if (self.onaddstream !== null) {
|
|
self.onaddstream(event);
|
|
}
|
|
};
|
|
this.onremovestream = null;
|
|
this.peerconnection.onremovestream = function (event) {
|
|
self.trace('onremovestream', event.stream.id);
|
|
if (self.onremovestream !== null) {
|
|
self.onremovestream(event);
|
|
}
|
|
};
|
|
this.onsignalingstatechange = null;
|
|
this.peerconnection.onsignalingstatechange = function (event) {
|
|
self.trace('onsignalingstatechange', self.signalingState);
|
|
if (self.onsignalingstatechange !== null) {
|
|
self.onsignalingstatechange(event);
|
|
}
|
|
};
|
|
this.oniceconnectionstatechange = null;
|
|
this.peerconnection.oniceconnectionstatechange = function (event) {
|
|
self.trace('oniceconnectionstatechange', self.iceConnectionState);
|
|
if (self.oniceconnectionstatechange !== null) {
|
|
self.oniceconnectionstatechange(event);
|
|
}
|
|
};
|
|
this.onnegotiationneeded = null;
|
|
this.peerconnection.onnegotiationneeded = function (event) {
|
|
self.trace('onnegotiationneeded');
|
|
if (self.onnegotiationneeded !== null) {
|
|
self.onnegotiationneeded(event);
|
|
}
|
|
};
|
|
self.ondatachannel = null;
|
|
this.peerconnection.ondatachannel = function (event) {
|
|
self.trace('ondatachannel', event);
|
|
if (self.ondatachannel !== null) {
|
|
self.ondatachannel(event);
|
|
}
|
|
};
|
|
// XXX: do all non-firefox browsers which we support also support this?
|
|
if (!RTCBrowserType.isFirefox() && this.maxstats) {
|
|
this.statsinterval = window.setInterval(function() {
|
|
self.peerconnection.getStats(function(stats) {
|
|
var results = stats.result();
|
|
var now = new Date();
|
|
for (var i = 0; i < results.length; ++i) {
|
|
results[i].names().forEach(function (name) {
|
|
var id = results[i].id + '-' + name;
|
|
if (!self.stats[id]) {
|
|
self.stats[id] = {
|
|
startTime: now,
|
|
endTime: now,
|
|
values: [],
|
|
times: []
|
|
};
|
|
}
|
|
self.stats[id].values.push(results[i].stat(name));
|
|
self.stats[id].times.push(now.getTime());
|
|
if (self.stats[id].values.length > self.maxstats) {
|
|
self.stats[id].values.shift();
|
|
self.stats[id].times.shift();
|
|
}
|
|
self.stats[id].endTime = now;
|
|
});
|
|
}
|
|
});
|
|
|
|
}, 1000);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a string representation of a SessionDescription object.
|
|
*/
|
|
var dumpSDP = function(description) {
|
|
if (typeof description === 'undefined' || description == null) {
|
|
return '';
|
|
}
|
|
|
|
return 'type: ' + description.type + '\r\n' + description.sdp;
|
|
};
|
|
|
|
/**
|
|
* Takes a SessionDescription object and returns a "normalized" version.
|
|
* Currently it only takes care of ordering the a=ssrc lines.
|
|
*/
|
|
var normalizePlanB = function(desc) {
|
|
if (typeof desc !== 'object' || desc === null ||
|
|
typeof desc.sdp !== 'string') {
|
|
console.warn('An empty description was passed as an argument.');
|
|
return desc;
|
|
}
|
|
|
|
var transform = require('sdp-transform');
|
|
var session = transform.parse(desc.sdp);
|
|
|
|
if (typeof session !== 'undefined' && typeof session.media !== 'undefined' &&
|
|
Array.isArray(session.media)) {
|
|
session.media.forEach(function (mLine) {
|
|
|
|
// Chrome appears to be picky about the order in which a=ssrc lines
|
|
// are listed in an m-line when rtx is enabled (and thus there are
|
|
// a=ssrc-group lines with FID semantics). Specifically if we have
|
|
// "a=ssrc-group:FID S1 S2" and the "a=ssrc:S2" lines appear before
|
|
// the "a=ssrc:S1" lines, SRD fails.
|
|
// So, put SSRC which appear as the first SSRC in an FID ssrc-group
|
|
// first.
|
|
var firstSsrcs = [];
|
|
var newSsrcLines = [];
|
|
|
|
if (typeof mLine.ssrcGroups !== 'undefined' && Array.isArray(mLine.ssrcGroups)) {
|
|
mLine.ssrcGroups.forEach(function (group) {
|
|
if (typeof group.semantics !== 'undefined' &&
|
|
group.semantics === 'FID') {
|
|
if (typeof group.ssrcs !== 'undefined') {
|
|
firstSsrcs.push(Number(group.ssrcs.split(' ')[0]));
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
if (typeof mLine.ssrcs !== 'undefined' && Array.isArray(mLine.ssrcs)) {
|
|
for (var i = 0; i<mLine.ssrcs.length; i++){
|
|
if (typeof mLine.ssrcs[i] === 'object'
|
|
&& typeof mLine.ssrcs[i].id !== 'undefined'
|
|
&& $.inArray(mLine.ssrcs[i].id, firstSsrcs) == 0) {
|
|
newSsrcLines.push(mLine.ssrcs[i]);
|
|
delete mLine.ssrcs[i];
|
|
}
|
|
}
|
|
|
|
for (var i = 0; i<mLine.ssrcs.length; i++){
|
|
if (typeof mLine.ssrcs[i] !== 'undefined') {
|
|
newSsrcLines.push(mLine.ssrcs[i]);
|
|
}
|
|
}
|
|
|
|
mLine.ssrcs = newSsrcLines;
|
|
}
|
|
});
|
|
}
|
|
|
|
var resStr = transform.write(session);
|
|
return new RTCSessionDescription({
|
|
type: desc.type,
|
|
sdp: resStr
|
|
});
|
|
};
|
|
|
|
if (TraceablePeerConnection.prototype.__defineGetter__ !== undefined) {
|
|
TraceablePeerConnection.prototype.__defineGetter__(
|
|
'signalingState',
|
|
function() { return this.peerconnection.signalingState; });
|
|
TraceablePeerConnection.prototype.__defineGetter__(
|
|
'iceConnectionState',
|
|
function() { return this.peerconnection.iceConnectionState; });
|
|
TraceablePeerConnection.prototype.__defineGetter__(
|
|
'localDescription',
|
|
function() {
|
|
var desc = this.peerconnection.localDescription;
|
|
|
|
desc = SSRCReplacement.mungeLocalVideoSSRC(desc);
|
|
|
|
this.trace('getLocalDescription::preTransform', dumpSDP(desc));
|
|
|
|
// if we're running on FF, transform to Plan B first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
desc = this.interop.toPlanB(desc);
|
|
this.trace('getLocalDescription::postTransform (Plan B)', dumpSDP(desc));
|
|
}
|
|
return desc;
|
|
});
|
|
TraceablePeerConnection.prototype.__defineGetter__(
|
|
'remoteDescription',
|
|
function() {
|
|
var desc = this.peerconnection.remoteDescription;
|
|
this.trace('getRemoteDescription::preTransform', dumpSDP(desc));
|
|
|
|
// if we're running on FF, transform to Plan B first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
desc = this.interop.toPlanB(desc);
|
|
this.trace('getRemoteDescription::postTransform (Plan B)', dumpSDP(desc));
|
|
}
|
|
return desc;
|
|
});
|
|
}
|
|
|
|
TraceablePeerConnection.prototype.addStream = function (stream) {
|
|
this.trace('addStream', stream.id);
|
|
try
|
|
{
|
|
this.peerconnection.addStream(stream);
|
|
}
|
|
catch (e)
|
|
{
|
|
console.error(e);
|
|
}
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.removeStream = function (stream, stopStreams) {
|
|
this.trace('removeStream', stream.id);
|
|
if(stopStreams) {
|
|
stream.getAudioTracks().forEach(function (track) {
|
|
// stop() not supported with IE
|
|
if (track.stop) {
|
|
track.stop();
|
|
}
|
|
});
|
|
stream.getVideoTracks().forEach(function (track) {
|
|
// stop() not supported with IE
|
|
if (track.stop) {
|
|
track.stop();
|
|
}
|
|
});
|
|
if (stream.stop) {
|
|
stream.stop();
|
|
}
|
|
}
|
|
|
|
try {
|
|
// FF doesn't support this yet.
|
|
if (this.peerconnection.removeStream)
|
|
this.peerconnection.removeStream(stream);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.createDataChannel = function (label, opts) {
|
|
this.trace('createDataChannel', label, opts);
|
|
return this.peerconnection.createDataChannel(label, opts);
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.setLocalDescription
|
|
= function (description, successCallback, failureCallback) {
|
|
this.trace('setLocalDescription::preTransform', dumpSDP(description));
|
|
// if we're running on FF, transform to Plan A first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
description = this.interop.toUnifiedPlan(description);
|
|
this.trace('setLocalDescription::postTransform (Plan A)', dumpSDP(description));
|
|
}
|
|
|
|
var self = this;
|
|
this.peerconnection.setLocalDescription(description,
|
|
function () {
|
|
self.trace('setLocalDescriptionOnSuccess');
|
|
successCallback();
|
|
},
|
|
function (err) {
|
|
self.trace('setLocalDescriptionOnFailure', err);
|
|
failureCallback(err);
|
|
}
|
|
);
|
|
/*
|
|
if (this.statsinterval === null && this.maxstats > 0) {
|
|
// start gathering stats
|
|
}
|
|
*/
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.setRemoteDescription
|
|
= function (description, successCallback, failureCallback) {
|
|
this.trace('setRemoteDescription::preTransform', dumpSDP(description));
|
|
// TODO the focus should squeze or explode the remote simulcast
|
|
description = this.simulcast.mungeRemoteDescription(description);
|
|
this.trace('setRemoteDescription::postTransform (simulcast)', dumpSDP(description));
|
|
|
|
// if we're running on FF, transform to Plan A first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
description = this.interop.toUnifiedPlan(description);
|
|
this.trace('setRemoteDescription::postTransform (Plan A)', dumpSDP(description));
|
|
}
|
|
|
|
if (RTCBrowserType.usesPlanB()) {
|
|
description = normalizePlanB(description);
|
|
}
|
|
|
|
var self = this;
|
|
this.peerconnection.setRemoteDescription(description,
|
|
function () {
|
|
self.trace('setRemoteDescriptionOnSuccess');
|
|
successCallback();
|
|
},
|
|
function (err) {
|
|
self.trace('setRemoteDescriptionOnFailure', err);
|
|
failureCallback(err);
|
|
}
|
|
);
|
|
/*
|
|
if (this.statsinterval === null && this.maxstats > 0) {
|
|
// start gathering stats
|
|
}
|
|
*/
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.close = function () {
|
|
this.trace('stop');
|
|
if (this.statsinterval !== null) {
|
|
window.clearInterval(this.statsinterval);
|
|
this.statsinterval = null;
|
|
}
|
|
this.peerconnection.close();
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.createOffer
|
|
= function (successCallback, failureCallback, constraints) {
|
|
var self = this;
|
|
this.trace('createOffer', JSON.stringify(constraints, null, ' '));
|
|
this.peerconnection.createOffer(
|
|
function (offer) {
|
|
self.trace('createOfferOnSuccess::preTransform', dumpSDP(offer));
|
|
// NOTE this is not tested because in meet the focus generates the
|
|
// offer.
|
|
|
|
// if we're running on FF, transform to Plan B first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
offer = self.interop.toPlanB(offer);
|
|
self.trace('createOfferOnSuccess::postTransform (Plan B)', dumpSDP(offer));
|
|
}
|
|
|
|
offer = SSRCReplacement.mungeLocalVideoSSRC(offer);
|
|
|
|
if (config.enableSimulcast && self.simulcast.isSupported()) {
|
|
offer = self.simulcast.mungeLocalDescription(offer);
|
|
self.trace('createOfferOnSuccess::postTransform (simulcast)', dumpSDP(offer));
|
|
}
|
|
successCallback(offer);
|
|
},
|
|
function(err) {
|
|
self.trace('createOfferOnFailure', err);
|
|
failureCallback(err);
|
|
},
|
|
constraints
|
|
);
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.createAnswer
|
|
= function (successCallback, failureCallback, constraints) {
|
|
var self = this;
|
|
this.trace('createAnswer', JSON.stringify(constraints, null, ' '));
|
|
this.peerconnection.createAnswer(
|
|
function (answer) {
|
|
self.trace('createAnswerOnSuccess::preTransform', dumpSDP(answer));
|
|
// if we're running on FF, transform to Plan A first.
|
|
if (RTCBrowserType.usesUnifiedPlan()) {
|
|
answer = self.interop.toPlanB(answer);
|
|
self.trace('createAnswerOnSuccess::postTransform (Plan B)', dumpSDP(answer));
|
|
}
|
|
|
|
// munge local video SSRC
|
|
answer = SSRCReplacement.mungeLocalVideoSSRC(answer);
|
|
|
|
if (config.enableSimulcast && self.simulcast.isSupported()) {
|
|
answer = self.simulcast.mungeLocalDescription(answer);
|
|
self.trace('createAnswerOnSuccess::postTransform (simulcast)', dumpSDP(answer));
|
|
}
|
|
successCallback(answer);
|
|
},
|
|
function(err) {
|
|
self.trace('createAnswerOnFailure', err);
|
|
failureCallback(err);
|
|
},
|
|
constraints
|
|
);
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.addIceCandidate
|
|
= function (candidate, successCallback, failureCallback) {
|
|
//var self = this;
|
|
this.trace('addIceCandidate', JSON.stringify(candidate, null, ' '));
|
|
this.peerconnection.addIceCandidate(candidate);
|
|
/* maybe later
|
|
this.peerconnection.addIceCandidate(candidate,
|
|
function () {
|
|
self.trace('addIceCandidateOnSuccess');
|
|
successCallback();
|
|
},
|
|
function (err) {
|
|
self.trace('addIceCandidateOnFailure', err);
|
|
failureCallback(err);
|
|
}
|
|
);
|
|
*/
|
|
};
|
|
|
|
TraceablePeerConnection.prototype.getStats = function(callback, errback) {
|
|
// TODO: Is this the correct way to handle Opera, Temasys?
|
|
if (RTCBrowserType.isFirefox()) {
|
|
// ignore for now...
|
|
if(!errback)
|
|
errback = function () {};
|
|
this.peerconnection.getStats(null, callback, errback);
|
|
} else {
|
|
this.peerconnection.getStats(callback);
|
|
}
|
|
};
|
|
|
|
module.exports = TraceablePeerConnection;
|
|
|