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

249 lines
6.1 KiB
C++
Raw Normal View History

2014-04-25 08:35:03 +00:00
/*
The MIT License (MIT)
2015-12-23 03:35:40 +00:00
Copyright (c) 2013-2016 SRS(ossrs)
2014-04-25 08:35:03 +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.
*/
#ifndef SRS_APP_EDGE_HPP
#define SRS_APP_EDGE_HPP
/*
#include <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
/**
* the state of edge, auto machine
*/
enum SrsEdgeState
{
SrsEdgeStateInit = 0,
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,
};
/**
* 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 timeout) = 0;
virtual void kbps_sample(const char* label, int64_t age) = 0;
};
class SrsEdgeRtmpUpstream : public SrsEdgeUpstream
{
private:
SrsSimpleRtmpClient* sdk;
public:
SrsEdgeRtmpUpstream();
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 timeout);
virtual void kbps_sample(const char* label, int64_t age);
};
2014-04-26 10:08:21 +00:00
/**
* edge used to ingest stream from origin.
*/
2015-05-23 01:49:15 +00:00
class SrsEdgeIngester : public ISrsReusableThread2Handler
2014-04-26 10:08:21 +00:00
{
private:
2015-10-14 06:37:24 +00:00
SrsSource* source;
SrsPlayEdge* edge;
SrsRequest* req;
2015-05-23 01:49:15 +00:00
SrsReusableThread2* pthread;
SrsLbRoundRobin* lb;
SrsEdgeUpstream* upstream;
2014-04-26 10:08:21 +00:00
public:
SrsEdgeIngester();
virtual ~SrsEdgeIngester();
public:
2015-10-14 06:37:24 +00:00
virtual int initialize(SrsSource* s, SrsPlayEdge* e, SrsRequest* r);
2014-04-26 10:08:21 +00:00
virtual int 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 int cycle();
private:
virtual int ingest();
virtual int process_publish_message(SrsCommonMessage* msg);
2014-04-26 10:08:21 +00:00
};
/**
2014-04-27 01:29:37 +00:00
* edge used to forward stream to origin.
*/
2015-05-23 01:49:15 +00:00
class SrsEdgeForwarder : public ISrsReusableThread2Handler
2014-04-27 01:29:37 +00:00
{
private:
2015-10-14 07:08:55 +00:00
SrsSource* source;
SrsPublishEdge* edge;
SrsRequest* req;
2015-05-23 01:49:15 +00:00
SrsReusableThread2* pthread;
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
/**
* 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.
*/
SrsMessageQueue* queue;
/**
* error code of send, for edge proxy thread to query.
*/
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:
2015-10-14 07:08:55 +00:00
virtual int initialize(SrsSource* s, SrsPublishEdge* e, SrsRequest* r);
2014-04-27 01:29:37 +00:00
virtual int start();
virtual void stop();
2015-05-23 01:49:15 +00:00
// interface ISrsReusableThread2Handler
public:
virtual int cycle();
2014-04-27 01:29:37 +00:00
public:
virtual int proxy(SrsCommonMessage* msg);
2014-04-27 01:29:37 +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:
/**
* 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.
*/
virtual int initialize(SrsSource* source, SrsRequest* req);
/**
* when client play stream on edge.
*/
virtual int on_client_play();
/**
* 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:
/**
* when ingester start to play stream.
*/
virtual int on_ingest_play();
};
2014-04-27 01:29:37 +00:00
/**
* publish edge control service.
* uploading edge speed-up.
*/
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:
virtual int initialize(SrsSource* source, SrsRequest* req);
virtual bool can_publish();
2014-04-27 01:29:37 +00:00
/**
* when client publish stream on edge.
*/
virtual int on_client_publish();
/**
* proxy publish stream to edge
2014-04-27 01:29:37 +00:00
*/
virtual int on_proxy_publish(SrsCommonMessage* msg);
2014-04-27 06:57:28 +00:00
/**
* proxy unpublish stream to edge.
*/
virtual void on_proxy_unpublish();
2014-04-27 01:29:37 +00:00
};
#endif
2014-08-02 14:18:39 +00:00