Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/io/http_client_tcp.h
9973 views
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
31
#pragma once
32
33
#include "http_client.h"
34
35
#include "core/crypto/crypto.h"
36
37
class HTTPClientTCP : public HTTPClient {
38
private:
39
Status status = STATUS_DISCONNECTED;
40
IP::ResolverID resolving = IP::RESOLVER_INVALID_ID;
41
Array ip_candidates;
42
int conn_port = -1; // Server to make requests to.
43
String conn_host;
44
int server_port = -1; // Server to connect to (might be a proxy server).
45
String server_host;
46
int http_proxy_port = -1; // Proxy server for http requests.
47
String http_proxy_host;
48
int https_proxy_port = -1; // Proxy server for https requests.
49
String https_proxy_host;
50
bool blocking = false;
51
bool handshaking = false;
52
bool head_request = false;
53
Ref<TLSOptions> tls_options;
54
55
Vector<uint8_t> response_str;
56
57
bool chunked = false;
58
Vector<uint8_t> chunk;
59
int chunk_left = 0;
60
bool chunk_trailer_part = false;
61
int64_t body_size = -1;
62
int64_t body_left = 0;
63
bool read_until_eof = false;
64
65
Ref<StreamPeerBuffer> request_buffer;
66
Ref<StreamPeerTCP> tcp_connection;
67
Ref<StreamPeer> connection;
68
Ref<HTTPClientTCP> proxy_client; // Negotiate with proxy server.
69
70
int response_num = 0;
71
Vector<String> response_headers;
72
// 64 KiB by default (favors fast download speeds at the cost of memory usage).
73
int read_chunk_size = 65536;
74
75
Error _get_http_data(uint8_t *p_buffer, int p_bytes, int &r_received);
76
77
public:
78
static HTTPClient *_create_func(bool p_notify_postinitialize);
79
80
Error request(Method p_method, const String &p_url, const Vector<String> &p_headers, const uint8_t *p_body, int p_body_size) override;
81
82
Error connect_to_host(const String &p_host, int p_port = -1, Ref<TLSOptions> p_tls_options = Ref<TLSOptions>()) override;
83
void set_connection(const Ref<StreamPeer> &p_connection) override;
84
Ref<StreamPeer> get_connection() const override;
85
void close() override;
86
Status get_status() const override;
87
bool has_response() const override;
88
bool is_response_chunked() const override;
89
int get_response_code() const override;
90
Error get_response_headers(List<String> *r_response) override;
91
int64_t get_response_body_length() const override;
92
PackedByteArray read_response_body_chunk() override;
93
void set_blocking_mode(bool p_enable) override;
94
bool is_blocking_mode_enabled() const override;
95
void set_read_chunk_size(int p_size) override;
96
int get_read_chunk_size() const override;
97
Error poll() override;
98
void set_http_proxy(const String &p_host, int p_port) override;
99
void set_https_proxy(const String &p_host, int p_port) override;
100
HTTPClientTCP();
101
};
102
103