ZLMediaKit/src/Http/TsPlayer.cpp

54 lines
1.5 KiB
C++
Raw Normal View History

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"
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;
_benchmark_mode = (*this)[Client::kBenchmarkMode].as<int>();
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
}
if (!_benchmark_mode) {
HttpTSPlayer::onResponseBody(buf, size);
}
2022-01-09 15:01:23 +08:00
}
2022-01-20 14:48:45 +08:00
} // namespace mediakit