HttpRequester.cpp 1.69 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
xiongziliang committed
9
 */
xiongziliang committed
10

xiongziliang committed
11 12
#include "HttpRequester.h"

xiongziliang committed
13
namespace mediakit{
xiongziliang committed
14 15 16 17 18 19 20 21

HttpRequester::HttpRequester(){
    
}
HttpRequester::~HttpRequester(){
    
}

22
int64_t HttpRequester::onResponseHeader(const string &status,const HttpHeader &headers) {
xiongziliang committed
23
    _strRecvBody.clear();
xiongziliang committed
24 25
    //无Content-Length字段时默认后面没有content
    return 0;
xiongziliang committed
26 27
}
    
28
void HttpRequester::onResponseBody(const char *buf,int64_t size,int64_t recvedSize,int64_t totalSize) {
xiongziliang committed
29 30 31
    _strRecvBody.append(buf,size);
}
    
32
void HttpRequester::onResponseCompleted() {
xiongziliang committed
33 34 35 36 37 38 39 40
    if(_onResult){
        _onResult(SockException(),responseStatus(),responseHeader(),_strRecvBody);
        _onResult = nullptr;
    }
}
    
void HttpRequester::onDisconnect(const SockException &ex){
    if(_onResult){
41
        const_cast<Parser &>(response()).setContent(_strRecvBody);
xiongziliang committed
42 43 44 45 46
        _onResult(ex,responseStatus(),responseHeader(),_strRecvBody);
        _onResult = nullptr;
    }
}
    
xiongziliang committed
47
void HttpRequester::startRequester(const string &url,const HttpRequesterResult &onResult , float timeOutSecond){
xiongziliang committed
48
    _onResult = onResult;
xiongziliang committed
49
    sendRequest(url,timeOutSecond);
50 51
}

52 53 54 55 56 57
void HttpRequester::clear() {
    HttpClientImp::clear();
    _strRecvBody.clear();
    _onResult = nullptr;
}

58 59 60 61
void HttpRequester::setOnResult(const HttpRequesterResult &onResult) {
    _onResult = onResult;
}

xiongziliang committed
62

xiongziliang committed
63
}//namespace mediakit