2018-03-20 11:28:13 +08:00
|
|
|
|
/*
|
2018-02-02 18:19:35 +08:00
|
|
|
|
* MIT License
|
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2018-02-02 18:19:35 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_MEDIASOURCE_H
|
|
|
|
|
#define ZLMEDIAKIT_MEDIASOURCE_H
|
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <functional>
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
#include "Common/config.h"
|
2019-06-28 16:48:02 +08:00
|
|
|
|
#include "Common/Parser.h"
|
2018-02-02 18:19:35 +08:00
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Util/NoticeCenter.h"
|
2019-06-28 16:48:02 +08:00
|
|
|
|
#include "Extension/Track.h"
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2019-05-27 22:32:07 +08:00
|
|
|
|
namespace toolkit{
|
|
|
|
|
class TcpSession;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}// namespace toolkit
|
2019-05-27 22:32:07 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2019-05-27 18:39:43 +08:00
|
|
|
|
class MediaSource;
|
|
|
|
|
class MediaSourceEvent{
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
|
|
|
|
MediaSourceEvent(){};
|
|
|
|
|
virtual ~MediaSourceEvent(){};
|
2019-12-03 16:10:02 +08:00
|
|
|
|
|
|
|
|
|
// 通知拖动进度条
|
2019-05-29 18:08:50 +08:00
|
|
|
|
virtual bool seekTo(MediaSource &sender,uint32_t ui32Stamp){
|
2018-02-02 18:19:35 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-05-27 16:09:29 +08:00
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 通知其停止推流
|
2019-05-29 18:08:50 +08:00
|
|
|
|
virtual bool close(MediaSource &sender,bool force) {
|
2018-02-06 10:56:58 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2019-05-27 16:09:29 +08:00
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 通知无人观看
|
2019-05-29 18:08:50 +08:00
|
|
|
|
virtual void onNoneReader(MediaSource &sender);
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
2019-05-27 18:39:43 +08:00
|
|
|
|
|
|
|
|
|
class MediaInfo{
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
|
|
|
|
MediaInfo(){}
|
|
|
|
|
MediaInfo(const string &url){
|
|
|
|
|
parse(url);
|
|
|
|
|
}
|
|
|
|
|
~MediaInfo(){}
|
|
|
|
|
|
|
|
|
|
void parse(const string &url);
|
|
|
|
|
|
|
|
|
|
string &operator[](const string &key){
|
2018-10-24 15:43:52 +08:00
|
|
|
|
return _params[key];
|
2018-02-02 18:19:35 +08:00
|
|
|
|
}
|
|
|
|
|
public:
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _schema;
|
|
|
|
|
string _host;
|
|
|
|
|
string _port;
|
|
|
|
|
string _vhost;
|
|
|
|
|
string _app;
|
|
|
|
|
string _streamid;
|
|
|
|
|
StrCaseMap _params;
|
2018-10-25 17:39:19 +08:00
|
|
|
|
string _param_strs;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 媒体源,任何rtsp/rtmp的直播流都源自该对象
|
|
|
|
|
*/
|
2019-12-03 12:32:57 +08:00
|
|
|
|
class MediaSource: public TrackSource, public enable_shared_from_this<MediaSource> {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<MediaSource> Ptr;
|
|
|
|
|
typedef unordered_map<string, weak_ptr<MediaSource> > StreamMap;
|
|
|
|
|
typedef unordered_map<string, StreamMap > AppStreamMap;
|
|
|
|
|
typedef unordered_map<string, AppStreamMap > VhostAppStreamMap;
|
|
|
|
|
typedef unordered_map<string, VhostAppStreamMap > SchemaVhostAppStreamMap;
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
MediaSource(const string &strSchema, const string &strVhost, const string &strApp, const string &strId) ;
|
|
|
|
|
virtual ~MediaSource() ;
|
|
|
|
|
|
|
|
|
|
// 获取协议类型
|
|
|
|
|
const string& getSchema() const;
|
|
|
|
|
// 虚拟主机
|
|
|
|
|
const string& getVhost() const;
|
|
|
|
|
// 应用名
|
|
|
|
|
const string& getApp() const;
|
|
|
|
|
// 流id
|
|
|
|
|
const string& getId() const;
|
|
|
|
|
// 获取所有Track
|
|
|
|
|
vector<Track::Ptr> getTracks(bool trackReady = true) const override;
|
|
|
|
|
// 获取监听者
|
|
|
|
|
const std::weak_ptr<MediaSourceEvent>& getListener() const;
|
|
|
|
|
|
|
|
|
|
// 设置TrackSource
|
|
|
|
|
void setTrackSource(const std::weak_ptr<TrackSource> &track_src);
|
|
|
|
|
// 设置监听者
|
|
|
|
|
virtual void setListener(const std::weak_ptr<MediaSourceEvent> &listener);
|
|
|
|
|
// 获取观看者个数
|
|
|
|
|
virtual int readerCount() = 0;
|
|
|
|
|
// 获取流当前时间戳
|
2018-10-26 15:09:08 +08:00
|
|
|
|
virtual uint32_t getTimeStamp(TrackType trackType) = 0;
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 拖动进度条
|
|
|
|
|
bool seekTo(uint32_t ui32Stamp);
|
|
|
|
|
// 关闭该流
|
|
|
|
|
bool close(bool force);
|
|
|
|
|
// 该流无人观看
|
|
|
|
|
void onNoneReader();
|
2019-11-18 12:07:11 +08:00
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 同步查找流
|
|
|
|
|
static Ptr find(const string &schema, const string &vhost, const string &app, const string &id, bool bMake = true) ;
|
|
|
|
|
// 异步查找流
|
|
|
|
|
static void findAsync(const MediaInfo &info, const std::shared_ptr<TcpSession> &session, const function<void(const Ptr &src)> &cb);
|
|
|
|
|
// 遍历所有流
|
|
|
|
|
static void for_each_media(const function<void(const Ptr &src)> &cb);
|
2018-08-31 14:13:00 +08:00
|
|
|
|
|
|
|
|
|
protected:
|
2019-03-13 20:12:34 +08:00
|
|
|
|
void regist() ;
|
2018-08-31 14:13:00 +08:00
|
|
|
|
bool unregist() ;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
void unregisted();
|
2019-12-03 16:10:02 +08:00
|
|
|
|
|
2018-02-02 18:19:35 +08:00
|
|
|
|
private:
|
2019-12-03 16:10:02 +08:00
|
|
|
|
string _strSchema;
|
|
|
|
|
string _strVhost;
|
|
|
|
|
string _strApp;
|
|
|
|
|
string _strId;
|
|
|
|
|
std::weak_ptr<MediaSourceEvent> _listener;
|
|
|
|
|
weak_ptr<TrackSource> _track_source;
|
|
|
|
|
static SchemaVhostAppStreamMap g_mapMediaSrc;
|
|
|
|
|
static recursive_mutex g_mtxMediaSrc;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //ZLMEDIAKIT_MEDIASOURCE_H
|