-
Notifications
You must be signed in to change notification settings - Fork 37
/
async_http_client_no_exceptions.cpp
189 lines (167 loc) · 6 KB
/
async_http_client_no_exceptions.cpp
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
// Adapted by John R. Bandela from
// http://www.boost.org/doc/libs/1_60_0/doc/html/boost_asio/example/cpp03/http/client/async_client.cpp
// to use stackless_coroutine
//
// async_client.cpp
// ~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// In this example, disable exceptions
#define BOOST_NO_EXCEPTIONS
#include <cstdlib>
namespace boost {
template<class T>
void throw_exception(T&) {
std::abort();
}
}
#define STACKLESS_COROUTINE_NO_EXCEPTIONS
#include "stackless_coroutine.hpp"
#include <boost/asio.hpp>
#include <iostream>
#include <istream>
#include <memory>
#include <ostream>
#include <string>
using boost::asio::ip::tcp;
struct value_t {
tcp::resolver resolver_;
tcp::socket socket_;
boost::asio::streambuf request_;
boost::asio::streambuf response_;
value_t(boost::asio::io_service &io_service)
: resolver_(io_service), socket_(io_service) {}
};
void get(boost::asio::io_service &io_service, const std::string &server,
const std::string &path) {
auto t = stackless_coroutine::make_block(
[](auto &context, auto &value, const std::string &server,
const std::string &path) {
std::ostream request_stream(&value.request_);
request_stream << "GET " << path << " HTTP/1.0\r\n";
request_stream << "Host: " << server << "\r\n";
request_stream << "Accept: */*\r\n";
request_stream << "Connection: close\r\n\r\n";
// Start an asynchronous resolve to translate the server and service
// names
// into a list of endpoints.
tcp::resolver::query query(server, "http");
value.resolver_.async_resolve(query, context);
return context.do_async();
},
[](auto &context, auto &value, auto err, auto endpoint_iterator) {
if (err) {
std::cout << "Error: " << err.message() << "\n";
return context.do_async_return();
} else {
boost::asio::async_connect(value.socket_, endpoint_iterator, context);
return context.do_async();
}
},
[](auto &context, auto &value, auto err, auto) {
if (err) {
std::cout << "Error: " << err.message() << "\n";
return context.do_async_return();
} else {
boost::asio::async_write(value.socket_, value.request_, context);
return context.do_async();
}
},
[](auto &context, auto &value, auto err, std::size_t) {
if (err) {
std::cout << "Error: " << err.message() << "\n";
return context.do_async_return();
} else {
boost::asio::async_read_until(value.socket_, value.response_, "\r\n",
context);
return context.do_async();
}
},
[](auto &context, auto &value, auto err, std::size_t) {
if (err) {
std::cout << "Error: " << err.message() << "\n";
return context.do_async_return();
} else {
// Check that response is OK.
std::istream response_stream(&value.response_);
std::string http_version;
response_stream >> http_version;
unsigned int status_code;
response_stream >> status_code;
std::string status_message;
std::getline(response_stream, status_message);
if (!response_stream || http_version.substr(0, 5) != "HTTP/") {
std::cout << "Invalid response\n";
return context.do_async_return();
}
if (status_code != 200) {
std::cout << "Response returned with status code ";
std::cout << status_code << "\n";
return context.do_async_return();
}
// Read the response headers, which are terminated by a blank line.
boost::asio::async_read_until(value.socket_, value.response_,
"\r\n\r\n", context);
return context.do_async();
}
},
[](auto &context, auto &value, auto err, std::size_t) {
if (err) {
std::cout << "Error: " << err.message() << "\n";
return context.do_return();
} else {
// Process the response headers.
std::istream response_stream(&value.response_);
std::string header;
while (std::getline(response_stream, header) && header != "\r")
std::cout << header << "\n";
std::cout << "\n";
// Write whatever content we already have to output.
if (value.response_.size() > 0)
std::cout << &value.response_;
// Start reading remaining data until EOF.
return context.do_next();
}
},
stackless_coroutine::make_while_true(
[](auto &context, auto &value) {
boost::asio::async_read(value.socket_, value.response_,
boost::asio::transfer_at_least(1), context);
return context.do_async();
},
[](auto &context, auto &value, auto err, std::size_t) {
if (err) {
if (err != boost::asio::error::eof)
std::cout << "Error: " << err.message() << "\n";
return context.do_return();
} else {
std::cout << &value.response_;
return context.do_next();
}
}
)
);
auto co = stackless_coroutine::make_coroutine<value_t>(
t,
[](auto &value, auto&&...) {
std::cout << "\n**Finished**\n";
},
io_service);
co(server, path);
}
int main(int argc, char *argv[]) {
if (argc != 3) {
std::cout << "Usage: async_client <server> <path>\n";
std::cout << "Example:\n";
std::cout << " async_client www.boost.org /LICENSE_1_0.txt\n";
return 1;
}
boost::asio::io_service io_service;
get(io_service, argv[1], argv[2]);
io_service.run();
return 0;
}