123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- /* global __filename, module, require */
- var logger = require('jitsi-meet-logger').getLogger(__filename);
- var MediaType = require('../../service/RTC/MediaType');
- var RTCBrowserType = require('../RTC/RTCBrowserType');
- var RTCEvents = require('../../service/RTC/RTCEvents');
-
- import * as JitsiConferenceEvents from '../../JitsiConferenceEvents';
- import * as JitsiTrackEvents from '../../JitsiTrackEvents';
- import Statistics from '../statistics/statistics';
-
- /**
- * Default value of 2000 milliseconds for
- * {@link ParticipantConnectionStatus.rtcMuteTimeout}.
- *
- * @type {number}
- */
- const DEFAULT_RTC_MUTE_TIMEOUT = 2000;
-
- /**
- * Class is responsible for emitting
- * JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED events.
- */
- export default class ParticipantConnectionStatus {
- /**
- * Creates new instance of <tt>ParticipantConnectionStatus</tt>.
- *
- * @constructor
- * @param {RTC} rtc the RTC service instance
- * @param {JitsiConference} conference parent conference instance
- * @param {number} rtcMuteTimeout (optional) custom value for
- * {@link ParticipantConnectionStatus.rtcMuteTimeout}.
- */
- constructor(rtc, conference, rtcMuteTimeout) {
- this.rtc = rtc;
- this.conference = conference;
- /**
- * A map of the "endpoint ID"(which corresponds to the resource part
- * of MUC JID(nickname)) to the timeout callback IDs scheduled using
- * window.setTimeout.
- * @type {Object.<string, number>}
- */
- this.trackTimers = {};
- /**
- * This map holds the endpoint connection status received from the JVB
- * (as it might be different than the one stored in JitsiParticipant).
- * Required for getting back in sync when remote video track is removed.
- * @type {Object.<string, boolean>}
- */
- this.rtcConnStatusCache = { };
- /**
- * How long we're going to wait after the RTC video track muted event
- * for the corresponding signalling mute event, before the connection
- * interrupted is fired. The default value is
- * {@link DEFAULT_RTC_MUTE_TIMEOUT}.
- *
- * @type {number} amount of time in milliseconds
- */
- this.rtcMuteTimeout
- = typeof rtcMuteTimeout === 'number'
- ? rtcMuteTimeout : DEFAULT_RTC_MUTE_TIMEOUT;
- logger.info("RtcMuteTimeout set to: " + this.rtcMuteTimeout);
- }
-
- /**
- * Initializes <tt>ParticipantConnectionStatus</tt> and bind required event
- * listeners.
- */
- init() {
-
- this._onEndpointConnStatusChanged
- = this.onEndpointConnStatusChanged.bind(this);
-
- this.rtc.addListener(
- RTCEvents.ENDPOINT_CONN_STATUS_CHANGED,
- this._onEndpointConnStatusChanged);
-
- // On some browsers MediaStreamTrack trigger "onmute"/"onunmute"
- // events for video type tracks when they stop receiving data which is
- // often a sign that remote user is having connectivity issues
- if (RTCBrowserType.isVideoMuteOnConnInterruptedSupported()) {
-
- this._onTrackRtcMuted = this.onTrackRtcMuted.bind(this);
- this.rtc.addListener(
- RTCEvents.REMOTE_TRACK_MUTE, this._onTrackRtcMuted);
-
- this._onTrackRtcUnmuted = this.onTrackRtcUnmuted.bind(this);
- this.rtc.addListener(
- RTCEvents.REMOTE_TRACK_UNMUTE, this._onTrackRtcUnmuted);
-
- // Track added/removed listeners are used to bind "mute"/"unmute"
- // event handlers
- this._onRemoteTrackAdded = this.onRemoteTrackAdded.bind(this);
- this.conference.on(
- JitsiConferenceEvents.TRACK_ADDED,
- this._onRemoteTrackAdded);
-
- this._onRemoteTrackRemoved = this.onRemoteTrackRemoved.bind(this);
- this.conference.on(
- JitsiConferenceEvents.TRACK_REMOVED,
- this._onRemoteTrackRemoved);
-
- // Listened which will be bound to JitsiRemoteTrack to listen for
- // signalling mute/unmute events.
- this._onSignallingMuteChanged
- = this.onSignallingMuteChanged.bind(this);
- }
- }
-
- /**
- * Removes all event listeners and disposes of all resources held by this
- * instance.
- */
- dispose() {
-
- this.rtc.removeListener(
- RTCEvents.ENDPOINT_CONN_STATUS_CHANGED,
- this._onEndpointConnStatusChanged);
-
- if (RTCBrowserType.isVideoMuteOnConnInterruptedSupported()) {
- this.rtc.removeListener(
- RTCEvents.REMOTE_TRACK_MUTE,
- this._onTrackRtcMuted);
- this.rtc.removeListener(
- RTCEvents.REMOTE_TRACK_UNMUTE,
- this._onTrackRtcUnmuted);
-
- this.conference.off(
- JitsiConferenceEvents.TRACK_ADDED,
- this._onRemoteTrackAdded);
- this.conference.off(
- JitsiConferenceEvents.TRACK_REMOVED,
- this._onRemoteTrackRemoved);
- }
-
- Object.keys(this.trackTimers).forEach(function (participantId) {
- this.clearTimeout(participantId);
- }.bind(this));
-
- // Clear RTC connection status cache
- this.rtcConnStatusCache = {};
- }
-
- /**
- * Handles RTCEvents.ENDPOINT_CONN_STATUS_CHANGED triggered when we receive
- * notification over the data channel from the bridge about endpoint's
- * connection status update.
- * @param endpointId {string} the endpoint ID(MUC nickname/resource JID)
- * @param isActive {boolean} true if the connection is OK or false otherwise
- */
- onEndpointConnStatusChanged(endpointId, isActive) {
-
- logger.debug(
- 'Detector RTCEvents.ENDPOINT_CONN_STATUS_CHANGED('
- + Date.now() +'): ' + endpointId + ': ' + isActive);
-
- // Filter out events for the local JID for now
- if (endpointId !== this.conference.myUserId()) {
-
- // Cache the status received received over the data channels, as
- // it will be needed to verify for out of sync when the remote video
- // track is being removed.
- this.rtcConnStatusCache[endpointId] = isActive;
-
- var participant = this.conference.getParticipantById(endpointId);
- // Delay the 'active' event until the video track gets
- // the RTC unmuted event
- if (isActive
- && RTCBrowserType.isVideoMuteOnConnInterruptedSupported()
- && participant
- && participant.hasAnyVideoTrackWebRTCMuted()
- && !participant.isVideoMuted()) {
- logger.debug(
- 'Ignoring RTCEvents.ENDPOINT_CONN_STATUS_CHANGED -'
- + ' will wait for unmute event');
- } else {
- this._changeConnectionStatus(endpointId, isActive);
- }
- }
- }
-
- _changeConnectionStatus(endpointId, newStatus) {
- var participant = this.conference.getParticipantById(endpointId);
- if (!participant) {
- // This will happen when participant exits the conference with
- // broken ICE connection and we join after that. The bridge keeps
- // sending that notification until the conference does not expire.
- logger.warn(
- 'Missed participant connection status update - ' +
- 'no participant for endpoint: ' + endpointId);
- return;
- }
- if (participant.isConnectionActive() !== newStatus) {
-
- participant._setIsConnectionActive(newStatus);
-
- logger.debug(
- 'Emit endpoint conn status(' + Date.now() + ') '
- + endpointId + ": " + newStatus);
-
- // Log the event on CallStats
- Statistics.sendLog(
- JSON.stringify({
- id: 'peer.conn.status',
- participant: endpointId,
- status: newStatus
- }));
-
- // and analytics
- Statistics.analytics.sendEvent('peer.conn.status',
- {label: newStatus});
-
- this.conference.eventEmitter.emit(
- JitsiConferenceEvents.PARTICIPANT_CONN_STATUS_CHANGED,
- endpointId, newStatus);
- }
- }
-
- /**
- * Reset the postponed "connection interrupted" event which was previously
- * scheduled as a timeout on RTC 'onmute' event.
- *
- * @param participantId the participant for which the "connection
- * interrupted" timeout was scheduled
- */
- clearTimeout(participantId) {
- if (this.trackTimers[participantId]) {
- window.clearTimeout(this.trackTimers[participantId]);
- this.trackTimers[participantId] = null;
- }
- }
-
- /**
- * Bind signalling mute event listeners for video {JitsiRemoteTrack} when
- * a new one is added to the conference.
- *
- * @param {JitsiTrack} remoteTrack the {JitsiTrack} which is being added to
- * the conference.
- */
- onRemoteTrackAdded(remoteTrack) {
- if (!remoteTrack.isLocal()
- && remoteTrack.getType() === MediaType.VIDEO) {
-
- logger.debug(
- 'Detector on remote track added for: '
- + remoteTrack.getParticipantId());
-
- remoteTrack.on(
- JitsiTrackEvents.TRACK_MUTE_CHANGED,
- this._onSignallingMuteChanged);
- }
- }
-
- /**
- * Removes all event listeners bound to the remote video track and clears
- * any related timeouts.
- *
- * @param {JitsiRemoteTrack} remoteTrack the remote track which is being
- * removed from the conference.
- */
- onRemoteTrackRemoved(remoteTrack) {
- if (!remoteTrack.isLocal()
- && remoteTrack.getType() === MediaType.VIDEO) {
-
- const endpointId = remoteTrack.getParticipantId();
-
- logger.debug(
- 'Detector on remote track removed: ' + endpointId);
-
- remoteTrack.off(
- JitsiTrackEvents.TRACK_MUTE_CHANGED,
- this._onSignallingMuteChanged);
-
- this.clearTimeout(endpointId);
-
- // Only if we're using video muted events - check if the JVB status
- // should be restored from cache.
- if (RTCBrowserType.isVideoMuteOnConnInterruptedSupported())
- {
- this.maybeRestoreCachedStatus(endpointId);
- }
- }
- }
-
- /**
- * When RTC video track muted events are taken into account,
- * at the point when the track is being removed we have to update
- * to the current connectivity status according to the JVB. That's
- * because if the current track is muted then the new one which
- * replaces it is always added as unmuted and there may be no
- * 'muted'/'unmuted' event sequence if the connection restores in
- * the meantime.
- *
- * XXX See onEndpointConnStatusChanged method where the update is
- * postponed and which is the cause for this workaround. If we
- * decide to not wait for video unmuted event and accept the JVB
- * status immediately then it's fine to remove the code below.
- */
- maybeRestoreCachedStatus(endpointId) {
- var participant = this.conference.getParticipantById(endpointId);
- if (!participant) {
- // Probably the participant is no longer in the conference
- // (at the time of writing this code, participant is
- // detached from the conference and TRACK_REMOVED events are
- // fired),
- // so we don't care, but let's print the warning for
- // debugging purpose
- logger.warn(
- 'maybeRestoreCachedStatus - ' +
- 'no participant for endpoint: ' + endpointId);
- return;
- }
-
- const isConnectionActive = participant.isConnectionActive();
- const hasAnyVideoRTCMuted = participant.hasAnyVideoTrackWebRTCMuted();
- let isConnActiveByJvb = this.rtcConnStatusCache[endpointId];
-
- // If no status was received from the JVB it means that it's active
- // (the bridge does not send notification unless there is a problem).
- if (typeof isConnActiveByJvb !== 'boolean') {
- logger.debug("Assuming connection active by JVB - no notification");
- isConnActiveByJvb = true;
- }
-
- logger.debug(
- "Remote track removed, is active: " + isConnectionActive
- + " is active(jvb):" + isConnActiveByJvb
- + " video RTC muted:" + hasAnyVideoRTCMuted);
-
- if (!isConnectionActive && isConnActiveByJvb && !hasAnyVideoRTCMuted) {
- // FIXME adjust the log level or remove the message completely once
- // the feature gets mature enough.
- logger.info(
- "Remote track removed for disconnected" +
- " participant, when the status according to" +
- " the JVB is connected. Adjusting to the JVB value for: "
- + endpointId);
- this._changeConnectionStatus(endpointId, isConnActiveByJvb);
- }
- }
-
- /**
- * Handles RTC 'onmute' event for the video track.
- *
- * @param {JitsiRemoteTrack} track the video track for which 'onmute' event
- * will be processed.
- */
- onTrackRtcMuted(track) {
- var participantId = track.getParticipantId();
- var participant = this.conference.getParticipantById(participantId);
- logger.debug('Detector track RTC muted: ' + participantId);
- if (!participant) {
- logger.error('No participant for id: ' + participantId);
- return;
- }
- if (!participant.isVideoMuted()) {
- // If the user is not muted according to the signalling we'll give
- // it some time, before the connection interrupted event is
- // triggered.
- this.trackTimers[participantId] = window.setTimeout(function () {
- if (!track.isMuted() && participant.isConnectionActive()) {
- logger.info(
- 'Connection interrupted through the RTC mute: '
- + participantId, Date.now());
- this._changeConnectionStatus(participantId, false);
- }
- this.clearTimeout(participantId);
- }.bind(this), this.rtcMuteTimeout);
- }
- }
-
- /**
- * Handles RTC 'onunmute' event for the video track.
- *
- * @param {JitsiRemoteTrack} track the video track for which 'onunmute'
- * event will be processed.
- */
- onTrackRtcUnmuted(track) {
- var participantId = track.getParticipantId();
- logger.debug('Detector track RTC unmuted: ' + participantId);
- if (!track.isMuted() &&
- !this.conference.getParticipantById(participantId)
- .isConnectionActive()) {
- logger.info(
- 'Detector connection restored through the RTC unmute: '
- + participantId, Date.now());
- this._changeConnectionStatus(participantId, true);
- }
- this.clearTimeout(participantId);
- }
-
- /**
- * Here the signalling "mute"/"unmute" events are processed.
- *
- * @param {JitsiRemoteTrack} track the remote video track for which
- * the signalling mute/unmute event will be processed.
- */
- onSignallingMuteChanged (track) {
- var isMuted = track.isMuted();
- var participantId = track.getParticipantId();
-
- logger.debug(
- 'Detector on track signalling mute changed: ',
- participantId, track.isMuted());
-
- var participant = this.conference.getParticipantById(participantId);
- if (!participant) {
- logger.error('No participant for id: ' + participantId);
- return;
- }
- var isConnectionActive = participant.isConnectionActive();
- if (isMuted && isConnectionActive && this.trackTimers[participantId]) {
- logger.debug(
- 'Signalling got in sync - cancelling task for: '
- + participantId);
- this.clearTimeout(participantId);
- }
- }
-
- }
|