bool https_client::connect_server(acl::http_client& client) { logger_debug(DEBUG, 1, "begin connect server"); if (client.open(server_addr_.c_str(), 60, 60, true) == false) { logger_error("failed to connect server %s", server_addr_.c_str()); return false; } else logger_debug(DEBUG, 1, "connect server ok"); if (ssl_conf_) { logger_debug(DEBUG, 1, "begin open ssl"); acl::polarssl_io* ssl = new acl::polarssl_io(*ssl_conf_, false); if (client.get_stream().setup_hook(ssl) == ssl) { logger_error("open ssl client error"); ssl->destroy(); return false; } else logger_debug(DEBUG, 1, "open ssl ok"); } return true; }
bool https_client::connect_server(const acl::string& server_addr, acl::http_client& client) { // 先查本地映射表中有没有映射项 master_service& ms = acl::singleton2<master_service>::get_instance(); const char* addr = ms.get_addr(server_addr.c_str()); if (addr == NULL) addr = server_addr.c_str(); if (client.open(addr, 60, 60, true) == false) { out_.format("connect server %s error", addr); return false; } else logger_debug(DEBUG, 1, "connect server ok"); if (ssl_conf_) { logger_debug(DEBUG, 1, "begin open ssl"); acl::polarssl_io* ssl = new acl::polarssl_io(*ssl_conf_, false); if (client.get_stream().setup_hook(ssl) == ssl) { out_.puts("open ssl client error"); ssl->destroy(); return false; } else logger_debug(DEBUG, 1, "open ssl ok"); } return true; }
bool CMsnContactManager::GetContacts(const CMsnTicket& ticket, acl::http_client& client) { // 创建请求体 acl::string request_body; if (BuildGetContactRequest(ticket, request_body) == false) return (false); ////////////////////////////////////////////////////////////////////////// // 向 MSN CONTACT 服务器发送请求数据 // 创建 HTTP 请求头 acl::http_header header; header.set_method(acl::HTTP_METHOD_POST); header.set_url(MSN_GET_CONTACT_POST_URL); header.set_host(MSN_CONTACT_SERVER); header.set_content_length(request_body.length()); header.set_content_type("text/xml; charset=utf-8"); header.set_keep_alive(false); header.add_entry("SOAPAction", MSN_GET_CONTACT_SOAP_ACTION); header.add_entry("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"); header.add_entry("Accept", "*/*"); header.add_entry("Cache-Control", "no-cache"); // 现在ACL_CPP的压缩库仅支持HTTP传输中的GZIP方式 header.accept_gzip(true); // 发送 HTTP 请求头 acl::string header_buf; header.build_request(header_buf); // 记日志 logger_format("send: %s\r\n", header_buf.c_str()); if (client.get_ostream().write(header_buf) == -1) { logger_error("write http header error"); return (false); } // 发送 HTTP 请求体 // 记录发送体 logger_format("send: %s\r\n", request_body.c_str()); if (client.get_ostream().write(request_body) == -1) { logger_error("write http body error"); return (false); } ////////////////////////////////////////////////////////////////////////// // 从 MSN CONTACT 服务器读取响应数据 if (client.read_head() == false) { logger_error("read http respond head error"); return (false); } const HTTP_HDR_RES* hdr_res = client.get_respond_head(NULL); acl_assert(hdr_res); // 记录响应头 if (debug_fpout_) http_hdr_fprint(debug_fpout_, &hdr_res->hdr, "GetContacts read hdr: "); // 如果没有数据体,则认为失败 if (hdr_res->hdr.content_length == 0 || (hdr_res->hdr.content_length == -1 && !hdr_res->hdr.chunked && hdr_res->reply_status > 300 && hdr_res->reply_status < 400)) { logger_error("http respond no body"); http_hdr_print(&hdr_res->hdr, "error"); return (false); } /* 读书 HTTP 响应体 */ ACL_XML* body = acl_xml_alloc(); int ret; acl::string plain; acl::ofstream fp; fp.open_write("zip_list.text"); int len = 0; while(true) { // 读 HTTP 响应数据体 ret = client.read_body(plain); if (ret < 0) break; else if (client.body_finish()) break; fp.write(plain); acl_xml_update(body, plain.c_str()); } //acl_xml_dump(body, ACL_VSTREAM_OUT); // 分析联系人列表 if (ParseContacts(body) == false) { acl_xml_free(body); return (false); } acl_xml_free(body); return (true); }
bool CMsnContactManager::GetAddresses(const CMsnTicket& ticket, acl::http_client& client) { acl::string request_body; if (BuildGetAddressRequest(ticket, request_body) == false) return (false); /////////////////////////////////////////////////////////////////////// // 向 MSN CONTACT 服务器发送请求数据 // 创建 HTTP 请求头 acl::http_header header; header.set_method(acl::HTTP_METHOD_POST); header.set_url(MSN_ADDRESS_BOOK_POST_URL); header.set_content_type("text/xml; charset=utf-8"); header.set_host(MSN_CONTACT_SERVER); header.set_content_length(request_body.length()); header.set_keep_alive(false); header.add_entry("SOAPAction", MSN_GET_ADDRESS_SOAP_ACTION); header.add_entry("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)"); header.add_entry("Accept", "*/*"); header.add_entry("Cache-Control", "no-cache"); header.accept_gzip(true); // 发送 HTTP 请求头 acl::string header_buf; header.build_request(header_buf); // 记录发送头 logger_format("send header: %s\r\n", header_buf.c_str()); if (client.get_ostream().write(header_buf) == -1) { logger_error("write http header error"); return (false); } // 发送 HTTP 请求体 // 记录发送体 logger_format("send body: %s\r\n", request_body.c_str()); if (client.get_ostream().write(request_body) == -1) { logger_error("write http body error"); return (false); } /////////////////////////////////////////////////////////////////////// // 从 MSN CONTACT 服务器读取响应数据 if (client.read_head() == false) { logger_error("read http respond head error"); return (false); } const HTTP_HDR_RES* hdr_res = client.get_respond_head(NULL); if (debug_fpout_) http_hdr_fprint(debug_fpout_, &hdr_res->hdr, "GetAddresses read header: "); if (hdr_res->hdr.content_length == 0 || (hdr_res->hdr.content_length == -1 && !hdr_res->hdr.chunked && hdr_res->reply_status > 300 && hdr_res->reply_status < 400)) { logger_error("http respond no body"); http_hdr_print(&hdr_res->hdr, "error"); return (false); } /* 读书 HTTP 响应体 */ acl::string buf; ACL_SLICE_POOL* slice = acl_slice_pool_create(16, 50, ACL_SLICE_FLAG_GC2 | ACL_SLICE_FLAG_RTGC_OFF | ACL_SLICE_FLAG_LP64_ALIGN); ACL_XML* body = acl_xml_alloc1(slice); int ret; while(true) { ret = client.read_body(buf); if (ret < 0) break; else if (client.body_finish()) break; acl_xml_update(body, buf.c_str()); logger_format("read body: %s\r\n", buf.c_str()); } //acl_xml_dump(body, ACL_VSTREAM_OUT); ParseAddresses(body); /////////////////////////////////////////////////////////////////////// double j = ACL_METER_TIME("---begin---"); //acl_xml_free(body); acl_slice_pool_destroy(slice); double k = ACL_METER_TIME("---end---"); return (true); }