Source: lib/util/networking.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.util.Networking');
  18. /**
  19. * A collection of shared utilities that bridge the gap between our networking
  20. * code and the other parts of our code base. This is to allow
  21. * |shaka.net.NetworkingEngine| to remain general.
  22. *
  23. * @final
  24. */
  25. shaka.util.Networking = class {
  26. /**
  27. * Create a request message for a segment. Providing |start| and |end|
  28. * will set the byte range. A non-zero start must be provided for |end| to
  29. * be used.
  30. *
  31. * @param {!Array.<string>} uris
  32. * @param {?number} start
  33. * @param {?number} end
  34. * @param {shaka.extern.RetryParameters} retryParameters
  35. * @return {shaka.extern.Request}
  36. */
  37. static createSegmentRequest(uris, start, end, retryParameters) {
  38. const request = shaka.net.NetworkingEngine.makeRequest(
  39. uris, retryParameters);
  40. if (start == 0 && end == null) {
  41. // This is a request for the entire segment. The Range header is not
  42. // required. Note that some web servers don't accept Range headers, so
  43. // don't set one if it's not strictly required.
  44. } else {
  45. if (end) {
  46. request.headers['Range'] = 'bytes=' + start + '-' + end;
  47. } else {
  48. request.headers['Range'] = 'bytes=' + start + '-';
  49. }
  50. }
  51. return request;
  52. }
  53. };