61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2020 The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
|
*
|
|
* Use of this source code is governed by MIT-like 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.
|
|
*/
|
|
|
|
#include "HttpTSPlayer.h"
|
|
|
|
using namespace std;
|
|
using namespace toolkit;
|
|
|
|
namespace mediakit {
|
|
|
|
HttpTSPlayer::HttpTSPlayer(const EventPoller::Ptr &poller) {
|
|
setPoller(poller ? poller : EventPollerPool::Instance().getPoller());
|
|
}
|
|
|
|
void HttpTSPlayer::onResponseHeader(const string &status, const HttpClient::HttpHeader &header) {
|
|
if (status != "200" && status != "206") {
|
|
// http状态码不符合预期 [AUTO-TRANSLATED:2b6996f7]
|
|
// HTTP status code is not as expected
|
|
throw invalid_argument("bad http status code:" + status);
|
|
}
|
|
|
|
auto content_type = strToLower(const_cast<HttpClient::HttpHeader &>(header)["Content-Type"]);
|
|
if (content_type.find("video/mp2t") != 0 && content_type.find("video/mpeg") != 0 && content_type.find("application/octet-stream") != 0) {
|
|
WarnL << "may not a mpeg-ts video: " << content_type << ", url: " << getUrl();
|
|
}
|
|
}
|
|
|
|
void HttpTSPlayer::onResponseBody(const char *buf, size_t size) {
|
|
if (_on_segment) {
|
|
_on_segment(buf, size);
|
|
}
|
|
}
|
|
|
|
void HttpTSPlayer::onResponseCompleted(const SockException &ex) {
|
|
emitOnComplete(ex);
|
|
}
|
|
|
|
void HttpTSPlayer::emitOnComplete(const SockException &ex) {
|
|
if (_on_complete) {
|
|
_on_complete(ex);
|
|
_on_complete = nullptr;
|
|
}
|
|
}
|
|
|
|
void HttpTSPlayer::setOnComplete(onComplete cb) {
|
|
_on_complete = std::move(cb);
|
|
}
|
|
|
|
void HttpTSPlayer::setOnPacket(TSSegment::onSegment cb) {
|
|
_on_segment = std::move(cb);
|
|
}
|
|
|
|
} // namespace mediakit
|