2018-03-20 11:28:13 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2018-02-02 18:19:35 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2018-02-02 18:19:35 +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.
|
2018-02-02 18:19:35 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "MediaSource.h"
|
2019-12-04 10:45:38 +08:00
|
|
|
|
#include "Record/MP4Reader.h"
|
2018-02-02 18:19:35 +08:00
|
|
|
|
#include "Util/util.h"
|
2018-03-05 10:41:15 +08:00
|
|
|
|
#include "Network/sockutil.h"
|
2019-05-27 22:32:07 +08:00
|
|
|
|
#include "Network/TcpSession.h"
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2021-01-23 09:44:37 +08:00
|
|
|
|
|
|
|
|
|
namespace toolkit {
|
|
|
|
|
StatisticImp(mediakit::MediaSource);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2021-09-28 22:42:13 +08:00
|
|
|
|
static recursive_mutex s_media_source_mtx;
|
|
|
|
|
static MediaSource::SchemaVhostAppStreamMap s_media_source_map;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
string getOriginTypeString(MediaOriginType type){
|
2020-10-24 23:31:22 +08:00
|
|
|
|
#define SWITCH_CASE(type) case MediaOriginType::type : return #type
|
2020-09-27 11:32:49 +08:00
|
|
|
|
switch (type) {
|
2020-10-24 23:31:22 +08:00
|
|
|
|
SWITCH_CASE(unknown);
|
|
|
|
|
SWITCH_CASE(rtmp_push);
|
|
|
|
|
SWITCH_CASE(rtsp_push);
|
|
|
|
|
SWITCH_CASE(rtp_push);
|
|
|
|
|
SWITCH_CASE(pull);
|
|
|
|
|
SWITCH_CASE(ffmpeg_pull);
|
|
|
|
|
SWITCH_CASE(mp4_vod);
|
|
|
|
|
SWITCH_CASE(device_chn);
|
2021-04-07 18:17:49 +08:00
|
|
|
|
SWITCH_CASE(rtc_push);
|
2020-11-29 09:34:02 +08:00
|
|
|
|
default : return "unknown";
|
2020-09-27 11:32:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 17:31:13 +08:00
|
|
|
|
static string getOriginUrl_l(const MediaSource *thiz) {
|
|
|
|
|
if (thiz == MediaSource::NullMediaSource) {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
return thiz->getSchema() + "://" + thiz->getVhost() + "/" + thiz->getApp() + "/" + thiz->getId();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
MediaSource * const MediaSource::NullMediaSource = nullptr;
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
MediaSource::MediaSource(const string &schema, const string &vhost, const string &app, const string &stream_id){
|
|
|
|
|
GET_CONFIG(bool, enableVhost, General::kEnableVhost);
|
|
|
|
|
if (!enableVhost) {
|
|
|
|
|
_vhost = DEFAULT_VHOST;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
} else {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
_vhost = vhost.empty() ? DEFAULT_VHOST : vhost;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
_schema = schema;
|
|
|
|
|
_app = app;
|
|
|
|
|
_stream_id = stream_id;
|
2020-10-01 18:57:15 +08:00
|
|
|
|
_create_stamp = time(NULL);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MediaSource::~MediaSource() {
|
|
|
|
|
unregist();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string& MediaSource::getSchema() const {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return _schema;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string& MediaSource::getVhost() const {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return _vhost;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string& MediaSource::getApp() const {
|
|
|
|
|
//获取该源的id
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return _app;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const string& MediaSource::getId() const {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return _stream_id;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-10 16:37:50 +08:00
|
|
|
|
std::shared_ptr<void> MediaSource::getOwnership() {
|
|
|
|
|
if (_owned.test_and_set()) {
|
|
|
|
|
//已经被所有
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
weak_ptr<MediaSource> weak_self = shared_from_this();
|
2022-01-26 00:36:57 +08:00
|
|
|
|
//确保返回的Ownership智能指针不为空,0x01无实际意义
|
|
|
|
|
return std::shared_ptr<void>((void *) 0x01, [weak_self](void *ptr) {
|
2022-01-10 16:37:50 +08:00
|
|
|
|
auto strong_self = weak_self.lock();
|
|
|
|
|
if (strong_self) {
|
|
|
|
|
strong_self->_owned.clear();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-05 12:22:17 +08:00
|
|
|
|
int MediaSource::getBytesSpeed(TrackType type){
|
|
|
|
|
if(type == TrackInvalid){
|
|
|
|
|
return _speed[TrackVideo].getSpeed() + _speed[TrackAudio].getSpeed();
|
|
|
|
|
}
|
|
|
|
|
return _speed[type].getSpeed();
|
2020-10-01 11:02:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-01 18:57:15 +08:00
|
|
|
|
uint64_t MediaSource::getCreateStamp() const {
|
|
|
|
|
return _create_stamp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint64_t MediaSource::getAliveSecond() const {
|
|
|
|
|
//使用Ticker对象获取存活时间的目的是防止修改系统时间导致回退
|
|
|
|
|
return _ticker.createdTime() / 1000;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
vector<Track::Ptr> MediaSource::getTracks(bool ready) const {
|
2020-09-06 17:54:52 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if(!listener){
|
|
|
|
|
return vector<Track::Ptr>();
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
2021-07-20 13:15:57 +08:00
|
|
|
|
return listener->getMediaTracks(const_cast<MediaSource &>(*this), ready);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaSource::setListener(const std::weak_ptr<MediaSourceEvent> &listener){
|
|
|
|
|
_listener = listener;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
std::weak_ptr<MediaSourceEvent> MediaSource::getListener(bool next) const{
|
|
|
|
|
if (!next) {
|
|
|
|
|
return _listener;
|
|
|
|
|
}
|
|
|
|
|
auto listener = dynamic_pointer_cast<MediaSourceEventInterceptor>(_listener.lock());
|
|
|
|
|
if (!listener) {
|
|
|
|
|
//不是MediaSourceEventInterceptor对象或者对象已经销毁
|
|
|
|
|
return _listener;
|
|
|
|
|
}
|
|
|
|
|
//获取被拦截的对象
|
|
|
|
|
auto next_obj = listener->getDelegate();
|
|
|
|
|
//有则返回之
|
|
|
|
|
return next_obj ? next_obj : _listener;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-28 16:48:11 +08:00
|
|
|
|
int MediaSource::totalReaderCount(){
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if(!listener){
|
|
|
|
|
return readerCount();
|
|
|
|
|
}
|
|
|
|
|
return listener->totalReaderCount(*this);
|
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
MediaOriginType MediaSource::getOriginType() const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return MediaOriginType::unknown;
|
|
|
|
|
}
|
|
|
|
|
return listener->getOriginType(const_cast<MediaSource &>(*this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string MediaSource::getOriginUrl() const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
2021-08-16 17:31:13 +08:00
|
|
|
|
return getOriginUrl_l(this);
|
|
|
|
|
}
|
|
|
|
|
auto ret = listener->getOriginUrl(const_cast<MediaSource &>(*this));
|
|
|
|
|
if (!ret.empty()) {
|
|
|
|
|
return ret;
|
2020-09-27 11:32:49 +08:00
|
|
|
|
}
|
2021-08-16 17:31:13 +08:00
|
|
|
|
return getOriginUrl_l(this);
|
2020-09-27 11:32:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<SockInfo> MediaSource::getOriginSock() const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
return listener->getOriginSock(const_cast<MediaSource &>(*this));
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool MediaSource::seekTo(uint32_t stamp) {
|
2019-12-03 16:10:02 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if(!listener){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return listener->seekTo(*this, stamp);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 16:07:31 +08:00
|
|
|
|
bool MediaSource::pause(bool pause) {
|
2021-08-09 18:28:43 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-12 16:07:31 +08:00
|
|
|
|
return listener->pause(*this, pause);
|
2021-08-09 18:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 16:07:31 +08:00
|
|
|
|
bool MediaSource::speed(float speed) {
|
2021-08-09 18:28:43 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return listener->speed(*this, speed);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
bool MediaSource::close(bool force) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if(!listener){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-02-09 14:21:35 +08:00
|
|
|
|
return listener->close(*this,force);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
void MediaSource::onReaderChanged(int size) {
|
2019-12-03 16:10:02 +08:00
|
|
|
|
auto listener = _listener.lock();
|
2020-09-12 19:09:56 +08:00
|
|
|
|
if (listener) {
|
|
|
|
|
listener->onReaderChanged(*this, size);
|
2020-03-23 10:21:17 +08:00
|
|
|
|
}
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 10:41:57 +08:00
|
|
|
|
bool MediaSource::setupRecord(Recorder::type type, bool start, const string &custom_path, size_t max_second){
|
2020-04-05 09:26:29 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
2020-08-08 12:20:13 +08:00
|
|
|
|
WarnL << "未设置MediaSource的事件监听者,setupRecord失败:" << getSchema() << "/" << getVhost() << "/" << getApp() << "/" << getId();
|
2020-04-05 09:26:29 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-03-07 10:41:57 +08:00
|
|
|
|
return listener->setupRecord(*this, type, start, custom_path, max_second);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaSource::isRecording(Recorder::type type){
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if(!listener){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return listener->isRecording(*this, type);
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-03 18:25:36 +08:00
|
|
|
|
void MediaSource::startSendRtp(const MediaSourceEvent::SendRtpArgs &args, const std::function<void(uint16_t, const toolkit::SockException &)> cb) {
|
2020-09-06 17:56:05 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
2021-01-02 20:43:02 +08:00
|
|
|
|
cb(0, SockException(Err_other, "尚未设置事件监听器"));
|
2020-09-06 17:56:05 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2022-04-03 18:25:36 +08:00
|
|
|
|
return listener->startSendRtp(*this, args, cb);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-27 18:41:53 +08:00
|
|
|
|
bool MediaSource::stopSendRtp(const string &ssrc) {
|
2020-09-06 17:56:05 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-12-27 18:41:53 +08:00
|
|
|
|
return listener->stopSendRtp(*this, ssrc);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 23:03:27 +08:00
|
|
|
|
template<typename MAP, typename LIST, typename First, typename ...KeyTypes>
|
|
|
|
|
static void for_each_media_l(const MAP &map, LIST &list, const First &first, const KeyTypes &...keys) {
|
|
|
|
|
if (first.empty()) {
|
|
|
|
|
for (auto &pr : map) {
|
|
|
|
|
for_each_media_l(pr.second, list, keys...);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
auto it = map.find(first);
|
|
|
|
|
if (it != map.end()) {
|
|
|
|
|
for_each_media_l(it->second, list, keys...);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename LIST, typename Ptr>
|
|
|
|
|
static void emplace_back(LIST &list, const Ptr &ptr) {
|
2021-06-30 21:06:29 +08:00
|
|
|
|
auto src = ptr.lock();
|
|
|
|
|
if (src) {
|
2021-06-30 23:03:27 +08:00
|
|
|
|
list.emplace_back(std::move(src));
|
2021-06-30 21:06:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 23:03:27 +08:00
|
|
|
|
template<typename MAP, typename LIST, typename First>
|
|
|
|
|
static void for_each_media_l(const MAP &map, LIST &list, const First &first) {
|
|
|
|
|
if (first.empty()) {
|
|
|
|
|
for (auto &pr : map) {
|
|
|
|
|
emplace_back(list, pr.second);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
auto it = map.find(first);
|
|
|
|
|
if (it != map.end()) {
|
|
|
|
|
emplace_back(list, it->second);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaSource::for_each_media(const function<void(const Ptr &src)> &cb,
|
2021-06-30 21:06:29 +08:00
|
|
|
|
const string &schema,
|
|
|
|
|
const string &vhost,
|
|
|
|
|
const string &app,
|
|
|
|
|
const string &stream) {
|
2021-06-30 23:03:27 +08:00
|
|
|
|
deque<Ptr> src_list;
|
2020-04-06 21:23:35 +08:00
|
|
|
|
{
|
2020-09-06 17:52:07 +08:00
|
|
|
|
lock_guard<recursive_mutex> lock(s_media_source_mtx);
|
2021-06-30 23:03:27 +08:00
|
|
|
|
for_each_media_l(s_media_source_map, src_list, schema, vhost, app, stream);
|
2020-04-06 21:23:35 +08:00
|
|
|
|
}
|
2021-06-30 23:03:27 +08:00
|
|
|
|
for (auto &src : src_list) {
|
|
|
|
|
cb(src);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-21 10:21:52 +08:00
|
|
|
|
static MediaSource::Ptr find_l(const string &schema, const string &vhost_in, const string &app, const string &id, bool from_mp4) {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
string vhost = vhost_in;
|
|
|
|
|
GET_CONFIG(bool,enableVhost,General::kEnableVhost);
|
|
|
|
|
if(vhost.empty() || !enableVhost){
|
|
|
|
|
vhost = DEFAULT_VHOST;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-01 10:56:59 +08:00
|
|
|
|
if (app.empty() || id.empty()) {
|
|
|
|
|
//如果未指定app与stream id,那么就是遍历而非查找,所以应该返回查找失败
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
MediaSource::Ptr ret;
|
2021-06-30 23:35:19 +08:00
|
|
|
|
MediaSource::for_each_media([&](const MediaSource::Ptr &src) { ret = std::move(const_cast<MediaSource::Ptr &>(src)); }, schema, vhost, app, id);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2021-10-21 10:21:52 +08:00
|
|
|
|
if(!ret && from_mp4 && schema != HLS_SCHEMA){
|
2020-09-20 10:13:15 +08:00
|
|
|
|
//未查找媒体源,则读取mp4创建一个
|
|
|
|
|
//播放hls不触发mp4点播(因为HLS也可以用于录像,不是纯粹的直播)
|
2020-09-06 17:52:07 +08:00
|
|
|
|
ret = MediaSource::createFromMP4(schema, vhost, app, id);
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-15 11:25:06 +08:00
|
|
|
|
static void findAsync_l(const MediaInfo &info, const std::shared_ptr<Session> &session, bool retry,
|
2020-09-06 17:52:07 +08:00
|
|
|
|
const function<void(const MediaSource::Ptr &src)> &cb){
|
|
|
|
|
auto src = find_l(info._schema, info._vhost, info._app, info._streamid, true);
|
2020-07-16 16:00:31 +08:00
|
|
|
|
if (src || !retry) {
|
2019-05-27 22:32:07 +08:00
|
|
|
|
cb(src);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-28 20:58:25 +08:00
|
|
|
|
GET_CONFIG(int, maxWaitMS, General::kMaxStreamWaitTimeMS);
|
2019-05-27 22:32:07 +08:00
|
|
|
|
void *listener_tag = session.get();
|
2021-02-28 20:58:25 +08:00
|
|
|
|
auto poller = session->getPoller();
|
|
|
|
|
std::shared_ptr<atomic_flag> invoked(new atomic_flag{false});
|
|
|
|
|
auto cb_once = [cb, invoked](const MediaSource::Ptr &src) {
|
|
|
|
|
if (invoked->test_and_set()) {
|
|
|
|
|
//回调已经执行过了
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
cb(src);
|
|
|
|
|
};
|
2019-05-28 09:25:41 +08:00
|
|
|
|
|
2021-02-28 20:58:25 +08:00
|
|
|
|
auto on_timeout = poller->doDelayTask(maxWaitMS, [cb_once, listener_tag]() {
|
2020-07-16 16:00:31 +08:00
|
|
|
|
//最多等待一定时间,如果这个时间内,流未注册上,那么返回未找到流
|
|
|
|
|
NoticeCenter::Instance().delListener(listener_tag, Broadcast::kBroadcastMediaChanged);
|
2021-02-28 20:58:25 +08:00
|
|
|
|
cb_once(nullptr);
|
2019-05-27 22:32:07 +08:00
|
|
|
|
return 0;
|
|
|
|
|
});
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
auto cancel_all = [on_timeout, listener_tag]() {
|
2020-07-16 16:00:31 +08:00
|
|
|
|
//取消延时任务,防止多次回调
|
2020-09-06 17:52:07 +08:00
|
|
|
|
on_timeout->cancel();
|
2020-07-16 16:00:31 +08:00
|
|
|
|
//取消媒体注册事件监听
|
|
|
|
|
NoticeCenter::Instance().delListener(listener_tag, Broadcast::kBroadcastMediaChanged);
|
|
|
|
|
};
|
|
|
|
|
|
2021-07-15 11:25:06 +08:00
|
|
|
|
weak_ptr<Session> weak_session = session;
|
2021-02-28 20:58:25 +08:00
|
|
|
|
auto on_register = [weak_session, info, cb_once, cancel_all, poller](BroadcastMediaChangedArgs) {
|
2019-12-24 14:08:16 +08:00
|
|
|
|
if (!bRegist ||
|
|
|
|
|
sender.getSchema() != info._schema ||
|
|
|
|
|
sender.getVhost() != info._vhost ||
|
|
|
|
|
sender.getApp() != info._app ||
|
|
|
|
|
sender.getId() != info._streamid) {
|
2019-05-27 22:32:07 +08:00
|
|
|
|
//不是自己感兴趣的事件,忽略之
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-02-28 20:58:25 +08:00
|
|
|
|
poller->async([weak_session, cancel_all, info, cb_once]() {
|
|
|
|
|
cancel_all();
|
|
|
|
|
auto strong_session = weak_session.lock();
|
|
|
|
|
if (!strong_session) {
|
|
|
|
|
//自己已经销毁
|
2019-05-27 22:32:07 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-02-28 20:58:25 +08:00
|
|
|
|
//播发器请求的流终于注册上了,切换到自己的线程再回复
|
2019-05-27 22:32:07 +08:00
|
|
|
|
DebugL << "收到媒体注册事件,回复播放器:" << info._schema << "/" << info._vhost << "/" << info._app << "/" << info._streamid;
|
|
|
|
|
//再找一遍媒体源,一般能找到
|
2021-02-28 20:58:25 +08:00
|
|
|
|
findAsync_l(info, strong_session, false, cb_once);
|
2019-05-27 22:32:07 +08:00
|
|
|
|
}, false);
|
|
|
|
|
};
|
2020-07-16 16:00:31 +08:00
|
|
|
|
|
2019-05-27 22:32:07 +08:00
|
|
|
|
//监听媒体注册事件
|
2021-02-28 20:58:25 +08:00
|
|
|
|
NoticeCenter::Instance().addListener(listener_tag, Broadcast::kBroadcastMediaChanged, on_register);
|
|
|
|
|
|
|
|
|
|
function<void()> close_player = [cb_once, cancel_all, poller]() {
|
|
|
|
|
poller->async([cancel_all, cb_once]() {
|
|
|
|
|
cancel_all();
|
|
|
|
|
//告诉播放器,流不存在,这样会立即断开播放器
|
|
|
|
|
cb_once(nullptr);
|
|
|
|
|
});
|
|
|
|
|
};
|
2020-07-16 16:00:31 +08:00
|
|
|
|
//广播未找到流,此时可以立即去拉流,这样还来得及
|
2020-09-06 17:52:07 +08:00
|
|
|
|
NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastNotFoundStream, info, static_cast<SockInfo &>(*session), close_player);
|
2019-05-27 22:32:07 +08:00
|
|
|
|
}
|
2019-12-03 16:10:02 +08:00
|
|
|
|
|
2021-07-15 11:25:06 +08:00
|
|
|
|
void MediaSource::findAsync(const MediaInfo &info, const std::shared_ptr<Session> &session, const function<void (const Ptr &)> &cb) {
|
2019-12-03 16:10:02 +08:00
|
|
|
|
return findAsync_l(info, session, true, cb);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-21 10:21:52 +08:00
|
|
|
|
MediaSource::Ptr MediaSource::find(const string &schema, const string &vhost, const string &app, const string &id, bool from_mp4) {
|
|
|
|
|
return find_l(schema, vhost, app, id, from_mp4);
|
2020-05-26 10:11:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-21 10:21:52 +08:00
|
|
|
|
MediaSource::Ptr MediaSource::find(const string &vhost, const string &app, const string &stream_id, bool from_mp4) {
|
|
|
|
|
auto src = MediaSource::find(RTMP_SCHEMA, vhost, app, stream_id, from_mp4);
|
2020-09-06 18:19:54 +08:00
|
|
|
|
if (src) {
|
|
|
|
|
return src;
|
|
|
|
|
}
|
2021-10-21 10:21:52 +08:00
|
|
|
|
src = MediaSource::find(RTSP_SCHEMA, vhost, app, stream_id, from_mp4);
|
2020-09-06 18:19:54 +08:00
|
|
|
|
if (src) {
|
|
|
|
|
return src;
|
|
|
|
|
}
|
2021-10-21 10:21:52 +08:00
|
|
|
|
return MediaSource::find(HLS_SCHEMA, vhost, app, stream_id, from_mp4);
|
2020-09-06 18:19:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
void MediaSource::emitEvent(bool regist){
|
2020-07-02 18:14:39 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (listener) {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
//触发回调
|
|
|
|
|
listener->onRegist(*this, regist);
|
|
|
|
|
}
|
|
|
|
|
//触发广播
|
|
|
|
|
NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastMediaChanged, regist, *this);
|
2020-09-12 19:20:18 +08:00
|
|
|
|
InfoL << (regist ? "媒体注册:" : "媒体注销:") << _schema << " " << _vhost << " " << _app << " " << _stream_id;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaSource::regist() {
|
|
|
|
|
{
|
|
|
|
|
//减小互斥锁临界区
|
|
|
|
|
lock_guard<recursive_mutex> lock(s_media_source_mtx);
|
2021-11-19 15:33:16 +08:00
|
|
|
|
auto &ref = s_media_source_map[_schema][_vhost][_app][_stream_id];
|
2022-01-10 16:37:50 +08:00
|
|
|
|
auto src = ref.lock();
|
|
|
|
|
if (src) {
|
|
|
|
|
if (src.get() == this) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//增加判断, 防止当前流已注册时再次注册
|
2021-11-19 15:33:16 +08:00
|
|
|
|
throw std::invalid_argument("media source already existed:" + _schema + "/" + _vhost + "/" + _app + "/" + _stream_id);
|
|
|
|
|
}
|
|
|
|
|
ref = shared_from_this();
|
2020-07-02 18:14:39 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
emitEvent(true);
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2020-03-04 21:57:31 +08:00
|
|
|
|
|
2021-06-30 23:35:19 +08:00
|
|
|
|
template<typename MAP, typename First, typename ...KeyTypes>
|
|
|
|
|
static bool erase_media_source(bool &hit, const MediaSource *thiz, MAP &map, const First &first, const KeyTypes &...keys) {
|
|
|
|
|
auto it = map.find(first);
|
|
|
|
|
if (it != map.end() && erase_media_source(hit, thiz, it->second, keys...)) {
|
|
|
|
|
map.erase(it);
|
|
|
|
|
}
|
|
|
|
|
return map.empty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename MAP, typename First>
|
|
|
|
|
static bool erase_media_source(bool &hit, const MediaSource *thiz, MAP &map, const First &first) {
|
|
|
|
|
auto it = map.find(first);
|
|
|
|
|
if (it != map.end()) {
|
|
|
|
|
auto src = it->second.lock();
|
|
|
|
|
if (!src || src.get() == thiz) {
|
|
|
|
|
//对象已经销毁或者对象就是自己,那么移除之
|
|
|
|
|
map.erase(it);
|
|
|
|
|
hit = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return map.empty();
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-04 21:57:31 +08:00
|
|
|
|
//反注册该源
|
2018-02-02 18:19:35 +08:00
|
|
|
|
bool MediaSource::unregist() {
|
2021-06-30 23:35:19 +08:00
|
|
|
|
bool ret = false;
|
2020-03-04 21:57:31 +08:00
|
|
|
|
{
|
2020-09-06 17:52:07 +08:00
|
|
|
|
//减小互斥锁临界区
|
|
|
|
|
lock_guard<recursive_mutex> lock(s_media_source_mtx);
|
2021-06-30 23:35:19 +08:00
|
|
|
|
erase_media_source(ret, this, s_media_source_map, _schema, _vhost, _app, _stream_id);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ret) {
|
|
|
|
|
emitEvent(false);
|
2020-03-04 21:57:31 +08:00
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2019-12-03 16:10:02 +08:00
|
|
|
|
|
|
|
|
|
/////////////////////////////////////MediaInfo//////////////////////////////////////
|
|
|
|
|
|
2020-09-20 20:15:39 +08:00
|
|
|
|
void MediaInfo::parse(const string &url_in){
|
2020-09-27 11:32:49 +08:00
|
|
|
|
_full_url = url_in;
|
2020-09-20 20:15:39 +08:00
|
|
|
|
string url = url_in;
|
|
|
|
|
auto pos = url.find("?");
|
|
|
|
|
if (pos != string::npos) {
|
|
|
|
|
_param_strs = url.substr(pos + 1);
|
|
|
|
|
url.erase(pos);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-02 18:19:35 +08:00
|
|
|
|
auto schema_pos = url.find("://");
|
2020-09-06 17:52:07 +08:00
|
|
|
|
if (schema_pos != string::npos) {
|
|
|
|
|
_schema = url.substr(0, schema_pos);
|
|
|
|
|
} else {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
schema_pos = -3;
|
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
auto split_vec = split(url.substr(schema_pos + 3), "/");
|
|
|
|
|
if (split_vec.size() > 0) {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
auto vhost = split_vec[0];
|
|
|
|
|
auto pos = vhost.find(":");
|
2020-09-06 17:52:07 +08:00
|
|
|
|
if (pos != string::npos) {
|
|
|
|
|
_host = _vhost = vhost.substr(0, pos);
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_port = vhost.substr(pos + 1);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
} else {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_host = _vhost = vhost;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2022-05-08 09:25:47 +08:00
|
|
|
|
if (_vhost == "localhost" || isIP(_vhost.data())) {
|
2020-03-12 12:47:15 +08:00
|
|
|
|
//如果访问的是localhost或ip,那么则为默认虚拟主机
|
|
|
|
|
_vhost = DEFAULT_VHOST;
|
|
|
|
|
}
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
if (split_vec.size() > 1) {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_app = split_vec[1];
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
if (split_vec.size() > 2) {
|
|
|
|
|
string stream_id;
|
2021-01-19 16:05:38 +08:00
|
|
|
|
for (size_t i = 2; i < split_vec.size(); ++i) {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
stream_id.append(split_vec[i] + "/");
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
if (stream_id.back() == '/') {
|
|
|
|
|
stream_id.pop_back();
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2020-09-20 20:15:39 +08:00
|
|
|
|
_streamid = stream_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto params = Parser::parseArgs(_param_strs);
|
|
|
|
|
if (params.find(VHOST_KEY) != params.end()) {
|
|
|
|
|
_vhost = params[VHOST_KEY];
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
2019-05-29 09:26:16 +08:00
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
GET_CONFIG(bool, enableVhost, General::kEnableVhost);
|
|
|
|
|
if (!enableVhost || _vhost.empty()) {
|
2020-03-12 12:47:15 +08:00
|
|
|
|
//如果关闭虚拟主机或者虚拟主机为空,则设置虚拟主机为默认
|
2019-05-29 09:28:35 +08:00
|
|
|
|
_vhost = DEFAULT_VHOST;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
MediaSource::Ptr MediaSource::createFromMP4(const string &schema, const string &vhost, const string &app, const string &stream, const string &file_path , bool check_app){
|
|
|
|
|
GET_CONFIG(string, appName, Record::kAppName);
|
|
|
|
|
if (check_app && app != appName) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
#ifdef ENABLE_MP4
|
|
|
|
|
try {
|
|
|
|
|
MP4Reader::Ptr pReader(new MP4Reader(vhost, app, stream, file_path));
|
|
|
|
|
pReader->startReadMP4();
|
|
|
|
|
return MediaSource::find(schema, vhost, app, stream);
|
|
|
|
|
} catch (std::exception &ex) {
|
|
|
|
|
WarnL << ex.what();
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
WarnL << "创建MP4点播失败,请编译时打开\"ENABLE_MP4\"选项";
|
|
|
|
|
return nullptr;
|
|
|
|
|
#endif //ENABLE_MP4
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
/////////////////////////////////////MediaSourceEvent//////////////////////////////////////
|
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
void MediaSourceEvent::onReaderChanged(MediaSource &sender, int size){
|
|
|
|
|
if (size || totalReaderCount(sender)) {
|
|
|
|
|
//还有人观看该视频,不触发关闭事件
|
2021-04-18 21:27:44 +08:00
|
|
|
|
_async_close_timer = nullptr;
|
2020-09-12 19:09:56 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//没有任何人观看该视频源,表明该源可以关闭了
|
2020-09-06 17:52:07 +08:00
|
|
|
|
GET_CONFIG(string, record_app, Record::kAppName);
|
2020-03-23 10:21:17 +08:00
|
|
|
|
GET_CONFIG(int, stream_none_reader_delay, General::kStreamNoneReaderDelayMS);
|
2020-04-03 22:39:44 +08:00
|
|
|
|
//如果mp4点播, 无人观看时我们强制关闭点播
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool is_mp4_vod = sender.getApp() == record_app;
|
2020-09-12 19:09:56 +08:00
|
|
|
|
weak_ptr<MediaSource> weak_sender = sender.shared_from_this();
|
2020-04-03 22:39:44 +08:00
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
_async_close_timer = std::make_shared<Timer>(stream_none_reader_delay / 1000.0f, [weak_sender, is_mp4_vod]() {
|
2020-09-12 19:09:56 +08:00
|
|
|
|
auto strong_sender = weak_sender.lock();
|
|
|
|
|
if (!strong_sender) {
|
2020-03-23 10:21:17 +08:00
|
|
|
|
//对象已经销毁
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
if (strong_sender->totalReaderCount()) {
|
|
|
|
|
//还有人观看该视频,不触发关闭事件
|
2020-03-23 10:21:17 +08:00
|
|
|
|
return false;
|
2019-07-11 14:38:54 +08:00
|
|
|
|
}
|
2020-03-23 10:21:17 +08:00
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
if (!is_mp4_vod) {
|
2020-04-03 22:39:44 +08:00
|
|
|
|
//直播时触发无人观看事件,让开发者自行选择是否关闭
|
2020-09-12 19:09:56 +08:00
|
|
|
|
NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastStreamNoneReader, *strong_sender);
|
|
|
|
|
} else {
|
2020-04-03 22:39:44 +08:00
|
|
|
|
//这个是mp4点播,我们自动关闭
|
|
|
|
|
WarnL << "MP4点播无人观看,自动关闭:"
|
2020-09-12 19:09:56 +08:00
|
|
|
|
<< strong_sender->getSchema() << "/"
|
|
|
|
|
<< strong_sender->getVhost() << "/"
|
|
|
|
|
<< strong_sender->getApp() << "/"
|
|
|
|
|
<< strong_sender->getId();
|
|
|
|
|
strong_sender->close(false);
|
2020-04-03 22:39:44 +08:00
|
|
|
|
}
|
2020-03-23 10:21:17 +08:00
|
|
|
|
return false;
|
|
|
|
|
}, nullptr);
|
2019-05-29 18:08:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-16 17:31:13 +08:00
|
|
|
|
string MediaSourceEvent::getOriginUrl(MediaSource &sender) const {
|
|
|
|
|
return getOriginUrl_l(&sender);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
MediaOriginType MediaSourceEventInterceptor::getOriginType(MediaSource &sender) const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return MediaOriginType::unknown;
|
|
|
|
|
}
|
|
|
|
|
return listener->getOriginType(sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string MediaSourceEventInterceptor::getOriginUrl(MediaSource &sender) const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
2021-08-16 17:31:13 +08:00
|
|
|
|
return MediaSourceEvent::getOriginUrl(sender);
|
|
|
|
|
}
|
|
|
|
|
auto ret = listener->getOriginUrl(sender);
|
|
|
|
|
if (!ret.empty()) {
|
|
|
|
|
return ret;
|
2020-09-27 11:32:49 +08:00
|
|
|
|
}
|
2021-08-16 17:31:13 +08:00
|
|
|
|
return MediaSourceEvent::getOriginUrl(sender);
|
2020-09-27 11:32:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<SockInfo> MediaSourceEventInterceptor::getOriginSock(MediaSource &sender) const {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
return listener->getOriginSock(sender);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::seekTo(MediaSource &sender, uint32_t stamp) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
2020-04-03 23:27:16 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return listener->seekTo(sender, stamp);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 16:07:31 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::pause(MediaSource &sender, bool pause) {
|
2021-08-09 18:28:43 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-12 16:07:31 +08:00
|
|
|
|
return listener->pause(sender, pause);
|
2021-08-09 18:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-12 16:07:31 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::speed(MediaSource &sender, float speed) {
|
2021-08-09 18:28:43 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return listener->speed(sender, speed);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::close(MediaSource &sender, bool force) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
2020-04-03 23:27:16 +08:00
|
|
|
|
}
|
2020-09-06 17:52:07 +08:00
|
|
|
|
return listener->close(sender, force);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int MediaSourceEventInterceptor::totalReaderCount(MediaSource &sender) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return sender.readerCount();
|
|
|
|
|
}
|
|
|
|
|
return listener->totalReaderCount(sender);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
void MediaSourceEventInterceptor::onReaderChanged(MediaSource &sender, int size) {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
2020-09-12 19:09:56 +08:00
|
|
|
|
MediaSourceEvent::onReaderChanged(sender, size);
|
|
|
|
|
} else {
|
|
|
|
|
listener->onReaderChanged(sender, size);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MediaSourceEventInterceptor::onRegist(MediaSource &sender, bool regist) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (listener) {
|
|
|
|
|
listener->onRegist(sender, regist);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 10:41:57 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path, size_t max_second) {
|
2020-09-06 17:52:07 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-03-07 10:41:57 +08:00
|
|
|
|
return listener->setupRecord(sender, type, start, custom_path, max_second);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MediaSourceEventInterceptor::isRecording(MediaSource &sender, Recorder::type type) {
|
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return listener->isRecording(sender, type);
|
2020-04-03 23:27:16 +08:00
|
|
|
|
}
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2021-07-20 13:15:57 +08:00
|
|
|
|
vector<Track::Ptr> MediaSourceEventInterceptor::getMediaTracks(MediaSource &sender, bool trackReady) const {
|
2020-09-06 17:54:52 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (!listener) {
|
|
|
|
|
return vector<Track::Ptr>();
|
|
|
|
|
}
|
2021-07-20 13:15:57 +08:00
|
|
|
|
return listener->getMediaTracks(sender, trackReady);
|
2020-09-06 17:54:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-03 18:25:36 +08:00
|
|
|
|
void MediaSourceEventInterceptor::startSendRtp(MediaSource &sender, const MediaSourceEvent::SendRtpArgs &args, const std::function<void(uint16_t, const toolkit::SockException &)> cb) {
|
2020-09-06 17:56:05 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (listener) {
|
2022-04-03 18:25:36 +08:00
|
|
|
|
listener->startSendRtp(sender, args, cb);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
} else {
|
2022-04-03 18:25:36 +08:00
|
|
|
|
MediaSourceEvent::startSendRtp(sender, args, cb);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-24 11:38:36 +08:00
|
|
|
|
bool MediaSourceEventInterceptor::stopSendRtp(MediaSource &sender, const string &ssrc){
|
2020-09-06 17:56:05 +08:00
|
|
|
|
auto listener = _listener.lock();
|
|
|
|
|
if (listener) {
|
2020-12-27 18:41:53 +08:00
|
|
|
|
return listener->stopSendRtp(sender, ssrc);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
void MediaSourceEventInterceptor::setDelegate(const std::weak_ptr<MediaSourceEvent> &listener) {
|
|
|
|
|
if (listener.lock().get() == this) {
|
|
|
|
|
throw std::invalid_argument("can not set self as a delegate");
|
|
|
|
|
}
|
|
|
|
|
_listener = listener;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<MediaSourceEvent> MediaSourceEventInterceptor::getDelegate() const{
|
|
|
|
|
return _listener.lock();
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
/////////////////////////////////////FlushPolicy//////////////////////////////////////
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
static bool isFlushAble_default(bool is_video, uint64_t last_stamp, uint64_t new_stamp, size_t cache_size) {
|
2020-05-27 11:25:56 +08:00
|
|
|
|
if (new_stamp + 500 < last_stamp) {
|
|
|
|
|
//时间戳回退比较大(可能seek中),由于rtp中时间戳是pts,是可能存在一定程度的回退的
|
2020-04-09 16:19:03 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
//时间戳发送变化或者缓存超过1024个,sendmsg接口一般最多只能发送1024个数据包
|
|
|
|
|
return last_stamp != new_stamp || cache_size >= 1024;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
static bool isFlushAble_merge(bool is_video, uint64_t last_stamp, uint64_t new_stamp, size_t cache_size, int merge_ms) {
|
2020-05-27 11:25:56 +08:00
|
|
|
|
if (new_stamp + 500 < last_stamp) {
|
|
|
|
|
//时间戳回退比较大(可能seek中),由于rtp中时间戳是pts,是可能存在一定程度的回退的
|
2020-04-09 16:19:03 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
if (new_stamp > last_stamp + merge_ms) {
|
2020-04-09 16:19:03 +08:00
|
|
|
|
//时间戳增量超过合并写阈值
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
//缓存数超过1024个,这个逻辑用于避免时间戳异常的流导致的内存暴增问题
|
|
|
|
|
//而且sendmsg接口一般最多只能发送1024个数据包
|
|
|
|
|
return cache_size >= 1024;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-17 18:31:50 +08:00
|
|
|
|
bool FlushPolicy::isFlushAble(bool is_video, bool is_key, uint64_t new_stamp, size_t cache_size) {
|
2020-05-27 11:09:02 +08:00
|
|
|
|
bool flush_flag = false;
|
|
|
|
|
if (is_key && is_video) {
|
|
|
|
|
//遇到关键帧flush掉前面的数据,确保关键帧为该组数据的第一帧,确保GOP缓存有效
|
|
|
|
|
flush_flag = true;
|
2020-04-24 13:51:04 +08:00
|
|
|
|
} else {
|
2020-05-27 11:09:02 +08:00
|
|
|
|
GET_CONFIG(int, mergeWriteMS, General::kMergeWriteMS);
|
|
|
|
|
if (mergeWriteMS <= 0) {
|
|
|
|
|
//关闭了合并写或者合并写阈值小于等于0
|
|
|
|
|
flush_flag = isFlushAble_default(is_video, _last_stamp[is_video], new_stamp, cache_size);
|
|
|
|
|
} else {
|
|
|
|
|
flush_flag = isFlushAble_merge(is_video, _last_stamp[is_video], new_stamp, cache_size, mergeWriteMS);
|
|
|
|
|
}
|
2020-04-24 13:51:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
if (flush_flag) {
|
|
|
|
|
_last_stamp[is_video] = new_stamp;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
}
|
2020-05-27 11:09:02 +08:00
|
|
|
|
return flush_flag;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|