MediaSource.h 6.79 KB
Newer Older
1
/*
2 3
 * MIT License
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 *
 * 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"
#include "Util/logger.h"
#include "Util/TimeTicker.h"
#include "Util/NoticeCenter.h"
#include "Rtsp/Rtsp.h"

using namespace std;
xiongziliang committed
43
using namespace toolkit;
44

45 46 47 48
namespace toolkit{
    class TcpSession;
}//namespace toolkit

xiongziliang committed
49
namespace mediakit {
50

51 52
class MediaSource;
class MediaSourceEvent{
53 54 55 56
public:
    MediaSourceEvent(){};
    virtual ~MediaSourceEvent(){};
public:
xiongziliang committed
57
    virtual bool seekTo(MediaSource &sender,uint32_t ui32Stamp){
58
        //拖动进度条
59 60
        return false;
    }
61

xiongziliang committed
62
    virtual bool close(MediaSource &sender,bool force) {
63 64 65
        //通知其停止推流
        return false;
    }
66

xiongziliang committed
67
    virtual void onNoneReader(MediaSource &sender);
68
};
69 70

class MediaInfo{
71 72 73 74 75 76 77 78 79 80
public:
    MediaInfo(){}
    MediaInfo(const string &url){
        parse(url);
    }
    ~MediaInfo(){}

    void parse(const string &url);

    string &operator[](const string &key){
81
        return _params[key];
82 83
    }
public:
84 85 86 87 88 89 90
    string _schema;
    string _host;
    string _port;
    string _vhost;
    string _app;
    string _streamid;
    StrCaseMap _params;
91
    string _param_strs;
92 93 94 95 96 97 98 99 100 101 102 103 104 105
};

class MediaSource: public enable_shared_from_this<MediaSource> {
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;

    MediaSource(const string &strSchema,
                const string &strVhost,
                const string &strApp,
                const string &strId) :
106 107 108
            _strSchema(strSchema),
            _strApp(strApp),
            _strId(strId) {
109
        if(strVhost.empty()){
110
            _strVhost = DEFAULT_VHOST;
111
        }else{
112
            _strVhost = strVhost;
113 114 115 116 117 118 119 120 121 122 123 124
        }
    }
    virtual ~MediaSource() {
        unregist();
    }

    static Ptr find(const string &schema,
                    const string &vhost,
                    const string &app,
                    const string &id,
                    bool bMake = true) ;

125 126 127 128 129
    static void findAsync(const MediaInfo &info,
                          const std::shared_ptr<TcpSession> &session,
                          bool retry,
                          const function<void(const MediaSource::Ptr &src)> &cb);

130
    const string& getSchema() const {
131
        return _strSchema;
132 133
    }
    const string& getVhost() const {
134
        return _strVhost;
135 136 137
    }
    const string& getApp() const {
        //获取该源的id
138
        return _strApp;
139 140
    }
    const string& getId() const {
141
        return _strId;
142 143 144
    }

    bool seekTo(uint32_t ui32Stamp) {
145
        auto listener = _listener.lock();
146 147 148
        if(!listener){
            return false;
        }
xiongziliang committed
149
        return listener->seekTo(*this,ui32Stamp);
150 151
    }

152 153
    virtual uint32_t getTimeStamp(TrackType trackType) = 0;

154
    bool close(bool force) {
155
        auto listener = _listener.lock();
156 157 158
        if(!listener){
            return false;
        }
xiongziliang committed
159
        return listener->close(*this,force);
160
    }
161
    virtual void setListener(const std::weak_ptr<MediaSourceEvent> &listener){
162
        _listener = listener;
163
    }
164 165 166 167 168 169 170 171 172 173 174 175 176 177

    template <typename FUN>
    static void for_each_media(FUN && fun){
        lock_guard<recursive_mutex> lock(g_mtxMediaSrc);
        for (auto &pr0 : g_mapMediaSrc){
            for(auto &pr1 : pr0.second){
                for(auto &pr2 : pr1.second){
                    for(auto &pr3 : pr2.second){
                        fun(pr0.first,pr1.first,pr2.first,pr3.first,pr3.second.lock());
                    }
                }
            }
        }
    }
178

179
    virtual int readerCount() = 0;
180
protected:
181
    void regist() ;
182
    bool unregist() ;
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
private:
        template <typename FUN>
        static bool searchMedia(const string &schema,
                                const string &vhost,
                                const string &app,
                                const string &id,
                                FUN &&fun){
        auto it0 = g_mapMediaSrc.find(schema);
        if (it0 == g_mapMediaSrc.end()) {
            //未找到协议
            return false;
        }
        auto it1 = it0->second.find(vhost);
        if(it1 == it0->second.end()){
            //未找到vhost
            return false;
        }
        auto it2 = it1->second.find(app);
        if(it2 == it1->second.end()){
            //未找到app
            return false;
        }
        auto it3 = it2->second.find(id);
        if(it3 == it2->second.end()){
            //未找到streamId
            return false;
        }
        return fun(it0,it1,it2,it3);
    }
    template <typename IT0,typename IT1,typename IT2>
    static void eraseIfEmpty(IT0 it0,IT1 it1,IT2 it2){
        if(it2->second.empty()){
            it1->second.erase(it2);
            if(it1->second.empty()){
                it0->second.erase(it1);
                if(it0->second.empty()){
                    g_mapMediaSrc.erase(it0);
                }
            }
        }
    };
224

225 226
    void unregisted();
protected:
227
    std::weak_ptr<MediaSourceEvent> _listener;
228
private:
229 230 231 232
    string _strSchema;//协议类型
    string _strVhost; //vhost
    string _strApp; //媒体app
    string _strId; //媒体id
233 234 235 236
    static SchemaVhostAppStreamMap g_mapMediaSrc; //静态的媒体源表
    static recursive_mutex g_mtxMediaSrc; //访问静态的媒体源表的互斥锁
};

xiongziliang committed
237
} /* namespace mediakit */
238 239 240


#endif //ZLMEDIAKIT_MEDIASOURCE_H