2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*/
|
2020-04-04 20:30:09 +08:00
|
|
|
|
|
2017-05-05 18:02:54 +08:00
|
|
|
|
#include "HttpRequester.h"
|
|
|
|
|
|
2021-09-30 16:10:09 +08:00
|
|
|
|
namespace mediakit {
|
2017-05-05 18:02:54 +08:00
|
|
|
|
|
2021-09-30 16:10:09 +08:00
|
|
|
|
ssize_t HttpRequester::onResponseHeader(const string &status, const HttpHeader &headers) {
|
2017-05-05 18:02:54 +08:00
|
|
|
|
_strRecvBody.clear();
|
2021-05-22 10:22:56 +08:00
|
|
|
|
return HttpClientImp::onResponseHeader(status, headers);
|
2017-05-05 18:02:54 +08:00
|
|
|
|
}
|
2021-09-30 16:10:09 +08:00
|
|
|
|
|
|
|
|
|
void HttpRequester::onResponseBody(const char *buf, size_t size, size_t recvedSize, size_t totalSize) {
|
|
|
|
|
_strRecvBody.append(buf, size);
|
2017-05-05 18:02:54 +08:00
|
|
|
|
}
|
2021-09-30 16:10:09 +08:00
|
|
|
|
|
2018-11-13 22:50:43 +08:00
|
|
|
|
void HttpRequester::onResponseCompleted() {
|
2021-09-30 16:10:09 +08:00
|
|
|
|
const_cast<Parser &> (response()).setContent(std::move(_strRecvBody));
|
|
|
|
|
if (_onResult) {
|
|
|
|
|
_onResult(SockException(), response());
|
2017-05-05 18:02:54 +08:00
|
|
|
|
_onResult = nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-30 16:10:09 +08:00
|
|
|
|
|
|
|
|
|
void HttpRequester::onDisconnect(const SockException &ex) {
|
|
|
|
|
const_cast<Parser &> (response()).setContent(std::move(_strRecvBody));
|
|
|
|
|
if (_onResult) {
|
|
|
|
|
_onResult(ex, response());
|
2017-05-05 18:02:54 +08:00
|
|
|
|
_onResult = nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-09-30 16:10:09 +08:00
|
|
|
|
|
|
|
|
|
void HttpRequester::startRequester(const string &url, const HttpRequesterResult &onResult, float timeOutSecond) {
|
2017-05-05 18:02:54 +08:00
|
|
|
|
_onResult = onResult;
|
2021-09-30 16:10:09 +08:00
|
|
|
|
sendRequest(url, timeOutSecond);
|
2018-02-06 17:35:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-03 15:05:52 +08:00
|
|
|
|
void HttpRequester::clear() {
|
|
|
|
|
HttpClientImp::clear();
|
|
|
|
|
_strRecvBody.clear();
|
|
|
|
|
_onResult = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-25 14:25:26 +08:00
|
|
|
|
void HttpRequester::setOnResult(const HttpRequesterResult &onResult) {
|
|
|
|
|
_onResult = onResult;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-05 18:02:54 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
}//namespace mediakit
|