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. /**
  19. * @namespace shaka.media.ManifestParser
  20. * @summary An interface to register manifest parsers.
  21. * @exportDoc
  22. */
  23. /**
  24. * Contains the parser factory functions indexed by MIME type.
  25. *
  26. * @type {!Object.<string, shakaExtern.ManifestParser.Factory>}
  27. */
  28. shaka.media.ManifestParser.parsersByMime = {};
  29. /**
  30. * Contains the parser factory functions indexed by file extension.
  31. *
  32. * @type {!Object.<string, shakaExtern.ManifestParser.Factory>}
  33. */
  34. shaka.media.ManifestParser.parsersByExtension = {};
  35. /**
  36. * Registers a manifest parser by file extension.
  37. *
  38. * @param {string} extension The file extension of the manifest.
  39. * @param {shakaExtern.ManifestParser.Factory} parserFactory The factory
  40. * used to create parser instances.
  41. * @export
  42. */
  43. shaka.media.ManifestParser.registerParserByExtension = function(
  44. extension, parserFactory) {
  45. shaka.media.ManifestParser.parsersByExtension[extension] = parserFactory;
  46. };
  47. /**
  48. * Registers a manifest parser by MIME type.
  49. *
  50. * @param {string} mimeType The MIME type of the manifest.
  51. * @param {shakaExtern.ManifestParser.Factory} parserFactory The factory
  52. * used to create parser instances.
  53. * @export
  54. */
  55. shaka.media.ManifestParser.registerParserByMime = function(
  56. mimeType, parserFactory) {
  57. shaka.media.ManifestParser.parsersByMime[mimeType] = parserFactory;
  58. };
  59. /**
  60. * Returns a map of manifest support for well-known types.
  61. *
  62. * @return {!Object.<string, boolean>}
  63. */
  64. shaka.media.ManifestParser.support = function() {
  65. // Every object in the support hierarchy has a "basic" member.
  66. // All "basic" members must be true for the library to be usable.
  67. var support = {'basic': true};
  68. // Make sure all registered parsers are shown.
  69. for (var type in shaka.media.ManifestParser.parsersByMime) {
  70. support[type] = true;
  71. }
  72. for (var type in shaka.media.ManifestParser.parsersByExtension) {
  73. support[type] = true;
  74. }
  75. // Make sure all well-known types are tested as well, just to show an explicit
  76. // false for things people might be expecting.
  77. var testMimeTypes = [
  78. // DASH
  79. 'application/dash+xml',
  80. // HLS
  81. 'application/x-mpegurl',
  82. 'application/vnd.apple.mpegurl',
  83. // SmoothStreaming
  84. 'application/vnd.ms-sstr+xml'
  85. ];
  86. var testExtensions = [
  87. // DASH
  88. 'mpd',
  89. // HLS
  90. 'm3u8',
  91. // SmoothStreaming
  92. 'ism'
  93. ];
  94. testMimeTypes.forEach(function(type) {
  95. support[type] = !!shaka.media.ManifestParser.parsersByMime[type];
  96. });
  97. testExtensions.forEach(function(type) {
  98. support[type] = !!shaka.media.ManifestParser.parsersByExtension[type];
  99. });
  100. return support;
  101. };