2022-01-20 22:49:47 +08:00
|
|
|
|
/*
|
2022-01-09 15:01:23 +08:00
|
|
|
|
* Copyright (c) 2020 The ZLMediaKit project authors. All Rights Reserved.
|
|
|
|
|
* Created by alex on 2021/4/6.
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2022-01-04 15:32:59 +08:00
|
|
|
|
|
|
|
|
|
#include "TsPlayer.h"
|
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
2022-01-04 15:32:59 +08:00
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
2022-01-09 15:01:23 +08:00
|
|
|
|
TsPlayer::TsPlayer(const EventPoller::Ptr &poller) : HttpTSPlayer(poller, true) {}
|
2022-01-04 15:32:59 +08:00
|
|
|
|
|
2022-01-20 14:48:45 +08:00
|
|
|
|
void TsPlayer::play(const string &url) {
|
|
|
|
|
TraceL << "play http-ts: " << url;
|
|
|
|
|
_play_result = false;
|
2022-01-19 22:50:44 +08:00
|
|
|
|
setHeaderTimeout((*this)[Client::kTimeoutMS].as<int>());
|
|
|
|
|
setBodyTimeout((*this)[Client::kMediaTimeoutMS].as<int>());
|
2022-01-20 14:48:45 +08:00
|
|
|
|
setMethod("GET");
|
|
|
|
|
sendRequest(url);
|
2022-01-09 15:01:23 +08:00
|
|
|
|
}
|
2022-01-04 15:32:59 +08:00
|
|
|
|
|
2022-01-20 14:48:45 +08:00
|
|
|
|
void TsPlayer::teardown() {
|
|
|
|
|
shutdown(SockException(Err_shutdown, "teardown"));
|
2022-01-09 15:01:23 +08:00
|
|
|
|
}
|
2022-01-04 15:32:59 +08:00
|
|
|
|
|
2022-01-20 14:48:45 +08:00
|
|
|
|
void TsPlayer::onResponseCompleted(const SockException &ex) {
|
|
|
|
|
if (!_play_result) {
|
|
|
|
|
_play_result = true;
|
2022-01-09 15:01:23 +08:00
|
|
|
|
onPlayResult(ex);
|
|
|
|
|
} else {
|
|
|
|
|
onShutdown(ex);
|
2022-01-04 15:32:59 +08:00
|
|
|
|
}
|
2022-01-20 14:48:45 +08:00
|
|
|
|
HttpTSPlayer::onResponseCompleted(ex);
|
2022-01-09 15:01:23 +08:00
|
|
|
|
}
|
2022-01-04 15:32:59 +08:00
|
|
|
|
|
2022-01-20 14:48:45 +08:00
|
|
|
|
void TsPlayer::onResponseBody(const char *buf, size_t size) {
|
|
|
|
|
if (!_play_result) {
|
|
|
|
|
_play_result = true;
|
|
|
|
|
onPlayResult(SockException(Err_success, "play http-ts success"));
|
2022-01-04 15:32:59 +08:00
|
|
|
|
}
|
2022-01-20 14:48:45 +08:00
|
|
|
|
HttpTSPlayer::onResponseBody(buf, size);
|
2022-01-09 15:01:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-20 14:48:45 +08:00
|
|
|
|
} // namespace mediakit
|