Source: externs/shaka/offline.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @externs
  8. */
  9. /**
  10. * @typedef {{
  11. * basic: boolean,
  12. * encrypted: !Object.<string, boolean>
  13. * }}
  14. *
  15. * @property {boolean} basic
  16. * True if offline is usable at all.
  17. * @property {!Object.<string, boolean>} encrypted
  18. * A map of key system name to whether it supports offline playback.
  19. * @exportDoc
  20. */
  21. shaka.extern.OfflineSupport;
  22. /**
  23. * @typedef {{
  24. * offlineUri: ?string,
  25. * originalManifestUri: string,
  26. * duration: number,
  27. * size: number,
  28. * expiration: number,
  29. * tracks: !Array.<shaka.extern.Track>,
  30. * appMetadata: Object,
  31. * isIncomplete: boolean
  32. * }}
  33. *
  34. * @property {?string} offlineUri
  35. * An offline URI to access the content. This can be passed directly to
  36. * Player. If the uri is null, it means that the content has not finished
  37. * downloading and is not ready to play.
  38. * @property {string} originalManifestUri
  39. * The original manifest URI of the content stored.
  40. * @property {number} duration
  41. * The duration of the content, in seconds.
  42. * @property {number} size
  43. * The size of the content, in bytes.
  44. * @property {number} expiration
  45. * The time that the encrypted license expires, in milliseconds. If the media
  46. * is clear or the license never expires, this will equal Infinity.
  47. * @property {!Array.<shaka.extern.Track>} tracks
  48. * The tracks that are stored.
  49. * @property {Object} appMetadata
  50. * The metadata passed to store().
  51. * @property {boolean} isIncomplete
  52. * If true, the content is still downloading. Manifests with this set cannot
  53. * be played yet.
  54. * @exportDoc
  55. */
  56. shaka.extern.StoredContent;
  57. /**
  58. * @typedef {{
  59. * creationTime: number,
  60. * originalManifestUri: string,
  61. * duration: number,
  62. * size: number,
  63. * expiration: number,
  64. * streams: !Array.<shaka.extern.StreamDB>,
  65. * sessionIds: !Array.<string>,
  66. * drmInfo: ?shaka.extern.DrmInfo,
  67. * appMetadata: Object,
  68. * isIncomplete: (boolean|undefined),
  69. * sequenceMode: (boolean|undefined),
  70. * type: (string|undefined)
  71. * }}
  72. *
  73. * @property {number} creationTime
  74. * The date time when the asset was created.
  75. * @property {string} originalManifestUri
  76. * The URI that the manifest was originally loaded from.
  77. * @property {number} duration
  78. * The total duration of the media, in seconds.
  79. * @property {number} size
  80. * The total size of all stored segments, in bytes.
  81. * @property {number} expiration
  82. * The license expiration, in milliseconds; or Infinity if not applicable.
  83. * Note that upon JSON serialization, Infinity becomes null, and must be
  84. * converted back upon loading from storage.
  85. * @property {!Array.<shaka.extern.StreamDB>} streams
  86. * The Streams that are stored.
  87. * @property {!Array.<string>} sessionIds
  88. * The DRM offline session IDs for the media.
  89. * @property {?shaka.extern.DrmInfo} drmInfo
  90. * The DRM info used to initialize EME.
  91. * @property {Object} appMetadata
  92. * A metadata object passed from the application.
  93. * @property {(boolean|undefined)} isIncomplete
  94. * If true, the content is still downloading.
  95. * @property {(boolean|undefined)} sequenceMode
  96. * If true, we will append the media segments using sequence mode; that is to
  97. * say, ignoring any timestamps inside the media files.
  98. * @property {(string|undefined)} type
  99. * Indicates the type of the manifest. It can be <code>'HLS'</code> or
  100. * <code>'DASH'</code>.
  101. */
  102. shaka.extern.ManifestDB;
  103. /**
  104. * @typedef {{
  105. * id: number,
  106. * originalId: ?string,
  107. * groupId: ?string,
  108. * primary: boolean,
  109. * type: string,
  110. * mimeType: string,
  111. * codecs: string,
  112. * frameRate: (number|undefined),
  113. * pixelAspectRatio: (string|undefined),
  114. * hdr: (string|undefined),
  115. * colorGamut: (string|undefined),
  116. * videoLayout: (string|undefined),
  117. * kind: (string|undefined),
  118. * language: string,
  119. * originalLanguage: (?string|undefined),
  120. * label: ?string,
  121. * width: ?number,
  122. * height: ?number,
  123. * encrypted: boolean,
  124. * keyIds: !Set.<string>,
  125. * segments: !Array.<shaka.extern.SegmentDB>,
  126. * variantIds: !Array.<number>,
  127. * roles: !Array.<string>,
  128. * forced: boolean,
  129. * channelsCount: ?number,
  130. * audioSamplingRate: ?number,
  131. * spatialAudio: boolean,
  132. * closedCaptions: Map.<string, string>,
  133. * tilesLayout: (string|undefined),
  134. * external: boolean,
  135. * fastSwitching: boolean
  136. * }}
  137. *
  138. * @property {number} id
  139. * The unique id of the stream.
  140. * @property {?string} originalId
  141. * The original ID, if any, that appeared in the manifest. For example, in
  142. * DASH, this is the "id" attribute of the Representation element.
  143. * @property {?string} groupId
  144. * The ID of the stream's parent element. In DASH, this will be a unique
  145. * ID that represents the representation's parent adaptation element
  146. * @property {boolean} primary
  147. * Whether the stream set was primary.
  148. * @property {string} type
  149. * The type of the stream, 'audio', 'text', or 'video'.
  150. * @property {string} mimeType
  151. * The MIME type of the stream.
  152. * @property {string} codecs
  153. * The codecs of the stream.
  154. * @property {(number|undefined)} frameRate
  155. * The Stream's framerate in frames per second.
  156. * @property {(string|undefined)} pixelAspectRatio
  157. * The Stream's pixel aspect ratio
  158. * @property {(string|undefined)} hdr
  159. * The Stream's HDR info
  160. * @property {(string|undefined)} colorGamut
  161. * The Stream's color gamut info
  162. * @property {(string|undefined)} videoLayout
  163. * The Stream's video layout info.
  164. * @property {(string|undefined)} kind
  165. * The kind of text stream; undefined for audio/video.
  166. * @property {string} language
  167. * The language of the stream; '' for video.
  168. * @property {(?string|undefined)} originalLanguage
  169. * The original language, if any, that appeared in the manifest.
  170. * @property {?string} label
  171. * The label of the stream; '' for video.
  172. * @property {?number} width
  173. * The width of the stream; null for audio/text.
  174. * @property {?number} height
  175. * The height of the stream; null for audio/text.
  176. * @property {boolean} encrypted
  177. * Whether this stream is encrypted.
  178. * @property {!Set.<string>} keyIds
  179. * The key IDs this stream is encrypted with.
  180. * @property {!Array.<shaka.extern.SegmentDB>} segments
  181. * An array of segments that make up the stream.
  182. * @property {!Array.<number>} variantIds
  183. * An array of ids of variants the stream is a part of.
  184. * @property {!Array.<string>} roles
  185. * The roles of the stream as they appear on the manifest,
  186. * e.g. 'main', 'caption', or 'commentary'.
  187. * @property {boolean} forced
  188. * Whether the stream set was forced.
  189. * @property {?number} channelsCount
  190. * The channel count information for the audio stream.
  191. * @property {?number} audioSamplingRate
  192. * Specifies the maximum sampling rate of the content.
  193. * @property {boolean} spatialAudio
  194. * Whether the stream set has spatial audio.
  195. * @property {Map.<string, string>} closedCaptions
  196. * A map containing the description of closed captions, with the caption
  197. * channel number (CC1 | CC2 | CC3 | CC4) as the key and the language code
  198. * as the value. If the channel number is not provided by the description,
  199. * we'll set a 0-based index as the key. If the language code is not
  200. * provided by the description we'll set the same value as channel number.
  201. * Example: {'CC1': 'eng'; 'CC3': 'swe'}, or {'1', 'eng'; '2': 'swe'}, etc.
  202. * @property {(string|undefined)} tilesLayout
  203. * The value is a grid-item-dimension consisting of two positive decimal
  204. * integers in the format: column-x-row ('4x3'). It describes the arrangement
  205. * of Images in a Grid. The minimum valid LAYOUT is '1x1'.
  206. * @property {boolean} external
  207. * Indicate if the stream was added externally.
  208. * Eg: external text tracks.
  209. * @property {boolean} fastSwitching
  210. * Indicate if the stream should be used for fast switching.
  211. */
  212. shaka.extern.StreamDB;
  213. /**
  214. * @typedef {{
  215. * initSegmentKey: ?number,
  216. * startTime: number,
  217. * endTime: number,
  218. * appendWindowStart: number,
  219. * appendWindowEnd: number,
  220. * timestampOffset: number,
  221. * tilesLayout: ?string,
  222. * pendingSegmentRefId: (string|undefined),
  223. * pendingInitSegmentRefId: (string|undefined),
  224. * dataKey: number,
  225. * mimeType: ?string,
  226. * codecs: ?string
  227. * }}
  228. *
  229. * @property {?number} initSegmentKey
  230. * The storage key where the init segment is found; null if no init segment.
  231. * @property {number} startTime
  232. * The start time of the segment in the presentation timeline.
  233. * @property {number} endTime
  234. * The end time of the segment in the presentation timeline.
  235. * @property {number} appendWindowStart
  236. * A start timestamp before which media samples will be truncated.
  237. * @property {number} appendWindowEnd
  238. * An end timestamp beyond which media samples will be truncated.
  239. * @property {number} timestampOffset
  240. * An offset which MediaSource will add to the segment's media timestamps
  241. * during ingestion, to align to the presentation timeline.
  242. * @property {?string} tilesLayout
  243. * The value is a grid-item-dimension consisting of two positive decimal
  244. * integers in the format: column-x-row ('4x3'). It describes the
  245. * arrangement of Images in a Grid. The minimum valid LAYOUT is '1x1'.
  246. * @property {(string|undefined)} pendingSegmentRefId
  247. * Contains an id that identifies what the segment was, originally. Used to
  248. * coordinate where segments are stored, during the downloading process.
  249. * If this field is non-null, it's assumed that the segment is not fully
  250. * downloaded.
  251. * @property {(string|undefined)} pendingInitSegmentRefId
  252. * Contains an id that identifies what the init segment was, originally.
  253. * Used to coordinate where init segments are stored, during the downloading
  254. * process.
  255. * If this field is non-null, it's assumed that the init segment is not fully
  256. * downloaded.
  257. * @property {number} dataKey
  258. * The key to the data in storage.
  259. * @property {?string} mimeType
  260. * The mimeType of the segment.
  261. * @property {?string} codecs
  262. * The codecs of the segment.
  263. */
  264. shaka.extern.SegmentDB;
  265. /**
  266. * @typedef {{
  267. * data: !ArrayBuffer
  268. * }}
  269. *
  270. * @property {!ArrayBuffer} data
  271. * The data contents of the segment.
  272. */
  273. shaka.extern.SegmentDataDB;
  274. /**
  275. * @typedef {{
  276. * sessionId: string,
  277. * keySystem: string,
  278. * licenseUri: string,
  279. * serverCertificate: Uint8Array,
  280. * audioCapabilities: !Array.<MediaKeySystemMediaCapability>,
  281. * videoCapabilities: !Array.<MediaKeySystemMediaCapability>
  282. * }}
  283. *
  284. * @property {string} sessionId
  285. * The EME session ID.
  286. * @property {string} keySystem
  287. * The EME key system string the session belongs to.
  288. * @property {string} licenseUri
  289. * The URI for the license server.
  290. * @property {Uint8Array} serverCertificate
  291. * A key-system-specific server certificate used to encrypt license requests.
  292. * Its use is optional and is meant as an optimization to avoid a round-trip
  293. * to request a certificate.
  294. * @property {!Array.<MediaKeySystemMediacapability>} audioCapabilities
  295. * The EME audio capabilities used to create the session.
  296. * @property {!Array.<MediaKeySystemMediacapability>} videoCapabilities
  297. * The EME video capabilities used to create the session.
  298. */
  299. shaka.extern.EmeSessionDB;
  300. /**
  301. * An interface that defines access to collection of segments and manifests. All
  302. * methods are designed to be batched operations allowing the implementations to
  303. * optimize their operations based on how they store data.
  304. *
  305. * The storage cell is one of two exposed APIs used to control where and how
  306. * offline content is saved. The storage cell is responsible for converting
  307. * information between its internal structures and the external (library)
  308. * structures.
  309. *
  310. * @interface
  311. */
  312. shaka.extern.StorageCell = class {
  313. constructor() {}
  314. /**
  315. * Free all resources used by this cell. This should not affect the stored
  316. * content.
  317. *
  318. * @return {!Promise}
  319. */
  320. destroy() {}
  321. /**
  322. * Check if the cell can support new keys. If a cell has a fixed key space,
  323. * then all add-operations will fail as no new keys can be added. All
  324. * remove-operations and update-operations should still work.
  325. *
  326. * @return {boolean}
  327. */
  328. hasFixedKeySpace() {}
  329. /**
  330. * Add a group of segments. Will return a promise that resolves with a list
  331. * of keys for each segment. If one segment fails to be added, all segments
  332. * should fail to be added.
  333. *
  334. * @param {!Array.<shaka.extern.SegmentDataDB>} segments
  335. * @return {!Promise.<!Array.<number>>}
  336. */
  337. addSegments(segments) {}
  338. /**
  339. * Remove a group of segments using their keys to identify them. If a key
  340. * is not found, then that removal should be considered successful.
  341. *
  342. * @param {!Array.<number>} keys
  343. * @param {function(number)} onRemove A callback for when a segment is removed
  344. * from the cell. The key of the segment
  345. * will be passed to the callback.
  346. * @return {!Promise}
  347. */
  348. removeSegments(keys, onRemove) {}
  349. /**
  350. * Get a group of segments using their keys to identify them. If any key is
  351. * not found, the promise chain will be rejected.
  352. *
  353. * @param {!Array.<number>} keys
  354. * @return {!Promise.<!Array.<shaka.extern.SegmentDataDB>>}
  355. */
  356. getSegments(keys) {}
  357. /**
  358. * Add a group of manifests. Will return a promise that resolves with a list
  359. * of keys for each manifest. If one manifest fails to be added, all manifests
  360. * should fail to be added.
  361. *
  362. * @param {!Array.<shaka.extern.ManifestDB>} manifests
  363. * @return {!Promise<!Array.<number>>} keys
  364. */
  365. addManifests(manifests) {}
  366. /**
  367. * Updates the given manifest, stored at the given key.
  368. *
  369. * @param {number} key
  370. * @param {!shaka.extern.ManifestDB} manifest
  371. * @return {!Promise}
  372. */
  373. updateManifest(key, manifest) {}
  374. /**
  375. * Replace the expiration time of the manifest stored under |key| with
  376. * |newExpiration|. If no manifest is found under |key| then this should
  377. * act as a no-op.
  378. *
  379. * @param {number} key
  380. * @param {number} expiration
  381. * @return {!Promise}
  382. */
  383. updateManifestExpiration(key, expiration) {}
  384. /**
  385. * Remove a group of manifests using their keys to identify them. If a key
  386. * is not found, then that removal should be considered successful.
  387. *
  388. * @param {!Array.<number>} keys
  389. * @param {function(number)} onRemove A callback for when a manifest is
  390. * removed from the cell. The key of the
  391. * manifest will be passed to the callback.
  392. * @return {!Promise}
  393. */
  394. removeManifests(keys, onRemove) {}
  395. /**
  396. * Get a group of manifests using their keys to identify them. If any key is
  397. * not found, the promise chain will be rejected.
  398. *
  399. * @param {!Array.<number>} keys
  400. * @return {!Promise<!Array.<shaka.extern.ManifestDB>>}
  401. */
  402. getManifests(keys) {}
  403. /**
  404. * Get all manifests stored in this cell. Since manifests are small compared
  405. * to the asset they describe, it is assumed that it is feasible to have them
  406. * all in main memory at one time.
  407. *
  408. * @return {!Promise<!Map.<number, shaka.extern.ManifestDB>>}
  409. */
  410. getAllManifests() {}
  411. };
  412. /**
  413. * Similar to storage cells (shaka.extern.StorageCell), an EmeSessionStorageCell
  414. * stores data persistently. This only stores the license's session info, not
  415. * the license itself. The license itself is stored using EME.
  416. *
  417. * @interface
  418. */
  419. shaka.extern.EmeSessionStorageCell = class {
  420. constructor() {}
  421. /**
  422. * Free all resources used by this cell. This won't affect the stored content.
  423. * @return {!Promise}
  424. */
  425. destroy() {}
  426. /**
  427. * Gets the currently stored sessions.
  428. * @return {!Promise.<!Array.<shaka.extern.EmeSessionDB>>}
  429. */
  430. getAll() {}
  431. /**
  432. * Adds the given sessions to the store.
  433. * @param {!Array.<shaka.extern.EmeSessionDB>} sessions
  434. * @return {!Promise}
  435. */
  436. add(sessions) {}
  437. /**
  438. * Removes the given session IDs from the store.
  439. * @param {!Array.<string>} sessionIds
  440. * @return {!Promise}
  441. */
  442. remove(sessionIds) {}
  443. };
  444. /**
  445. * Storage mechanisms are one of two exported storage APIs. Storage mechanisms
  446. * are groups of storage cells (shaka.extern.StorageCell). Storage mechanisms
  447. * are responsible for managing the life cycle of resources shared between
  448. * storage cells in the same block.
  449. *
  450. * For example, a storage mechanism may manage a single database connection
  451. * while each cell would manage different tables in the database via the same
  452. * connection.
  453. *
  454. * @interface
  455. */
  456. shaka.extern.StorageMechanism = class {
  457. constructor() {}
  458. /**
  459. * Initialize the storage mechanism for first use. This should only be called
  460. * once. Calling |init| multiple times has an undefined behaviour.
  461. *
  462. * @return {!Promise}
  463. */
  464. init() {}
  465. /**
  466. * Free all resources used by the storage mechanism and its cells. This should
  467. * not affect the stored content.
  468. *
  469. * @return {!Promise}
  470. */
  471. destroy() {}
  472. /**
  473. * Get a map of all the cells managed by the storage mechanism. Editing the
  474. * map should have no effect on the storage mechanism. The map key is the
  475. * cell's address in the mechanism and should be consistent between calls to
  476. * |getCells|.
  477. *
  478. * @return {!Map.<string, !shaka.extern.StorageCell>}
  479. */
  480. getCells() {}
  481. /**
  482. * Get the current EME session storage cell.
  483. * @return {!shaka.extern.EmeSessionStorageCell}
  484. */
  485. getEmeSessionCell() {}
  486. /**
  487. * Erase all content from storage and leave storage in an empty state. Erase
  488. * may be called with or without |init|. This allows for storage to be wiped
  489. * in case of a version mismatch.
  490. *
  491. * After calling |erase|, the mechanism will be in an initialized state.
  492. *
  493. * @return {!Promise}
  494. */
  495. erase() {}
  496. };