RtmpPusher.cpp 8.77 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * MIT License
xzl committed
3
 *
xiongziliang committed
4
 * Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
xiongziliang committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 * 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.
xzl committed
25 26 27 28
 */
#include "RtmpPusher.h"
#include "Rtmp/utils.h"
#include "Rtsp/Rtsp.h"
xiongzilaing committed
29 30 31
#include "Util/util.h"
#include "Util/onceToken.h"
#include "Thread/ThreadPool.h"
xiongziliang committed
32
using namespace toolkit;
xiongziliang committed
33
using namespace mediakit::Client;
xzl committed
34

xiongziliang committed
35
namespace mediakit {
xzl committed
36

37 38
static int kSockFlags = SOCKET_DEFAULE_FLAGS | FLAG_MORE;

39
RtmpPusher::RtmpPusher(const EventPoller::Ptr &poller,const RtmpMediaSource::Ptr &src) : TcpClient(poller){
40
	_pMediaSrc=src;
xzl committed
41 42 43 44 45 46 47 48
}

RtmpPusher::~RtmpPusher() {
	teardown();
	DebugL << endl;
}
void RtmpPusher::teardown() {
	if (alive()) {
49 50 51
		_strApp.clear();
		_strStream.clear();
		_strTcUrl.clear();
xzl committed
52
		{
53 54
			lock_guard<recursive_mutex> lck(_mtxOnResultCB);
			_mapOnResultCB.clear();
xzl committed
55
		}
xzl committed
56
        {
57 58
            lock_guard<recursive_mutex> lck(_mtxOnStatusCB);
            _dqOnStatusCB.clear();
xzl committed
59
        }
60
		_pPublishTimer.reset();
xiongziliang committed
61
        reset();
xzl committed
62 63 64 65
        shutdown();
	}
}

xiongziliang committed
66
void RtmpPusher::onPublishResult(const SockException &ex) {
67 68 69 70 71 72 73 74 75 76 77
	if(_pPublishTimer){
		//播放结果回调
		_pPublishTimer.reset();
		if(_onPublished){
			_onPublished(ex);
		}
	} else {
		//播放成功后异常断开回调
		if(_onShutdown){
			_onShutdown(ex);
		}
xiongziliang committed
78 79 80 81 82 83 84
	}

	if(ex){
		teardown();
	}
}

xiongziliang committed
85
void RtmpPusher::publish(const string &strUrl)  {
xzl committed
86
	teardown();
xiongziliang committed
87 88 89
	string strHost = FindField(strUrl.data(), "://", "/");
	_strApp = 	FindField(strUrl.data(), (strHost + "/").data(), "/");
    _strStream = FindField(strUrl.data(), (strHost + "/" + _strApp + "/").data(), NULL);
90
    _strTcUrl = string("rtmp://") + strHost + "/" + _strApp;
xzl committed
91

92
    if (!_strApp.size() || !_strStream.size()) {
xiongziliang committed
93
        onPublishResult(SockException(Err_other,"rtmp url非法"));
xzl committed
94 95
        return;
    }
96
	DebugL << strHost << " " << _strApp << " " << _strStream;
xzl committed
97

xiongziliang committed
98
	auto iPort = atoi(FindField(strHost.data(), ":", NULL).data());
xzl committed
99 100 101 102 103
	if (iPort <= 0) {
        //rtmp 默认端口1935
		iPort = 1935;
	} else {
        //服务器域名
xiongziliang committed
104
		strHost = FindField(strHost.data(), NULL, ":");
xzl committed
105
	}
xiongziliang committed
106 107

    weak_ptr<RtmpPusher> weakSelf = dynamic_pointer_cast<RtmpPusher>(shared_from_this());
xiongziliang committed
108
    float playTimeOutSec = (*this)[kTimeoutMS].as<int>() / 1000.0;
xiongziliang committed
109 110 111 112 113 114 115 116 117 118 119 120 121
    _pPublishTimer.reset( new Timer(playTimeOutSec,  [weakSelf]() {
        auto strongSelf=weakSelf.lock();
        if(!strongSelf) {
            return false;
        }
        strongSelf->onPublishResult(SockException(Err_timeout,"publish rtmp timeout"));
        return false;
    },getPoller()));

    if(!(*this)[kNetAdapter].empty()){
        setNetAdapter((*this)[kNetAdapter]);
    }

xzl committed
122 123 124 125
	startConnect(strHost, iPort);
}

void RtmpPusher::onErr(const SockException &ex){
xiongziliang committed
126
	onPublishResult(ex);
xzl committed
127 128
}
void RtmpPusher::onConnect(const SockException &err){
xiongziliang committed
129
	if(err) {
xiongziliang committed
130
		onPublishResult(err);
xzl committed
131 132
		return;
	}
133 134 135
	//推流器不需要多大的接收缓存,节省内存占用
	_sock->setReadBuffer(std::make_shared<BufferRaw>(1 * 1024));

xzl committed
136 137 138 139 140 141
	weak_ptr<RtmpPusher> weakSelf = dynamic_pointer_cast<RtmpPusher>(shared_from_this());
	startClientSession([weakSelf](){
        auto strongSelf=weakSelf.lock();
        if(!strongSelf) {
            return;
        }
xiongziliang committed
142 143

        strongSelf->sendChunkSize(60000);
xzl committed
144 145 146
        strongSelf->send_connect();
	});
}
147
void RtmpPusher::onRecv(const Buffer::Ptr &pBuf){
xzl committed
148 149 150 151
	try {
		onParseRtmp(pBuf->data(), pBuf->size());
	} catch (exception &e) {
		SockException ex(Err_other, e.what());
xiongziliang committed
152
		onPublishResult(ex);
xzl committed
153 154 155 156 157 158
	}
}


inline void RtmpPusher::send_connect() {
	AMFValue obj(AMF_OBJECT);
159
	obj.set("app", _strApp);
xzl committed
160
	obj.set("type", "nonprivate");
161 162
	obj.set("tcUrl", _strTcUrl);
	obj.set("swfUrl", _strTcUrl);
xzl committed
163 164 165 166 167 168 169 170
	sendInvoke("connect", obj);
	addOnResultCB([this](AMFDecoder &dec){
		//TraceL << "connect result";
		dec.load<AMFValue>();
		auto val = dec.load<AMFValue>();
		auto level = val["level"].as_string();
		auto code = val["code"].as_string();
		if(level != "status"){
171
			throw std::runtime_error(StrPrinter <<"connect 失败:" << level << " " << code << endl);
xzl committed
172 173 174 175 176 177 178 179 180 181 182
		}
		send_createStream();
	});
}

inline void RtmpPusher::send_createStream() {
	AMFValue obj(AMF_NULL);
	sendInvoke("createStream", obj);
	addOnResultCB([this](AMFDecoder &dec){
		//TraceL << "createStream result";
		dec.load<AMFValue>();
183
		_ui32StreamId = dec.load<int>();
xzl committed
184 185 186 187 188
		send_publish();
	});
}
inline void RtmpPusher::send_publish() {
	AMFEncoder enc;
189
	enc << "publish" << ++_iReqID << nullptr << _strStream << _strApp ;
xzl committed
190 191 192 193 194 195
	sendRequest(MSG_CMD, enc.data());

	addOnStatusCB([this](AMFValue &val) {
		auto level = val["level"].as_string();
		auto code = val["code"].as_string();
		if(level != "status") {
196
			throw std::runtime_error(StrPrinter <<"publish 失败:" << level << " " << code << endl);
xzl committed
197 198 199 200 201 202 203
		}
		//start send media
		send_metaData();
	});
}

inline void RtmpPusher::send_metaData(){
204
    auto src = _pMediaSrc.lock();
xzl committed
205
    if (!src) {
206
        throw std::runtime_error("the media source was released");
xzl committed
207
    }
208

xzl committed
209 210 211 212
    AMFEncoder enc;
    enc << "@setDataFrame" << "onMetaData" <<  src->getMetaData();
    sendRequest(MSG_DATA, enc.data());
    
xiongziliang committed
213
    src->getConfigFrame([&](const RtmpPacket::Ptr &pkt){
214
        sendRtmp(pkt->typeId, _ui32StreamId, pkt, pkt->timeStamp, pkt->chunkId );
xzl committed
215 216
    });
    
217
    _pRtmpReader = src->getRing()->attach(getPoller());
xzl committed
218
    weak_ptr<RtmpPusher> weakSelf = dynamic_pointer_cast<RtmpPusher>(shared_from_this());
219
    _pRtmpReader->setReadCB([weakSelf](const RtmpPacket::Ptr &pkt){
xzl committed
220 221 222 223
    	auto strongSelf = weakSelf.lock();
    	if(!strongSelf) {
    		return;
    	}
224
    	strongSelf->sendRtmp(pkt->typeId, strongSelf->_ui32StreamId, pkt, pkt->timeStamp, pkt->chunkId);
xzl committed
225
    });
226
    _pRtmpReader->setDetachCB([weakSelf](){
xzl committed
227 228
        auto strongSelf = weakSelf.lock();
        if(strongSelf){
xiongziliang committed
229
            strongSelf->onPublishResult(SockException(Err_other,"媒体源被释放"));
xzl committed
230 231
        }
    });
xiongziliang committed
232
    onPublishResult(SockException(Err_success,"success"));
233 234 235
	//提高发送性能
	(*this) << SocketFlags(kSockFlags);
	SockUtil::setNoDelay(_sock->rawFD(),false);
xzl committed
236 237 238
}
void RtmpPusher::onCmd_result(AMFDecoder &dec){
	auto iReqId = dec.load<int>();
239 240 241
	lock_guard<recursive_mutex> lck(_mtxOnResultCB);
	auto it = _mapOnResultCB.find(iReqId);
	if(it != _mapOnResultCB.end()){
xzl committed
242
		it->second(dec);
243
		_mapOnResultCB.erase(it);
xzl committed
244 245 246 247 248 249 250 251 252 253 254 255 256
	}else{
		WarnL << "unhandled _result";
	}
}
void RtmpPusher::onCmd_onStatus(AMFDecoder &dec) {
	AMFValue val;
	while(true){
		val = dec.load<AMFValue>();
		if(val.type() == AMF_OBJECT){
			break;
		}
	}
	if(val.type() != AMF_OBJECT){
257
		throw std::runtime_error("onStatus:the result object was not found");
xzl committed
258 259
	}

260 261 262 263
    lock_guard<recursive_mutex> lck(_mtxOnStatusCB);
	if(_dqOnStatusCB.size()){
		_dqOnStatusCB.front()(val);
		_dqOnStatusCB.pop_front();
xzl committed
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	}else{
		auto level = val["level"];
		auto code = val["code"].as_string();
		if(level.type() == AMF_STRING){
			if(level.as_string() != "status"){
				throw std::runtime_error(StrPrinter <<"onStatus 失败:" << level.as_string() << " " << code << endl);
			}
		}
    }
}

void RtmpPusher::onRtmpChunk(RtmpPacket &chunkData) {
	switch (chunkData.typeId) {
		case MSG_CMD:
		case MSG_CMD3: {
279 280 281 282 283 284 285 286
			typedef void (RtmpPusher::*rtmpCMDHandle)(AMFDecoder &dec);
			static unordered_map<string, rtmpCMDHandle> g_mapCmd;
			static onceToken token([]() {
				g_mapCmd.emplace("_error",&RtmpPusher::onCmd_result);
				g_mapCmd.emplace("_result",&RtmpPusher::onCmd_result);
				g_mapCmd.emplace("onStatus",&RtmpPusher::onCmd_onStatus);
			}, []() {});

xzl committed
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
			AMFDecoder dec(chunkData.strBuf, 0);
			std::string type = dec.load<std::string>();
			auto it = g_mapCmd.find(type);
			if(it != g_mapCmd.end()){
				auto fun = it->second;
				(this->*fun)(dec);
			}else{
				WarnL << "can not support cmd:" << type;
			}
		}
			break;
		default:
			//WarnL << "unhandled message:" << (int) chunkData.typeId << hexdump(chunkData.strBuf.data(), chunkData.strBuf.size());
			break;
		}
}


xiongziliang committed
305
} /* namespace mediakit */
xzl committed
306