111
This commit is contained in:
200
WebApp/client/src/renderstreaming.js
Normal file
200
WebApp/client/src/renderstreaming.js
Normal file
@@ -0,0 +1,200 @@
|
||||
import Peer from "./peer.js";
|
||||
import * as Logger from "./logger.js";
|
||||
|
||||
function uuid4() {
|
||||
var temp_url = URL.createObjectURL(new Blob());
|
||||
var uuid = temp_url.toString();
|
||||
URL.revokeObjectURL(temp_url);
|
||||
return uuid.split(/[:/]/g).pop().toLowerCase(); // remove prefixes
|
||||
}
|
||||
|
||||
export class RenderStreaming {
|
||||
/**
|
||||
* @param signaling signaling class
|
||||
* @param {RTCConfiguration} config
|
||||
*/
|
||||
constructor(signaling, config) {
|
||||
this._peer = null;
|
||||
this._connectionId = null;
|
||||
this.onConnect = function (connectionId) { Logger.log(`Connect peer on ${connectionId}.`); };
|
||||
this.onDisconnect = function (connectionId) { Logger.log(`Disconnect peer on ${connectionId}.`); };
|
||||
this.onGotOffer = function (connectionId) { Logger.log(`On got Offer on ${connectionId}.`); };
|
||||
this.onGotAnswer = function (connectionId) { Logger.log(`On got Answer on ${connectionId}.`); };
|
||||
this.onTrackEvent = function (data) { Logger.log(`OnTrack event peer with data:${data}`); };
|
||||
this.onAddChannel = function (data) { Logger.log(`onAddChannel event peer with data:${data}`); };
|
||||
|
||||
this._config = config;
|
||||
this._signaling = signaling;
|
||||
this._signaling.addEventListener('connect', this._onConnect.bind(this));
|
||||
this._signaling.addEventListener('disconnect', this._onDisconnect.bind(this));
|
||||
this._signaling.addEventListener('offer', this._onOffer.bind(this));
|
||||
this._signaling.addEventListener('answer', this._onAnswer.bind(this));
|
||||
this._signaling.addEventListener('candidate', this._onIceCandidate.bind(this));
|
||||
}
|
||||
|
||||
async _onConnect(e) {
|
||||
const data = e.detail;
|
||||
if (this._connectionId == data.connectionId) {
|
||||
this._preparePeerConnection(this._connectionId, data.polite);
|
||||
this.onConnect(data.connectionId);
|
||||
}
|
||||
}
|
||||
|
||||
async _onDisconnect(e) {
|
||||
const data = e.detail;
|
||||
if (this._connectionId == data.connectionId) {
|
||||
this.onDisconnect(data.connectionId);
|
||||
if (this._peer) {
|
||||
this._peer.close();
|
||||
this._peer = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async _onOffer(e) {
|
||||
const offer = e.detail;
|
||||
if (!this._peer) {
|
||||
this._preparePeerConnection(offer.connectionId, offer.polite);
|
||||
}
|
||||
const desc = new RTCSessionDescription({ sdp: offer.sdp, type: "offer" });
|
||||
try {
|
||||
await this._peer.onGotDescription(offer.connectionId, desc);
|
||||
} catch (error) {
|
||||
Logger.warn(`Error happen on GotDescription that description.\n Message: ${error}\n RTCSdpType:${desc.type}\n sdp:${desc.sdp}`);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
async _onAnswer(e) {
|
||||
const answer = e.detail;
|
||||
const desc = new RTCSessionDescription({ sdp: answer.sdp, type: "answer" });
|
||||
if (this._peer) {
|
||||
try {
|
||||
await this._peer.onGotDescription(answer.connectionId, desc);
|
||||
} catch (error) {
|
||||
Logger.warn(`Error happen on GotDescription that description.\n Message: ${error}\n RTCSdpType:${desc.type}\n sdp:${desc.sdp}`);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
async _onIceCandidate(e) {
|
||||
const candidate = e.detail;
|
||||
const iceCandidate = new RTCIceCandidate({ candidate: candidate.candidate, sdpMid: candidate.sdpMid, sdpMLineIndex: candidate.sdpMLineIndex });
|
||||
if (this._peer) {
|
||||
await this._peer.onGotCandidate(candidate.connectionId, iceCandidate);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* if not set argument, a generated uuid is used.
|
||||
* @param {string | null} connectionId
|
||||
*/
|
||||
async createConnection(connectionId) {
|
||||
this._connectionId = connectionId ? connectionId : uuid4();
|
||||
await this._signaling.createConnection(this._connectionId);
|
||||
}
|
||||
|
||||
async deleteConnection() {
|
||||
await this._signaling.deleteConnection(this._connectionId);
|
||||
}
|
||||
|
||||
_preparePeerConnection(connectionId, polite) {
|
||||
if (this._peer) {
|
||||
Logger.log('Close current PeerConnection');
|
||||
this._peer.close();
|
||||
this._peer = null;
|
||||
}
|
||||
|
||||
// Create peerConnection with proxy server and set up handlers
|
||||
this._peer = new Peer(connectionId, polite, this._config);
|
||||
this._peer.addEventListener('disconnect', () => {
|
||||
this.onDisconnect(`Receive disconnect message from peer. connectionId:${connectionId}`);
|
||||
});
|
||||
this._peer.addEventListener('trackevent', (e) => {
|
||||
const data = e.detail;
|
||||
this.onTrackEvent(data);
|
||||
});
|
||||
this._peer.addEventListener('adddatachannel', (e) => {
|
||||
const data = e.detail;
|
||||
this.onAddChannel(data);
|
||||
});
|
||||
this._peer.addEventListener('ongotoffer', (e) => {
|
||||
const id = e.detail.connectionId;
|
||||
this.onGotOffer(id);
|
||||
});
|
||||
this._peer.addEventListener('ongotanswer', (e) => {
|
||||
const id = e.detail.connectionId;
|
||||
this.onGotAnswer(id);
|
||||
});
|
||||
this._peer.addEventListener('sendoffer', (e) => {
|
||||
const offer = e.detail;
|
||||
this._signaling.sendOffer(offer.connectionId, offer.sdp);
|
||||
});
|
||||
this._peer.addEventListener('sendanswer', (e) => {
|
||||
const answer = e.detail;
|
||||
this._signaling.sendAnswer(answer.connectionId, answer.sdp);
|
||||
});
|
||||
this._peer.addEventListener('sendcandidate', (e) => {
|
||||
const candidate = e.detail;
|
||||
this._signaling.sendCandidate(candidate.connectionId, candidate.candidate, candidate.sdpMid, candidate.sdpMLineIndex);
|
||||
});
|
||||
return this._peer;
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {Promise<RTCStatsReport> | null}
|
||||
*/
|
||||
async getStats() {
|
||||
return await this._peer.getStats(this._connectionId);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} label
|
||||
* @returns {RTCDataChannel | null}
|
||||
*/
|
||||
createDataChannel(label) {
|
||||
return this._peer.createDataChannel(this._connectionId, label);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {MediaStreamTrack} track
|
||||
* @returns {RTCRtpSender | null}
|
||||
*/
|
||||
addTrack(track) {
|
||||
return this._peer.addTrack(this._connectionId, track);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {MediaStreamTrack | string} trackOrKind
|
||||
* @param {RTCRtpTransceiverInit | null} init
|
||||
* @returns {RTCRtpTransceiver | null}
|
||||
*/
|
||||
addTransceiver(trackOrKind, init) {
|
||||
return this._peer.addTransceiver(this._connectionId, trackOrKind, init);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @returns {RTCRtpTransceiver[] | null}
|
||||
*/
|
||||
getTransceivers() {
|
||||
return this._peer.getTransceivers(this._connectionId);
|
||||
}
|
||||
|
||||
async start() {
|
||||
await this._signaling.start();
|
||||
}
|
||||
|
||||
async stop() {
|
||||
if (this._peer) {
|
||||
this._peer.close();
|
||||
this._peer = null;
|
||||
}
|
||||
|
||||
if (this._signaling) {
|
||||
await this._signaling.stop();
|
||||
this._signaling = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user