1
0
Fork 0
peertube/client/src/assets/player/p2p-media-loader/p2p-media-loader-plugin.ts

144 lines
4.5 KiB
TypeScript
Raw Normal View History

// FIXME: something weird with our path definition in tsconfig and typings
// @ts-ignore
import * as videojs from 'video.js'
2019-01-29 07:37:25 +00:00
import { P2PMediaLoaderPluginOptions, PlayerNetworkInfo, VideoJSComponentInterface } from '../peertube-videojs-typings'
import { Engine, initHlsJsPlayer, initVideoJsContribHlsJsPlayer } from 'p2p-media-loader-hlsjs'
import { Events } from 'p2p-media-loader-core'
// videojs-hlsjs-plugin needs videojs in window
window['videojs'] = videojs
2019-01-24 12:43:44 +00:00
require('@streamroot/videojs-hlsjs-plugin')
const Plugin: VideoJSComponentInterface = videojs.getPlugin('plugin')
class P2pMediaLoaderPlugin extends Plugin {
2019-01-24 09:16:30 +00:00
private readonly CONSTANTS = {
INFO_SCHEDULER: 1000 // Don't change this
}
2019-01-29 07:37:25 +00:00
private readonly options: P2PMediaLoaderPluginOptions
2019-01-24 09:16:30 +00:00
2019-01-24 12:43:44 +00:00
private hlsjs: any // Don't type hlsjs to not bundle the module
2019-01-24 09:16:30 +00:00
private p2pEngine: Engine
private statsP2PBytes = {
pendingDownload: [] as number[],
pendingUpload: [] as number[],
numPeers: 0,
totalDownload: 0,
totalUpload: 0
}
2019-01-29 07:37:25 +00:00
private statsHTTPBytes = {
pendingDownload: [] as number[],
pendingUpload: [] as number[],
totalDownload: 0,
totalUpload: 0
}
2019-01-24 09:16:30 +00:00
private networkInfoInterval: any
constructor (player: videojs.Player, options: P2PMediaLoaderPluginOptions) {
super(player, options)
2019-01-29 07:37:25 +00:00
this.options = options
2019-01-24 12:43:44 +00:00
videojs.Html5Hlsjs.addHook('beforeinitialize', (videojsPlayer: any, hlsjs: any) => {
2019-01-24 09:16:30 +00:00
this.hlsjs = hlsjs
})
initVideoJsContribHlsJsPlayer(player)
player.src({
type: options.type,
src: options.src
})
2019-01-29 07:37:25 +00:00
2019-02-06 09:39:50 +00:00
player.on('play', () => {
player.addClass('vjs-has-big-play-button-clicked')
})
2019-01-29 07:37:25 +00:00
player.ready(() => this.initialize())
}
2019-01-24 09:16:30 +00:00
dispose () {
2019-02-06 09:39:50 +00:00
if (this.hlsjs) this.hlsjs.destroy()
if (this.p2pEngine) this.p2pEngine.destroy()
2019-01-24 09:16:30 +00:00
clearInterval(this.networkInfoInterval)
}
private initialize () {
2019-01-29 07:37:25 +00:00
initHlsJsPlayer(this.hlsjs)
2019-02-06 09:39:50 +00:00
const tech = this.player.tech_
this.p2pEngine = tech.options_.hlsjsConfig.loader.getEngine()
2019-01-24 09:16:30 +00:00
2019-01-24 12:43:44 +00:00
// Avoid using constants to not import hls.hs
// https://github.com/video-dev/hls.js/blob/master/src/events.js#L37
this.hlsjs.on('hlsLevelSwitching', (_: any, data: any) => {
2019-01-24 09:16:30 +00:00
this.trigger('resolutionChange', { auto: this.hlsjs.autoLevelEnabled, resolutionId: data.height })
})
2019-01-29 07:37:25 +00:00
this.p2pEngine.on(Events.SegmentError, (segment, err) => {
console.error('Segment error.', segment, err)
})
this.statsP2PBytes.numPeers = 1 + this.options.redundancyBaseUrls.length
2019-01-24 09:16:30 +00:00
this.runStats()
}
private runStats () {
this.p2pEngine.on(Events.PieceBytesDownloaded, (method: string, size: number) => {
2019-01-29 07:37:25 +00:00
const elem = method === 'p2p' ? this.statsP2PBytes : this.statsHTTPBytes
elem.pendingDownload.push(size)
elem.totalDownload += size
2019-01-24 09:16:30 +00:00
})
this.p2pEngine.on(Events.PieceBytesUploaded, (method: string, size: number) => {
2019-01-29 07:37:25 +00:00
const elem = method === 'p2p' ? this.statsP2PBytes : this.statsHTTPBytes
elem.pendingUpload.push(size)
elem.totalUpload += size
2019-01-24 09:16:30 +00:00
})
this.p2pEngine.on(Events.PeerConnect, () => this.statsP2PBytes.numPeers++)
this.p2pEngine.on(Events.PeerClose, () => this.statsP2PBytes.numPeers--)
this.networkInfoInterval = setInterval(() => {
2019-01-29 07:37:25 +00:00
const p2pDownloadSpeed = this.arraySum(this.statsP2PBytes.pendingDownload)
const p2pUploadSpeed = this.arraySum(this.statsP2PBytes.pendingUpload)
const httpDownloadSpeed = this.arraySum(this.statsHTTPBytes.pendingDownload)
const httpUploadSpeed = this.arraySum(this.statsHTTPBytes.pendingUpload)
2019-01-24 09:16:30 +00:00
this.statsP2PBytes.pendingDownload = []
this.statsP2PBytes.pendingUpload = []
2019-01-29 07:37:25 +00:00
this.statsHTTPBytes.pendingDownload = []
this.statsHTTPBytes.pendingUpload = []
2019-01-24 09:16:30 +00:00
return this.player.trigger('p2pInfo', {
2019-01-29 07:37:25 +00:00
http: {
downloadSpeed: httpDownloadSpeed,
uploadSpeed: httpUploadSpeed,
downloaded: this.statsHTTPBytes.totalDownload,
uploaded: this.statsHTTPBytes.totalUpload
},
2019-01-24 09:16:30 +00:00
p2p: {
2019-01-29 07:37:25 +00:00
downloadSpeed: p2pDownloadSpeed,
uploadSpeed: p2pUploadSpeed,
2019-01-24 09:16:30 +00:00
numPeers: this.statsP2PBytes.numPeers,
downloaded: this.statsP2PBytes.totalDownload,
uploaded: this.statsP2PBytes.totalUpload
}
} as PlayerNetworkInfo)
}, this.CONSTANTS.INFO_SCHEDULER)
}
2019-01-29 07:37:25 +00:00
private arraySum (data: number[]) {
return data.reduce((a: number, b: number) => a + b, 0)
}
}
videojs.registerPlugin('p2pMediaLoader', P2pMediaLoaderPlugin)
export { P2pMediaLoaderPlugin }