2020-03-06 13:00:06 +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
|
|
|
|
*/
|
2020-04-04 20:30:09 +08:00
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_HLSMEDIASOURCE_H
|
|
|
|
|
#define ZLMEDIAKIT_HLSMEDIASOURCE_H
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
#include <atomic>
|
2019-12-29 15:38:29 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
2019-12-28 16:48:42 +08:00
|
|
|
|
#include "Common/MediaSource.h"
|
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
class HlsMediaSource : public MediaSource {
|
2019-12-28 16:48:42 +08:00
|
|
|
|
public:
|
|
|
|
|
friend class HlsCookieData;
|
2019-12-29 17:55:02 +08:00
|
|
|
|
typedef RingBuffer<string> RingType;
|
2019-12-28 18:50:56 +08:00
|
|
|
|
typedef std::shared_ptr<HlsMediaSource> Ptr;
|
2019-12-29 11:52:02 +08:00
|
|
|
|
HlsMediaSource(const string &vhost, const string &app, const string &stream_id) : MediaSource(HLS_SCHEMA, vhost, app, stream_id){
|
2019-12-28 18:50:56 +08:00
|
|
|
|
_readerCount = 0;
|
2019-12-29 17:55:02 +08:00
|
|
|
|
_ring = std::make_shared<RingType>();
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual ~HlsMediaSource() = default;
|
|
|
|
|
|
2019-12-29 17:55:02 +08:00
|
|
|
|
/**
|
2020-03-20 11:51:24 +08:00
|
|
|
|
* 获取媒体源的环形缓冲
|
|
|
|
|
*/
|
2019-12-29 17:55:02 +08:00
|
|
|
|
const RingType::Ptr &getRing() const {
|
|
|
|
|
return _ring;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
/**
|
2020-03-20 11:51:24 +08:00
|
|
|
|
* 获取播放器个数
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-12-28 18:50:56 +08:00
|
|
|
|
int readerCount() override {
|
|
|
|
|
return _readerCount.load();
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2019-12-28 18:50:56 +08:00
|
|
|
|
* 注册hls
|
2019-12-28 16:48:42 +08:00
|
|
|
|
*/
|
2019-12-28 18:50:56 +08:00
|
|
|
|
void registHls(){
|
|
|
|
|
if(!_registed){
|
|
|
|
|
regist();
|
|
|
|
|
_registed = true;
|
2020-08-30 09:14:45 +08:00
|
|
|
|
onNoneReader();
|
2019-12-28 18:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2019-12-28 18:50:56 +08:00
|
|
|
|
private:
|
|
|
|
|
/**
|
|
|
|
|
* 修改观看者个数
|
|
|
|
|
* @param add 添加海思删除
|
|
|
|
|
*/
|
2019-12-29 12:10:31 +08:00
|
|
|
|
void modifyReaderCount(bool add) {
|
2019-12-28 18:50:56 +08:00
|
|
|
|
if (add) {
|
|
|
|
|
++_readerCount;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-12-28 16:48:42 +08:00
|
|
|
|
|
2020-03-23 10:21:17 +08:00
|
|
|
|
if (--_readerCount == 0) {
|
2019-12-28 18:50:56 +08:00
|
|
|
|
onNoneReader();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
atomic_int _readerCount;
|
|
|
|
|
bool _registed = false;
|
2019-12-29 17:55:02 +08:00
|
|
|
|
RingType::Ptr _ring;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class HlsCookieData{
|
|
|
|
|
public:
|
2020-01-02 17:46:20 +08:00
|
|
|
|
typedef std::shared_ptr<HlsCookieData> Ptr;
|
2020-04-23 22:04:59 +08:00
|
|
|
|
HlsCookieData(const MediaInfo &info, const std::shared_ptr<SockInfo> &sock_info);
|
2019-12-29 17:55:02 +08:00
|
|
|
|
~HlsCookieData();
|
|
|
|
|
void addByteUsage(uint64_t bytes);
|
|
|
|
|
private:
|
|
|
|
|
void addReaderCount();
|
|
|
|
|
private:
|
|
|
|
|
uint64_t _bytes = 0;
|
|
|
|
|
MediaInfo _info;
|
|
|
|
|
std::shared_ptr<bool> _added;
|
|
|
|
|
weak_ptr<HlsMediaSource> _src;
|
|
|
|
|
Ticker _ticker;
|
2020-04-23 22:04:59 +08:00
|
|
|
|
std::shared_ptr<SockInfo> _sock_info;
|
2019-12-29 17:55:02 +08:00
|
|
|
|
HlsMediaSource::RingType::RingReader::Ptr _ring_reader;
|
2019-12-28 16:48:42 +08:00
|
|
|
|
};
|
|
|
|
|
|
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
|
|
|
|
#endif //ZLMEDIAKIT_HLSMEDIASOURCE_H
|