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"
|
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) {
|
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
|
|
|
|
|
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-02-11 16:21:19 +08:00
|
|
|
|
} // namespace mediakit
|