MediaPusher.h 1.37 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2 3 4 5 6 7 8 9
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * 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.
 */
xiongziliang committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

#ifndef SRC_PUSHER_MEDIAPUSHER_H_
#define SRC_PUSHER_MEDIAPUSHER_H_

#include <memory>
#include <string>
#include "PusherBase.h"
#include "Thread/TaskExecutor.h"
using namespace toolkit;

namespace mediakit {

class MediaPusher : public PusherImp<PusherBase,PusherBase> {
public:
    typedef std::shared_ptr<MediaPusher> Ptr;

    MediaPusher(const string &schema,
27 28 29
                const string &vhost,
                const string &app,
                const string &stream,
30
                const EventPoller::Ptr &poller = nullptr);
xiongziliang committed
31

32 33
    MediaPusher(const MediaSource::Ptr &src,
                const EventPoller::Ptr &poller = nullptr);
xiongziliang committed
34 35

    virtual ~MediaPusher();
36 37

    void publish(const string &url) override;
xiongziliang committed
38
    EventPoller::Ptr getPoller();
39 40
    void setOnCreateSocket(Socket::onCreateSocket cb);

xiongziliang committed
41
private:
42
    std::weak_ptr<MediaSource> _src;
43
    EventPoller::Ptr _poller;
44
    Socket::onCreateSocket _on_create_socket;
xiongziliang committed
45 46 47 48 49
};

} /* namespace mediakit */

#endif /* SRC_PUSHER_MEDIAPUSHER_H_ */