RtmpSession.cpp 20.7 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
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.
xzl committed
9 10 11
 */

#include "RtmpSession.h"
12
#include "Common/config.h"
xzl committed
13
#include "Util/onceToken.h"
xiongziliang committed
14
namespace mediakit {
xzl committed
15

xiongziliang committed
16
RtmpSession::RtmpSession(const Socket::Ptr &sock) : TcpSession(sock) {
17
    DebugP(this);
18
    GET_CONFIG(uint32_t,keep_alive_sec,Rtmp::kKeepAliveSecond);
xiongziliang committed
19
    sock->setSendTimeOutSecond(keep_alive_sec);
20
    //起始接收buffer缓存设置为4K,节省内存
xiongziliang committed
21
    sock->setReadBuffer(std::make_shared<BufferRaw>(4 * 1024));
xzl committed
22 23 24
}

RtmpSession::~RtmpSession() {
25
    DebugP(this);
xzl committed
26 27 28
}

void RtmpSession::onError(const SockException& err) {
xiongziliang committed
29
    bool isPlayer = !_publisher_src;
30
    uint64_t duration = _ticker.createdTime()/1000;
31
    WarnP(this) << (isPlayer ? "RTMP播放器(" : "RTMP推流器(")
xiongziliang committed
32 33 34
                << _media_info._vhost << "/"
                << _media_info._app << "/"
                << _media_info._streamid
35 36
                << ")断开:" << err.what()
                << ",耗时(s):" << duration;
37 38

    //流量统计事件广播
39
    GET_CONFIG(uint32_t,iFlowThreshold,General::kFlowThreshold);
40

xiongziliang committed
41 42
    if(_total_bytes > iFlowThreshold * 1024){
        NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastFlowReport, _media_info, _total_bytes, duration, isPlayer, static_cast<SockInfo &>(*this));
43
    }
xzl committed
44 45 46
}

void RtmpSession::onManager() {
47
    GET_CONFIG(uint32_t,handshake_sec,Rtmp::kHandshakeSecond);
48 49
    GET_CONFIG(uint32_t,keep_alive_sec,Rtmp::kKeepAliveSecond);

50
    if (_ticker.createdTime() > handshake_sec * 1000) {
xiongziliang committed
51
        if (!_ring_reader && !_publisher_src) {
52 53 54
            shutdown(SockException(Err_timeout,"illegal connection"));
        }
    }
xiongziliang committed
55
    if (_publisher_src) {
56 57 58 59 60
        //publisher
        if (_ticker.elapsedTime() > keep_alive_sec * 1000) {
            shutdown(SockException(Err_timeout,"recv data from rtmp pusher timeout"));
        }
    }
xzl committed
61 62
}

xiongziliang committed
63
void RtmpSession::onRecv(const Buffer::Ptr &buf) {
64 65
    _ticker.resetTime();
    try {
xiongziliang committed
66 67 68 69
        _total_bytes += buf->size();
        onParseRtmp(buf->data(), buf->size());
    } catch (exception &ex) {
        shutdown(SockException(Err_shutdown, ex.what()));
70
    }
xzl committed
71 72 73
}

void RtmpSession::onCmd_connect(AMFDecoder &dec) {
74
    auto params = dec.load<AMFValue>();
xiongziliang committed
75
    double amf_ver = 0;
76 77
    AMFValue objectEncoding = params["objectEncoding"];
    if(objectEncoding){
xiongziliang committed
78
        amf_ver = objectEncoding.as_number();
79 80 81 82 83 84 85
    }
    ///////////set chunk size////////////////
    sendChunkSize(60000);
    ////////////window Acknowledgement size/////
    sendAcknowledgementSize(5000000);
    ///////////set peerBandwidth////////////////
    sendPeerBandwidth(5000000);
xiongziliang committed
86

xiongziliang committed
87 88 89
    _media_info._app = params["app"].as_string();
    _tc_url = params["tcUrl"].as_string();
    if(_tc_url.empty()){
90
        //defaultVhost:默认vhost
xiongziliang committed
91
        _tc_url = string(RTMP_SCHEMA) + "://" + DEFAULT_VHOST + "/" + _media_info._app;
92
    }
93 94 95 96 97 98 99 100
    bool ok = true; //(app == APP_NAME);
    AMFValue version(AMF_OBJECT);
    version.set("fmsVer", "FMS/3,0,1,123");
    version.set("capabilities", 31.0);
    AMFValue status(AMF_OBJECT);
    status.set("level", ok ? "status" : "error");
    status.set("code", ok ? "NetConnection.Connect.Success" : "NetConnection.Connect.InvalidApp");
    status.set("description", ok ? "Connection succeeded." : "InvalidApp.");
xiongziliang committed
101
    status.set("objectEncoding", amf_ver);
102 103
    sendReply(ok ? "_result" : "_error", version, status);
    if (!ok) {
xiongziliang committed
104
        throw std::runtime_error("Unsupported application: " + _media_info._app);
105 106 107 108 109
    }

    AMFEncoder invoke;
    invoke << "onBWDone" << 0.0 << nullptr;
    sendResponse(MSG_CMD, invoke.data());
xzl committed
110 111 112
}

void RtmpSession::onCmd_createStream(AMFDecoder &dec) {
113
    sendReply("_result", nullptr, double(STREAM_MEDIA));
xzl committed
114 115 116
}

void RtmpSession::onCmd_publish(AMFDecoder &dec) {
xiongziliang committed
117 118 119 120 121 122
    std::shared_ptr<Ticker> ticker(new Ticker);
    weak_ptr<RtmpSession> weak_self = dynamic_pointer_cast<RtmpSession>(shared_from_this());
    std::shared_ptr<onceToken> pToken(new onceToken(nullptr,[ticker,weak_self](){
        auto strong_self = weak_self.lock();
        if(strong_self){
            DebugP(strong_self.get()) << "publish 回复时间:" << ticker->elapsedTime() << "ms";
123
        }
xiongziliang committed
124
    }));
125
    dec.load<AMFValue>();/* NULL */
xiongziliang committed
126 127
    _media_info.parse(_tc_url + "/" + getStreamId(dec.load<std::string>()));
    _media_info._schema = RTMP_SCHEMA;
128

129
    auto on_res = [this,pToken](const string &err, bool enableHls, bool enableMP4){
130
        auto src = dynamic_pointer_cast<RtmpMediaSource>(MediaSource::find(RTMP_SCHEMA,
xiongziliang committed
131 132 133 134 135
                                                                           _media_info._vhost,
                                                                           _media_info._app,
                                                                           _media_info._streamid));
        bool auth_success = err.empty();
        bool ok = (!src && !_publisher_src && auth_success);
136 137
        AMFValue status(AMF_OBJECT);
        status.set("level", ok ? "status" : "error");
xiongziliang committed
138 139
        status.set("code", ok ? "NetStream.Publish.Start" : (auth_success ? "NetStream.Publish.BadName" : "NetStream.Publish.BadAuth"));
        status.set("description", ok ? "Started publishing stream." : (auth_success ? "Already publishing." : err.data()));
140 141 142
        status.set("clientid", "0");
        sendReply("onStatus", nullptr, status);
        if (!ok) {
xiongziliang committed
143 144 145 146
            string errMsg = StrPrinter << (auth_success ? "already publishing:" : err.data()) << " "
                                       << _media_info._vhost << " "
                                       << _media_info._app << " "
                                       << _media_info._streamid;
xiongziliang committed
147
            shutdown(SockException(Err_shutdown,errMsg));
148 149
            return;
        }
xiongziliang committed
150 151
        _publisher_src.reset(new RtmpMediaSourceImp(_media_info._vhost, _media_info._app, _media_info._streamid));
        _publisher_src->setListener(dynamic_pointer_cast<MediaSourceEvent>(shared_from_this()));
152
        //设置转协议
153
        _publisher_src->setProtocolTranslation(enableHls, enableMP4);
154

155
        //如果是rtmp推流客户端,那么加大TCP接收缓存,这样能提升接收性能
156
        getSock()->setReadBuffer(std::make_shared<BufferRaw>(256 * 1024));
157
        setSocketFlags();
158 159
    };

xiongziliang committed
160
    if(_media_info._app.empty() || _media_info._streamid.empty()){
161
        //不允许莫名其妙的推流url
162
        on_res("rtmp推流url非法", false, false);
163 164 165
        return;
    }

166
    Broadcast::PublishAuthInvoker invoker = [weak_self, on_res, pToken](const string &err, bool enableHls, bool enableMP4) {
xiongziliang committed
167
        auto strongSelf = weak_self.lock();
168
        if (!strongSelf) {
169 170
            return;
        }
171
        strongSelf->async([weak_self, on_res, err, pToken, enableHls, enableMP4]() {
xiongziliang committed
172
            auto strongSelf = weak_self.lock();
173
            if (!strongSelf) {
174 175
                return;
            }
176
            on_res(err, enableHls, enableMP4);
177 178
        });
    };
xiongziliang committed
179
    auto flag = NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastMediaPublish, _media_info, invoker, static_cast<SockInfo &>(*this));
180 181
    if(!flag){
        //该事件无人监听,默认鉴权成功
xiongziliang committed
182 183
        GET_CONFIG(bool,to_hls,General::kPublishToHls);
        GET_CONFIG(bool,to_mp4,General::kPublishToMP4);
184
        on_res("", to_hls, to_mp4);
185
    }
xzl committed
186 187 188
}

void RtmpSession::onCmd_deleteStream(AMFDecoder &dec) {
189 190 191 192 193 194
    AMFValue status(AMF_OBJECT);
    status.set("level", "status");
    status.set("code", "NetStream.Unpublish.Success");
    status.set("description", "Stop publishing.");
    sendReply("onStatus", nullptr, status);
    throw std::runtime_error(StrPrinter << "Stop publishing" << endl);
xzl committed
195 196
}

197
void RtmpSession::sendPlayResponse(const string &err,const RtmpMediaSource::Ptr &src){
xiongziliang committed
198 199
    bool auth_success = err.empty();
    bool ok = (src.operator bool() && auth_success);
200 201 202 203 204 205 206
    if (ok) {
        //stream begin
        sendUserControl(CONTROL_STREAM_BEGIN, STREAM_MEDIA);
    }
    // onStatus(NetStream.Play.Reset)
    AMFValue status(AMF_OBJECT);
    status.set("level", ok ? "status" : "error");
xiongziliang committed
207 208 209
    status.set("code", ok ? "NetStream.Play.Reset" : (auth_success ? "NetStream.Play.StreamNotFound" : "NetStream.Play.BadAuth"));
    status.set("description", ok ? "Resetting and playing." : (auth_success ? "No such stream." : err.data()));
    status.set("details", _media_info._streamid);
210 211 212
    status.set("clientid", "0");
    sendReply("onStatus", nullptr, status);
    if (!ok) {
xiongziliang committed
213 214 215 216 217
        string err_msg = StrPrinter << (auth_success ? "no such stream:" : err.data()) << " "
                                    << _media_info._vhost << " "
                                    << _media_info._app << " "
                                    << _media_info._streamid;
        shutdown(SockException(Err_shutdown, err_msg));
218 219
        return;
    }
xzl committed
220

221 222 223 224 225
    // onStatus(NetStream.Play.Start)
    status.clear();
    status.set("level", "status");
    status.set("code", "NetStream.Play.Start");
    status.set("description", "Started playing.");
xiongziliang committed
226
    status.set("details", _media_info._streamid);
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
    status.set("clientid", "0");
    sendReply("onStatus", nullptr, status);

    // |RtmpSampleAccess(true, true)
    AMFEncoder invoke;
    invoke << "|RtmpSampleAccess" << true << true;
    sendResponse(MSG_DATA, invoke.data());

    //onStatus(NetStream.Data.Start)
    invoke.clear();
    AMFValue obj(AMF_OBJECT);
    obj.set("code", "NetStream.Data.Start");
    invoke << "onStatus" << obj;
    sendResponse(MSG_DATA, invoke.data());

    //onStatus(NetStream.Play.PublishNotify)
    status.clear();
    status.set("level", "status");
    status.set("code", "NetStream.Play.PublishNotify");
    status.set("description", "Now published.");
xiongziliang committed
247
    status.set("details", _media_info._streamid);
248 249 250
    status.set("clientid", "0");
    sendReply("onStatus", nullptr, status);

251 252 253 254 255 256 257 258
    auto &metadata = src->getMetaData();
    if(metadata){
        //在有metadata的情况下才发送metadata
        //其实metadata没什么用,有些推流器不产生metadata
        // onMetaData
        invoke.clear();
        invoke << "onMetaData" << metadata;
        sendResponse(MSG_DATA, invoke.data());
259 260
        auto duration = metadata["duration"];
        if(duration && duration.as_number() > 0){
xiongziliang committed
261 262 263 264
            //这是点播,使用绝对时间戳
            _stamp[0].setPlayBack();
            _stamp[1].setPlayBack();
        }
265 266
    }

267 268

    src->getConfigFrame([&](const RtmpPacket::Ptr &pkt) {
269
        //DebugP(this)<<"send initial frame";
270 271 272
        onSendMedia(pkt);
    });

273
    //音频同步于视频
xiongziliang committed
274
    _stamp[0].syncTo(_stamp[1]);
xiongziliang committed
275
    _ring_reader = src->getRing()->attach(getPoller());
276
    weak_ptr<RtmpSession> weakSelf = dynamic_pointer_cast<RtmpSession>(shared_from_this());
xiongziliang committed
277
    _ring_reader->setReadCB([weakSelf](const RtmpMediaSource::RingDataType &pkt) {
278 279 280 281
        auto strongSelf = weakSelf.lock();
        if (!strongSelf) {
            return;
        }
xiongziliang committed
282 283 284 285 286 287 288 289 290 291 292 293
        if(strongSelf->_paused){
            return;
        }
        int i = 0;
        int size = pkt->size();
        strongSelf->setSendFlushFlag(false);
        pkt->for_each([&](const RtmpPacket::Ptr &rtmp){
            if(++i == size){
                strongSelf->setSendFlushFlag(true);
            }
            strongSelf->onSendMedia(rtmp);
        });
294
    });
xiongziliang committed
295
    _ring_reader->setDetachCB([weakSelf]() {
296 297 298
        auto strongSelf = weakSelf.lock();
        if (!strongSelf) {
            return;
299
        }
xiongziliang committed
300
        strongSelf->shutdown(SockException(Err_shutdown,"rtmp ring buffer detached"));
301
    });
xiongziliang committed
302
    _player_src = src;
303
    if (src->totalReaderCount() == 1) {
304 305
        src->seekTo(0);
    }
306 307
    //提高服务器发送性能
    setSocketFlags();
308
}
309

310 311 312 313 314 315 316 317 318
void RtmpSession::doPlayResponse(const string &err,const std::function<void(bool)> &cb){
    if(!err.empty()){
        //鉴权失败,直接返回播放失败
        sendPlayResponse(err, nullptr);
        cb(false);
        return;
    }

    //鉴权成功,查找媒体源并回复
xiongziliang committed
319 320
    weak_ptr<RtmpSession> weak_self = dynamic_pointer_cast<RtmpSession>(shared_from_this());
    MediaSource::findAsync(_media_info, weak_self.lock(), [weak_self,cb](const MediaSource::Ptr &src){
321
        auto rtmp_src = dynamic_pointer_cast<RtmpMediaSource>(src);
xiongziliang committed
322 323 324
        auto strong_self = weak_self.lock();
        if(strong_self){
            strong_self->sendPlayResponse("", rtmp_src);
325
        }
326
        cb(rtmp_src.operator bool());
327 328 329
    });
}

330
void RtmpSession::doPlay(AMFDecoder &dec){
xiongziliang committed
331 332 333 334 335 336
    std::shared_ptr<Ticker> ticker(new Ticker);
    weak_ptr<RtmpSession> weak_self = dynamic_pointer_cast<RtmpSession>(shared_from_this());
    std::shared_ptr<onceToken> token(new onceToken(nullptr, [ticker,weak_self](){
        auto strongSelf = weak_self.lock();
        if (strongSelf) {
            DebugP(strongSelf.get()) << "play 回复时间:" << ticker->elapsedTime() << "ms";
337 338
        }
    }));
xiongziliang committed
339 340 341
    Broadcast::AuthInvoker invoker = [weak_self,token](const string &err){
        auto strong_self = weak_self.lock();
        if (!strong_self) {
342 343
            return;
        }
xiongziliang committed
344 345 346
        strong_self->async([weak_self, err, token]() {
            auto strong_self = weak_self.lock();
            if (!strong_self) {
347 348
                return;
            }
xiongziliang committed
349
            strong_self->doPlayResponse(err, [token](bool) {});
350 351
        });
    };
352

xiongziliang committed
353
    auto flag = NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastMediaPlayed, _media_info, invoker, static_cast<SockInfo &>(*this));
354 355
    if(!flag){
        //该事件无人监听,默认不鉴权
xiongziliang committed
356
        doPlayResponse("",[token](bool){});
357
    }
358
}
xiongziliang committed
359

360
void RtmpSession::onCmd_play2(AMFDecoder &dec) {
361
    doPlay(dec);
362
}
363 364 365 366 367

string RtmpSession::getStreamId(const string &str){
    string stream_id;
    string params;
    auto pos = str.find('?');
xiongziliang committed
368
    if (pos != string::npos) {
369
        //有url参数
xiongziliang committed
370
        stream_id = str.substr(0, pos);
371 372
        //获取url参数
        params = str.substr(pos + 1);
xiongziliang committed
373
    } else {
374 375 376 377 378
        //没有url参数
        stream_id = str;
    }

    pos = stream_id.find(":");
xiongziliang committed
379
    if (pos != string::npos) {
380 381 382
        //vlc和ffplay在播放 rtmp://127.0.0.1/record/0.mp4时,
        //传过来的url会是rtmp://127.0.0.1/record/mp4:0,
        //我们在这里还原成0.mp4
383
        //实际使用时发现vlc,mpv等会传过来rtmp://127.0.0.1/record/mp4:0.mp4,这里做个判断
xiongziliang committed
384
        auto ext = stream_id.substr(0, pos);
385
        stream_id = stream_id.substr(pos + 1);
xiongziliang committed
386
        if (stream_id.find(ext) == string::npos) {
387 388
            stream_id = stream_id + "." + ext;
        }
389 390
    }

xiongziliang committed
391
    if (params.empty()) {
392 393 394 395 396 397 398 399
        //没有url参数
        return stream_id;
    }

    //有url参数
    return stream_id + '?' + params;
}

400
void RtmpSession::onCmd_play(AMFDecoder &dec) {
401
    dec.load<AMFValue>();/* NULL */
xiongziliang committed
402 403
    _media_info.parse(_tc_url + "/" + getStreamId(dec.load<std::string>()));
    _media_info._schema = RTMP_SCHEMA;
404
    doPlay(dec);
xzl committed
405 406 407
}

void RtmpSession::onCmd_pause(AMFDecoder &dec) {
408 409 410 411 412 413 414 415
    dec.load<AMFValue>();/* NULL */
    bool paused = dec.load<bool>();
    TraceP(this) << paused;
    AMFValue status(AMF_OBJECT);
    status.set("level", "status");
    status.set("code", paused ? "NetStream.Pause.Notify" : "NetStream.Unpause.Notify");
    status.set("description", paused ? "Paused stream." : "Unpaused stream.");
    sendReply("onStatus", nullptr, status);
xiongziliang committed
416 417 418
    //streamBegin
    sendUserControl(paused ? CONTROL_STREAM_EOF : CONTROL_STREAM_BEGIN, STREAM_MEDIA);
    _paused = paused;
xzl committed
419 420 421
}

void RtmpSession::setMetaData(AMFDecoder &dec) {
xiongziliang committed
422
    if (!_publisher_src) {
423 424 425 426 427 428
        throw std::runtime_error("not a publisher");
    }
    std::string type = dec.load<std::string>();
    if (type != "onMetaData") {
        throw std::runtime_error("can only set metadata");
    }
429
    auto metadata = dec.load<AMFValue>();
430
//    dumpMetadata(metadata);
xiongziliang committed
431
    _publisher_src->setMetaData(metadata);
432
    _set_meta_data = true;
xzl committed
433 434 435
}

void RtmpSession::onProcessCmd(AMFDecoder &dec) {
xiongziliang committed
436 437
    typedef void (RtmpSession::*cmd_function)(AMFDecoder &dec);
    static unordered_map<string, cmd_function> s_cmd_functions;
xiongziliang committed
438
    static onceToken token([]() {
xiongziliang committed
439 440 441 442 443 444 445 446 447
        s_cmd_functions.emplace("connect", &RtmpSession::onCmd_connect);
        s_cmd_functions.emplace("createStream", &RtmpSession::onCmd_createStream);
        s_cmd_functions.emplace("publish", &RtmpSession::onCmd_publish);
        s_cmd_functions.emplace("deleteStream", &RtmpSession::onCmd_deleteStream);
        s_cmd_functions.emplace("play", &RtmpSession::onCmd_play);
        s_cmd_functions.emplace("play2", &RtmpSession::onCmd_play2);
        s_cmd_functions.emplace("seek", &RtmpSession::onCmd_seek);
        s_cmd_functions.emplace("pause", &RtmpSession::onCmd_pause);
    });
xiongziliang committed
448 449

    std::string method = dec.load<std::string>();
450 451
    auto it = s_cmd_functions.find(method);
    if (it == s_cmd_functions.end()) {
xiongziliang committed
452
//		TraceP(this) << "can not support cmd:" << method;
453 454
        return;
    }
xiongziliang committed
455
    _recv_req_id = dec.load<double>();
456 457
    auto fun = it->second;
    (this->*fun)(dec);
xzl committed
458 459
}

xiongziliang committed
460 461
void RtmpSession::onRtmpChunk(RtmpPacket &chunk_data) {
    switch (chunk_data.type_id) {
462 463
    case MSG_CMD:
    case MSG_CMD3: {
xiongziliang committed
464
        AMFDecoder dec(chunk_data.buffer, chunk_data.type_id == MSG_CMD3 ? 1 : 0);
465 466
        onProcessCmd(dec);
        break;
xiongziliang committed
467
    }
468 469 470

    case MSG_DATA:
    case MSG_DATA3: {
xiongziliang committed
471
        AMFDecoder dec(chunk_data.buffer, chunk_data.type_id == MSG_CMD3 ? 1 : 0);
472 473 474
        std::string type = dec.load<std::string>();
        if (type == "@setDataFrame") {
            setMetaData(dec);
xiongziliang committed
475
        } else {
xiongziliang committed
476 477
            TraceP(this) << "unknown notify:" << type;
        }
478
        break;
xiongziliang committed
479 480
    }

481 482
    case MSG_AUDIO:
    case MSG_VIDEO: {
xiongziliang committed
483
        if (!_publisher_src) {
484 485
            throw std::runtime_error("Not a rtmp publisher!");
        }
xiongziliang committed
486 487
        GET_CONFIG(bool, rtmp_modify_stamp, Rtmp::kModifyStamp);
        if (rtmp_modify_stamp) {
488
            int64_t dts_out;
xiongziliang committed
489 490
            _stamp[chunk_data.type_id % 2].revise(chunk_data.time_stamp, chunk_data.time_stamp, dts_out, dts_out, true);
            chunk_data.time_stamp = dts_out;
491
        }
492

xiongziliang committed
493
        if (!_set_meta_data && !chunk_data.isCfgFrame()) {
494
            _set_meta_data = true;
xiongziliang committed
495
            _publisher_src->setMetaData(TitleMeta().getMetadata());
496
        }
xiongziliang committed
497
        _publisher_src->onWrite(std::make_shared<RtmpPacket>(std::move(chunk_data)));
498
        break;
xiongziliang committed
499 500
    }

501
    default:
xiongziliang committed
502
        WarnP(this) << "unhandled message:" << (int) chunk_data.type_id << hexdump(chunk_data.buffer.data(), chunk_data.buffer.size());
503 504
        break;
    }
xzl committed
505 506 507 508
}

void RtmpSession::onCmd_seek(AMFDecoder &dec) {
    dec.load<AMFValue>();/* NULL */
509 510 511 512 513 514
    AMFValue status(AMF_OBJECT);
    AMFEncoder invoke;
    status.set("level", "status");
    status.set("code", "NetStream.Seek.Notify");
    status.set("description", "Seeking.");
    sendReply("onStatus", nullptr, status);
xiongziliang committed
515 516 517

    auto milliSeconds = dec.load<AMFValue>().as_number();
    InfoP(this) << "rtmp seekTo(ms):" << milliSeconds;
xiongziliang committed
518 519 520
    auto strong_src = _player_src.lock();
    if (strong_src) {
        strong_src->seekTo(milliSeconds);
xiongziliang committed
521
    }
xzl committed
522 523
}

xiongziliang committed
524
void RtmpSession::onSendMedia(const RtmpPacket::Ptr &pkt) {
525 526
    //rtmp播放器时间戳从零开始
    int64_t dts_out;
xiongziliang committed
527 528
    _stamp[pkt->type_id % 2].revise(pkt->time_stamp, 0, dts_out, dts_out);
    sendRtmp(pkt->type_id, pkt->stream_index, pkt, dts_out, pkt->chunk_id);
xzl committed
529 530
}

531

532 533
bool RtmpSession::close(MediaSource &sender,bool force)  {
    //此回调在其他线程触发
xiongziliang committed
534
    if(!_publisher_src || (!force && _publisher_src->totalReaderCount())){
535 536 537 538 539 540 541
        return false;
    }
    string err = StrPrinter << "close media:" << sender.getSchema() << "/" << sender.getVhost() << "/" << sender.getApp() << "/" << sender.getId() << " " << force;
    safeShutdown(SockException(Err_shutdown,err));
    return true;
}

542
int RtmpSession::totalReaderCount(MediaSource &sender) {
xiongziliang committed
543
    return _publisher_src ? _publisher_src->totalReaderCount() : sender.readerCount();
544 545
}

546
void RtmpSession::setSocketFlags(){
xiongziliang committed
547 548
    GET_CONFIG(int, merge_write_ms, General::kMergeWriteMS);
    if (merge_write_ms > 0) {
549
        //推流模式下,关闭TCP_NODELAY会增加推流端的延时,但是服务器性能将提高
550
        SockUtil::setNoDelay(getSock()->rawFD(), false);
551
        //播放模式下,开启MSG_MORE会增加延时,但是能提高发送性能
xiongziliang committed
552
        setSendFlags(SOCKET_DEFAULE_FLAGS | FLAG_MORE);
553 554
    }
}
555 556

void RtmpSession::dumpMetadata(const AMFValue &metadata) {
xiongziliang committed
557
    if (metadata.type() != AMF_OBJECT && metadata.type() != AMF_ECMA_ARRAY) {
558
        WarnL << "invalid metadata type:" << metadata.type();
xiongziliang committed
559
        return;
560 561
    }
    _StrPrinter printer;
xiongziliang committed
562 563
    metadata.object_for_each([&](const string &key, const AMFValue &val) {
        printer << "\r\n" << key << "\t:" << val.to_string();
564
    });
xiongziliang committed
565
    InfoL << _media_info._vhost << " " << _media_info._app << " " << _media_info._streamid << (string) printer;
566
}
xiongziliang committed
567
} /* namespace mediakit */