test_httpClient.cpp 6.08 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * MIT License
 *
 * Copyright (c) 2016 xiongziliang <771730766@qq.com>
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
26 27

#include <signal.h>
28
#include <string>
29
#include <iostream>
30 31
#include "Util/MD5.h"
#include "Util/File.h"
32 33 34
#include "Util/logger.h"
#include "Util/onceToken.h"
#include "Poller/EventPoller.h"
35 36
#include "Http/HttpRequester.h"
#include "Http/HttpDownloader.h"
37 38 39 40 41 42 43 44

using namespace std;
using namespace ZL::Util;
using namespace ZL::Http;
using namespace ZL::Poller;
using namespace ZL::Network;


45 46 47 48 49 50
int main(int argc,char *argv[]){
    //设置退出信号处理函数
    signal(SIGINT, [](int){EventPoller::Instance().shutdown();});
    //设置日志
    Logger::Instance().add(std::make_shared<ConsoleChannel>("stdout", LTrace));
    Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
51
	///////////////////////////////http downloader///////////////////////
52 53 54
	//下载器map
	map<string,HttpDownloader::Ptr> downloaderMap;
	//下载两个文件,一个是http下载,一个https下载
55
	auto urlList = {"http://img3.imgtn.bdimg.com/it/u=158031390,1321729164&fm=214&gp=0.jpg",
56 57 58 59
					"https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=931786003,1029770543&fm=27&gp=0.jpg"};

	for(auto &url : urlList){
		//创建下载器
60 61
		HttpDownloader::Ptr downloader(new HttpDownloader());
		downloader->setOnResult([](ErrCode code,const char *errMsg,const char *filePath){
62 63
			DebugL << "=====================HttpDownloader result=======================";
			//下载结果回调
64
			if(code == Err_success){
65
				//文件下载成功
66 67
				InfoL << "download file success:" << filePath;
			}else{
68
				//下载失败
69 70 71 72
				WarnL << "code:" << code << " msg:" << errMsg;
			}
		});
		//断点续传功能,开启后可能会遇到416的错误(因为上次文件已经下载完全)
73 74 75
		downloader->startDownload(url,exeDir() + MD5(url).hexdigest() + ".jpg",true);
		//下载器必须被强引用,否则作用域一失效就会导致对象销毁
		downloaderMap.emplace(url,downloader);
76 77 78
	}

	///////////////////////////////http get///////////////////////
79
	//创建一个Http请求器
80
	HttpRequester::Ptr requesterGet(new HttpRequester());
81
	//使用GET方式请求
82
	requesterGet->setMethod("GET");
83
	//设置http请求头,我们假设设置cookie,当然你也可以设置其他http头
84
	requesterGet->addHeader("Cookie","SESSIONID=e1aa89b3-f79f-4ac6-8ae2-0cea9ae8e2d7");
85 86 87 88 89 90 91
	//开启请求,该api会返回当前主机外网ip等信息
	requesterGet->startRequester("http://pv.sohu.com/cityjson?ie=utf-8",//url地址
			[](const SockException &ex,                                 //网络相关的失败信息,如果为空就代表成功
			   const string &status,                                    //http回复的状态码,比如说200/404
			   const HttpClient::HttpHeader &header,                    //http回复头
			   const string &strRecvBody){                              //http回复body
		DebugL << "=====================HttpRequester GET===========================";
92
		if(ex){
93
			//网络相关的错误
94 95
			WarnL << "network err:" << ex.getErrCode() << " " << ex.what();
		}else{
96
			//打印http回复信息
97 98 99 100
			_StrPrinter printer;
			for(auto &pr: header){
				printer << pr.first << ":" << pr.second << "\r\n";
			}
101 102 103
			InfoL << "status:" << status << "\r\n"
				  << "header:\r\n" << (printer << endl)
				  << "\r\nbody:" << strRecvBody;
104 105 106 107
		}
	});

	///////////////////////////////http post///////////////////////
108
	//创建一个Http请求器
109
	HttpRequester::Ptr requesterPost(new HttpRequester());
110
	//使用POST方式请求
111
	requesterPost->setMethod("POST");
112 113 114 115
	//设置http请求头
	requesterPost->addHeader("X-Requested-With","XMLHttpRequest");
	requesterPost->addHeader("Origin","http://fanyi.baidu.com");
	//设置POST参数列表
116 117 118 119 120 121 122
	HttpArgs args;
	args["query"] = "test";
	args["from"] = "en";
	args["to"] = "zh";
	args["transtype"] = "translang";
	args["simple_means_flag"] = "3";
	requesterPost->setBody(args.make());
123 124 125 126 127 128 129
	//开启请求
	requesterPost->startRequester("http://fanyi.baidu.com/langdetect",//url地址
				 [](const SockException &ex,                          //网络相关的失败信息,如果为空就代表成功
					const string &status,                             //http回复的状态码,比如说200/404
					const HttpClient::HttpHeader &header,             //http回复头
					const string &strRecvBody){                       //http回复body
		DebugL << "=====================HttpRequester POST==========================";
130
		if(ex){
131
			//网络相关的错误
132 133
			WarnL << "network err:" << ex.getErrCode() << " " << ex.what();
		} else {
134
			//打印http回复信息
135 136 137 138
			_StrPrinter printer;
			for(auto &pr: header){
				printer << pr.first << ":" << pr.second << "\r\n";
			}
139 140 141
			InfoL << "status:" << status << "\r\n"
				  << "header:\r\n" << (printer << endl)
				  << "\r\nbody:" << strRecvBody;
142 143 144
		}
	});

145
	//事件轮询
146
	EventPoller::Instance().runLoop();
147 148 149 150 151 152 153
	//清空下载器
	downloaderMap.clear();
	requesterGet.reset();
	requesterPost.reset();
	//程序开始退出
	EventPoller::Destory();
	Logger::Destory();
154 155 156
	return 0;
}