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. * }}
  17. *
  18. * @description
  19. * Parameters for retrying requests.
  20. *
  21. * @property {number} maxAttempts
  22. * The maximum number of times the request should be attempted.
  23. * @property {number} baseDelay
  24. * The delay before the first retry, in milliseconds.
  25. * @property {number} backoffFactor
  26. * The multiplier for successive retry delays.
  27. * @property {number} fuzzFactor
  28. * The maximum amount of fuzz to apply to each retry delay.
  29. * For example, 0.5 means "between 50% below and 50% above the retry delay."
  30. * @property {number} timeout
  31. * The request timeout, in milliseconds. Zero means "unlimited".
  32. *
  33. * @tutorial network-and-buffering-config
  34. *
  35. * @exportDoc
  36. */
  37. shaka.extern.RetryParameters;
  38. /**
  39. * @typedef {{
  40. * uris: !Array.<string>,
  41. * method: string,
  42. * body: ?BufferSource,
  43. * headers: !Object.<string, string>,
  44. * allowCrossSiteCredentials: boolean,
  45. * retryParameters: !shaka.extern.RetryParameters,
  46. * licenseRequestType: ?string,
  47. * sessionId: ?string
  48. * }}
  49. *
  50. * @description
  51. * Defines a network request. This is passed to one or more request filters
  52. * that may alter the request, then it is passed to a scheme plugin which
  53. * performs the actual operation.
  54. *
  55. * @property {!Array.<string>} uris
  56. * An array of URIs to attempt. They will be tried in the order they are
  57. * given.
  58. * @property {string} method
  59. * The HTTP method to use for the request.
  60. * @property {?BufferSource} body
  61. * The body of the request.
  62. * @property {!Object.<string, string>} headers
  63. * A mapping of headers for the request. e.g.: {'HEADER': 'VALUE'}
  64. * @property {boolean} allowCrossSiteCredentials
  65. * Make requests with credentials. This will allow cookies in cross-site
  66. * requests. See {@link https://bit.ly/CorsCred}.
  67. * @property {!shaka.extern.RetryParameters} retryParameters
  68. * An object used to define how often to make retries.
  69. * @property {?string} licenseRequestType
  70. * If this is a LICENSE request, this field contains the type of license
  71. * request it is (not the type of license). This is the |messageType| field
  72. * of the EME message. For example, this could be 'license-request' or
  73. * 'license-renewal'.
  74. * @property {?string} sessionId
  75. * If this is a LICENSE request, this field contains the session ID of the
  76. * EME session that made the request.
  77. *
  78. * @exportDoc
  79. */
  80. shaka.extern.Request;
  81. /**
  82. * @typedef {{
  83. * uri: string,
  84. * data: BufferSource,
  85. * headers: !Object.<string, string>,
  86. * timeMs: (number|undefined),
  87. * fromCache: (boolean|undefined)
  88. * }}
  89. *
  90. * @description
  91. * Defines a response object. This includes the response data and header info.
  92. * This is given back from the scheme plugin. This is passed to a response
  93. * filter before being returned from the request call.
  94. *
  95. * @property {string} uri
  96. * The URI which was loaded. Request filters and server redirects can cause
  97. * this to be different from the original request URIs.
  98. * @property {string} originalUri
  99. * The original URI passed to the browser for networking. This is before any
  100. * redirects, but after request filters are executed.
  101. * @property {BufferSource} data
  102. * The body of the response.
  103. * @property {!Object.<string, string>} headers
  104. * A map of response headers, if supported by the underlying protocol.
  105. * All keys should be lowercased.
  106. * For HTTP/HTTPS, may not be available cross-origin.
  107. * @property {(number|undefined)} timeMs
  108. * Optional. The time it took to get the response, in milliseconds. If not
  109. * given, NetworkingEngine will calculate it using Date.now.
  110. * @property {(boolean|undefined)} fromCache
  111. * Optional. If true, this response was from a cache and should be ignored
  112. * for bandwidth estimation.
  113. *
  114. * @exportDoc
  115. */
  116. shaka.extern.Response;
  117. /**
  118. * @typedef {!function(string,
  119. * shaka.extern.Request,
  120. * shaka.net.NetworkingEngine.RequestType,
  121. * shaka.extern.ProgressUpdated):
  122. * !shaka.extern.IAbortableOperation.<shaka.extern.Response>}
  123. * @description
  124. * Defines a plugin that handles a specific scheme.
  125. *
  126. * The functions accepts four parameters, uri string, request, request type,
  127. * and a progressUpdated function. The progressUpdated function can be ignored
  128. * by plugins that do not have this information, but it will always be provided
  129. * by NetworkingEngine.
  130. *
  131. * @exportDoc
  132. */
  133. shaka.extern.SchemePlugin;
  134. /**
  135. * @typedef {function(number, number, number)}
  136. *
  137. * @description
  138. * A callback function to handle progress event through networking engine in
  139. * player.
  140. * The first argument is a number for duration in milliseconds, that the request
  141. * took to complete.
  142. * The second argument is the total number of bytes downloaded during that
  143. * time.
  144. * The third argument is the number of bytes remaining to be loaded in a
  145. * segment.
  146. * @exportDoc
  147. */
  148. shaka.extern.ProgressUpdated;
  149. /**
  150. * Defines a filter for requests. This filter takes the request and modifies
  151. * it before it is sent to the scheme plugin.
  152. * A request filter can run asynchronously by returning a promise; in this case,
  153. * the request will not be sent until the promise is resolved.
  154. *
  155. * @typedef {!function(shaka.net.NetworkingEngine.RequestType,
  156. * shaka.extern.Request):
  157. (Promise|undefined)}
  158. * @exportDoc
  159. */
  160. shaka.extern.RequestFilter;
  161. /**
  162. * Defines a filter for responses. This filter takes the response and modifies
  163. * it before it is returned.
  164. * A response filter can run asynchronously by returning a promise.
  165. *
  166. * @typedef {!function(shaka.net.NetworkingEngine.RequestType,
  167. * shaka.extern.Response):
  168. (Promise|undefined)}
  169. * @exportDoc
  170. */
  171. shaka.extern.ResponseFilter;