Source: externs/shaka/net.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. * maxAttempts: number,
  12. * baseDelay: number,
  13. * backoffFactor: number,
  14. * fuzzFactor: number,
  15. * timeout: number,
  16. * stallTimeout: number,
  17. * connectionTimeout: number
  18. * }}
  19. *
  20. * @description
  21. * Parameters for retrying requests.
  22. *
  23. * @property {number} maxAttempts
  24. * The maximum number of times the request should be attempted.
  25. * The minimum supported value is 1 (only one request without retries).
  26. * @property {number} baseDelay
  27. * The delay before the first retry, in milliseconds.
  28. * @property {number} backoffFactor
  29. * The multiplier for successive retry delays.
  30. * @property {number} fuzzFactor
  31. * The maximum amount of fuzz to apply to each retry delay.
  32. * For example, 0.5 means "between 50% below and 50% above the retry delay."
  33. * @property {number} timeout
  34. * The request timeout, in milliseconds. Zero means "unlimited".
  35. * <i>Defaults to 30000 milliseconds.</i>
  36. * @property {number} stallTimeout
  37. * The request stall timeout, in milliseconds. Zero means "unlimited".
  38. * <i>Defaults to 5000 milliseconds.</i>
  39. * @property {number} connectionTimeout
  40. * The request connection timeout, in milliseconds. Zero means "unlimited".
  41. * <i>Defaults to 10000 milliseconds.</i>
  42. *
  43. * @tutorial network-and-buffering-config
  44. *
  45. * @exportDoc
  46. */
  47. shaka.extern.RetryParameters;
  48. /**
  49. * @typedef {{
  50. * uris: !Array<string>,
  51. * method: string,
  52. * body: ?BufferSource,
  53. * headers: !Object<string, string>,
  54. * allowCrossSiteCredentials: boolean,
  55. * retryParameters: !shaka.extern.RetryParameters,
  56. * licenseRequestType: ?string,
  57. * sessionId: ?string,
  58. * drmInfo: ?shaka.extern.DrmInfo,
  59. * initData: ?Uint8Array,
  60. * initDataType: ?string,
  61. * streamDataCallback: ?function(BufferSource):!Promise,
  62. * requestStartTime: (?number|undefined),
  63. * timeToFirstByte: (?number|undefined),
  64. * packetNumber: (?number|undefined),
  65. * contentType: (?string|undefined)
  66. * }}
  67. *
  68. * @description
  69. * Defines a network request. This is passed to one or more request filters
  70. * that may alter the request, then it is passed to a scheme plugin which
  71. * performs the actual operation.
  72. *
  73. * @property {!Array<string>} uris
  74. * An array of URIs to attempt. They will be tried in the order they are
  75. * given.
  76. * @property {string} method
  77. * The HTTP method to use for the request.
  78. * @property {?BufferSource} body
  79. * The body of the request.
  80. * @property {!Object<string, string>} headers
  81. * A mapping of headers for the request. e.g.: {'HEADER': 'VALUE'}
  82. * @property {boolean} allowCrossSiteCredentials
  83. * Make requests with credentials. This will allow cookies in cross-site
  84. * requests. See {@link https://bit.ly/CorsCred}.
  85. * @property {!shaka.extern.RetryParameters} retryParameters
  86. * An object used to define how often to make retries.
  87. * @property {?string} licenseRequestType
  88. * If this is a LICENSE request, this field contains the type of license
  89. * request it is (not the type of license). This is the |messageType| field
  90. * of the EME message. For example, this could be 'license-request' or
  91. * 'license-renewal'.
  92. * @property {?string} sessionId
  93. * If this is a LICENSE request, this field contains the session ID of the
  94. * EME session that made the request.
  95. * @property {?shaka.extern.DrmInfo} drmInfo
  96. * If this is a LICENSE request, this field contains the DRM info used to
  97. * initialize EME.
  98. * @property {?Uint8Array} initData
  99. * If this is a LICENSE request, this field contains the initData info used
  100. * to initialize EME.
  101. * @property {?string} initDataType
  102. * If this is a LICENSE request, this field contains the initDataType info
  103. * used to initialize EME.
  104. * @property {?function(BufferSource):!Promise} streamDataCallback
  105. * A callback function to handle the chunked data of the ReadableStream.
  106. * @property {(?number|undefined)} requestStartTime
  107. * The time that the request started.
  108. * @property {(?number|undefined)} timeToFirstByte
  109. * The time taken to the first byte.
  110. * @property {(?number|undefined)} packetNumber
  111. * A number representing the order the packet within the request.
  112. * @property {(?string|undefined)} contentType
  113. * Content type (e.g. 'video', 'audio' or 'text', 'image')
  114. * @exportDoc
  115. */
  116. shaka.extern.Request;
  117. /**
  118. * @typedef {{
  119. * uri: string,
  120. * originalUri: string,
  121. * data: BufferSource,
  122. * status: (number|undefined),
  123. * headers: !Object<string, string>,
  124. * timeMs: (number|undefined),
  125. * fromCache: (boolean|undefined),
  126. * originalRequest: shaka.extern.Request
  127. * }}
  128. *
  129. * @description
  130. * Defines a response object. This includes the response data and header info.
  131. * This is given back from the scheme plugin. This is passed to a response
  132. * filter before being returned from the request call.
  133. *
  134. * @property {string} uri
  135. * The URI which was loaded. Request filters and server redirects can cause
  136. * this to be different from the original request URIs.
  137. * @property {string} originalUri
  138. * The original URI passed to the browser for networking. This is before any
  139. * redirects, but after request filters are executed.
  140. * @property {BufferSource} data
  141. * The body of the response.
  142. * @property {(number|undefined)} status
  143. * The response HTTP status code.
  144. * @property {!Object<string, string>} headers
  145. * A map of response headers, if supported by the underlying protocol.
  146. * All keys should be lowercased.
  147. * For HTTP/HTTPS, may not be available cross-origin.
  148. * @property {(number|undefined)} timeMs
  149. * Optional. The time it took to get the response, in milliseconds. If not
  150. * given, NetworkingEngine will calculate it using Date.now.
  151. * @property {(boolean|undefined)} fromCache
  152. * Optional. If true, this response was from a cache and should be ignored
  153. * for bandwidth estimation.
  154. * @property {shaka.extern.Request} originalRequest
  155. * The original request that gave rise to this response.
  156. *
  157. * @exportDoc
  158. */
  159. shaka.extern.Response;
  160. /**
  161. * @typedef {!function(string,
  162. * shaka.extern.Request,
  163. * shaka.net.NetworkingEngine.RequestType,
  164. * shaka.extern.ProgressUpdated,
  165. * shaka.extern.HeadersReceived,
  166. * shaka.extern.SchemePluginConfig):
  167. * !shaka.extern.IAbortableOperation.<shaka.extern.Response>}
  168. * @description
  169. * Defines a plugin that handles a specific scheme.
  170. *
  171. * The functions accepts four parameters, uri string, request, request type,
  172. * a progressUpdated function, and a headersReceived function. The
  173. * progressUpdated and headersReceived functions can be ignored by plugins that
  174. * do not have this information, but it will always be provided by
  175. * NetworkingEngine.
  176. *
  177. * @exportDoc
  178. */
  179. shaka.extern.SchemePlugin;
  180. /**
  181. * @typedef {{
  182. * minBytesForProgressEvents: (number|undefined)
  183. * }}
  184. *
  185. * @description
  186. * Defines configuration object to use by SchemePlugins.
  187. *
  188. * @property {(number|undefined)} minBytesForProgressEvents
  189. * Defines minimum number of bytes that should be use to emit progress event,
  190. * if possible.
  191. *
  192. * @exportDoc
  193. */
  194. shaka.extern.SchemePluginConfig;
  195. /**
  196. * @typedef {function(number, number, number)}
  197. *
  198. * @description
  199. * A callback function to handle progress event through networking engine in
  200. * player.
  201. * The first argument is a number for duration in milliseconds, that the request
  202. * took to complete.
  203. * The second argument is the total number of bytes downloaded during that
  204. * time.
  205. * The third argument is the number of bytes remaining to be loaded in a
  206. * segment.
  207. * @exportDoc
  208. */
  209. shaka.extern.ProgressUpdated;
  210. /**
  211. * @typedef {function(!Object<string, string>)}
  212. *
  213. * @description
  214. * A callback function to handle headers received events through networking
  215. * engine in player.
  216. * The first argument is the headers object of the response.
  217. */
  218. shaka.extern.HeadersReceived;
  219. /**
  220. * @typedef {{
  221. * type: (shaka.net.NetworkingEngine.AdvancedRequestType|undefined),
  222. * stream: (shaka.extern.Stream|undefined),
  223. * segment: (shaka.media.SegmentReference|undefined),
  224. * isPreload: (boolean|undefined)
  225. * }}
  226. *
  227. * @description
  228. * Defines contextual data about a request
  229. *
  230. * @property {shaka.net.NetworkingEngine.AdvancedRequestType=} type
  231. * The advanced type
  232. * @property {shaka.extern.Stream=} stream
  233. * The duration of the segment in seconds
  234. * @property {shaka.media.SegmentReference=} segment
  235. * The request's segment reference
  236. * @property {boolean=} isPreload
  237. * Whether the request came from a preload or a normal load.
  238. * @exportDoc
  239. */
  240. shaka.extern.RequestContext;
  241. /**
  242. * Defines a filter for requests. This filter takes the request and modifies
  243. * it before it is sent to the scheme plugin.
  244. * The RequestType describes the basic type of the request (manifest, segment,
  245. * etc). The optional RequestContext will be provided where applicable to
  246. * provide additional information about the request. A request filter can run
  247. * asynchronously by returning a promise; in this case, the request will not be
  248. * sent until the promise is resolved.
  249. *
  250. * @typedef {!function(shaka.net.NetworkingEngine.RequestType,
  251. * shaka.extern.Request,
  252. * shaka.extern.RequestContext=):
  253. * (Promise|undefined)}
  254. * @exportDoc
  255. */
  256. shaka.extern.RequestFilter;
  257. /**
  258. * Defines a filter for responses. This filter takes the response and modifies
  259. * it before it is returned.
  260. * The RequestType describes the basic type of the request (manifest, segment,
  261. * etc). The optional RequestContext will be provided where applicable to
  262. * provide additional information about the request. A response filter can run
  263. * asynchronously by returning a promise.
  264. *
  265. * @typedef {!function(shaka.net.NetworkingEngine.RequestType,
  266. * shaka.extern.Response,
  267. * shaka.extern.RequestContext=):
  268. * (Promise|undefined)}
  269. * @exportDoc
  270. */
  271. shaka.extern.ResponseFilter;