2021-05-31 05:42:20 +00:00
|
|
|
//
|
2021-07-08 06:30:47 +00:00
|
|
|
// Copyright (c) 2013-2021 The SRS Authors
|
2021-05-31 05:42:20 +00:00
|
|
|
//
|
2022-01-13 10:40:17 +00:00
|
|
|
// SPDX-License-Identifier: MIT or MulanPSL-2.0
|
2021-05-31 05:42:20 +00:00
|
|
|
//
|
2013-11-23 03:36:07 +00:00
|
|
|
|
2014-03-27 04:14:04 +00:00
|
|
|
#ifndef SRS_APP_RTMP_CONN_HPP
|
|
|
|
#define SRS_APP_RTMP_CONN_HPP
|
2013-11-23 03:36:07 +00:00
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2015-09-24 10:33:07 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#include <srs_app_st.hpp>
|
|
|
|
#include <srs_app_conn.hpp>
|
|
|
|
#include <srs_app_reload.hpp>
|
2022-06-09 12:11:52 +00:00
|
|
|
#include <srs_protocol_rtmp_stack.hpp>
|
2022-06-09 11:59:51 +00:00
|
|
|
#include <srs_protocol_rtmp_conn.hpp>
|
2013-11-23 03:36:07 +00:00
|
|
|
|
2015-05-03 15:34:59 +00:00
|
|
|
class SrsServer;
|
2014-03-02 05:54:40 +00:00
|
|
|
class SrsRtmpServer;
|
2013-11-23 03:36:07 +00:00
|
|
|
class SrsRequest;
|
|
|
|
class SrsResponse;
|
2021-05-16 08:14:00 +00:00
|
|
|
class SrsLiveSource;
|
2013-11-23 03:36:07 +00:00
|
|
|
class SrsRefer;
|
2021-05-16 08:14:00 +00:00
|
|
|
class SrsLiveConsumer;
|
2014-12-05 15:03:52 +00:00
|
|
|
class SrsCommonMessage;
|
2014-07-26 12:08:37 +00:00
|
|
|
class SrsStSocket;
|
2013-12-07 14:06:53 +00:00
|
|
|
class SrsHttpHooks;
|
2013-12-22 09:28:29 +00:00
|
|
|
class SrsBandwidth;
|
2014-05-12 09:27:50 +00:00
|
|
|
class SrsKbps;
|
2014-06-21 04:39:04 +00:00
|
|
|
class SrsRtmpClient;
|
2014-06-22 12:01:25 +00:00
|
|
|
class SrsSharedPtrMessage;
|
2014-12-01 14:23:05 +00:00
|
|
|
class SrsQueueRecvThread;
|
2014-12-01 15:38:51 +00:00
|
|
|
class SrsPublishRecvThread;
|
2015-01-02 08:02:13 +00:00
|
|
|
class SrsSecurity;
|
2015-06-09 06:38:05 +00:00
|
|
|
class ISrsWakable;
|
2015-10-14 06:37:24 +00:00
|
|
|
class SrsCommonMessage;
|
|
|
|
class SrsPacket;
|
2013-11-23 03:36:07 +00:00
|
|
|
|
2019-04-30 00:24:52 +00:00
|
|
|
// The simple rtmp client for SRS.
|
2017-03-26 05:40:39 +00:00
|
|
|
class SrsSimpleRtmpClient : public SrsBasicRtmpClient
|
2015-10-14 03:16:50 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-04-22 00:03:12 +00:00
|
|
|
SrsSimpleRtmpClient(std::string u, srs_utime_t ctm, srs_utime_t stm);
|
2015-10-14 03:16:50 +00:00
|
|
|
virtual ~SrsSimpleRtmpClient();
|
2017-03-26 05:40:39 +00:00
|
|
|
protected:
|
2018-01-01 11:39:57 +00:00
|
|
|
virtual srs_error_t connect_app();
|
2015-10-14 03:16:50 +00:00
|
|
|
};
|
|
|
|
|
2019-04-30 00:24:52 +00:00
|
|
|
// Some information of client.
|
2017-01-23 09:12:04 +00:00
|
|
|
class SrsClientInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// The type of client, play or publish.
|
|
|
|
SrsRtmpConnType type;
|
|
|
|
// Whether the client connected at the edge server.
|
|
|
|
bool edge;
|
|
|
|
// Original request object from client.
|
|
|
|
SrsRequest* req;
|
|
|
|
// Response object to client.
|
|
|
|
SrsResponse* res;
|
|
|
|
public:
|
|
|
|
SrsClientInfo();
|
|
|
|
virtual ~SrsClientInfo();
|
|
|
|
};
|
|
|
|
|
2019-04-30 00:24:52 +00:00
|
|
|
// The client provides the main logic control for RTMP clients.
|
2021-05-14 10:17:42 +00:00
|
|
|
class SrsRtmpConn : public ISrsStartableConneciton, public ISrsReloadHandler
|
|
|
|
, public ISrsCoroutineHandler, public ISrsExpire
|
2013-11-23 03:36:07 +00:00
|
|
|
{
|
2019-04-30 00:24:52 +00:00
|
|
|
// For the thread to directly access any field of connection.
|
2014-12-01 15:38:51 +00:00
|
|
|
friend class SrsPublishRecvThread;
|
2013-11-23 03:36:07 +00:00
|
|
|
private:
|
2015-05-03 15:34:59 +00:00
|
|
|
SrsServer* server;
|
2014-03-18 03:32:58 +00:00
|
|
|
SrsRtmpServer* rtmp;
|
|
|
|
SrsRefer* refer;
|
|
|
|
SrsBandwidth* bandwidth;
|
2015-01-02 08:02:13 +00:00
|
|
|
SrsSecurity* security;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The wakable handler, maybe NULL.
|
2018-02-16 06:13:14 +00:00
|
|
|
// TODO: FIXME: Should refine the state for receiving thread.
|
2015-06-09 06:38:05 +00:00
|
|
|
ISrsWakable* wakable;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The elapsed duration in srs_utime_t
|
|
|
|
// For live play duration, for instance, rtmpdump to record.
|
2019-04-18 00:46:42 +00:00
|
|
|
srs_utime_t duration;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The MR(merged-write) sleep time in srs_utime_t.
|
2019-04-09 01:39:16 +00:00
|
|
|
srs_utime_t mw_sleep;
|
2020-04-18 02:04:45 +00:00
|
|
|
int mw_msgs;
|
2019-04-30 00:24:52 +00:00
|
|
|
// For realtime
|
2015-11-11 02:37:50 +00:00
|
|
|
// @see https://github.com/ossrs/srs/issues/257
|
2014-12-12 13:51:06 +00:00
|
|
|
bool realtime;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The minimal interval in srs_utime_t for delivery stream.
|
2019-04-15 23:59:27 +00:00
|
|
|
srs_utime_t send_min_interval;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The publish 1st packet timeout in srs_utime_t
|
2019-04-09 23:53:09 +00:00
|
|
|
srs_utime_t publish_1stpkt_timeout;
|
2019-04-30 00:24:52 +00:00
|
|
|
// The publish normal packet timeout in srs_utime_t
|
2019-04-09 23:58:39 +00:00
|
|
|
srs_utime_t publish_normal_timeout;
|
2019-04-30 00:24:52 +00:00
|
|
|
// Whether enable the tcp_nodelay.
|
2015-08-21 05:43:33 +00:00
|
|
|
bool tcp_nodelay;
|
2017-01-23 09:12:04 +00:00
|
|
|
// About the rtmp client.
|
|
|
|
SrsClientInfo* info;
|
2020-11-05 03:47:24 +00:00
|
|
|
private:
|
|
|
|
srs_netfd_t stfd;
|
2020-11-05 04:25:54 +00:00
|
|
|
SrsTcpConnection* skt;
|
2020-11-05 03:47:24 +00:00
|
|
|
// Each connection start a green thread,
|
|
|
|
// when thread stop, the connection will be delete by server.
|
|
|
|
SrsCoroutine* trd;
|
|
|
|
// The manager object to manage the connection.
|
|
|
|
ISrsResourceManager* manager;
|
|
|
|
// The ip and port of client.
|
|
|
|
std::string ip;
|
|
|
|
int port;
|
|
|
|
// The connection total kbps.
|
|
|
|
// not only the rtmp or http connection, all type of connection are
|
|
|
|
// need to statistic the kbps of io.
|
|
|
|
// The SrsStatistic will use it indirectly to statistic the bytes delta of current connection.
|
|
|
|
SrsKbps* kbps;
|
|
|
|
SrsWallClock* clk;
|
|
|
|
// The create time in milliseconds.
|
|
|
|
// for current connection to log self create time and calculate the living time.
|
|
|
|
int64_t create_time;
|
2013-11-23 03:36:07 +00:00
|
|
|
public:
|
2020-07-04 09:19:08 +00:00
|
|
|
SrsRtmpConn(SrsServer* svr, srs_netfd_t c, std::string cip, int port);
|
2014-03-27 04:27:47 +00:00
|
|
|
virtual ~SrsRtmpConn();
|
2020-09-19 02:30:05 +00:00
|
|
|
// Interface ISrsResource.
|
|
|
|
public:
|
|
|
|
virtual std::string desc();
|
2013-11-23 03:36:07 +00:00
|
|
|
protected:
|
2017-07-29 13:39:57 +00:00
|
|
|
virtual srs_error_t do_cycle();
|
2019-04-30 00:30:13 +00:00
|
|
|
// Interface ISrsReloadHandler
|
2013-12-14 14:54:10 +00:00
|
|
|
public:
|
2017-09-22 08:14:30 +00:00
|
|
|
virtual srs_error_t on_reload_vhost_removed(std::string vhost);
|
|
|
|
virtual srs_error_t on_reload_vhost_play(std::string vhost);
|
|
|
|
virtual srs_error_t on_reload_vhost_tcp_nodelay(std::string vhost);
|
|
|
|
virtual srs_error_t on_reload_vhost_realtime(std::string vhost);
|
|
|
|
virtual srs_error_t on_reload_vhost_publish(std::string vhost);
|
2019-04-30 00:30:13 +00:00
|
|
|
// Interface ISrsKbpsDelta
|
2014-06-19 07:28:05 +00:00
|
|
|
public:
|
2019-01-01 09:36:27 +00:00
|
|
|
virtual void remark(int64_t* in, int64_t* out);
|
2013-11-23 03:36:07 +00:00
|
|
|
private:
|
2019-04-30 00:24:52 +00:00
|
|
|
// When valid and connected to vhost/app, service the client.
|
2017-09-23 14:12:33 +00:00
|
|
|
virtual srs_error_t service_cycle();
|
2019-04-30 00:24:52 +00:00
|
|
|
// The stream(play/publish) service cycle, identify client first.
|
2017-09-23 14:12:33 +00:00
|
|
|
virtual srs_error_t stream_service_cycle();
|
|
|
|
virtual srs_error_t check_vhost(bool try_default_vhost);
|
2021-05-16 08:14:00 +00:00
|
|
|
virtual srs_error_t playing(SrsLiveSource* source);
|
|
|
|
virtual srs_error_t do_playing(SrsLiveSource* source, SrsLiveConsumer* consumer, SrsQueueRecvThread* trd);
|
|
|
|
virtual srs_error_t publishing(SrsLiveSource* source);
|
|
|
|
virtual srs_error_t do_publishing(SrsLiveSource* source, SrsPublishRecvThread* trd);
|
|
|
|
virtual srs_error_t acquire_publish(SrsLiveSource* source);
|
|
|
|
virtual void release_publish(SrsLiveSource* source);
|
|
|
|
virtual srs_error_t handle_publish_message(SrsLiveSource* source, SrsCommonMessage* msg);
|
|
|
|
virtual srs_error_t process_publish_message(SrsLiveSource* source, SrsCommonMessage* msg);
|
|
|
|
virtual srs_error_t process_play_control_msg(SrsLiveConsumer* consumer, SrsCommonMessage* msg);
|
2015-08-12 05:22:09 +00:00
|
|
|
virtual void set_sock_options();
|
2014-06-21 04:39:04 +00:00
|
|
|
private:
|
2017-09-23 14:12:33 +00:00
|
|
|
virtual srs_error_t check_edge_token_traverse_auth();
|
|
|
|
virtual srs_error_t do_token_traverse_auth(SrsRtmpClient* client);
|
2017-01-17 02:44:13 +00:00
|
|
|
private:
|
2019-04-30 00:24:52 +00:00
|
|
|
// When the connection disconnect, call this method.
|
|
|
|
// e.g. log msg of connection and report to other system.
|
2017-07-29 13:39:57 +00:00
|
|
|
virtual srs_error_t on_disconnect();
|
2013-12-08 04:45:12 +00:00
|
|
|
private:
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t http_hooks_on_connect();
|
2014-04-27 06:57:28 +00:00
|
|
|
virtual void http_hooks_on_close();
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t http_hooks_on_publish();
|
2014-04-27 06:57:28 +00:00
|
|
|
virtual void http_hooks_on_unpublish();
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t http_hooks_on_play();
|
2014-04-27 06:57:28 +00:00
|
|
|
virtual void http_hooks_on_stop();
|
2020-11-05 03:47:24 +00:00
|
|
|
// Extract APIs from SrsTcpConnection.
|
|
|
|
// Interface ISrsStartable
|
|
|
|
public:
|
|
|
|
// Start the client green thread.
|
|
|
|
// when server get a client from listener,
|
|
|
|
// 1. server will create an concrete connection(for instance, RTMP connection),
|
|
|
|
// 2. then add connection to its connection manager,
|
|
|
|
// 3. start the client thread by invoke this start()
|
|
|
|
// when client cycle thread stop, invoke the on_thread_stop(), which will use server
|
|
|
|
// To remove the client by server->remove(this).
|
|
|
|
virtual srs_error_t start();
|
|
|
|
// Interface ISrsOneCycleThreadHandler
|
|
|
|
public:
|
|
|
|
// The thread cycle function,
|
|
|
|
// when serve connection completed, terminate the loop which will terminate the thread,
|
|
|
|
// thread will invoke the on_thread_stop() when it terminated.
|
|
|
|
virtual srs_error_t cycle();
|
|
|
|
// Interface ISrsConnection.
|
|
|
|
public:
|
|
|
|
virtual std::string remote_ip();
|
|
|
|
virtual const SrsContextId& get_id();
|
|
|
|
// Interface ISrsExpire.
|
|
|
|
public:
|
|
|
|
virtual void expire();
|
2013-11-23 03:36:07 +00:00
|
|
|
};
|
|
|
|
|
2014-01-11 11:55:55 +00:00
|
|
|
#endif
|
2014-08-02 14:18:39 +00:00
|
|
|
|