1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/src/app/srs_app_edge.hpp

255 lines
6.5 KiB
C++
Raw Normal View History

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>
#include <srs_app_st.hpp>
2014-04-26 10:08:21 +00:00
#include <srs_app_thread.hpp>
#include <string>
class SrsStSocket;
class SrsRtmpServer;
class SrsSource;
2014-04-26 09:16:18 +00:00
class SrsRequest;
2014-04-27 01:29:37 +00:00
class SrsPlayEdge;
class SrsPublishEdge;
class SrsRtmpClient;
class SrsCommonMessage;
2014-04-28 09:20:35 +00:00
class SrsMessageQueue;
class ISrsProtocolReaderWriter;
2014-05-12 09:27:50 +00:00
class SrsKbps;
class SrsLbRoundRobin;
2015-10-14 02:48:08 +00:00
class SrsTcpClient;
2015-10-14 06:37:24 +00:00
class SrsSimpleRtmpClient;
class SrsPacket;
2014-04-26 09:16:18 +00:00
/**
2017-03-25 09:21:39 +00:00
* the state of edge, auto machine
*/
enum SrsEdgeState
{
SrsEdgeStateInit = 0,
2017-03-25 09:21:39 +00:00
2014-04-27 01:29:37 +00:00
// for play edge
SrsEdgeStatePlay = 100,
// play stream from origin, ingest stream
SrsEdgeStateIngestConnected = 101,
2014-04-27 01:29:37 +00:00
// for publish edge
SrsEdgeStatePublish = 200,
};
/**
2017-03-25 09:21:39 +00:00
* the state of edge from user, manual machine
*/
enum SrsEdgeUserState
{
SrsEdgeUserStateInit = 0,
SrsEdgeUserStateReloading = 100,
};
/**
* 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;
public:
virtual void set_recv_timeout(int64_t tm) = 0;
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;
SrsSimpleRtmpClient* sdk;
public:
2016-01-11 07:46:23 +00:00
// @param rediect, override the server. ignore if empty.
SrsEdgeRtmpUpstream(std::string r);
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();
public:
virtual void set_recv_timeout(int64_t tm);
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.
*/
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;
SrsCoroutine* trd;
SrsLbRoundRobin* lb;
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);
virtual srs_error_t start();
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:
virtual srs_error_t cycle();
private:
virtual srs_error_t do_cycle();
private:
virtual int ingest();
virtual int process_publish_message(SrsCommonMessage* msg);
2014-04-26 10:08:21 +00:00
};
/**
2017-03-25 09:21:39 +00:00
* edge used to forward stream to origin.
*/
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;
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);
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
public:
virtual srs_error_t cycle();
private:
virtual srs_error_t do_cycle();
2014-04-27 01:29:37 +00:00
public:
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
{
private:
SrsEdgeState state;
2014-04-26 10:08:21 +00:00
SrsEdgeIngester* ingester;
public:
2014-04-27 01:29:37 +00:00
SrsPlayEdge();
virtual ~SrsPlayEdge();
public:
/**
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);
/**
2017-03-25 09:21:39 +00:00
* when client play stream on edge.
*/
virtual int on_client_play();
/**
2017-03-25 09:21:39 +00:00
* when all client stopped play, disconnect to origin.
*/
virtual void on_all_client_stop();
2015-09-17 05:36:02 +00:00
virtual std::string get_curr_origin();
public:
/**
2017-03-25 09:21:39 +00:00
* when ingester start to play stream.
*/
virtual int on_ingest_play();
};
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);
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
*/
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
};
#endif
2014-08-02 14:18:39 +00:00