ZLMediaKit/src/Record/HlsMediaSource.cpp

66 lines
2.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/xiongziliang/ZLMediaKit).
*
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
namespace mediakit{
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();
}
void HlsCookieData::addReaderCount(){
if(!*_added){
2019-12-29 12:10:31 +08:00
auto src = dynamic_pointer_cast<HlsMediaSource>(MediaSource::find(HLS_SCHEMA,_info._vhost,_info._app,_info._streamid));
if(src){
src->modifyReaderCount(true);
*_added = true;
2019-12-29 13:38:16 +08:00
_src = src;
_ring_reader = src->getRing()->attach(EventPollerPool::Instance().getPoller());
auto added = _added;
_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) {
2019-12-29 13:38:16 +08:00
auto src = _src.lock();
2019-12-29 15:38:29 +08:00
if (src) {
2019-12-29 12:10:31 +08:00
src->modifyReaderCount(false);
}
2020-02-13 12:10:08 +08:00
uint64_t duration = (_ticker.createdTime() - _ticker.elapsedTime()) / 1000;
2020-04-23 22:04:59 +08:00
WarnL << _sock_info->getIdentifier() << "(" << _sock_info->get_peer_ip() << ":" << _sock_info->get_peer_port() << ") "
2020-02-13 12:10:08 +08:00
<< "HLS播放器(" << _info._vhost << "/" << _info._app << "/" << _info._streamid
<< ")断开,耗时(s):" << duration;
2019-12-29 15:38:29 +08:00
GET_CONFIG(uint32_t, iFlowThreshold, General::kFlowThreshold);
if (_bytes > iFlowThreshold * 1024) {
2020-04-23 22:04:59 +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
2019-12-28 18:50:56 +08:00
void HlsCookieData::addByteUsage(uint64_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
}//namespace mediakit
2019-12-28 18:50:56 +08:00