ZLMediaKit/src/Record/HlsMediaSource.h

98 lines
2.7 KiB
C++
Raw Normal View History

2020-03-06 13:00:06 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2019-12-28 16:48:42 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2019-12-28 16:48:42 +08:00
*
2023-12-09 16:23:51 +08:00
* Use of this source code is governed by MIT-like license that can be found in the
2020-04-04 20:30:09 +08:00
* 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
#include "Common/MediaSource.h"
2022-02-11 16:21:19 +08:00
#include "Util/TimeTicker.h"
#include "Util/RingBuffer.h"
2022-02-11 16:21:19 +08:00
#include <atomic>
2022-02-11 16:21:19 +08:00
namespace mediakit {
2019-12-28 16:48:42 +08:00
2019-12-28 18:50:56 +08:00
class HlsMediaSource : public MediaSource {
2019-12-28 16:48:42 +08:00
public:
friend class HlsCookieData;
using RingType = toolkit::RingBuffer<std::string>;
using Ptr = std::shared_ptr<HlsMediaSource>;
HlsMediaSource(const std::string &schema, const MediaTuple &tuple) : MediaSource(schema, tuple) {}
2019-12-28 18:50:56 +08:00
/**
2020-03-20 11:51:24 +08:00
*
*/
2022-02-11 16:21:19 +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
*
*/
2022-02-11 16:21:19 +08:00
int readerCount() override { return _ring ? _ring->readerCount() : 0; }
2019-12-28 16:48:42 +08:00
/**
* m3u8索引文件内容
2019-12-28 16:48:42 +08:00
*/
void setIndexFile(std::string index_file);
2020-09-12 19:20:18 +08:00
/**
* m3u8文件
*/
void getIndexFile(std::function<void(const std::string &str)> cb);
2019-12-28 16:48:42 +08:00
/**
* m3u8文件
*/
2022-02-11 16:21:19 +08:00
std::string getIndexFile() const {
std::lock_guard<std::mutex> lck(_mtx_index);
return _index_file;
2020-10-01 11:02:00 +08:00
}
2022-02-11 16:21:19 +08:00
void onSegmentSize(size_t bytes) { _speed[TrackVideo] += bytes; }
void getPlayerList(const std::function<void(const std::list<toolkit::Any> &info_list)> &cb,
const std::function<toolkit::Any(toolkit::Any &&info)> &on_change) override {
_ring->getInfoList(cb, on_change);
}
2019-12-28 18:50:56 +08:00
private:
RingType::Ptr _ring;
2022-02-11 16:21:19 +08:00
std::string _index_file;
mutable std::mutex _mtx_index;
toolkit::List<std::function<void(const std::string &)>> _list_cb;
};
2022-02-11 16:21:19 +08:00
class HlsCookieData {
public:
2022-02-11 16:21:19 +08:00
using Ptr = std::shared_ptr<HlsCookieData>;
HlsCookieData(const MediaInfo &info, const std::shared_ptr<toolkit::SockInfo> &sock_info);
~HlsCookieData();
2022-02-11 16:21:19 +08:00
void addByteUsage(size_t bytes);
2022-02-11 16:21:19 +08:00
void setMediaSource(const HlsMediaSource::Ptr &src);
HlsMediaSource::Ptr getMediaSource() const;
private:
void addReaderCount();
private:
2022-02-11 16:21:19 +08:00
std::atomic<uint64_t> _bytes { 0 };
MediaInfo _info;
std::shared_ptr<bool> _added;
toolkit::Ticker _ticker;
2022-02-11 16:21:19 +08:00
std::weak_ptr<HlsMediaSource> _src;
std::shared_ptr<toolkit::SockInfo> _sock_info;
HlsMediaSource::RingType::RingReader::Ptr _ring_reader;
2019-12-28 16:48:42 +08:00
};
2022-02-11 16:21:19 +08:00
} // namespace mediakit
#endif // ZLMEDIAKIT_HLSMEDIASOURCE_H