HlsMediaSource.h 3.06 KB
Newer Older
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * MIT License
 *
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
 *
 * 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.
 */
26 27
#ifndef ZLMEDIAKIT_HLSMEDIASOURCE_H
#define ZLMEDIAKIT_HLSMEDIASOURCE_H
28

29
#include <atomic>
30
#include "Util/TimeTicker.h"
31 32 33
#include "Common/MediaSource.h"
namespace mediakit{

34
class HlsMediaSource : public MediaSource {
35 36
public:
    friend class HlsCookieData;
37
    typedef RingBuffer<string> RingType;
38
    typedef std::shared_ptr<HlsMediaSource> Ptr;
xiongziliang committed
39
    HlsMediaSource(const string &vhost, const string &app, const string &stream_id) : MediaSource(HLS_SCHEMA, vhost, app, stream_id){
40
        _readerCount = 0;
41
        _ring = std::make_shared<RingType>();
42 43 44 45 46
    }

    virtual ~HlsMediaSource() = default;

    /**
47 48 49 50 51 52 53
	 * 	获取媒体源的环形缓冲
	 */
    const RingType::Ptr &getRing() const {
        return _ring;
    }

    /**
54 55 56 57 58 59
	 * 获取播放器个数
	 * @return
	 */
    int readerCount() override {
        return _readerCount.load();
    }
60 61

    /**
62
     * 注册hls
63
     */
64 65 66 67 68 69
    void registHls(){
        if(!_registed){
            regist();
            _registed = true;
        }
    }
70

71 72 73 74 75
private:
    /**
     * 修改观看者个数
     * @param add 添加海思删除
     */
76
    void modifyReaderCount(bool add) {
77 78 79 80
        if (add) {
            ++_readerCount;
            return;
        }
81

82 83 84 85 86 87 88
        if (--_readerCount == 0 && totalReaderCount() == 0) {
            onNoneReader();
        }
    }
private:
    atomic_int _readerCount;
    bool _registed = false;
89 90 91 92 93
    RingType::Ptr _ring;
};

class HlsCookieData{
public:
94
    typedef std::shared_ptr<HlsCookieData> Ptr;
95 96 97 98 99 100 101 102 103 104 105 106
    HlsCookieData(const MediaInfo &info);
    ~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;
    HlsMediaSource::RingType::RingReader::Ptr _ring_reader;
107 108
};

109

110
}//namespace mediakit
111
#endif //ZLMEDIAKIT_HLSMEDIASOURCE_H