| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- #include "AsyncHttpClient.h"
- namespace hv {
- // createsocket => startConnect =>
- // onconnect => sendRequest => startRead =>
- // onread => HttpParser => resp_cb
- int AsyncHttpClient::doTask(const HttpClientTaskPtr& task) {
- const HttpRequestPtr& req = task->req;
- // queueInLoop timeout?
- uint64_t now_hrtime = hloop_now_hrtime(loop_thread.hloop());
- int elapsed_ms = (now_hrtime - task->start_time) / 1000;
- int timeout_ms = req->timeout * 1000;
- if (timeout_ms > 0 && elapsed_ms >= timeout_ms) {
- hlogw("%s queueInLoop timeout!", req->url.c_str());
- return -10;
- }
- req->ParseUrl();
- sockaddr_u peeraddr;
- memset(&peeraddr, 0, sizeof(peeraddr));
- int ret = sockaddr_set_ipport(&peeraddr, req->host.c_str(), req->port);
- if (ret != 0) {
- hloge("unknown host %s", req->host.c_str());
- return -20;
- }
- int connfd = -1;
- // first get from conn_pools
- char strAddr[SOCKADDR_STRLEN] = {0};
- SOCKADDR_STR(&peeraddr, strAddr);
- auto iter = conn_pools.find(strAddr);
- if (iter != conn_pools.end()) {
- // hlogd("get from conn_pools");
- iter->second.get(connfd);
- }
- if (connfd < 0) {
- // create socket
- connfd = socket(peeraddr.sa.sa_family, SOCK_STREAM, 0);
- if (connfd < 0) {
- perror("socket");
- return -30;
- }
- hio_t* connio = hio_get(loop_thread.hloop(), connfd);
- assert(connio != NULL);
- hio_set_peeraddr(connio, &peeraddr.sa, sockaddr_len(&peeraddr));
- addChannel(connio);
- // https
- if (req->https) {
- hio_enable_ssl(connio);
- }
- }
- const SocketChannelPtr& channel = getChannel(connfd);
- assert(channel != NULL);
- HttpClientContext* ctx = channel->getContext<HttpClientContext>();
- ctx->task = task;
- channel->onconnect = [this, &channel]() {
- sendRequest(channel);
- };
- channel->onread = [this, &channel](Buffer* buf) {
- HttpClientContext* ctx = channel->getContext<HttpClientContext>();
- if (ctx->task == NULL) return;
- const char* data = (const char*)buf->data();
- int len = buf->size();
- int nparse = ctx->parser->FeedRecvData(data, len);
- if (nparse != len) {
- ctx->errorCallback();
- channel->close();
- return;
- }
- if (ctx->parser->IsComplete()) {
- std::string req_connection = ctx->task->req->GetHeader("Connection");
- std::string resp_connection = ctx->resp->GetHeader("Connection");
- ctx->successCallback();
- if (stricmp(req_connection.c_str(), "keep-alive") == 0 &&
- stricmp(resp_connection.c_str(), "keep-alive") == 0) {
- // NOTE: add into conn_pools to reuse
- // hlogd("add into conn_pools");
- conn_pools[channel->peeraddr()].add(channel->fd());
- } else {
- channel->close();
- }
- }
- };
- channel->onclose = [this, &channel]() {
- HttpClientContext* ctx = channel->getContext<HttpClientContext>();
- // NOTE: remove from conn_pools
- // hlogd("remove from conn_pools");
- auto iter = conn_pools.find(channel->peeraddr());
- if (iter != conn_pools.end()) {
- iter->second.remove(channel->fd());
- }
- if (ctx->task && ctx->task->retry_cnt-- > 0) {
- // try again
- send(ctx->task);
- } else {
- ctx->errorCallback();
- }
- removeChannel(channel);
- };
- // timer
- if (timeout_ms > 0) {
- ctx->timerID = setTimeout(timeout_ms - elapsed_ms, [&channel](TimerID timerID){
- HttpClientContext* ctx = channel->getContext<HttpClientContext>();
- assert(ctx->task != NULL);
- hlogw("%s timeout!", ctx->task->req->url.c_str());
- if (channel) {
- channel->close();
- }
- });
- }
- if (channel->isConnected()) {
- // sendRequest
- sendRequest(channel);
- } else {
- // startConnect
- channel->startConnect();
- }
- return 0;
- }
- // InitResponse => SubmitRequest => while(GetSendData) write => startRead
- int AsyncHttpClient::sendRequest(const SocketChannelPtr& channel) {
- HttpClientContext* ctx = (HttpClientContext*)channel->context();
- assert(ctx != NULL && ctx->task != NULL);
- if (ctx->parser == NULL) {
- ctx->parser.reset(HttpParser::New(HTTP_CLIENT, (http_version)ctx->task->req->http_major));
- }
- if (ctx->resp == NULL) {
- ctx->resp.reset(new HttpResponse);
- }
- ctx->parser->InitResponse(ctx->resp.get());
- ctx->parser->SubmitRequest(ctx->task->req.get());
- char* data = NULL;
- size_t len = 0;
- while (ctx->parser->GetSendData(&data, &len)) {
- Buffer buf(data, len);
- channel->write(&buf);
- }
- channel->startRead();
- return 0;
- }
- }
|