2019-06-05 17:45:12 +08:00
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
//#include "lib_acl.h"
|
|
|
|
|
#include "acl_cpp/lib_acl.hpp"
|
|
|
|
|
|
|
|
|
|
class http_aio_client : public acl::http_aclient
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
http_aio_client(acl::aio_handle& handle, acl::polarssl_conf* ssl_conf,
|
|
|
|
|
const char* host)
|
|
|
|
|
: http_aclient(handle, ssl_conf)
|
|
|
|
|
, host_(host)
|
2019-06-06 13:46:23 +08:00
|
|
|
|
, debug_(false)
|
|
|
|
|
, compressed_(false)
|
2019-06-10 13:00:25 +08:00
|
|
|
|
, ws_mode_(false)
|
2019-06-05 17:45:12 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~http_aio_client(void)
|
|
|
|
|
{
|
2019-06-06 13:46:23 +08:00
|
|
|
|
printf("delete http_aio_client and begin stop aio engine\r\n");
|
2019-06-05 17:45:12 +08:00
|
|
|
|
handle_.stop();
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
http_aio_client& enable_debug(bool on)
|
|
|
|
|
{
|
|
|
|
|
debug_ = on;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-10 13:00:25 +08:00
|
|
|
|
http_aio_client& enable_websocket(bool on)
|
|
|
|
|
{
|
|
|
|
|
ws_mode_ = on;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-05 17:45:12 +08:00
|
|
|
|
protected:
|
|
|
|
|
// @override
|
2019-06-06 13:46:23 +08:00
|
|
|
|
void destroy(void)
|
2019-06-05 17:45:12 +08:00
|
|
|
|
{
|
2019-06-06 13:46:23 +08:00
|
|
|
|
printf("http_aio_client will be deleted!\r\n");
|
|
|
|
|
fflush(stdout);
|
2019-06-05 17:45:12 +08:00
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
delete this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_connect(void)
|
|
|
|
|
{
|
|
|
|
|
printf("---------------begin send http request -------\r\n");
|
2019-06-05 17:45:12 +08:00
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
2019-06-10 13:00:25 +08:00
|
|
|
|
if (ws_mode_) {
|
|
|
|
|
this->ws_handshake();
|
|
|
|
|
} else {
|
|
|
|
|
this->send_request(NULL, 0);
|
|
|
|
|
}
|
2019-06-05 17:45:12 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
void on_disconnect(void)
|
|
|
|
|
{
|
|
|
|
|
printf("disconnect from server\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
void on_connect_timeout(void)
|
|
|
|
|
{
|
2019-06-06 13:46:23 +08:00
|
|
|
|
printf("connect timeout\r\n");
|
|
|
|
|
fflush(stdout);
|
2019-06-05 17:45:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
void on_connect_failed(void)
|
|
|
|
|
{
|
|
|
|
|
printf("connect failed\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_http_res_hdr(const acl::http_header& header)
|
|
|
|
|
{
|
|
|
|
|
acl::string buf;
|
|
|
|
|
header.build_response(buf);
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
compressed_ = header.is_transfer_gzip();
|
|
|
|
|
|
2019-06-05 17:45:12 +08:00
|
|
|
|
printf("---------------response header-----------------\r\n");
|
|
|
|
|
printf("[%s]\r\n", buf.c_str());
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_http_res_body(char* data, size_t dlen)
|
|
|
|
|
{
|
2019-06-06 13:46:23 +08:00
|
|
|
|
if (debug_ && !compressed_) {
|
2019-06-05 17:45:12 +08:00
|
|
|
|
(void) write(1, data, dlen);
|
|
|
|
|
} else {
|
|
|
|
|
printf(">>>read body: %ld\r\n", dlen);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
2019-06-06 13:46:23 +08:00
|
|
|
|
bool on_http_res_finish(bool success)
|
2019-06-05 17:45:12 +08:00
|
|
|
|
{
|
|
|
|
|
printf("---------------response over-------------------\r\n");
|
2019-06-06 13:46:23 +08:00
|
|
|
|
printf("http finish: keep_alive=%s, success=%s\r\n",
|
|
|
|
|
keep_alive_ ? "true" : "false",
|
|
|
|
|
success ? "ok" : "failed");
|
2019-06-05 17:45:12 +08:00
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
return keep_alive_;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-10 13:00:25 +08:00
|
|
|
|
protected:
|
|
|
|
|
// @override
|
|
|
|
|
bool on_ws_handshake(void)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> websocket handshake ok\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
char buf[128];
|
|
|
|
|
snprintf(buf, sizeof(buf), "hello, myname is zsx\r\n");
|
|
|
|
|
size_t len = strlen(buf);
|
|
|
|
|
|
|
|
|
|
if (this->ws_send_text(buf, len) == false) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// <20><>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD> websocket <20>첽<EFBFBD><ECB2BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
this->ws_read_wait(0);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
void on_ws_handshake_failed(int status)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> websocket handshake failed, status=%d\r\n", status);
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_ws_frame_text(void)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> got frame text type\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_ws_frame_binary(void)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> got frame binaray type\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
void on_ws_frame_closed(void)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> got frame closed type\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_ws_frame_data(char* data, size_t dlen)
|
|
|
|
|
{
|
|
|
|
|
(void) write(1, data, dlen);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @override
|
|
|
|
|
bool on_ws_frame_finish(void)
|
|
|
|
|
{
|
|
|
|
|
printf(">>> frame finish\r\n");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-05 17:45:12 +08:00
|
|
|
|
private:
|
|
|
|
|
acl::string host_;
|
2019-06-06 13:46:23 +08:00
|
|
|
|
bool debug_;
|
|
|
|
|
bool compressed_;
|
2019-06-10 13:00:25 +08:00
|
|
|
|
bool ws_mode_;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void usage(const char* procname)
|
|
|
|
|
{
|
|
|
|
|
printf("usage: %s -h[help]\r\n"
|
|
|
|
|
" -s server_addr\r\n"
|
2019-06-06 13:46:23 +08:00
|
|
|
|
" -D [if in debug mode, default: false]\r\n"
|
2019-06-05 17:45:12 +08:00
|
|
|
|
" -c cocorrent\r\n"
|
2019-06-06 13:46:23 +08:00
|
|
|
|
" -t connect_timeout[default: 5]\r\n"
|
|
|
|
|
" -i rw_timeout[default: 5]\r\n"
|
|
|
|
|
" -Z [enable_gzip, default: false]\r\n"
|
|
|
|
|
" -K [keep_alive, default: false]\r\n"
|
2019-06-05 17:45:12 +08:00
|
|
|
|
" -S polarssl_lib_path[default: none]\n"
|
|
|
|
|
" -N name_server[default: 8.8.8.8:53]\r\n"
|
2019-06-10 13:00:25 +08:00
|
|
|
|
" -W [if using websocket, default: no]\r\n"
|
2019-06-05 17:45:12 +08:00
|
|
|
|
, procname);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
|
{
|
2019-06-06 13:46:23 +08:00
|
|
|
|
acl::polarssl_conf* ssl_conf = NULL;
|
|
|
|
|
int ch, conn_timeout = 5, rw_timeout = 5;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
acl::string addr("127.0.0.1:80"), name_server("8.8.8.8:53");
|
|
|
|
|
acl::string host("www.baidu.com"), ssl_lib_path;
|
2019-06-06 13:46:23 +08:00
|
|
|
|
bool enable_gzip = false, keep_alive = false, debug = false;
|
2019-06-10 13:00:25 +08:00
|
|
|
|
bool ws_enable = false;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
|
2019-06-10 13:00:25 +08:00
|
|
|
|
while ((ch = getopt(argc, argv, "hs:S:N:H:t:i:ZKDW")) > 0) {
|
2019-06-05 17:45:12 +08:00
|
|
|
|
switch (ch) {
|
|
|
|
|
case 'h':
|
|
|
|
|
usage(argv[0]);
|
|
|
|
|
return (0);
|
|
|
|
|
case 's':
|
|
|
|
|
addr = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'S':
|
|
|
|
|
ssl_lib_path = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'N':
|
|
|
|
|
name_server = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'H':
|
|
|
|
|
host = optarg;
|
|
|
|
|
break;
|
2019-06-06 13:46:23 +08:00
|
|
|
|
case 't':
|
|
|
|
|
conn_timeout = atoi(optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'i':
|
|
|
|
|
rw_timeout = atoi(optarg);
|
|
|
|
|
break;
|
|
|
|
|
case 'Z':
|
|
|
|
|
enable_gzip = true;
|
|
|
|
|
break;
|
|
|
|
|
case 'K':
|
|
|
|
|
keep_alive = true;
|
|
|
|
|
break;
|
|
|
|
|
case 'D':
|
|
|
|
|
debug = true;
|
|
|
|
|
break;
|
2019-06-10 13:00:25 +08:00
|
|
|
|
case 'W':
|
|
|
|
|
ws_enable = true;
|
|
|
|
|
break;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
acl::acl_cpp_init();
|
|
|
|
|
acl::log::stdout_open(true);
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SSL <20><><EFBFBD>ӿ⣬<D3BF><E2A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SSL <20><><EFBFBD><EFBFBD>ģʽ
|
2019-06-05 17:45:12 +08:00
|
|
|
|
if (!ssl_lib_path.empty()) {
|
|
|
|
|
if (access(ssl_lib_path.c_str(), R_OK) == 0) {
|
2019-06-06 13:46:23 +08:00
|
|
|
|
ssl_conf = new acl::polarssl_conf;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
} else {
|
|
|
|
|
printf("disable ssl, %s not found\r\n",
|
|
|
|
|
ssl_lib_path.c_str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD> AIO <20>¼<EFBFBD><C2BC><EFBFBD><EFBFBD><EFBFBD>
|
2019-06-05 17:45:12 +08:00
|
|
|
|
acl::aio_handle handle(acl::ENGINE_KERNEL);
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
// <20><><EFBFBD><EFBFBD> DNS <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ
|
2019-06-05 17:45:12 +08:00
|
|
|
|
handle.set_dns(name_server.c_str(), 5);
|
|
|
|
|
|
2019-06-06 13:46:23 +08:00
|
|
|
|
// <20><>ʼ<EFBFBD>첽<EFBFBD><ECB2BD><EFBFBD><EFBFBD>Զ<EFBFBD><D4B6> WEB <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
http_aio_client* conn = new http_aio_client(handle, ssl_conf, host);
|
|
|
|
|
if (!conn->open(addr, conn_timeout, rw_timeout)) {
|
|
|
|
|
printf("connect %s error\r\n", addr.c_str());
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
delete conn;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-10 13:00:25 +08:00
|
|
|
|
(*conn).enable_debug(debug) // <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD>õ<EFBFBD><C3B5>Է<EFBFBD>ʽ
|
|
|
|
|
.enable_websocket(ws_enable); // <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD> websocket
|
2019-06-06 13:46:23 +08:00
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD> HTTP <20><><EFBFBD><EFBFBD>ͷ<EFBFBD><CDB7>Ҳ<EFBFBD>ɽ<EFBFBD><C9BD>˹<EFBFBD><CBB9>̷<EFBFBD><CCB7><EFBFBD> conn->on_connect() <20><>
|
|
|
|
|
acl::http_header& head = conn->request_header();
|
|
|
|
|
head.set_url("/")
|
|
|
|
|
.set_content_length(0)
|
|
|
|
|
.set_host(host)
|
|
|
|
|
.accept_gzip(enable_gzip)
|
|
|
|
|
.set_keep_alive(keep_alive);
|
|
|
|
|
|
|
|
|
|
acl::string buf;
|
|
|
|
|
head.build_request(buf);
|
|
|
|
|
printf("---------------request header-----------------\r\n");
|
|
|
|
|
printf("[%s]\r\n", buf.c_str());
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
// <20><>ʼ AIO <20>¼<EFBFBD>ѭ<EFBFBD><D1AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2019-06-05 17:45:12 +08:00
|
|
|
|
while (true) {
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> false <20><><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE><EFBFBD>ټ<EFBFBD><D9BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>˳<EFBFBD>
|
|
|
|
|
if (!handle.check()) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handle.check();
|
2019-06-06 13:46:23 +08:00
|
|
|
|
delete ssl_conf;
|
|
|
|
|
return 0;
|
2019-06-05 17:45:12 +08:00
|
|
|
|
}
|