2019-12-28 16:48:42 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-28 16:48:42 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-12-28 16:48:42 +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.
|
2019-12-28 16:48:42 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
#include "HlsMediaSource.h"
|
2022-11-29 11:07:13 +08:00
|
|
|
|
#include "Common/config.h"
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
2022-02-11 16:21:19 +08:00
|
|
|
|
namespace mediakit {
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2020-04-23 22:04:59 +08:00
|
|
|
|
HlsCookieData::HlsCookieData(const MediaInfo &info, const std::shared_ptr<SockInfo> &sock_info) {
|
2019-12-28 18:50:56 +08:00
|
|
|
|
_info = info;
|
2020-04-23 22:04:59 +08:00
|
|
|
|
_sock_info = sock_info;
|
2019-12-29 17:55:02 +08:00
|
|
|
|
_added = std::make_shared<bool>(false);
|
2019-12-29 12:10:31 +08:00
|
|
|
|
addReaderCount();
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-11 16:21:19 +08:00
|
|
|
|
void HlsCookieData::addReaderCount() {
|
|
|
|
|
if (!*_added) {
|
2022-02-12 16:24:55 +08:00
|
|
|
|
auto src = getMediaSource();
|
2022-02-11 16:21:19 +08:00
|
|
|
|
if (src) {
|
2019-12-29 17:55:02 +08:00
|
|
|
|
*_added = true;
|
|
|
|
|
_ring_reader = src->getRing()->attach(EventPollerPool::Instance().getPoller());
|
|
|
|
|
auto added = _added;
|
2022-02-11 16:21:19 +08:00
|
|
|
|
_ring_reader->setDetachCB([added]() {
|
|
|
|
|
// HlsMediaSource已经销毁
|
2019-12-29 17:55:02 +08:00
|
|
|
|
*added = false;
|
|
|
|
|
});
|
2019-12-29 12:10:31 +08:00
|
|
|
|
}
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
HlsCookieData::~HlsCookieData() {
|
2019-12-29 17:55:02 +08:00
|
|
|
|
if (*_added) {
|
2020-02-13 12:10:08 +08:00
|
|
|
|
uint64_t duration = (_ticker.createdTime() - _ticker.elapsedTime()) / 1000;
|
2022-02-11 16:21:19 +08:00
|
|
|
|
WarnL << _sock_info->getIdentifier() << "(" << _sock_info->get_peer_ip() << ":" << _sock_info->get_peer_port()
|
2022-09-07 11:06:39 +08:00
|
|
|
|
<< ") " << "HLS播放器(" << _info.shortUrl() << ")断开,耗时(s):" << duration;
|
2020-02-13 12:10:08 +08:00
|
|
|
|
|
2019-12-29 15:38:29 +08:00
|
|
|
|
GET_CONFIG(uint32_t, iFlowThreshold, General::kFlowThreshold);
|
2020-09-12 20:52:53 +08:00
|
|
|
|
uint64_t bytes = _bytes.load();
|
2021-02-03 14:04:33 +08:00
|
|
|
|
if (bytes >= iFlowThreshold * 1024) {
|
2023-06-11 22:07:15 +08:00
|
|
|
|
try {
|
2023-09-02 10:52:07 +08:00
|
|
|
|
NOTICE_EMIT(BroadcastFlowReportArgs, Broadcast::kBroadcastFlowReport, _info, bytes, duration, true, *_sock_info);
|
2023-06-11 22:07:15 +08:00
|
|
|
|
} catch (std::exception &ex) {
|
|
|
|
|
WarnL << "Exception occurred: " << ex.what();
|
|
|
|
|
}
|
2019-12-29 15:38:29 +08:00
|
|
|
|
}
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
void HlsCookieData::addByteUsage(size_t bytes) {
|
2019-12-29 12:10:31 +08:00
|
|
|
|
addReaderCount();
|
2019-12-28 18:50:56 +08:00
|
|
|
|
_bytes += bytes;
|
2019-12-29 15:38:29 +08:00
|
|
|
|
_ticker.resetTime();
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2022-02-11 16:21:19 +08:00
|
|
|
|
void HlsCookieData::setMediaSource(const HlsMediaSource::Ptr &src) {
|
|
|
|
|
_src = src;
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2022-02-11 16:21:19 +08:00
|
|
|
|
HlsMediaSource::Ptr HlsCookieData::getMediaSource() const {
|
|
|
|
|
return _src.lock();
|
|
|
|
|
}
|
2019-12-28 18:50:56 +08:00
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void HlsMediaSource::setIndexFile(std::string index_file)
|
|
|
|
|
{
|
|
|
|
|
if (!_ring) {
|
2023-04-28 22:04:38 +08:00
|
|
|
|
std::weak_ptr<HlsMediaSource> weakSelf = std::static_pointer_cast<HlsMediaSource>(shared_from_this());
|
2022-11-29 11:07:13 +08:00
|
|
|
|
auto lam = [weakSelf](int size) {
|
|
|
|
|
auto strongSelf = weakSelf.lock();
|
|
|
|
|
if (!strongSelf) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
strongSelf->onReaderChanged(size);
|
|
|
|
|
};
|
|
|
|
|
_ring = std::make_shared<RingType>(0, std::move(lam));
|
|
|
|
|
regist();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//赋值m3u8索引文件内容
|
|
|
|
|
std::lock_guard<std::mutex> lck(_mtx_index);
|
|
|
|
|
_index_file = std::move(index_file);
|
|
|
|
|
|
|
|
|
|
if (!_index_file.empty()) {
|
|
|
|
|
_list_cb.for_each([&](const std::function<void(const std::string& str)>& cb) { cb(_index_file); });
|
|
|
|
|
_list_cb.clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void HlsMediaSource::getIndexFile(std::function<void(const std::string& str)> cb)
|
|
|
|
|
{
|
|
|
|
|
std::lock_guard<std::mutex> lck(_mtx_index);
|
|
|
|
|
if (!_index_file.empty()) {
|
|
|
|
|
cb(_index_file);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//等待生成m3u8文件
|
|
|
|
|
_list_cb.emplace_back(std::move(cb));
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-11 16:21:19 +08:00
|
|
|
|
} // namespace mediakit
|