Source: lib/util/error.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.util.Error');
  7. /**
  8. * @summary
  9. * Describes an error that happened.
  10. *
  11. * @description
  12. * This uses numerical codes to describe
  13. * which error happened.
  14. *
  15. * Some error are caused by errors from the browser. In these cases, the error
  16. * object is provided as part of the <code>data</code> field. System codes come
  17. * from the browser and may or may not be documented. Here are some places
  18. * where the errors may be documented:
  19. * <ul>
  20. * <li><a href="https://developer.mozilla.org/en-US/docs/Web/API/MediaError">MediaError</a>
  21. * <li><a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Status">HTTP Codes</a>
  22. * <li><a href="https://hresult.info">Edge/PlayReady errors</a>
  23. * </ul>
  24. *
  25. * @export
  26. * @implements {shaka.extern.Error}
  27. * @extends {Error}
  28. */
  29. shaka.util.Error = class {
  30. /**
  31. * @param {shaka.util.Error.Severity} severity
  32. * @param {shaka.util.Error.Category} category
  33. * @param {shaka.util.Error.Code} code
  34. * @param {...*} varArgs
  35. */
  36. constructor(severity, category, code, ...varArgs) {
  37. /**
  38. * @override
  39. * @exportInterface
  40. */
  41. this.severity = severity;
  42. /**
  43. * @override
  44. * @exportInterface
  45. */
  46. this.category = category;
  47. /**
  48. * @override
  49. * @exportInterface
  50. */
  51. this.code = code;
  52. /**
  53. * @override
  54. * @exportInterface
  55. */
  56. this.data = varArgs;
  57. /**
  58. * @override
  59. * @exportInterface
  60. */
  61. this.handled = false;
  62. // This improves the formatting of Errors in failure messages in the tests.
  63. if (goog.DEBUG) {
  64. let categoryName = 'UNKNOWN';
  65. let codeName = 'UNKNOWN';
  66. for (const k in shaka.util.Error.Category) {
  67. if (shaka.util.Error.Category[k] == this.category) {
  68. categoryName = k;
  69. }
  70. }
  71. for (const k in shaka.util.Error.Code) {
  72. if (shaka.util.Error.Code[k] == this.code) {
  73. codeName = k;
  74. }
  75. }
  76. /**
  77. * A human-readable version of the category and code.
  78. * <i>(Only available in uncompiled mode.)</i>
  79. *
  80. * @const {string}
  81. * @exportDoc
  82. */
  83. this.message = 'Shaka Error ' + categoryName + '.' + codeName +
  84. ' (' + this.data.toString() + ')';
  85. if (shaka.util.Error.createStack) {
  86. try {
  87. throw new Error(this.message);
  88. } catch (e) {
  89. /**
  90. * A stack-trace showing where the error occurred.
  91. * <i>(Only available in uncompiled mode.)</i>
  92. *
  93. * @const {string}
  94. * @exportDoc
  95. */
  96. this.stack = e.stack;
  97. }
  98. }
  99. }
  100. }
  101. /**
  102. * @return {string}
  103. * @override
  104. */
  105. toString() {
  106. return 'shaka.util.Error ' + JSON.stringify(this, null, ' ');
  107. }
  108. };
  109. if (goog.DEBUG) {
  110. /**
  111. * If true, create a stack trace in Error objects.
  112. *
  113. * Only available in uncompiled mode, and disabled in tests to avoid issues
  114. * with karma-jasmine. See comments in test/test/boot.js for details.
  115. *
  116. * @type {boolean}
  117. */
  118. shaka.util.Error.createStack = true;
  119. }
  120. /**
  121. * @enum {number}
  122. * @export
  123. */
  124. shaka.util.Error.Severity = {
  125. /**
  126. * An error occurred, but the Player is attempting to recover from the error.
  127. *
  128. * If the Player cannot ultimately recover, it still may not throw a CRITICAL
  129. * error. For example, retrying for a media segment will never result in
  130. * a CRITICAL error (the Player will just retry forever).
  131. */
  132. 'RECOVERABLE': 1,
  133. /**
  134. * A critical error that the library cannot recover from. These usually cause
  135. * the Player to stop loading or updating. A new manifest must be loaded
  136. * to reset the library.
  137. */
  138. 'CRITICAL': 2,
  139. };
  140. /**
  141. * @enum {number}
  142. * @export
  143. */
  144. shaka.util.Error.Category = {
  145. /** Errors from the network stack. */
  146. 'NETWORK': 1,
  147. /** Errors parsing text streams. */
  148. 'TEXT': 2,
  149. /** Errors parsing or processing audio or video streams. */
  150. 'MEDIA': 3,
  151. /** Errors parsing the Manifest. */
  152. 'MANIFEST': 4,
  153. /** Errors related to streaming. */
  154. 'STREAMING': 5,
  155. /** Errors related to DRM. */
  156. 'DRM': 6,
  157. /** Miscellaneous errors from the player. */
  158. 'PLAYER': 7,
  159. /** Errors related to cast. */
  160. 'CAST': 8,
  161. /** Errors in the database storage (offline). */
  162. 'STORAGE': 9,
  163. /** Errors related to ad insertion. */
  164. 'ADS': 10,
  165. };
  166. /**
  167. * @enum {number}
  168. * @export
  169. */
  170. shaka.util.Error.Code = {
  171. /**
  172. * A network request was made using an unsupported URI scheme.
  173. * <br> error.data[0] is the URI.
  174. */
  175. 'UNSUPPORTED_SCHEME': 1000,
  176. /**
  177. * An HTTP network request returned an HTTP status that indicated a failure.
  178. * <br> error.data[0] is the URI.
  179. * <br> error.data[1] is the status code.
  180. * <br> error.data[2] is the response text, or null if the response could not
  181. * be interpretted as text.
  182. * <br> error.data[3] is the map of response headers.
  183. * <br> error.data[4] is the NetworkingEngine.RequestType of the request,
  184. * if one was provided.
  185. */
  186. 'BAD_HTTP_STATUS': 1001,
  187. /**
  188. * An HTTP network request failed with an error, but not from the server.
  189. * <br> error.data[0] is the URI.
  190. * <br> error.data[1] is the original error.
  191. * <br> error.data[2] is the NetworkingEngine.RequestType of the request.
  192. */
  193. 'HTTP_ERROR': 1002,
  194. /**
  195. * A network request timed out.
  196. * <br> error.data[0] is the URI.
  197. * <br> error.data[1] is the NetworkingEngine.RequestType of the request,
  198. * if one was provided.
  199. */
  200. 'TIMEOUT': 1003,
  201. /**
  202. * A network request was made with a malformed data URI.
  203. * <br> error.data[0] is the URI.
  204. */
  205. 'MALFORMED_DATA_URI': 1004,
  206. // RETIRED: 'UNKNOWN_DATA_URI_ENCODING': 1005,
  207. /**
  208. * A request filter threw an error.
  209. * <br> error.data[0] is the original error.
  210. */
  211. 'REQUEST_FILTER_ERROR': 1006,
  212. /**
  213. * A response filter threw an error.
  214. * <br> error.data[0] is the original error.
  215. */
  216. 'RESPONSE_FILTER_ERROR': 1007,
  217. /**
  218. * A testing network request was made with a malformed URI.
  219. * This error is only used by unit and integration tests.
  220. */
  221. 'MALFORMED_TEST_URI': 1008,
  222. /**
  223. * An unexpected network request was made to the FakeNetworkingEngine.
  224. * This error is only used by unit and integration tests.
  225. */
  226. 'UNEXPECTED_TEST_REQUEST': 1009,
  227. /**
  228. * The number of retry attempts have run out.
  229. * This is an internal error and shouldn't be propagated.
  230. */
  231. 'ATTEMPTS_EXHAUSTED': 1010,
  232. /** The text parser failed to parse a text stream due to an invalid header. */
  233. 'INVALID_TEXT_HEADER': 2000,
  234. /** The text parser failed to parse a text stream due to an invalid cue. */
  235. 'INVALID_TEXT_CUE': 2001,
  236. // RETIRED: 'INVALID_TEXT_SETTINGS': 2002,
  237. /**
  238. * Was unable to detect the encoding of the response text. Suggest adding
  239. * byte-order-markings to the response data.
  240. */
  241. 'UNABLE_TO_DETECT_ENCODING': 2003,
  242. /** The response data contains invalid Unicode character encoding. */
  243. 'BAD_ENCODING': 2004,
  244. /**
  245. * The XML parser failed to parse an xml stream, or the XML lacks mandatory
  246. * elements for TTML.
  247. * <br> error.data[0] is extra context, if available.
  248. */
  249. 'INVALID_XML': 2005,
  250. // RETIRED: 'INVALID_TTML': 2006,
  251. /**
  252. * MP4 segment does not contain TTML.
  253. */
  254. 'INVALID_MP4_TTML': 2007,
  255. /**
  256. * MP4 segment does not contain VTT.
  257. */
  258. 'INVALID_MP4_VTT': 2008,
  259. /**
  260. * When examining media in advance, we were unable to extract the cue time.
  261. * This should only be possible with HLS, where we do not have explicit
  262. * segment start times.
  263. * <br> error.data[0] is the underlying exception or Error object.
  264. */
  265. 'UNABLE_TO_EXTRACT_CUE_START_TIME': 2009,
  266. /**
  267. * Some component tried to read past the end of a buffer. The segment index,
  268. * init segment, or PSSH may be malformed.
  269. */
  270. 'BUFFER_READ_OUT_OF_BOUNDS': 3000,
  271. /**
  272. * Some component tried to parse an integer that was too large to fit in a
  273. * JavaScript number without rounding error. JavaScript can only natively
  274. * represent integers up to 53 bits.
  275. */
  276. 'JS_INTEGER_OVERFLOW': 3001,
  277. /**
  278. * The EBML parser used to parse the WebM container encountered an integer,
  279. * ID, or other field larger than the maximum supported by the parser.
  280. */
  281. 'EBML_OVERFLOW': 3002,
  282. /**
  283. * The EBML parser used to parse the WebM container encountered a floating-
  284. * point field of a size not supported by the parser.
  285. */
  286. 'EBML_BAD_FLOATING_POINT_SIZE': 3003,
  287. /**
  288. * The MP4 SIDX parser found the wrong box type.
  289. * Either the segment index range is incorrect or the data is corrupt.
  290. */
  291. 'MP4_SIDX_WRONG_BOX_TYPE': 3004,
  292. /**
  293. * The MP4 SIDX parser encountered an invalid timescale.
  294. * The segment index data may be corrupt.
  295. */
  296. 'MP4_SIDX_INVALID_TIMESCALE': 3005,
  297. /** The MP4 SIDX parser encountered a type of SIDX that is not supported. */
  298. 'MP4_SIDX_TYPE_NOT_SUPPORTED': 3006,
  299. /**
  300. * The WebM Cues parser was unable to locate the Cues element.
  301. * The segment index data may be corrupt.
  302. */
  303. 'WEBM_CUES_ELEMENT_MISSING': 3007,
  304. /**
  305. * The WebM header parser was unable to locate the Ebml element.
  306. * The init segment data may be corrupt.
  307. */
  308. 'WEBM_EBML_HEADER_ELEMENT_MISSING': 3008,
  309. /**
  310. * The WebM header parser was unable to locate the Segment element.
  311. * The init segment data may be corrupt.
  312. */
  313. 'WEBM_SEGMENT_ELEMENT_MISSING': 3009,
  314. /**
  315. * The WebM header parser was unable to locate the Info element.
  316. * The init segment data may be corrupt.
  317. */
  318. 'WEBM_INFO_ELEMENT_MISSING': 3010,
  319. /**
  320. * The WebM header parser was unable to locate the Duration element.
  321. * The init segment data may be corrupt or may have been incorrectly encoded.
  322. * Shaka requires a duration in WebM DASH content.
  323. */
  324. 'WEBM_DURATION_ELEMENT_MISSING': 3011,
  325. /**
  326. * The WebM Cues parser was unable to locate the Cue Track Positions element.
  327. * The segment index data may be corrupt.
  328. */
  329. 'WEBM_CUE_TRACK_POSITIONS_ELEMENT_MISSING': 3012,
  330. /**
  331. * The WebM Cues parser was unable to locate the Cue Time element.
  332. * The segment index data may be corrupt.
  333. */
  334. 'WEBM_CUE_TIME_ELEMENT_MISSING': 3013,
  335. /**
  336. * A MediaSource operation failed.
  337. * <br> error.data[0] is a MediaError code from the video element.
  338. */
  339. 'MEDIA_SOURCE_OPERATION_FAILED': 3014,
  340. /**
  341. * A MediaSource operation threw an exception.
  342. * <br> error.data[0] is the exception that was thrown.
  343. */
  344. 'MEDIA_SOURCE_OPERATION_THREW': 3015,
  345. /**
  346. * The video element reported an error.
  347. * <br> error.data[0] is a MediaError code from the video element.
  348. * <br> On Edge & IE, error.data[1] is a Microsoft extended error code in hex.
  349. * <br> On Chrome, error.data[2] is a string with details on the error.
  350. * <br> See top of file for links to browser error codes.
  351. */
  352. 'VIDEO_ERROR': 3016,
  353. /**
  354. * A MediaSource operation threw QuotaExceededError and recovery failed. The
  355. * content cannot be played correctly because the segments are too large for
  356. * the browser/platform. This may occur when attempting to play very high
  357. * quality, very high bitrate content on low-end devices.
  358. * <br> error.data[0] is the type of content which caused the error.
  359. */
  360. 'QUOTA_EXCEEDED_ERROR': 3017,
  361. /**
  362. * Mux.js did not invoke the callback signifying successful transmuxing.
  363. */
  364. 'TRANSMUXING_FAILED': 3018,
  365. /**
  366. * Content transformations required by the platform could not be performed for
  367. * some reason (unsupported container, etc.)
  368. *
  369. * @see https://github.com/google/shaka-player/issues/2759
  370. */
  371. 'CONTENT_TRANSFORMATION_FAILED': 3019,
  372. /**
  373. * The Player was unable to guess the manifest type based on file extension
  374. * or MIME type. To fix, try one of the following:
  375. * <br><ul>
  376. * <li>Rename the manifest so that the URI ends in a well-known extension.
  377. * <li>Configure the server to send a recognizable Content-Type header.
  378. * <li>Configure the server to accept a HEAD request for the manifest.
  379. * </ul>
  380. * <br> error.data[0] is the manifest URI.
  381. */
  382. 'UNABLE_TO_GUESS_MANIFEST_TYPE': 4000,
  383. /**
  384. * The DASH Manifest contained invalid XML markup.
  385. * <br> error.data[0] is the URI associated with the XML.
  386. */
  387. 'DASH_INVALID_XML': 4001,
  388. /**
  389. * The DASH Manifest contained a Representation with insufficient segment
  390. * information.
  391. */
  392. 'DASH_NO_SEGMENT_INFO': 4002,
  393. /** The DASH Manifest contained an AdaptationSet with no Representations. */
  394. 'DASH_EMPTY_ADAPTATION_SET': 4003,
  395. /** The DASH Manifest contained an Period with no AdaptationSets. */
  396. 'DASH_EMPTY_PERIOD': 4004,
  397. /**
  398. * The DASH Manifest does not specify an init segment with a WebM container.
  399. */
  400. 'DASH_WEBM_MISSING_INIT': 4005,
  401. /** The DASH Manifest contained an unsupported container format. */
  402. 'DASH_UNSUPPORTED_CONTAINER': 4006,
  403. /** The embedded PSSH data has invalid encoding. */
  404. 'DASH_PSSH_BAD_ENCODING': 4007,
  405. /**
  406. * There is an AdaptationSet whose Representations do not have any common
  407. * key-systems.
  408. */
  409. 'DASH_NO_COMMON_KEY_SYSTEM': 4008,
  410. /** Having multiple key IDs per Representation is not supported. */
  411. 'DASH_MULTIPLE_KEY_IDS_NOT_SUPPORTED': 4009,
  412. /** The DASH Manifest specifies conflicting key IDs. */
  413. 'DASH_CONFLICTING_KEY_IDS': 4010,
  414. // RETIRED: 'UNPLAYABLE_PERIOD': 4011,
  415. /**
  416. * There exist some streams that could be decoded, but restrictions imposed
  417. * by the application or the key system prevent us from playing. This may
  418. * happen under the following conditions:
  419. * <ul>
  420. * <li>The application has given restrictions to the Player that restrict
  421. * at least one content type completely (e.g. no playable audio).
  422. * <li>The manifest specifies different keys than were given to us from the
  423. * license server.
  424. * <li>The key system has imposed output restrictions that cannot be met
  425. * (such as HDCP) and there are no unrestricted alternatives.
  426. * </ul>
  427. * <br> error.data[0] is a {@link shaka.extern.RestrictionInfo} object
  428. * describing the kinds of restrictions that caused this error.
  429. */
  430. 'RESTRICTIONS_CANNOT_BE_MET': 4012,
  431. // RETIRED: 'INTERNAL_ERROR_KEY_STATUS': 4013,
  432. // RETIRED: 'NO_PERIODS': 4014,
  433. /**
  434. * HLS playlist doesn't start with a mandory #EXTM3U tag.
  435. */
  436. 'HLS_PLAYLIST_HEADER_MISSING': 4015,
  437. /**
  438. * HLS tag has an invalid name that doesn't start with '#EXT'
  439. * <br> error.data[0] is the invalid tag.
  440. */
  441. 'INVALID_HLS_TAG': 4016,
  442. /**
  443. * HLS playlist has both Master and Media/Segment tags.
  444. */
  445. 'HLS_INVALID_PLAYLIST_HIERARCHY': 4017,
  446. /**
  447. * A Representation has an id that is the same as another Representation in
  448. * the same Period. This makes manifest updates impossible since we cannot
  449. * map the updated Representation to the old one.
  450. */
  451. 'DASH_DUPLICATE_REPRESENTATION_ID': 4018,
  452. // RETIRED: 'HLS_MEDIA_INIT_SECTION_INFO_MISSING': 4019,
  453. /**
  454. * HLS manifest has several #EXT-X-MAP tags. We can only
  455. * support one at the moment.
  456. */
  457. 'HLS_MULTIPLE_MEDIA_INIT_SECTIONS_FOUND': 4020,
  458. // RETIRED: 'HLS_COULD_NOT_GUESS_MIME_TYPE': 4021,
  459. /**
  460. * No Master Playlist has been provided. Master playlist provides
  461. * vital information about the streams (like codecs) that is
  462. * required for MediaSource. We don't support directly providing
  463. * a Media Playlist.
  464. */
  465. 'HLS_MASTER_PLAYLIST_NOT_PROVIDED': 4022,
  466. /**
  467. * One of the required attributes was not provided, so the
  468. * HLS manifest is invalid.
  469. * <br> error.data[0] is the missing attribute's name.
  470. */
  471. 'HLS_REQUIRED_ATTRIBUTE_MISSING': 4023,
  472. /**
  473. * One of the required tags was not provided, so the
  474. * HLS manifest is invalid.
  475. * <br> error.data[0] is the missing tag's name.
  476. */
  477. 'HLS_REQUIRED_TAG_MISSING': 4024,
  478. /**
  479. * The HLS parser was unable to guess codecs of a stream.
  480. * <br> error.data[0] is the list of all codecs for the variant.
  481. */
  482. 'HLS_COULD_NOT_GUESS_CODECS': 4025,
  483. /**
  484. * The HLS parser has encountered encrypted content with unsupported
  485. * KEYFORMAT attributes.
  486. */
  487. 'HLS_KEYFORMATS_NOT_SUPPORTED': 4026,
  488. /**
  489. * The manifest parser only supports xlink links with xlink:actuate="onLoad".
  490. */
  491. 'DASH_UNSUPPORTED_XLINK_ACTUATE': 4027,
  492. /**
  493. * The manifest parser has hit its depth limit on xlink link chains.
  494. */
  495. 'DASH_XLINK_DEPTH_LIMIT': 4028,
  496. // RETIRED: 'HLS_LIVE_CONTENT_NOT_SUPPORTED': 4029,
  497. /**
  498. * The HLS parser was unable to parse segment start time from the media.
  499. * <br> error.data[0] is the failed media playlist URI.
  500. * <br> error.data[1] is the failed media segment URI (if any).
  501. */
  502. 'HLS_COULD_NOT_PARSE_SEGMENT_START_TIME': 4030,
  503. // RETIRED: 'HLS_MEDIA_SEQUENCE_REQUIRED_IN_LIVE_STREAMS': 4031,
  504. /**
  505. * The content container or codecs are not supported by this browser. For
  506. * example, this could happen if the content is WebM, but your browser does
  507. * not support the WebM container, or if the content uses HEVC, but your
  508. * browser does not support the HEVC codec. This can also occur for
  509. * multicodec or multicontainer manifests if none of the codecs or containers
  510. * are supported by the browser.
  511. *
  512. * To see what your browser supports, you can check the JSON data dumped by
  513. * http://support.shaka-player-demo.appspot.com/
  514. */
  515. 'CONTENT_UNSUPPORTED_BY_BROWSER': 4032,
  516. /**
  517. * External text tracks cannot be added to live streams.
  518. */
  519. 'CANNOT_ADD_EXTERNAL_TEXT_TO_LIVE_STREAM': 4033,
  520. /**
  521. * We do not support AES-128 encryption with HLS yet.
  522. */
  523. 'HLS_AES_128_ENCRYPTION_NOT_SUPPORTED': 4034,
  524. /**
  525. * An internal error code that should never be seen by applications, thrown
  526. * to force the HLS parser to skip an unsupported stream.
  527. */
  528. 'HLS_INTERNAL_SKIP_STREAM': 4035,
  529. /** The Manifest contained no Variants. */
  530. 'NO_VARIANTS': 4036,
  531. /**
  532. * We failed to find matching streams across DASH Periods, and the
  533. * period-flattening aglorithm introduced in v3.0 has failed.
  534. */
  535. 'PERIOD_FLATTENING_FAILED': 4037,
  536. /**
  537. * We failed to find matching streams across DASH Periods due to inconsistent
  538. * DRM systems across periods.
  539. */
  540. 'INCONSISTENT_DRM_ACROSS_PERIODS': 4038,
  541. /**
  542. * The HLS manifest refers to an undeclared variables.
  543. * <br> error.data[0] is the variable undeclared.
  544. */
  545. 'HLS_VARIABLE_NOT_FOUND': 4039,
  546. // RETIRED: 'INCONSISTENT_BUFFER_STATE': 5000,
  547. // RETIRED: 'INVALID_SEGMENT_INDEX': 5001,
  548. // RETIRED: 'SEGMENT_DOES_NOT_EXIST': 5002,
  549. // RETIRED: 'CANNOT_SATISFY_BYTE_LIMIT': 5003,
  550. // RETIRED: 'BAD_SEGMENT': 5004,
  551. // RETIRED: 'INVALID_STREAMS_CHOSEN': 5005,
  552. /**
  553. * This would only happen if StreamingEngine were not started correctly, and
  554. * should not be seen in production.
  555. */
  556. 'STREAMING_ENGINE_STARTUP_INVALID_STATE': 5006,
  557. /**
  558. * The manifest indicated protected content, but the manifest parser was
  559. * unable to determine what key systems should be used.
  560. */
  561. 'NO_RECOGNIZED_KEY_SYSTEMS': 6000,
  562. /**
  563. * None of the requested key system configurations are available. This may
  564. * happen under the following conditions:
  565. * <ul>
  566. * <li> The key system is not supported.
  567. * <li> The key system does not support the features requested (e.g.
  568. * persistent state).
  569. * <li> A user prompt was shown and the user denied access.
  570. * <li> The key system is not available from unsecure contexts. (i.e.
  571. requires HTTPS) See https://bit.ly/2K9X1nY
  572. * </ul>
  573. */
  574. 'REQUESTED_KEY_SYSTEM_CONFIG_UNAVAILABLE': 6001,
  575. /**
  576. * The browser found one of the requested key systems, but it failed to
  577. * create an instance of the CDM for some unknown reason.
  578. * <br> error.data[0] is an error message string from the browser.
  579. */
  580. 'FAILED_TO_CREATE_CDM': 6002,
  581. /**
  582. * The browser found one of the requested key systems and created an instance
  583. * of the CDM, but it failed to attach the CDM to the video for some unknown
  584. * reason.
  585. * <br> error.data[0] is an error message string from the browser.
  586. */
  587. 'FAILED_TO_ATTACH_TO_VIDEO': 6003,
  588. /**
  589. * The CDM rejected the server certificate supplied by the application.
  590. * The certificate may be malformed or in an unsupported format.
  591. * <br> error.data[0] is an error message string from the browser.
  592. */
  593. 'INVALID_SERVER_CERTIFICATE': 6004,
  594. /**
  595. * The CDM refused to create a session for some unknown reason.
  596. * <br> error.data[0] is an error message string from the browser.
  597. */
  598. 'FAILED_TO_CREATE_SESSION': 6005,
  599. /**
  600. * The CDM was unable to generate a license request for the init data it was
  601. * given. The init data may be malformed or in an unsupported format.
  602. * <br> error.data[0] is an error message string from the browser.
  603. * <br> error.data[1] is the error object from the browser.
  604. * <br> error.data[2] is a string with the extended error code, if available.
  605. * <br> See top of file for links to browser error codes.
  606. */
  607. 'FAILED_TO_GENERATE_LICENSE_REQUEST': 6006,
  608. /**
  609. * The license request failed. This could be a timeout, a network failure, or
  610. * a rejection by the server.
  611. * <br> error.data[0] is a shaka.util.Error from the networking engine.
  612. */
  613. 'LICENSE_REQUEST_FAILED': 6007,
  614. /**
  615. * The license response was rejected by the CDM. The server's response may be
  616. * invalid or malformed for this CDM.
  617. * <br> error.data[0] is an error message string from the browser.
  618. * <br> See top of file for links to browser error codes.
  619. */
  620. 'LICENSE_RESPONSE_REJECTED': 6008,
  621. // RETIRED: 'NO_LICENSE_SERVER_SPECIFIED': 6009,
  622. /**
  623. * The manifest does not specify any DRM info, but the content is encrypted.
  624. * Either the manifest or the manifest parser are broken.
  625. */
  626. 'ENCRYPTED_CONTENT_WITHOUT_DRM_INFO': 6010,
  627. // RETIRED: 'WRONG_KEYS': 6011,
  628. /**
  629. * No license server was given for the key system signaled by the manifest.
  630. * A license server URI is required for every key system.
  631. * <br> error.data[0] is the key system identifier.
  632. */
  633. 'NO_LICENSE_SERVER_GIVEN': 6012,
  634. /**
  635. * A required offline session was removed. The content is not playable.
  636. */
  637. 'OFFLINE_SESSION_REMOVED': 6013,
  638. /**
  639. * The license has expired. This is triggered when all keys in the key
  640. * status map have a status of 'expired'.
  641. */
  642. 'EXPIRED': 6014,
  643. /**
  644. * A server certificate wasn't given when it is required. FairPlay requires
  645. * setting an explicit server certificate in the configuration.
  646. */
  647. 'SERVER_CERTIFICATE_REQUIRED': 6015,
  648. /**
  649. * An error was thrown while executing the init data transformation.
  650. * <br> error.data[0] is the original error.
  651. */
  652. 'INIT_DATA_TRANSFORM_ERROR': 6016,
  653. /**
  654. * The call to Player.load() was interrupted by a call to Player.unload()
  655. * or another call to Player.load().
  656. */
  657. 'LOAD_INTERRUPTED': 7000,
  658. /**
  659. * An internal error which indicates that an operation was aborted. This
  660. * should not be seen by applications.
  661. */
  662. 'OPERATION_ABORTED': 7001,
  663. /**
  664. * The call to Player.load() failed because the Player does not have a video
  665. * element. The video element must either be provided to the constructor or
  666. * to Player.attach() before Player.load() is called.
  667. */
  668. 'NO_VIDEO_ELEMENT': 7002,
  669. /**
  670. * The operation failed because the object has been destroyed.
  671. */
  672. 'OBJECT_DESTROYED': 7003,
  673. /**
  674. * The Cast API is unavailable. This may be because of one of the following:
  675. * 1. The browser may not have Cast support
  676. * 2. The browser may be missing a necessary Cast extension
  677. * 3. The Cast sender library may not be loaded in your app
  678. */
  679. 'CAST_API_UNAVAILABLE': 8000,
  680. /**
  681. * No cast receivers are available at this time.
  682. */
  683. 'NO_CAST_RECEIVERS': 8001,
  684. /**
  685. * The library is already casting.
  686. */
  687. 'ALREADY_CASTING': 8002,
  688. /**
  689. * A Cast SDK error that we did not explicitly plan for has occurred.
  690. * Check data[0] and refer to the Cast SDK documentation for details.
  691. * <br> error.data[0] is an error object from the Cast SDK.
  692. */
  693. 'UNEXPECTED_CAST_ERROR': 8003,
  694. /**
  695. * The cast operation was canceled by the user.
  696. * <br> error.data[0] is an error object from the Cast SDK.
  697. */
  698. 'CAST_CANCELED_BY_USER': 8004,
  699. /**
  700. * The cast connection timed out.
  701. * <br> error.data[0] is an error object from the Cast SDK.
  702. */
  703. 'CAST_CONNECTION_TIMED_OUT': 8005,
  704. /**
  705. * The requested receiver app ID does not exist or is unavailable.
  706. * Check the requested app ID for typos.
  707. * <br> error.data[0] is an error object from the Cast SDK.
  708. */
  709. 'CAST_RECEIVER_APP_UNAVAILABLE': 8006,
  710. // RETIRED: CAST_RECEIVER_APP_ID_MISSING': 8007,
  711. /**
  712. * Offline storage is not supported on this browser; it is required for
  713. * offline support.
  714. */
  715. 'STORAGE_NOT_SUPPORTED': 9000,
  716. /**
  717. * An unknown error occurred in the IndexedDB.
  718. * <br> On Firefox, one common source for UnknownError calls is reverting
  719. * Firefox to an old version. This makes the IndexedDB storage inaccessible
  720. * for older versions. The only way to fix this is to delete the storage
  721. * data in your profile. See https://mzl.la/2yCGWCm
  722. * <br> error.data[0] is the error object.
  723. */
  724. 'INDEXED_DB_ERROR': 9001,
  725. /**
  726. * The storage operation was aborted. Deprecated in favor of more general
  727. * OPERATION_ABORTED.
  728. */
  729. 'DEPRECATED_OPERATION_ABORTED': 9002,
  730. /**
  731. * The specified item was not found in the IndexedDB.
  732. * <br> error.data[0] is the offline URI.
  733. */
  734. 'REQUESTED_ITEM_NOT_FOUND': 9003,
  735. /**
  736. * A network request was made with a malformed offline URI.
  737. * <br> error.data[0] is the URI.
  738. */
  739. 'MALFORMED_OFFLINE_URI': 9004,
  740. /**
  741. * The specified content is live or in-progress.
  742. * Live and in-progress streams cannot be stored offline.
  743. * <br> error.data[0] is the URI.
  744. */
  745. 'CANNOT_STORE_LIVE_OFFLINE': 9005,
  746. // RETIRED: 'STORE_ALREADY_IN_PROGRESS': 9006,
  747. /**
  748. * There was no init data available for offline storage. This happens when
  749. * there is no init data in the manifest nor could we find any in the
  750. * segments. We currently only support searching MP4 init segments for init
  751. * data.
  752. */
  753. 'NO_INIT_DATA_FOR_OFFLINE': 9007,
  754. /**
  755. * shaka.offline.Storage was constructed with a Player proxy instead of a
  756. * local player instance. To fix this, use Player directly with Storage
  757. * instead of the results of CastProxy.prototype.getPlayer().
  758. */
  759. 'LOCAL_PLAYER_INSTANCE_REQUIRED': 9008,
  760. // RETIRED/MOVED TO 4000's: 'CONTENT_UNSUPPORTED_BY_BROWSER': 9009,
  761. // RETIRED: 'UNSUPPORTED_UPGRADE_REQUEST': 9010,
  762. /**
  763. * The storage cell does not allow new operations that require new keys.
  764. */
  765. 'NEW_KEY_OPERATION_NOT_SUPPORTED': 9011,
  766. /**
  767. * A key was not found in a storage cell.
  768. */
  769. 'KEY_NOT_FOUND': 9012,
  770. /**
  771. * A storage cell was not found.
  772. */
  773. 'MISSING_STORAGE_CELL': 9013,
  774. /**
  775. * CS IMA SDK, required for ad insertion, has not been included on the page.
  776. */
  777. 'CS_IMA_SDK_MISSING': 10000,
  778. /**
  779. * Client Side Ad Manager needs to be initialized to enable Client Side
  780. * Ad Insertion. Call adManager.initClientSide() to do it.
  781. */
  782. 'CS_AD_MANAGER_NOT_INITIALIZED': 10001,
  783. /**
  784. * SS IMA SDK, required for ad insertion, has not been included on the page.
  785. */
  786. 'SS_IMA_SDK_MISSING': 10002,
  787. /**
  788. * Server Side Ad Manager needs to be initialized to enable Server Side
  789. * Ad Insertion. Call adManager.initServerSide() to do it.
  790. */
  791. 'SS_AD_MANAGER_NOT_INITIALIZED': 10003,
  792. /**
  793. * A new DAI steam was requested before the previous request had been
  794. * resolved. Only one stream request at a time is supported. Please wait
  795. * for the previous request to complete before initiating a new one.
  796. */
  797. 'CURRENT_DAI_REQUEST_NOT_FINISHED': 10004,
  798. };