HlsMediaSource.h 2.31 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
9
 */
xiongziliang committed
10

11 12
#ifndef ZLMEDIAKIT_HLSMEDIASOURCE_H
#define ZLMEDIAKIT_HLSMEDIASOURCE_H
13

14
#include <atomic>
15
#include "Util/TimeTicker.h"
16 17 18
#include "Common/MediaSource.h"
namespace mediakit{

19
class HlsMediaSource : public MediaSource {
20 21
public:
    friend class HlsCookieData;
22
    typedef RingBuffer<string> RingType;
23
    typedef std::shared_ptr<HlsMediaSource> Ptr;
xiongziliang committed
24
    HlsMediaSource(const string &vhost, const string &app, const string &stream_id) : MediaSource(HLS_SCHEMA, vhost, app, stream_id){
25
        _readerCount = 0;
26
        _ring = std::make_shared<RingType>();
27 28 29 30 31
    }

    virtual ~HlsMediaSource() = default;

    /**
32 33
     * 	获取媒体源的环形缓冲
     */
34 35 36 37 38
    const RingType::Ptr &getRing() const {
        return _ring;
    }

    /**
39 40 41
     * 获取播放器个数
     * @return
     */
42 43 44
    int readerCount() override {
        return _readerCount.load();
    }
45 46

    /**
47
     * 注册hls
48
     */
49 50 51 52 53 54
    void registHls(){
        if(!_registed){
            regist();
            _registed = true;
        }
    }
55

56 57 58 59 60
private:
    /**
     * 修改观看者个数
     * @param add 添加海思删除
     */
61
    void modifyReaderCount(bool add) {
62 63 64 65
        if (add) {
            ++_readerCount;
            return;
        }
66

67
        if (--_readerCount == 0) {
68 69 70 71 72 73
            onNoneReader();
        }
    }
private:
    atomic_int _readerCount;
    bool _registed = false;
74 75 76 77 78
    RingType::Ptr _ring;
};

class HlsCookieData{
public:
79
    typedef std::shared_ptr<HlsCookieData> Ptr;
80
    HlsCookieData(const MediaInfo &info, const std::shared_ptr<SockInfo> &sock_info);
81 82 83 84 85 86 87 88 89 90
    ~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;
91
    std::shared_ptr<SockInfo> _sock_info;
92
    HlsMediaSource::RingType::RingReader::Ptr _ring_reader;
93 94
};

95

96
}//namespace mediakit
97
#endif //ZLMEDIAKIT_HLSMEDIASOURCE_H