Source: lib/media/manifest_parser.js

  1. /**
  2. * @license
  3. * Copyright 2016 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. goog.provide('shaka.media.ManifestParser');
  18. goog.require('goog.Uri');
  19. goog.require('goog.asserts');
  20. goog.require('shaka.log');
  21. goog.require('shaka.net.NetworkingEngine');
  22. goog.require('shaka.util.Error');
  23. /**
  24. * @namespace shaka.media.ManifestParser
  25. * @summary An interface to register manifest parsers.
  26. * @exportDoc
  27. */
  28. /**
  29. * Contains the parser factory functions indexed by MIME type.
  30. *
  31. * @type {!Object.<string, shakaExtern.ManifestParser.Factory>}
  32. */
  33. shaka.media.ManifestParser.parsersByMime = {};
  34. /**
  35. * Contains the parser factory functions indexed by file extension.
  36. *
  37. * @type {!Object.<string, shakaExtern.ManifestParser.Factory>}
  38. */
  39. shaka.media.ManifestParser.parsersByExtension = {};
  40. /**
  41. * Registers a manifest parser by file extension.
  42. *
  43. * @param {string} extension The file extension of the manifest.
  44. * @param {shakaExtern.ManifestParser.Factory} parserFactory The factory
  45. * used to create parser instances.
  46. * @export
  47. */
  48. shaka.media.ManifestParser.registerParserByExtension = function(
  49. extension, parserFactory) {
  50. shaka.media.ManifestParser.parsersByExtension[extension] = parserFactory;
  51. };
  52. /**
  53. * Registers a manifest parser by MIME type.
  54. *
  55. * @param {string} mimeType The MIME type of the manifest.
  56. * @param {shakaExtern.ManifestParser.Factory} parserFactory The factory
  57. * used to create parser instances.
  58. * @export
  59. */
  60. shaka.media.ManifestParser.registerParserByMime = function(
  61. mimeType, parserFactory) {
  62. shaka.media.ManifestParser.parsersByMime[mimeType] = parserFactory;
  63. };
  64. /**
  65. * Returns a map of manifest support for well-known types.
  66. *
  67. * @return {!Object.<string, boolean>}
  68. */
  69. shaka.media.ManifestParser.probeSupport = function() {
  70. // Make sure all registered parsers are shown.
  71. let support = {};
  72. for (let type in shaka.media.ManifestParser.parsersByMime) {
  73. support[type] = true;
  74. }
  75. for (let type in shaka.media.ManifestParser.parsersByExtension) {
  76. support[type] = true;
  77. }
  78. // Make sure all well-known types are tested as well, just to show an explicit
  79. // false for things people might be expecting.
  80. let testMimeTypes = [
  81. // DASH
  82. 'application/dash+xml',
  83. // HLS
  84. 'application/x-mpegurl',
  85. 'application/vnd.apple.mpegurl',
  86. // SmoothStreaming
  87. 'application/vnd.ms-sstr+xml'
  88. ];
  89. let testExtensions = [
  90. // DASH
  91. 'mpd',
  92. // HLS
  93. 'm3u8',
  94. // SmoothStreaming
  95. 'ism'
  96. ];
  97. testMimeTypes.forEach(function(type) {
  98. support[type] = !!shaka.media.ManifestParser.parsersByMime[type];
  99. });
  100. testExtensions.forEach(function(type) {
  101. support[type] = !!shaka.media.ManifestParser.parsersByExtension[type];
  102. });
  103. return support;
  104. };
  105. /**
  106. * Finds a manifest parser factory to parse the given manifest.
  107. *
  108. * @param {string} manifestUri
  109. * @param {!shaka.net.NetworkingEngine} netEngine
  110. * @param {shakaExtern.RetryParameters} retryParams
  111. * @param {shakaExtern.ManifestParser.Factory=} opt_manifestParserFactory
  112. * @return {!Promise.<shakaExtern.ManifestParser.Factory>}
  113. */
  114. shaka.media.ManifestParser.getFactory = function(
  115. manifestUri, netEngine, retryParams, opt_manifestParserFactory) {
  116. let factory = opt_manifestParserFactory;
  117. let extension;
  118. if (!factory) {
  119. // Try to choose a manifest parser by file extension.
  120. let uriObj = new goog.Uri(manifestUri);
  121. let uriPieces = uriObj.getPath().split('/');
  122. let uriFilename = uriPieces.pop();
  123. let filenamePieces = uriFilename.split('.');
  124. // Only one piece means there is no extension.
  125. if (filenamePieces.length > 1) {
  126. extension = filenamePieces.pop().toLowerCase();
  127. factory = shaka.media.ManifestParser.parsersByExtension[extension];
  128. }
  129. }
  130. if (factory) {
  131. return Promise.resolve(factory);
  132. }
  133. // Try to choose a manifest parser by MIME type.
  134. let headRequest =
  135. shaka.net.NetworkingEngine.makeRequest([manifestUri], retryParams);
  136. headRequest.method = 'HEAD';
  137. const type = shaka.net.NetworkingEngine.RequestType.MANIFEST;
  138. return netEngine.request(type, headRequest).promise.then(
  139. function(response) {
  140. let mimeType = response.headers['content-type'];
  141. // https://goo.gl/yzKDRx says this header should always be available,
  142. // but just to be safe:
  143. if (mimeType) {
  144. mimeType = mimeType.toLowerCase();
  145. }
  146. factory = shaka.media.ManifestParser.parsersByMime[mimeType];
  147. if (!factory) {
  148. shaka.log.error(
  149. 'Unable to guess manifest type by file extension ' +
  150. 'or by MIME type.', extension, mimeType);
  151. return Promise.reject(new shaka.util.Error(
  152. shaka.util.Error.Severity.CRITICAL,
  153. shaka.util.Error.Category.MANIFEST,
  154. shaka.util.Error.Code.UNABLE_TO_GUESS_MANIFEST_TYPE,
  155. manifestUri));
  156. }
  157. return factory;
  158. }, function(error) {
  159. goog.asserts.assert(error instanceof shaka.util.Error,
  160. 'Incorrect error type');
  161. shaka.log.error('HEAD request to guess manifest type failed!', error);
  162. error.severity = shaka.util.Error.Severity.CRITICAL;
  163. return Promise.reject(error);
  164. });
  165. };