2017-03-25 09:21:39 +00:00
|
|
|
/**
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2017-03-25 13:29:29 +00:00
|
|
|
* Copyright (c) 2013-2017 OSSRS(winlin)
|
2017-03-25 09:21:39 +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-04-25 08:35:03 +00:00
|
|
|
|
|
|
|
#ifndef SRS_APP_EDGE_HPP
|
|
|
|
#define SRS_APP_EDGE_HPP
|
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2014-04-26 13:41:18 +00:00
|
|
|
#include <srs_app_st.hpp>
|
2014-04-26 10:08:21 +00:00
|
|
|
#include <srs_app_thread.hpp>
|
|
|
|
|
2014-08-19 02:59:59 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-07-26 12:08:37 +00:00
|
|
|
class SrsStSocket;
|
2014-04-27 03:11:15 +00:00
|
|
|
class SrsRtmpServer;
|
2014-04-26 13:41:18 +00:00
|
|
|
class SrsSource;
|
2014-04-26 09:16:18 +00:00
|
|
|
class SrsRequest;
|
2014-04-27 01:29:37 +00:00
|
|
|
class SrsPlayEdge;
|
|
|
|
class SrsPublishEdge;
|
2014-04-26 13:41:18 +00:00
|
|
|
class SrsRtmpClient;
|
2014-12-05 15:03:52 +00:00
|
|
|
class SrsCommonMessage;
|
2014-04-28 09:20:35 +00:00
|
|
|
class SrsMessageQueue;
|
2014-04-26 13:41:18 +00:00
|
|
|
class ISrsProtocolReaderWriter;
|
2014-05-12 09:27:50 +00:00
|
|
|
class SrsKbps;
|
2015-09-24 09:54:58 +00:00
|
|
|
class SrsLbRoundRobin;
|
2015-10-14 02:48:08 +00:00
|
|
|
class SrsTcpClient;
|
2015-10-14 06:37:24 +00:00
|
|
|
class SrsSimpleRtmpClient;
|
2015-12-28 09:15:44 +00:00
|
|
|
class SrsPacket;
|
2014-04-26 09:16:18 +00:00
|
|
|
|
2014-04-26 06:47:38 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* the state of edge, auto machine
|
|
|
|
*/
|
2014-04-26 06:47:38 +00:00
|
|
|
enum SrsEdgeState
|
|
|
|
{
|
|
|
|
SrsEdgeStateInit = 0,
|
2017-03-25 09:21:39 +00:00
|
|
|
|
2014-04-27 01:29:37 +00:00
|
|
|
// for play edge
|
2014-04-26 06:47:38 +00:00
|
|
|
SrsEdgeStatePlay = 100,
|
2014-04-26 13:41:18 +00:00
|
|
|
// play stream from origin, ingest stream
|
2014-09-30 03:21:46 +00:00
|
|
|
SrsEdgeStateIngestConnected = 101,
|
2014-04-27 01:29:37 +00:00
|
|
|
|
|
|
|
// for publish edge
|
|
|
|
SrsEdgeStatePublish = 200,
|
2014-04-26 14:51:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* the state of edge from user, manual machine
|
|
|
|
*/
|
2014-04-26 14:51:01 +00:00
|
|
|
enum SrsEdgeUserState
|
|
|
|
{
|
|
|
|
SrsEdgeUserStateInit = 0,
|
|
|
|
SrsEdgeUserStateReloading = 100,
|
2014-04-26 06:47:38 +00:00
|
|
|
};
|
|
|
|
|
2015-12-28 09:15:44 +00:00
|
|
|
/**
|
|
|
|
* the upstream of edge, can be rtmp or http.
|
|
|
|
*/
|
|
|
|
class SrsEdgeUpstream
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SrsEdgeUpstream();
|
|
|
|
virtual ~SrsEdgeUpstream();
|
|
|
|
public:
|
|
|
|
virtual int connect(SrsRequest* r, SrsLbRoundRobin* lb) = 0;
|
|
|
|
virtual int recv_message(SrsCommonMessage** pmsg) = 0;
|
|
|
|
virtual int decode_message(SrsCommonMessage* msg, SrsPacket** ppacket) = 0;
|
|
|
|
virtual void close() = 0;
|
2015-12-28 10:02:20 +00:00
|
|
|
public:
|
2017-01-17 04:25:30 +00:00
|
|
|
virtual void set_recv_timeout(int64_t tm) = 0;
|
2015-12-28 09:15:44 +00:00
|
|
|
virtual void kbps_sample(const char* label, int64_t age) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class SrsEdgeRtmpUpstream : public SrsEdgeUpstream
|
|
|
|
{
|
|
|
|
private:
|
2016-01-11 07:46:23 +00:00
|
|
|
// for RTMP 302, if not empty,
|
|
|
|
// use this <ip[:port]> as upstream.
|
|
|
|
std::string redirect;
|
2015-12-28 09:15:44 +00:00
|
|
|
SrsSimpleRtmpClient* sdk;
|
|
|
|
public:
|
2016-01-11 07:46:23 +00:00
|
|
|
// @param rediect, override the server. ignore if empty.
|
|
|
|
SrsEdgeRtmpUpstream(std::string r);
|
2015-12-28 09:15:44 +00:00
|
|
|
virtual ~SrsEdgeRtmpUpstream();
|
|
|
|
public:
|
|
|
|
virtual int connect(SrsRequest* r, SrsLbRoundRobin* lb);
|
|
|
|
virtual int recv_message(SrsCommonMessage** pmsg);
|
|
|
|
virtual int decode_message(SrsCommonMessage* msg, SrsPacket** ppacket);
|
|
|
|
virtual void close();
|
2015-12-28 10:02:20 +00:00
|
|
|
public:
|
2017-01-17 04:25:30 +00:00
|
|
|
virtual void set_recv_timeout(int64_t tm);
|
2015-12-28 09:15:44 +00:00
|
|
|
virtual void kbps_sample(const char* label, int64_t age);
|
|
|
|
};
|
|
|
|
|
2014-04-26 10:08:21 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* edge used to ingest stream from origin.
|
|
|
|
*/
|
2017-05-29 12:49:29 +00:00
|
|
|
class SrsEdgeIngester : public ISrsCoroutineHandler
|
2014-04-26 10:08:21 +00:00
|
|
|
{
|
|
|
|
private:
|
2015-10-14 06:37:24 +00:00
|
|
|
SrsSource* source;
|
|
|
|
SrsPlayEdge* edge;
|
|
|
|
SrsRequest* req;
|
2017-05-29 12:49:29 +00:00
|
|
|
SrsCoroutine* trd;
|
2015-09-24 09:54:58 +00:00
|
|
|
SrsLbRoundRobin* lb;
|
2015-12-28 09:15:44 +00:00
|
|
|
SrsEdgeUpstream* upstream;
|
2016-01-11 07:46:23 +00:00
|
|
|
// for RTMP 302 redirect.
|
|
|
|
std::string redirect;
|
2014-04-26 10:08:21 +00:00
|
|
|
public:
|
|
|
|
SrsEdgeIngester();
|
|
|
|
virtual ~SrsEdgeIngester();
|
|
|
|
public:
|
2017-06-11 01:40:07 +00:00
|
|
|
virtual srs_error_t initialize(SrsSource* s, SrsPlayEdge* e, SrsRequest* r);
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t start();
|
2014-04-26 13:41:18 +00:00
|
|
|
virtual void stop();
|
2015-09-17 05:36:02 +00:00
|
|
|
virtual std::string get_curr_origin();
|
2015-05-23 01:49:15 +00:00
|
|
|
// interface ISrsReusableThread2Handler
|
2014-04-26 10:08:21 +00:00
|
|
|
public:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t cycle();
|
2017-05-29 12:49:29 +00:00
|
|
|
private:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t do_cycle();
|
2014-04-26 13:41:18 +00:00
|
|
|
private:
|
|
|
|
virtual int ingest();
|
2014-12-05 15:03:52 +00:00
|
|
|
virtual int process_publish_message(SrsCommonMessage* msg);
|
2014-04-26 10:08:21 +00:00
|
|
|
};
|
|
|
|
|
2014-04-26 06:47:38 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* edge used to forward stream to origin.
|
|
|
|
*/
|
2017-05-29 12:49:29 +00:00
|
|
|
class SrsEdgeForwarder : public ISrsCoroutineHandler
|
2014-04-27 01:29:37 +00:00
|
|
|
{
|
|
|
|
private:
|
2015-10-14 07:08:55 +00:00
|
|
|
SrsSource* source;
|
|
|
|
SrsPublishEdge* edge;
|
|
|
|
SrsRequest* req;
|
2017-05-29 12:49:29 +00:00
|
|
|
SrsCoroutine* trd;
|
2015-10-14 07:08:55 +00:00
|
|
|
SrsSimpleRtmpClient* sdk;
|
2015-09-24 10:33:07 +00:00
|
|
|
SrsLbRoundRobin* lb;
|
2014-04-28 09:20:35 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* we must ensure one thread one fd principle,
|
|
|
|
* that is, a fd must be write/read by the one thread.
|
|
|
|
* the publish service thread will proxy(msg), and the edge forward thread
|
|
|
|
* will cycle(), so we use queue for cycle to send the msg of proxy.
|
|
|
|
*/
|
2014-04-28 09:20:35 +00:00
|
|
|
SrsMessageQueue* queue;
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* error code of send, for edge proxy thread to query.
|
|
|
|
*/
|
2014-04-28 09:20:35 +00:00
|
|
|
int send_error_code;
|
2014-04-27 01:29:37 +00:00
|
|
|
public:
|
|
|
|
SrsEdgeForwarder();
|
|
|
|
virtual ~SrsEdgeForwarder();
|
2014-04-28 09:20:35 +00:00
|
|
|
public:
|
|
|
|
virtual void set_queue_size(double queue_size);
|
2014-04-27 01:29:37 +00:00
|
|
|
public:
|
2017-06-11 01:40:07 +00:00
|
|
|
virtual srs_error_t initialize(SrsSource* s, SrsPublishEdge* e, SrsRequest* r);
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t start();
|
2014-04-27 01:29:37 +00:00
|
|
|
virtual void stop();
|
2015-05-23 01:49:15 +00:00
|
|
|
// interface ISrsReusableThread2Handler
|
2014-04-27 07:10:25 +00:00
|
|
|
public:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t cycle();
|
2017-05-29 12:49:29 +00:00
|
|
|
private:
|
2017-06-11 10:44:20 +00:00
|
|
|
virtual srs_error_t do_cycle();
|
2014-04-27 01:29:37 +00:00
|
|
|
public:
|
2014-12-05 15:03:52 +00:00
|
|
|
virtual int proxy(SrsCommonMessage* msg);
|
2014-04-27 01:29:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* play edge control service.
|
|
|
|
* downloading edge speed-up.
|
|
|
|
*/
|
2014-04-27 01:29:37 +00:00
|
|
|
class SrsPlayEdge
|
2014-04-26 06:47:38 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
SrsEdgeState state;
|
2014-04-26 10:08:21 +00:00
|
|
|
SrsEdgeIngester* ingester;
|
2014-04-26 06:47:38 +00:00
|
|
|
public:
|
2014-04-27 01:29:37 +00:00
|
|
|
SrsPlayEdge();
|
|
|
|
virtual ~SrsPlayEdge();
|
2014-04-26 06:47:38 +00:00
|
|
|
public:
|
2014-06-21 03:41:00 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* always use the req of source,
|
|
|
|
* for we assume all client to edge is invalid,
|
|
|
|
* if auth open, edge must valid it from origin, then service it.
|
|
|
|
*/
|
2017-06-11 01:40:07 +00:00
|
|
|
virtual srs_error_t initialize(SrsSource* source, SrsRequest* req);
|
2014-04-26 06:47:38 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* when client play stream on edge.
|
|
|
|
*/
|
2014-04-26 06:47:38 +00:00
|
|
|
virtual int on_client_play();
|
2014-04-26 13:41:18 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* when all client stopped play, disconnect to origin.
|
|
|
|
*/
|
2014-04-26 13:41:18 +00:00
|
|
|
virtual void on_all_client_stop();
|
2015-09-17 05:36:02 +00:00
|
|
|
virtual std::string get_curr_origin();
|
2014-04-26 13:41:18 +00:00
|
|
|
public:
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* when ingester start to play stream.
|
|
|
|
*/
|
2014-04-26 13:41:18 +00:00
|
|
|
virtual int on_ingest_play();
|
2014-04-26 06:47:38 +00:00
|
|
|
};
|
|
|
|
|
2014-04-27 01:29:37 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* publish edge control service.
|
|
|
|
* uploading edge speed-up.
|
|
|
|
*/
|
2014-04-27 01:29:37 +00:00
|
|
|
class SrsPublishEdge
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
SrsEdgeState state;
|
|
|
|
SrsEdgeForwarder* forwarder;
|
|
|
|
public:
|
|
|
|
SrsPublishEdge();
|
|
|
|
virtual ~SrsPublishEdge();
|
2014-04-28 09:20:35 +00:00
|
|
|
public:
|
|
|
|
virtual void set_queue_size(double queue_size);
|
2014-04-27 01:29:37 +00:00
|
|
|
public:
|
2017-06-11 01:40:07 +00:00
|
|
|
virtual srs_error_t initialize(SrsSource* source, SrsRequest* req);
|
2015-07-08 07:43:09 +00:00
|
|
|
virtual bool can_publish();
|
2014-04-27 01:29:37 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* when client publish stream on edge.
|
|
|
|
*/
|
2014-04-27 01:29:37 +00:00
|
|
|
virtual int on_client_publish();
|
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* proxy publish stream to edge
|
|
|
|
*/
|
2014-12-05 15:03:52 +00:00
|
|
|
virtual int on_proxy_publish(SrsCommonMessage* msg);
|
2014-04-27 06:57:28 +00:00
|
|
|
/**
|
2017-03-25 09:21:39 +00:00
|
|
|
* proxy unpublish stream to edge.
|
|
|
|
*/
|
2014-04-27 06:57:28 +00:00
|
|
|
virtual void on_proxy_unpublish();
|
2014-04-27 01:29:37 +00:00
|
|
|
};
|
|
|
|
|
2014-04-26 06:47:38 +00:00
|
|
|
#endif
|
2014-08-02 14:18:39 +00:00
|
|
|
|