Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 | 1x 1x 28x 28x 1x 5x 5x 5x 5x 5x 5x 5x 5x 10x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x | /** * PlaylistLoader - delegate for media manifest/playlist loading tasks. Takes care of parsing media to internal data-models. * * Once loaded, dispatches events with parsed data-models of manifest/levels/audio/subtitle tracks. * * Uses loader(s) set in config to do actual internal loading of resource tasks. * * @module * */ import Event from '../events'; import EventHandler from '../event-handler'; import { ErrorTypes, ErrorDetails } from '../errors'; import { logger } from '../utils/logger'; import MP4Demuxer from '../demux/mp4demuxer'; import M3U8Parser from './m3u8-parser'; /** * `type` property values for this loaders' context object * @enum * */ const ContextType = { MANIFEST: 'manifest', LEVEL: 'level', AUDIO_TRACK: 'audioTrack', SUBTITLE_TRACK: 'subtitleTrack' }; /** * @enum {string} */ const LevelType = { MAIN: 'main', AUDIO: 'audio', SUBTITLE: 'subtitle' }; /** * @constructor */ class PlaylistLoader extends EventHandler { /** * @constructs * @param {Hls} hls */ constructor (hls) { super(hls, Event.MANIFEST_LOADING, Event.LEVEL_LOADING, Event.AUDIO_TRACK_LOADING, Event.SUBTITLE_TRACK_LOADING); this.loaders = {}; } static get ContextType () { return ContextType; } static get LevelType () { return LevelType; } /** * @param {ContextType} type * @returns {boolean} */ static canHaveQualityLevels (type) { return (type !== ContextType.AUDIO_TRACK && type !== ContextType.SUBTITLE_TRACK); } /** * Map context.type to LevelType * @param {{type: ContextType}} context * @returns {LevelType} */ static mapContextToLevelType (context) { const { type } = context; switch (type) { case ContextType.AUDIO_TRACK: return LevelType.AUDIO; case ContextType.SUBTITLE_TRACK: return LevelType.SUBTITLE; default: return LevelType.MAIN; } } static getResponseUrl (response, context) { let url = response.url; // responseURL not supported on some browsers (it is used to detect URL redirection) // data-uri mode also not supported (but no need to detect redirection) if (url === undefined || url.indexOf('data:') === 0) { // fallback to initial URL url = context.url; } return url; } /** * Returns defaults or configured loader-type overloads (pLoader and loader config params) * Default loader is XHRLoader (see utils) * @param {object} context * @returns {XHRLoader} or other compatible configured overload */ createInternalLoader (context) { const config = this.hls.config; const PLoader = config.pLoader; const Loader = config.loader; const InternalLoader = PLoader || Loader; const loader = new InternalLoader(config); context.loader = loader; this.loaders[context.type] = loader; return loader; } getInternalLoader (context) { return this.loaders[context.type]; } resetInternalLoader (contextType) { Eif (this.loaders[contextType]) delete this.loaders[contextType]; } /** * Call `destroy` on all internal loader instances mapped (one per context type) */ destroyInternalLoaders () { for (let contextType in this.loaders) { let loader = this.loaders[contextType]; if (loader) loader.destroy(); this.resetInternalLoader(contextType); } } destroy () { this.destroyInternalLoaders(); super.destroy(); } onManifestLoading (data) { this.load(data.url, { type: ContextType.MANIFEST }); } onLevelLoading (data) { this.load(data.url, { type: ContextType.LEVEL, level: data.level, id: data.id }); } onAudioTrackLoading (data) { this.load(data.url, { type: ContextType.AUDIO_TRACK, id: data.id }); } onSubtitleTrackLoading (data) { this.load(data.url, { type: ContextType.SUBTITLE_TRACK, id: data.id }); } load (url, context) { const config = this.hls.config; // Check if a loader for this context already exists let loader = this.getInternalLoader(context); Iif (loader) { const loaderContext = loader.context; if (loaderContext && loaderContext.url === url) { // same URL can't overlap logger.trace('playlist request ongoing'); return false; } else { logger.warn(`aborting previous loader for type: ${context.type}`); loader.abort(); } } let maxRetry, timeout, retryDelay, maxRetryDelay; // apply different configs for retries depending on // context (manifest, level, audio/subs playlist) switch (context.type) { case ContextType.MANIFEST: maxRetry = config.manifestLoadingMaxRetry; timeout = config.manifestLoadingTimeOut; retryDelay = config.manifestLoadingRetryDelay; maxRetryDelay = config.manifestLoadingMaxRetryTimeout; break; case ContextType.LEVEL: // Disable internal loader retry logic, since we are managing retries in Level Controller maxRetry = 0; timeout = config.levelLoadingTimeOut; // TODO Introduce retry settings for audio-track and subtitle-track, it should not use level retry config break; default: maxRetry = config.levelLoadingMaxRetry; timeout = config.levelLoadingTimeOut; retryDelay = config.levelLoadingRetryDelay; maxRetryDelay = config.levelLoadingMaxRetryTimeout; logger.log(`Playlist loader for ${context.type} ${context.level || context.id}`); break; } loader = this.createInternalLoader(context); context.url = url; context.responseType = context.responseType || ''; // FIXME: (should not be necessary to do this) let loaderConfig, loaderCallbacks; loaderConfig = { timeout, maxRetry, retryDelay, maxRetryDelay }; loaderCallbacks = { onSuccess: this.loadsuccess.bind(this), onError: this.loaderror.bind(this), onTimeout: this.loadtimeout.bind(this) }; loader.load(context, loaderConfig, loaderCallbacks); return true; } loadsuccess (response, stats, context, networkDetails = null) { if (context.isSidxRequest) { this._handleSidxRequest(response, context); this._handlePlaylistLoaded(response, stats, context, networkDetails); return; } this.resetInternalLoader(context.type); const string = response.data; stats.tload = performance.now(); // stats.mtime = new Date(target.getResponseHeader('Last-Modified')); // Validate if it is an M3U8 at all if (string.indexOf('#EXTM3U') !== 0) { this._handleManifestParsingError(response, context, 'no EXTM3U delimiter', networkDetails); return; } // Check if chunk-list or master. handle empty chunk list case (first EXTINF not signaled, but TARGETDURATION present) if (string.indexOf('#EXTINF:') > 0 || string.indexOf('#EXT-X-TARGETDURATION:') > 0) this._handleTrackOrLevelPlaylist(response, stats, context, networkDetails); else this._handleMasterPlaylist(response, stats, context, networkDetails); } loaderror (response, context, networkDetails = null) { this._handleNetworkError(context, networkDetails); } loadtimeout (stats, context, networkDetails = null) { this._handleNetworkError(context, networkDetails, true); } _handleMasterPlaylist (response, stats, context, networkDetails) { const hls = this.hls; const string = response.data; const url = PlaylistLoader.getResponseUrl(response, context); const levels = M3U8Parser.parseMasterPlaylist(string, url); if (!levels.length) { this._handleManifestParsingError(response, context, 'no level found in manifest', networkDetails); return; } // multi level playlist, parse level info const audioGroups = levels.map(level => ({ id: level.attrs.AUDIO, codec: level.audioCodec })); let audioTracks = M3U8Parser.parseMasterPlaylistMedia(string, url, 'AUDIO', audioGroups); let subtitles = M3U8Parser.parseMasterPlaylistMedia(string, url, 'SUBTITLES'); if (audioTracks.length) { // check if we have found an audio track embedded in main playlist (audio track without URI attribute) let embeddedAudioFound = false; audioTracks.forEach(audioTrack => { if (!audioTrack.url) embeddedAudioFound = true; }); // if no embedded audio track defined, but audio codec signaled in quality level, // we need to signal this main audio track this could happen with playlists with // alt audio rendition in which quality levels (main) // contains both audio+video. but with mixed audio track not signaled if (embeddedAudioFound === false && levels[0].audioCodec && !levels[0].attrs.AUDIO) { logger.log('audio codec signaled in quality level, but no embedded audio track signaled, create one'); audioTracks.unshift({ type: 'main', name: 'main' }); } } hls.trigger(Event.MANIFEST_LOADED, { levels, audioTracks, subtitles, url, stats, networkDetails }); } _handleTrackOrLevelPlaylist (response, stats, context, networkDetails) { const hls = this.hls; const { id, level, type } = context; const url = PlaylistLoader.getResponseUrl(response, context); const levelId = !isNaN(level) ? level : !isNaN(id) ? id : 0; // level -> id -> 0 const levelType = PlaylistLoader.mapContextToLevelType(context); const levelDetails = M3U8Parser.parseLevelPlaylist(response.data, url, levelId, levelType); // set stats on level structure levelDetails.tload = stats.tload; // We have done our first request (Manifest-type) and receive // not a master playlist but a chunk-list (track/level) // We fire the manifest-loaded event anyway with the parsed level-details // by creating a single-level structure for it. if (type === ContextType.MANIFEST) { const singleLevel = { url, details: levelDetails }; hls.trigger(Event.MANIFEST_LOADED, { levels: [singleLevel], audioTracks: [], url, stats, networkDetails }); } // save parsing time stats.tparsed = performance.now(); // in case we need SIDX ranges // return early after calling load for // the SIDX box. if (levelDetails.needSidxRanges) { const sidxUrl = levelDetails.initSegment.url; this.load(sidxUrl, { isSidxRequest: true, type, level, levelDetails, id, rangeStart: 0, rangeEnd: 2048, responseType: 'arraybuffer' }); return; } // extend the context with the new levelDetails property context.levelDetails = levelDetails; this._handlePlaylistLoaded(response, stats, context, networkDetails); } _handleSidxRequest (response, context) { const sidxInfo = MP4Demuxer.parseSegmentIndex(new Uint8Array(response.data)); sidxInfo.references.forEach((segmentRef, index) => { const segRefInfo = segmentRef.info; const frag = context.levelDetails.fragments[index]; if (frag.byteRange.length === 0) frag.rawByteRange = String(1 + segRefInfo.end - segRefInfo.start) + '@' + String(segRefInfo.start); }); context.levelDetails.initSegment.rawByteRange = String(sidxInfo.moovEndOffset) + '@0'; } _handleManifestParsingError (response, context, reason, networkDetails) { this.hls.trigger(Event.ERROR, { type: ErrorTypes.NETWORK_ERROR, details: ErrorDetails.MANIFEST_PARSING_ERROR, fatal: true, url: response.url, reason, networkDetails }); } _handleNetworkError (context, networkDetails, timeout = false) { let details; let fatal; const loader = this.getInternalLoader(context); switch (context.type) { case ContextType.MANIFEST: details = (timeout ? ErrorDetails.MANIFEST_LOAD_TIMEOUT : ErrorDetails.MANIFEST_LOAD_ERROR); fatal = true; break; case ContextType.LEVEL: details = (timeout ? ErrorDetails.LEVEL_LOAD_TIMEOUT : ErrorDetails.LEVEL_LOAD_ERROR); fatal = false; break; case ContextType.AUDIO_TRACK: details = (timeout ? ErrorDetails.AUDIO_TRACK_LOAD_TIMEOUT : ErrorDetails.AUDIO_TRACK_LOAD_ERROR); fatal = false; break; default: // details = ...? fatal = false; } Eif (loader) { loader.abort(); this.resetInternalLoader(context.type); } this.hls.trigger(Event.ERROR, { type: ErrorTypes.NETWORK_ERROR, details, fatal, url: loader.url, loader, context, networkDetails }); } _handlePlaylistLoaded (response, stats, context, networkDetails) { const { type, level, id, levelDetails } = context; if (!levelDetails.targetduration) { this._handleManifestParsingError(response, context, 'invalid target duration', networkDetails); return; } const canHaveLevels = PlaylistLoader.canHaveQualityLevels(context.type); if (canHaveLevels) { this.hls.trigger(Event.LEVEL_LOADED, { details: levelDetails, level: level || 0, id: id || 0, stats, networkDetails }); } else { switch (type) { case ContextType.AUDIO_TRACK: this.hls.trigger(Event.AUDIO_TRACK_LOADED, { details: levelDetails, id, stats, networkDetails }); break; case ContextType.SUBTITLE_TRACK: this.hls.trigger(Event.SUBTITLE_TRACK_LOADED, { details: levelDetails, id, stats, networkDetails }); break; } } } } export default PlaylistLoader; |