2013-11-23 03:36:07 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2015-04-29 09:38:23 +00:00
|
|
|
Copyright (c) 2013-2015 SRS(simple-rtmp-server)
|
2013-11-23 03:36:07 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
|
|
/*
|
2014-03-27 04:14:04 +00:00
|
|
|
#include <srs_app_rtmp_conn.hpp>
|
2013-11-23 03:36:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#include <srs_app_st.hpp>
|
|
|
|
#include <srs_app_conn.hpp>
|
|
|
|
#include <srs_app_reload.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;
|
|
|
|
class SrsSource;
|
|
|
|
class SrsRefer;
|
|
|
|
class SrsConsumer;
|
2014-12-05 15:03:52 +00:00
|
|
|
class SrsCommonMessage;
|
2014-07-26 12:08:37 +00:00
|
|
|
class SrsStSocket;
|
2014-04-15 06:01:57 +00:00
|
|
|
#ifdef SRS_AUTO_HTTP_CALLBACK
|
2013-12-07 14:06:53 +00:00
|
|
|
class SrsHttpHooks;
|
|
|
|
#endif
|
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;
|
2013-11-23 03:36:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the client provides the main logic control for RTMP clients.
|
|
|
|
*/
|
2014-06-19 07:28:05 +00:00
|
|
|
class SrsRtmpConn : public virtual SrsConnection, public virtual ISrsReloadHandler
|
2013-11-23 03:36:07 +00:00
|
|
|
{
|
2014-12-01 15:38:51 +00:00
|
|
|
// for the thread to directly access any field of connection.
|
|
|
|
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
|
|
|
SrsRequest* req;
|
|
|
|
SrsResponse* res;
|
2014-07-26 12:08:37 +00:00
|
|
|
SrsStSocket* skt;
|
2014-03-18 03:32:58 +00:00
|
|
|
SrsRtmpServer* rtmp;
|
|
|
|
SrsRefer* refer;
|
|
|
|
SrsBandwidth* bandwidth;
|
2015-01-02 08:02:13 +00:00
|
|
|
SrsSecurity* security;
|
2015-06-09 06:38:05 +00:00
|
|
|
// the wakable handler, maybe NULL.
|
|
|
|
ISrsWakable* wakable;
|
2014-04-14 02:51:31 +00:00
|
|
|
// elapse duration in ms
|
|
|
|
// for live play duration, for instance, rtmpdump to record.
|
2015-04-29 09:06:32 +00:00
|
|
|
// @see https://github.com/simple-rtmp-server/srs/issues/47
|
2014-04-14 02:51:31 +00:00
|
|
|
int64_t duration;
|
2014-05-12 09:27:50 +00:00
|
|
|
SrsKbps* kbps;
|
2014-12-04 13:35:13 +00:00
|
|
|
// the MR(merged-write) sleep time in ms.
|
|
|
|
int mw_sleep;
|
2014-12-05 03:24:05 +00:00
|
|
|
// the MR(merged-write) only enabled for play.
|
|
|
|
int mw_enabled;
|
2014-12-12 13:51:06 +00:00
|
|
|
// for realtime
|
2015-04-29 09:06:32 +00:00
|
|
|
// @see https://github.com/simple-rtmp-server/srs/issues/257
|
2014-12-12 13:51:06 +00:00
|
|
|
bool realtime;
|
2015-08-14 03:13:40 +00:00
|
|
|
// the minimal interval in ms for delivery stream.
|
2015-08-19 07:14:26 +00:00
|
|
|
double send_min_interval;
|
2015-08-19 08:16:05 +00:00
|
|
|
// publish 1st packet timeout in ms
|
|
|
|
int publish_1stpkt_timeout;
|
|
|
|
// publish normal packet timeout in ms
|
|
|
|
int publish_normal_timeout;
|
2013-11-23 03:36:07 +00:00
|
|
|
public:
|
2015-05-03 15:34:59 +00:00
|
|
|
SrsRtmpConn(SrsServer* svr, st_netfd_t c);
|
2014-03-27 04:27:47 +00:00
|
|
|
virtual ~SrsRtmpConn();
|
2015-06-09 06:38:05 +00:00
|
|
|
public:
|
|
|
|
virtual void dispose();
|
2013-11-23 03:36:07 +00:00
|
|
|
protected:
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int do_cycle();
|
2013-12-14 14:54:10 +00:00
|
|
|
// interface ISrsReloadHandler
|
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
virtual int on_reload_vhost_removed(std::string vhost);
|
2014-12-04 13:35:13 +00:00
|
|
|
virtual int on_reload_vhost_mw(std::string vhost);
|
2015-08-14 03:13:40 +00:00
|
|
|
virtual int on_reload_vhost_smi(std::string vhost);
|
2014-12-12 13:51:06 +00:00
|
|
|
virtual int on_reload_vhost_realtime(std::string vhost);
|
2015-08-19 08:16:05 +00:00
|
|
|
virtual int on_reload_vhost_p1stpt(std::string vhost);
|
|
|
|
virtual int on_reload_vhost_pnt(std::string vhost);
|
2014-06-19 07:28:05 +00:00
|
|
|
// interface IKbpsDelta
|
|
|
|
public:
|
2015-03-08 11:59:10 +00:00
|
|
|
virtual void resample();
|
2014-06-19 07:28:05 +00:00
|
|
|
virtual int64_t get_send_bytes_delta();
|
|
|
|
virtual int64_t get_recv_bytes_delta();
|
2015-03-08 11:59:10 +00:00
|
|
|
virtual void cleanup();
|
2013-11-23 03:36:07 +00:00
|
|
|
private:
|
2014-03-18 03:32:58 +00:00
|
|
|
// when valid and connected to vhost/app, service the client.
|
|
|
|
virtual int service_cycle();
|
|
|
|
// stream(play/publish) service cycle, identify client first.
|
|
|
|
virtual int stream_service_cycle();
|
|
|
|
virtual int check_vhost();
|
|
|
|
virtual int playing(SrsSource* source);
|
2015-01-07 06:31:42 +00:00
|
|
|
virtual int do_playing(SrsSource* source, SrsConsumer* consumer, SrsQueueRecvThread* trd);
|
2015-07-09 07:45:55 +00:00
|
|
|
virtual int publishing(SrsSource* source);
|
2014-12-01 15:38:51 +00:00
|
|
|
virtual int do_publishing(SrsSource* source, SrsPublishRecvThread* trd);
|
2015-07-09 07:45:55 +00:00
|
|
|
virtual int acquire_publish(SrsSource* source, bool is_edge);
|
|
|
|
virtual void release_publish(SrsSource* source, bool is_edge);
|
2014-12-05 15:03:52 +00:00
|
|
|
virtual int handle_publish_message(SrsSource* source, SrsCommonMessage* msg, bool is_fmle, bool vhost_is_edge);
|
|
|
|
virtual int process_publish_message(SrsSource* source, SrsCommonMessage* msg, bool vhost_is_edge);
|
|
|
|
virtual int process_play_control_msg(SrsConsumer* consumer, SrsCommonMessage* msg);
|
2014-12-05 03:24:05 +00:00
|
|
|
virtual void change_mw_sleep(int sleep_ms);
|
2015-08-12 05:22:09 +00:00
|
|
|
virtual void set_sock_options();
|
2014-06-21 04:39:04 +00:00
|
|
|
private:
|
|
|
|
virtual int check_edge_token_traverse_auth();
|
|
|
|
virtual int connect_server(int origin_index, st_netfd_t* pstsock);
|
2014-09-28 03:08:30 +00:00
|
|
|
virtual int do_token_traverse_auth(SrsRtmpClient* client);
|
2013-12-08 04:45:12 +00:00
|
|
|
private:
|
2014-04-27 06:57:28 +00:00
|
|
|
virtual int http_hooks_on_connect();
|
|
|
|
virtual void http_hooks_on_close();
|
|
|
|
virtual int http_hooks_on_publish();
|
|
|
|
virtual void http_hooks_on_unpublish();
|
|
|
|
virtual int http_hooks_on_play();
|
|
|
|
virtual void http_hooks_on_stop();
|
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
|
|
|
|