Refacotring; support HTTPs client.

This commit is contained in:
Adam Gu
2018-07-30 15:03:02 +08:00
parent 8a92fcb950
commit 3693d881c7
18 changed files with 604 additions and 182 deletions
+8 -8
View File
@@ -2,7 +2,7 @@
#include "boost/asio/io_context.hpp"
#include "webcc/async_http_client.h"
#include "webcc/http_async_client.h"
#include "webcc/logger.h"
// In order to test this client, create a file index.html whose content is
@@ -10,7 +10,7 @@
// $ python -m http.server
// The default port number should be 8000.
void Test(boost::asio::io_context& ioc) {
void Test(boost::asio::io_context& io_context) {
webcc::HttpRequestPtr request(new webcc::HttpRequest());
request->set_method(webcc::kHttpGet);
@@ -18,7 +18,7 @@ void Test(boost::asio::io_context& ioc) {
request->SetHost("localhost", "8000");
request->UpdateStartLine();
webcc::HttpAsyncClientPtr client(new webcc::AsyncHttpClient(ioc));
webcc::HttpAsyncClientPtr client(new webcc::HttpAsyncClient(io_context));
// Response handler.
auto handler = [](std::shared_ptr<webcc::HttpResponse> response,
@@ -41,13 +41,13 @@ void Test(boost::asio::io_context& ioc) {
int main() {
WEBCC_LOG_INIT("", webcc::LOG_CONSOLE);
boost::asio::io_context ioc;
boost::asio::io_context io_context;
Test(ioc);
Test(ioc);
Test(ioc);
Test(io_context);
Test(io_context);
Test(io_context);
ioc.run();
io_context.run();
return 0;
}
+3 -3
View File
@@ -2,7 +2,7 @@
#include "json/json.h"
#include "webcc/async_rest_client.h"
#include "webcc/rest_async_client.h"
#include "webcc/logger.h"
// -----------------------------------------------------------------------------
@@ -44,7 +44,7 @@ class BookListClient {
}
private:
webcc::AsyncRestClient rest_client_;
webcc::RestAsyncClient rest_client_;
};
// -----------------------------------------------------------------------------
@@ -84,7 +84,7 @@ public:
}
private:
webcc::AsyncRestClient rest_client_;
webcc::RestAsyncClient rest_client_;
};
// -----------------------------------------------------------------------------
+2
View File
@@ -208,5 +208,7 @@ int main(int argc, char* argv[]) {
list_client.ListBooks();
getchar();
return 0;
}