UNPKG

rx-player

Version:
199 lines (198 loc) 8.93 kB
/** * Copyright 2015 CANAL+ Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import isNullOrUndefined from "../../../../utils/is_null_or_undefined"; import SegmentSinksStore, { SegmentSinkOperation } from "../../../segment_sinks"; import checkForDiscontinuity from "./check_for_discontinuity"; import getNeededSegments from "./get_needed_segments"; import getSegmentPriority from "./get_segment_priority"; /** * Checks on the current buffered data for the given type and Period * and returns what should be done to fill the buffer according to the buffer * goal, the Representation chosen, etc. * Also emits discontinuities if found, which are parts of the buffer that won't * be filled by any segment, even in the future. * * @param {Object} content * @param {number} initialWantedTime * @param {Object} playbackObserver * @param {number|undefined} fastSwitchThreshold * @param {number} bufferGoal * @param {number} maxBufferSize * @param {Object} segmentSink * @returns {Object} */ export default function getBufferStatus(content, initialWantedTime, playbackObserver, fastSwitchThreshold, bufferGoal, maxBufferSize, segmentSink) { var _a, _b, _c; const { representation } = content; const isPaused = (_b = (_a = playbackObserver.getIsPaused()) !== null && _a !== void 0 ? _a : playbackObserver.getReference().getValue().paused.pending) !== null && _b !== void 0 ? _b : playbackObserver.getReference().getValue().paused.last; const playbackRate = (_c = playbackObserver.getPlaybackRate()) !== null && _c !== void 0 ? _c : playbackObserver.getReference().getValue().speed; let askedStart = initialWantedTime; if (isPaused === undefined || playbackRate === undefined || isPaused || playbackRate <= 0) { askedStart -= 0.1; } const neededRange = getRangeOfNeededSegments(content, askedStart, bufferGoal); const shouldRefreshManifest = representation.index.shouldRefresh(neededRange.start, neededRange.end); /** * Every segment awaiting an "SignalSegmentComplete" operation, which * indicates that a completely-loaded segment is still being pushed to the * SegmentSink. */ const segmentsBeingPushed = segmentSink .getPendingOperations() .filter((operation) => operation.type === SegmentSinkOperation.SignalSegmentComplete) .map((operation) => operation.value); /** Data on every segments buffered around `neededRange`. */ const bufferedSegments = segmentSink.getLastKnownInventory(); let currentPlaybackTime = playbackObserver.getCurrentTime(); if (currentPlaybackTime === undefined) { // We're in a WebWorker, just consider the last known position currentPlaybackTime = playbackObserver.getReference().getValue().position.getWanted(); } /** Callback allowing to retrieve a segment's history in the buffer. */ const getBufferedHistory = segmentSink.getSegmentHistory.bind(segmentSink); /** List of segments we will need to download. */ const { segmentsToLoad, segmentsOnHold, isBufferFull } = getNeededSegments({ content, bufferedSegments, currentPlaybackTime, fastSwitchThreshold, getBufferedHistory, neededRange, segmentsBeingPushed, maxBufferSize, }); const prioritizedNeededSegments = segmentsToLoad.map((segment) => ({ priority: getSegmentPriority(segment.time, askedStart), segment, })); /** * `true` if the current `RepresentationStream` has loaded all the * needed segments for this Representation until the end of the Period. */ const hasFinishedLoading = representation.index.isInitialized() && !representation.index.isStillAwaitingFutureSegments() && neededRange.hasReachedPeriodEnd && prioritizedNeededSegments.length === 0 && segmentsOnHold.length === 0; /** * Start time in seconds of the next available not-yet pushed segment. * `null` if no segment is wanted for the current wanted range. */ let nextSegmentStart = null; if (segmentsBeingPushed.length > 0) { nextSegmentStart = Math.min(...segmentsBeingPushed.map((info) => info.segment.time)); } if (segmentsOnHold.length > 0) { nextSegmentStart = nextSegmentStart !== null ? Math.min(nextSegmentStart, segmentsOnHold[0].time) : segmentsOnHold[0].time; } if (prioritizedNeededSegments.length > 0) { nextSegmentStart = nextSegmentStart !== null ? Math.min(nextSegmentStart, prioritizedNeededSegments[0].segment.time) : prioritizedNeededSegments[0].segment.time; } const imminentDiscontinuity = checkForDiscontinuity(content, neededRange, nextSegmentStart, hasFinishedLoading, bufferedSegments); return { imminentDiscontinuity, hasFinishedLoading, neededSegments: prioritizedNeededSegments, isBufferFull, shouldRefreshManifest, }; } /** * Returns both the time range of segments that should be loaded (from a * starting position to an ending position) and whether the end of the Period is * reached by that range. * @param {Object} content * @param {number} initialWantedTime * @param {number} bufferGoal * @returns {Object} */ function getRangeOfNeededSegments(content, initialWantedTime, bufferGoal) { var _a; let wantedStartPosition; const { manifest, period, representation } = content; const lastIndexPosition = representation.index.getLastAvailablePosition(); const representationIndex = representation.index; // There is an exception for when the current initially wanted time is already // after the last position with segments AND when we're playing the absolute // last Period in the Manifest. // In that case, we want to actually request at least the last segment to // avoid ending the last Period - and by extension the content - with a // segment which isn't the last one. if (!isNullOrUndefined(lastIndexPosition) && SegmentSinksStore.isNative(content.adaptation.type) && initialWantedTime >= lastIndexPosition && representationIndex.isInitialized() && !representationIndex.isStillAwaitingFutureSegments() && isPeriodTheCurrentAndLastOne(manifest, period, initialWantedTime)) { wantedStartPosition = lastIndexPosition - 1; } else { wantedStartPosition = initialWantedTime - 0.1; } const wantedEndPosition = wantedStartPosition + bufferGoal; let hasReachedPeriodEnd; if (!representation.index.isInitialized() || representation.index.isStillAwaitingFutureSegments() || period.end === undefined) { hasReachedPeriodEnd = false; } else if (lastIndexPosition === undefined) { // We do not know the end of this index. hasReachedPeriodEnd = wantedEndPosition >= period.end; } else if (lastIndexPosition === null) { // There is no available segment in the index currently. hasReachedPeriodEnd = true; } else { // We have a declared end. Check that our range went until the last // position available in the index. If that's the case and we're left // with no segments after filtering them, it means we already have // downloaded the last segments and have nothing left to do: full. hasReachedPeriodEnd = wantedEndPosition >= lastIndexPosition; } return { start: Math.max(wantedStartPosition, period.start), end: Math.min(wantedEndPosition, (_a = period.end) !== null && _a !== void 0 ? _a : Infinity), hasReachedPeriodEnd, }; } /** * Returns `true` if the given Period is both: * - the one being played (the current position is known from `time`) * - the absolute last one in the Manifest (that is, there will never be a * Period after it). * @param {Object} manifest * @param {Object} period * @param {number} time * @returns {boolean} */ function isPeriodTheCurrentAndLastOne(manifest, period, time) { var _a; const nextPeriod = manifest.getPeriodAfter(period); return (period.containsTime(time, nextPeriod) && manifest.isLastPeriodKnown && period.id === ((_a = manifest.periods[manifest.periods.length - 1]) === null || _a === void 0 ? void 0 : _a.id)); }