RtpSender.cpp 5.69 KB
Newer Older
xiongziliang committed
1
/*
2 3 4 5 6 7 8 9 10
 * 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.
 */

11
#if defined(ENABLE_RTPPROXY)
xiongziliang committed
12
#include "RtpSender.h"
13 14
#include "Rtsp/RtspSession.h"
#include "Thread/WorkThreadPool.h"
xiongziliang committed
15
#include "RtpCache.h"
16 17 18

namespace mediakit{

xiongziliang committed
19
RtpSender::RtpSender(uint32_t ssrc, uint8_t payload_type) {
20
    _poller = EventPollerPool::Instance().getPoller();
xiongziliang committed
21 22 23
    _interface = std::make_shared<RtpCachePS>([this](std::shared_ptr<List<Buffer::Ptr> > list) {
        onFlushRtpList(std::move(list));
    }, ssrc, payload_type);
24 25
}

xiongziliang committed
26
RtpSender::~RtpSender() {
27 28
}

29
void RtpSender::startSend(const string &dst_url, uint16_t dst_port, bool is_udp, uint16_t src_port, const function<void(const SockException &ex)> &cb){
30
    _is_udp = is_udp;
31
    _socket = Socket::createSocket(_poller, false);
32 33
    _dst_url = dst_url;
    _dst_port = dst_port;
34
	_src_port = src_port;
xiongziliang committed
35
    weak_ptr<RtpSender> weak_self = shared_from_this();
36
    if (is_udp) {
37
        _socket->bindUdpSock(src_port);
38 39
        auto poller = _poller;
        WorkThreadPool::Instance().getPoller()->async([cb, dst_url, dst_port, weak_self, poller]() {
40
            struct sockaddr addr;
41
            //切换线程目的是为了dns解析放在后台线程执行
42
            if (!SockUtil::getDomainIP(dst_url.data(), dst_port, addr)) {
43 44 45 46
                poller->async([dst_url, cb]() {
                    //切回自己的线程
                    cb(SockException(Err_dns, StrPrinter << "dns解析域名失败:" << dst_url));
                });
47 48
                return;
            }
49 50 51 52 53 54 55 56 57 58 59

            //dns解析成功
            poller->async([addr, weak_self, cb]() {
                //切回自己的线程
                cb(SockException());
                auto strong_self = weak_self.lock();
                if (strong_self) {
                    strong_self->_socket->setSendPeerAddr(&addr);
                    strong_self->onConnect();
                }
            });
60 61 62 63 64 65 66 67 68
        });
    } else {
        _socket->connect(dst_url, dst_port, [cb, weak_self](const SockException &err) {
            cb(err);
            auto strong_self = weak_self.lock();
            if (strong_self && !err) {
                //tcp连接成功
                strong_self->onConnect();
            }
69
        }, 5.0F, "0.0.0.0", src_port);
70 71 72
    }
}

xiongziliang committed
73
void RtpSender::onConnect(){
74 75 76
    _is_connect = true;
    //加大发送缓存,防止udp丢包之类的问题
    SockUtil::setSendBuf(_socket->rawFD(), 4 * 1024 * 1024);
77
    if (!_is_udp) {
78 79 80 81 82
        //关闭tcp no_delay并开启MSG_MORE, 提高发送性能
        SockUtil::setNoDelay(_socket->rawFD(), false);
        _socket->setSendFlags(SOCKET_DEFAULE_FLAGS | FLAG_MORE);
    }
    //连接建立成功事件
xiongziliang committed
83
    weak_ptr<RtpSender> weak_self = shared_from_this();
84 85 86 87 88 89
    _socket->setOnErr([weak_self](const SockException &err) {
        auto strong_self = weak_self.lock();
        if (strong_self) {
            strong_self->onErr(err);
        }
    });
xiongziliang committed
90
    InfoL << "开始发送 rtp:" << _socket->get_peer_ip() << ":" << _socket->get_peer_port() << ", 是否为udp方式:" << _is_udp;
91 92
}

xiongziliang committed
93 94
void RtpSender::addTrack(const Track::Ptr &track){
    _interface->addTrack(track);
95
}
96

xiongziliang committed
97 98 99 100 101 102
void RtpSender::addTrackCompleted(){
    _interface->addTrackCompleted();
}

void RtpSender::resetTracks(){
    _interface->resetTracks();
103 104 105
}

//此函数在其他线程执行
xiongziliang committed
106 107 108 109 110
void RtpSender::inputFrame(const Frame::Ptr &frame) {
    if (_is_connect) {
        //连接成功后才做实质操作(节省cpu资源)
        _interface->inputFrame(frame);
    }
111 112
}

113
//此函数在其他线程执行
xiongziliang committed
114
void RtpSender::onFlushRtpList(shared_ptr<List<Buffer::Ptr> > rtp_list) {
115 116 117 118 119 120 121 122 123 124
    if(!_is_connect){
        //连接成功后才能发送数据
        return;
    }

    auto is_udp = _is_udp;
    auto socket = _socket;
    _poller->async([rtp_list, is_udp, socket]() {
        int i = 0;
        int size = rtp_list->size();
xiongziliang committed
125
        rtp_list->for_each([&](Buffer::Ptr &packet) {
126 127
            if (is_udp) {
                //udp模式,rtp over tcp前4个字节可以忽略
xiongziliang committed
128
                socket->send(std::make_shared<BufferRtp>(std::move(packet), 4), nullptr, 0, ++i == size);
129 130
            } else {
                //tcp模式, rtp over tcp前2个字节可以忽略,只保留后续rtp长度的2个字节
xiongziliang committed
131
                socket->send(std::make_shared<BufferRtp>(std::move(packet), 2), nullptr, 0, ++i == size);
132 133
            }
        });
134 135 136
    });
}

xiongziliang committed
137
void RtpSender::onErr(const SockException &ex, bool is_connect) {
138 139 140 141 142 143
    _is_connect = false;

    //监听socket断开事件,方便重连
    if (is_connect) {
        WarnL << "重连" << _dst_url << ":" << _dst_port << "失败, 原因为:" << ex.what();
    } else {
xiongziliang committed
144
        WarnL << "停止发送 rtp:" <<  _dst_url << ":" << _dst_port << ", 原因为:" << ex.what();
145 146
    }

xiongziliang committed
147
    weak_ptr<RtpSender> weak_self = shared_from_this();
148 149 150 151 152
    _connect_timer = std::make_shared<Timer>(10.0, [weak_self]() {
        auto strong_self = weak_self.lock();
        if (!strong_self) {
            return false;
        }
153
        strong_self->startSend(strong_self->_dst_url, strong_self->_dst_port, strong_self->_is_udp, strong_self->_src_port, [weak_self](const SockException &ex){
154 155 156 157 158 159 160 161 162 163
            auto strong_self = weak_self.lock();
            if (strong_self && ex) {
                //连接失败且本对象未销毁,那么重试连接
                strong_self->onErr(ex, true);
            }
        });
        return false;
    }, _poller);
}

164 165
}//namespace mediakit
#endif// defined(ENABLE_RTPPROXY)