This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
HTTPClient.hpp
332 lines (271 loc) · 7.78 KB
/
HTTPClient.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# pragma once
# define SIV3D_CONCURRENT
# include <Siv3D.hpp>
# if SIV3D_BUILD_TYPE(DEBUG)
# pragma comment (lib, "libcurl-d")
# else
# pragma comment (lib, "libcurl")
# endif
# pragma comment (lib, "crypt32")
namespace s3d
{
using URL = String;
using URLView = StringView;
using HTTPHeader = HashTable<String, String>;
class HTTPResponse;
struct HTTPProgress;
class AsyncHTTPTask;
/// <summary>
/// ダウンロードの進行状況
/// </summary>
enum class HTTPAsyncStatus
{
/// <summary>
/// ダウンロードするものが無い
/// </summary>
None,
/// <summary>
/// ダウンロード中
/// </summary>
Working,
/// <summary>
/// ダウンロード失敗
/// </summary>
Failed,
/// <summary>
/// ダウンロードがキャンセルされた
/// </summary>
Canceled,
/// <summary>
/// ダウンロード完了
/// </summary>
Succeeded,
};
/// <summary>
/// https://tools.ietf.org/html/rfc7231#section-6
/// </summary>
enum class HTTPResponseStatusCode : uint32
{
Invalid = 0,
// Informational 1xx
Continue = 100,
SwitchingProtocols = 101,
// Successful 2xx
OK = 200,
Created = 201,
Accepted = 202,
NonAuthoritativeInformation = 203,
NoContent = 204,
ResetContent = 205,
PartialContent = 206,
// Redirection 3xx
MultipleChoices = 300,
movedPermanently = 301,
Found = 302,
SeeOther = 303,
NotModified = 304,
UseProxy = 305,
TemporaryRedirect = 307,
// Client Error 4xx
BadRequest = 400,
Unauthorized = 401,
PaymentRequied = 402,
Forbidden = 403,
NotFound = 404,
MethodNotAllowed = 405,
NotAcceptable = 406,
ProxyAuthenticationRequied = 407,
RequestTimeout = 408,
Conflict = 409,
Gone = 410,
LengthRequied = 411,
Preconditionfailed = 412,
PayloadTooLarge = 413,
URITooLong = 414,
UnsupportedMediaType = 415,
RangeNotSatisfiable = 416,
ExpectationFailed = 417,
UpgradeRequied = 426,
// Server Error 5xx
InternalServerError = 500,
NotImplemented = 501,
BadGateway = 502,
ServiceUnavailable = 503,
GatewayTimeout = 504,
HTTPVersionNotSupported = 505
};
enum class HTTPResponseStatusType : uint32 {
Invalid = 0,
Informational = 1,
Successful = 2,
Redirection = 3,
ClientError = 4,
ServerError = 5
};
namespace SimpleHTTP
{
/// <summary>
/// HTTPClient を使うアプリケーションで、最初に 1 回だけ呼び出します。([Siv3D ToDo]: エンジン内に組み込み)
/// </summary>
bool InitCURL();
/// <summary>
/// HTTPClient を使うアプリケーションで、最後に 1 回だけ呼び出します。([Siv3D ToDo]: エンジン内に組み込み)
/// </summary>
void CleanupCURL();
/// <summary>
/// ファイルをダウンロードします。
/// </summary>
/// <param name="url">
/// URL
/// </param>
/// <param name="saveFilePath">
/// 取得したファイルの保存先のファイルパス
/// </param>
HTTPResponse DownloadFile(URLView url, FilePathView saveFilePath, bool autoFollowLocation = true);
[[nodiscard]] AsyncHTTPTask DownloadFileAsync(URLView url, FilePathView saveFilePath, bool autoFollowLocation = true);
/// <summary>
/// HTTP-GETリクエストを送ります
/// </summary>
/// <param name="url">
/// URL
/// </param>
/// <param name="header">
/// ヘッダ
/// </param>
/// <param name="saveFilePath">
/// 取得したファイルの保存先のファイルパス
/// </param>
HTTPResponse Get(const URLView url, const HTTPHeader& header, const FilePathView saveFilePath, bool autoFollowLocation = true);
/// <summary>
/// HTTP-POSTリクエストを送ります
/// </summary>
/// <param name="url">
/// URL
/// </param>
/// <param name="header">
/// ヘッダ
/// </param>
/// <param name="src">
/// 送信するデータの先頭ポインタ
/// </param>
/// <param name="size">
/// 送信するデータのサイズ(バイト)
/// </param>
/// <param name="saveFilePath">
/// 取得したファイルの保存先のファイルパス
/// </param>
HTTPResponse Post(URLView url, const HTTPHeader& header, const void* src, size_t size, FilePathView saveFilePath, bool autoFollowLocation = true);
inline bool IsStatusCodeTypeOf(HTTPResponseStatusCode code, HTTPResponseStatusType type) {
return static_cast<uint32>(code) / 100 == static_cast<uint32>(type);
}
};
class HTTPResponse
{
private:
String m_header;
HTTPResponseStatusCode m_statusCode = HTTPResponseStatusCode::Invalid;
public:
HTTPResponse() = default;
explicit HTTPResponse(const String& header);
/// <summary>
/// レスポンスヘッダーのステータスコードが有効であるかを返します。
/// </summary>
[[nodiscard]] bool isValid() const;
/// <summary>
/// isVaild()
/// </summary>
[[nodiscard]] explicit operator bool() const;
/// <summary>
/// レスポンスヘッダーを返します。
/// </summary>
[[nodiscard]] const String& getHeader() const;
/// <summary>
/// ステータスコードを返します。
/// </summary>
[[nodiscard]] HTTPResponseStatusCode getStatusCode() const;
};
struct HTTPProgress
{
HTTPProgress() = default;
explicit HTTPProgress(URLView url);
/// <summary>
/// ダウンロードするファイルの合計サイズ。不明の場合 none
/// </summary>
Optional<int64> downloadTotalSize;
/// <summary>
/// アップロードするファイルの合計サイズ。不明の場合 none
/// </summary>
Optional<int64> uploadTotalSize;
/// <summary>
/// ダウンロードしたファイルのサイズ。
/// </summary>
int64 downloadNowSize = 0;
/// <summary>
/// アップロードしたファイルのサイズ。
/// </summary>
int64 uploadNowSize = 0;
/// <summary>
/// ダウンロードの進行状況の割合。不明の場合 none
/// </summary>
[[nodiscard]] Optional<double> getDownloadProgress() const;
/// <summary>
/// アップロードの進行状況の割合。不明の場合 none
/// </summary>
[[nodiscard]] Optional<double> getUploadProgress() const;
/// <summary>
/// 通信先のURL
/// </summary>
URL url;
HTTPAsyncStatus status = HTTPAsyncStatus::None;
/// <summary>
/// 通信中にtrueにすると通信をキャンセルします
/// </summary>
bool cancelCommunication = false;
};
class AsyncHTTPTask
{
private:
friend AsyncHTTPTask SimpleHTTP::DownloadFileAsync(URLView url, FilePathView saveFilePath, bool autoFollowLocation);
class AsyncHTTPTaskImpl;
std::shared_ptr<AsyncHTTPTaskImpl> pImpl;
explicit AsyncHTTPTask(URLView url, FilePathView path, bool autoFollowLocation = true);
public:
AsyncHTTPTask();
~AsyncHTTPTask();
/// <summary>
/// 通信の進行状況クラスを返します
/// </summary>
[[nodiscard]] const HTTPProgress& getProgress() const;
/// <summary>
/// Tips: isDoneを実行しないと無効なレスポンスしか返ってきません
/// </summary>
[[nodiscard]] const HTTPResponse& getResponse() const;
/// <summary>
/// 現在のステータスを返します
/// </summary>
[[nodiscard]] const HTTPAsyncStatus& currentStatus() const;
/// <summary>
/// 実行中の通信をキャンセルします
/// </summary>
void cancelTask();
/// <summary>
/// 通信が完了したかを返します
/// 1回の通信で1度しかtrueを返しません
/// </summary>
[[nodiscard]] bool isDone();
};
}
//////////////////////////////////////////////////
//
// Format
//
//////////////////////////////////////////////////
namespace s3d
{
void Formatter(FormatData& formatData, const HTTPResponseStatusCode& value);
template <class CharType>
inline std::basic_ostream<CharType>& operator <<(std::basic_ostream<CharType>& output, const HTTPResponseStatusCode& value)
{
return output << static_cast<uint32>(value);
}
}