ZLMediaKit/src/Record/HlsMediaSource.cpp

105 lines
3.1 KiB
C++
Raw Normal View History

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
*
* 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"
#include "Common/config.h"
2019-12-28 16:48:42 +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;
_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) {
auto src = getMediaSource();
2022-02-11 16:21:19 +08:00
if (src) {
*_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已经销毁
*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() {
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()
<< ") " << "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);
uint64_t bytes = _bytes.load();
if (bytes >= iFlowThreshold * 1024) {
2022-02-11 16:21:19 +08:00
NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastFlowReport, _info, bytes, duration, true, static_cast<SockInfo &>(*_sock_info));
2019-12-29 15:38:29 +08:00
}
2019-12-28 18:50:56 +08:00
}
}
2019-12-28 16:48:42 +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
void HlsMediaSource::setIndexFile(std::string index_file)
{
if (!_ring) {
std::weak_ptr<HlsMediaSource> weakSelf = std::dynamic_pointer_cast<HlsMediaSource>(shared_from_this());
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