Download.cpp 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  19. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  20. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  22. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  23. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  24. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #include <AK/Badge.h>
  27. #include <ProtocolServer/ClientConnection.h>
  28. #include <ProtocolServer/Download.h>
  29. namespace ProtocolServer {
  30. // FIXME: What about rollover?
  31. static i32 s_next_id = 1;
  32. Download::Download(ClientConnection& client, NonnullOwnPtr<OutputFileStream>&& output_stream)
  33. : m_client(client)
  34. , m_id(s_next_id++)
  35. , m_output_stream(move(output_stream))
  36. {
  37. }
  38. Download::~Download()
  39. {
  40. }
  41. void Download::stop()
  42. {
  43. m_client.did_finish_download({}, *this, false);
  44. }
  45. void Download::set_response_headers(const HashMap<String, String, CaseInsensitiveStringTraits>& response_headers)
  46. {
  47. m_response_headers = response_headers;
  48. m_client.did_receive_headers({}, *this);
  49. }
  50. void Download::set_certificate(String, String)
  51. {
  52. }
  53. void Download::did_finish(bool success)
  54. {
  55. m_client.did_finish_download({}, *this, success);
  56. }
  57. void Download::did_progress(Optional<u32> total_size, u32 downloaded_size)
  58. {
  59. m_total_size = total_size;
  60. m_downloaded_size = downloaded_size;
  61. m_client.did_progress_download({}, *this);
  62. }
  63. void Download::did_request_certificates()
  64. {
  65. m_client.did_request_certificates({}, *this);
  66. }
  67. }