http_client_tcp.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**************************************************************************/
  2. /* http_client_tcp.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef HTTP_CLIENT_TCP_H
  31. #define HTTP_CLIENT_TCP_H
  32. #include "http_client.h"
  33. #include "core/crypto/crypto.h"
  34. class HTTPClientTCP : public HTTPClient {
  35. private:
  36. Status status = STATUS_DISCONNECTED;
  37. IP::ResolverID resolving = IP::RESOLVER_INVALID_ID;
  38. Array ip_candidates;
  39. int conn_port = -1; // Server to make requests to.
  40. String conn_host;
  41. int server_port = -1; // Server to connect to (might be a proxy server).
  42. String server_host;
  43. int http_proxy_port = -1; // Proxy server for http requests.
  44. String http_proxy_host;
  45. int https_proxy_port = -1; // Proxy server for https requests.
  46. String https_proxy_host;
  47. bool blocking = false;
  48. bool handshaking = false;
  49. bool head_request = false;
  50. Ref<TLSOptions> tls_options;
  51. Vector<uint8_t> response_str;
  52. bool chunked = false;
  53. Vector<uint8_t> chunk;
  54. int chunk_left = 0;
  55. bool chunk_trailer_part = false;
  56. int64_t body_size = -1;
  57. int64_t body_left = 0;
  58. bool read_until_eof = false;
  59. Ref<StreamPeerBuffer> request_buffer;
  60. Ref<StreamPeerTCP> tcp_connection;
  61. Ref<StreamPeer> connection;
  62. Ref<HTTPClientTCP> proxy_client; // Negotiate with proxy server.
  63. int response_num = 0;
  64. Vector<String> response_headers;
  65. // 64 KiB by default (favors fast download speeds at the cost of memory usage).
  66. int read_chunk_size = 65536;
  67. Error _get_http_data(uint8_t *p_buffer, int p_bytes, int &r_received);
  68. public:
  69. static HTTPClient *_create_func(bool p_notify_postinitialize);
  70. Error request(Method p_method, const String &p_url, const Vector<String> &p_headers, const uint8_t *p_body, int p_body_size) override;
  71. Error connect_to_host(const String &p_host, int p_port = -1, Ref<TLSOptions> p_tls_options = Ref<TLSOptions>()) override;
  72. void set_connection(const Ref<StreamPeer> &p_connection) override;
  73. Ref<StreamPeer> get_connection() const override;
  74. void close() override;
  75. Status get_status() const override;
  76. bool has_response() const override;
  77. bool is_response_chunked() const override;
  78. int get_response_code() const override;
  79. Error get_response_headers(List<String> *r_response) override;
  80. int64_t get_response_body_length() const override;
  81. PackedByteArray read_response_body_chunk() override;
  82. void set_blocking_mode(bool p_enable) override;
  83. bool is_blocking_mode_enabled() const override;
  84. void set_read_chunk_size(int p_size) override;
  85. int get_read_chunk_size() const override;
  86. Error poll() override;
  87. void set_http_proxy(const String &p_host, int p_port) override;
  88. void set_https_proxy(const String &p_host, int p_port) override;
  89. HTTPClientTCP();
  90. };
  91. #endif // HTTP_CLIENT_TCP_H