mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
refine code, use simple rtmp client.
This commit is contained in:
parent
e4c852945f
commit
bc27481886
6 changed files with 145 additions and 184 deletions
|
@ -179,15 +179,20 @@ int SrsDynamicHttpConn::do_proxy(ISrsHttpResponseReader* rr, SrsFlvDecoder* dec)
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
|
if ((ret = sdk->connect(output, SRS_CONSTS_RTMP_RECV_TIMEOUT_US)) != ERROR_SUCCESS) {
|
||||||
|
srs_error("flv: connect %s failed. ret=%d", output.c_str(), ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ret = sdk->publish()) != ERROR_SUCCESS) {
|
||||||
|
srs_error("flv: publish failed. ret=%d", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
char pps[4];
|
char pps[4];
|
||||||
while (!rr->eof()) {
|
while (!rr->eof()) {
|
||||||
pprint->elapse();
|
pprint->elapse();
|
||||||
|
|
||||||
if ((ret = sdk->connect(output, SRS_CONSTS_RTMP_RECV_TIMEOUT_US)) != ERROR_SUCCESS) {
|
|
||||||
srs_error("flv: connect %s failed. ret=%d", output.c_str(), ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
char type;
|
char type;
|
||||||
int32_t size;
|
int32_t size;
|
||||||
u_int32_t time;
|
u_int32_t time;
|
||||||
|
|
|
@ -45,6 +45,7 @@ using namespace std;
|
||||||
#include <srs_protocol_amf0.hpp>
|
#include <srs_protocol_amf0.hpp>
|
||||||
#include <srs_kernel_utility.hpp>
|
#include <srs_kernel_utility.hpp>
|
||||||
#include <srs_kernel_balance.hpp>
|
#include <srs_kernel_balance.hpp>
|
||||||
|
#include <srs_app_rtmp_conn.hpp>
|
||||||
|
|
||||||
// when error, edge ingester sleep for a while and retry.
|
// when error, edge ingester sleep for a while and retry.
|
||||||
#define SRS_EDGE_INGESTER_SLEEP_US (int64_t)(1*1000*1000LL)
|
#define SRS_EDGE_INGESTER_SLEEP_US (int64_t)(1*1000*1000LL)
|
||||||
|
@ -63,12 +64,11 @@ using namespace std;
|
||||||
|
|
||||||
SrsEdgeIngester::SrsEdgeIngester()
|
SrsEdgeIngester::SrsEdgeIngester()
|
||||||
{
|
{
|
||||||
transport = new SrsTcpClient();
|
source = NULL;
|
||||||
kbps = new SrsKbps();
|
edge = NULL;
|
||||||
client = NULL;
|
req = NULL;
|
||||||
_edge = NULL;
|
|
||||||
_req = NULL;
|
sdk = new SrsSimpleRtmpClient();
|
||||||
stream_id = 0;
|
|
||||||
lb = new SrsLbRoundRobin();
|
lb = new SrsLbRoundRobin();
|
||||||
pthread = new SrsReusableThread2("edge-igs", this, SRS_EDGE_INGESTER_SLEEP_US);
|
pthread = new SrsReusableThread2("edge-igs", this, SRS_EDGE_INGESTER_SLEEP_US);
|
||||||
}
|
}
|
||||||
|
@ -77,19 +77,18 @@ SrsEdgeIngester::~SrsEdgeIngester()
|
||||||
{
|
{
|
||||||
stop();
|
stop();
|
||||||
|
|
||||||
srs_freep(transport);
|
srs_freep(sdk);
|
||||||
srs_freep(lb);
|
srs_freep(lb);
|
||||||
srs_freep(pthread);
|
srs_freep(pthread);
|
||||||
srs_freep(kbps);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int SrsEdgeIngester::initialize(SrsSource* source, SrsPlayEdge* edge, SrsRequest* req)
|
int SrsEdgeIngester::initialize(SrsSource* s, SrsPlayEdge* e, SrsRequest* r)
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
_source = source;
|
source = s;
|
||||||
_edge = edge;
|
edge = e;
|
||||||
_req = req;
|
req = r;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -98,7 +97,7 @@ int SrsEdgeIngester::start()
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
if ((ret = _source->on_publish()) != ERROR_SUCCESS) {
|
if ((ret = source->on_publish()) != ERROR_SUCCESS) {
|
||||||
srs_error("edge pull stream then publish to edge failed. ret=%d", ret);
|
srs_error("edge pull stream then publish to edge failed. ret=%d", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -109,13 +108,10 @@ int SrsEdgeIngester::start()
|
||||||
void SrsEdgeIngester::stop()
|
void SrsEdgeIngester::stop()
|
||||||
{
|
{
|
||||||
pthread->stop();
|
pthread->stop();
|
||||||
transport->close();
|
sdk->close();
|
||||||
|
|
||||||
srs_freep(client);
|
|
||||||
kbps->set_io(NULL, NULL);
|
|
||||||
|
|
||||||
// notice to unpublish.
|
// notice to unpublish.
|
||||||
_source->on_unpublish();
|
source->on_unpublish();
|
||||||
}
|
}
|
||||||
|
|
||||||
string SrsEdgeIngester::get_curr_origin()
|
string SrsEdgeIngester::get_curr_origin()
|
||||||
|
@ -127,39 +123,47 @@ int SrsEdgeIngester::cycle()
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
_source->on_source_id_changed(_srs_context->get_id());
|
source->on_source_id_changed(_srs_context->get_id());
|
||||||
|
|
||||||
std::string ep_server;
|
std::string url, vhost;
|
||||||
int ep_port;
|
if (true) {
|
||||||
if ((ret = connect_server(ep_server, ep_port)) != ERROR_SUCCESS) {
|
SrsConfDirective* conf = _srs_config->get_vhost_edge_origin(req->vhost);
|
||||||
return ret;
|
|
||||||
|
// @see https://github.com/simple-rtmp-server/srs/issues/79
|
||||||
|
// when origin is error, for instance, server is shutdown,
|
||||||
|
// then user remove the vhost then reload, the conf is empty.
|
||||||
|
if (!conf) {
|
||||||
|
ret = ERROR_EDGE_VHOST_REMOVED;
|
||||||
|
srs_warn("vhost %s removed. ret=%d", req->vhost.c_str(), ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
// select the origin.
|
||||||
|
if (true) {
|
||||||
|
std::string server = lb->select(conf->args);
|
||||||
|
int port = SRS_CONSTS_RTMP_DEFAULT_PORT;
|
||||||
|
srs_parse_hostport(server, server, port);
|
||||||
|
|
||||||
|
url = srs_generate_rtmp_url(server, port, req->vhost, req->app, req->stream);
|
||||||
|
}
|
||||||
|
|
||||||
|
// support vhost tranform for edge,
|
||||||
|
// @see https://github.com/simple-rtmp-server/srs/issues/372
|
||||||
|
vhost = _srs_config->get_vhost_edge_transform_vhost(req->vhost);
|
||||||
|
vhost = srs_string_replace(vhost, "[vhost]", req->vhost);
|
||||||
}
|
}
|
||||||
srs_assert(client);
|
|
||||||
|
|
||||||
client->set_recv_timeout(SRS_CONSTS_RTMP_RECV_TIMEOUT_US);
|
|
||||||
client->set_send_timeout(SRS_CONSTS_RTMP_SEND_TIMEOUT_US);
|
|
||||||
|
|
||||||
SrsRequest* req = _req;
|
|
||||||
|
|
||||||
if ((ret = client->handshake()) != ERROR_SUCCESS) {
|
if ((ret = sdk->connect(url, vhost, SRS_CONSTS_RTMP_TIMEOUT_US)) != ERROR_SUCCESS) {
|
||||||
srs_error("handshake with server failed. ret=%d", ret);
|
srs_error("edge pull %s failed. ret=%d", url.c_str(), ret);
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
if ((ret = connect_app(ep_server, ep_port)) != ERROR_SUCCESS) {
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
if ((ret = client->create_stream(stream_id)) != ERROR_SUCCESS) {
|
|
||||||
srs_error("connect with server failed, stream_id=%d. ret=%d", stream_id, ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = client->play(req->stream, stream_id)) != ERROR_SUCCESS) {
|
if ((ret = sdk->play()) != ERROR_SUCCESS) {
|
||||||
srs_error("connect with server failed, stream=%s, stream_id=%d. ret=%d",
|
srs_error("edge pull %s stream failed. ret=%d", url.c_str(), ret);
|
||||||
req->stream.c_str(), stream_id, ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = _edge->on_ingest_play()) != ERROR_SUCCESS) {
|
if ((ret = edge->on_ingest_play()) != ERROR_SUCCESS) {
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -176,27 +180,22 @@ int SrsEdgeIngester::ingest()
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
client->set_recv_timeout(SRS_EDGE_INGESTER_TIMEOUT_US);
|
sdk->set_recv_timeout(SRS_EDGE_INGESTER_TIMEOUT_US);
|
||||||
|
|
||||||
SrsPithyPrint* pprint = SrsPithyPrint::create_edge();
|
SrsPithyPrint* pprint = SrsPithyPrint::create_edge();
|
||||||
SrsAutoFree(SrsPithyPrint, pprint);
|
SrsAutoFree(SrsPithyPrint, pprint);
|
||||||
|
|
||||||
while (!pthread->interrupted()) {
|
while (!pthread->interrupted()) {
|
||||||
pprint->elapse();
|
pprint->elapse();
|
||||||
|
|
||||||
// pithy print
|
// pithy print
|
||||||
if (pprint->can_print()) {
|
if (pprint->can_print()) {
|
||||||
kbps->sample();
|
sdk->kbps_sample(SRS_CONSTS_LOG_EDGE_PLAY, pprint->age());
|
||||||
srs_trace("<- "SRS_CONSTS_LOG_EDGE_PLAY
|
|
||||||
" time=%"PRId64", okbps=%d,%d,%d, ikbps=%d,%d,%d",
|
|
||||||
pprint->age(),
|
|
||||||
kbps->get_send_kbps(), kbps->get_send_kbps_30s(), kbps->get_send_kbps_5m(),
|
|
||||||
kbps->get_recv_kbps(), kbps->get_recv_kbps_30s(), kbps->get_recv_kbps_5m());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// read from client.
|
// read from client.
|
||||||
SrsCommonMessage* msg = NULL;
|
SrsCommonMessage* msg = NULL;
|
||||||
if ((ret = client->recv_message(&msg)) != ERROR_SUCCESS) {
|
if ((ret = sdk->recv_message(&msg)) != ERROR_SUCCESS) {
|
||||||
if (!srs_is_client_gracefully_close(ret)) {
|
if (!srs_is_client_gracefully_close(ret)) {
|
||||||
srs_error("pull origin server message failed. ret=%d", ret);
|
srs_error("pull origin server message failed. ret=%d", ret);
|
||||||
}
|
}
|
||||||
|
@ -211,68 +210,6 @@ int SrsEdgeIngester::ingest()
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: FIXME: refine the connect_app.
|
|
||||||
int SrsEdgeIngester::connect_app(string ep_server, int ep_port)
|
|
||||||
{
|
|
||||||
int ret = ERROR_SUCCESS;
|
|
||||||
|
|
||||||
SrsRequest* req = _req;
|
|
||||||
|
|
||||||
// args of request takes the srs info.
|
|
||||||
if (req->args == NULL) {
|
|
||||||
req->args = SrsAmf0Any::object();
|
|
||||||
}
|
|
||||||
|
|
||||||
// notify server the edge identity,
|
|
||||||
// @see https://github.com/simple-rtmp-server/srs/issues/147
|
|
||||||
SrsAmf0Object* data = req->args;
|
|
||||||
data->set("srs_sig", SrsAmf0Any::str(RTMP_SIG_SRS_KEY));
|
|
||||||
data->set("srs_server", SrsAmf0Any::str(RTMP_SIG_SRS_SERVER));
|
|
||||||
data->set("srs_license", SrsAmf0Any::str(RTMP_SIG_SRS_LICENSE));
|
|
||||||
data->set("srs_role", SrsAmf0Any::str(RTMP_SIG_SRS_ROLE));
|
|
||||||
data->set("srs_url", SrsAmf0Any::str(RTMP_SIG_SRS_URL));
|
|
||||||
data->set("srs_version", SrsAmf0Any::str(RTMP_SIG_SRS_VERSION));
|
|
||||||
data->set("srs_site", SrsAmf0Any::str(RTMP_SIG_SRS_WEB));
|
|
||||||
data->set("srs_email", SrsAmf0Any::str(RTMP_SIG_SRS_EMAIL));
|
|
||||||
data->set("srs_copyright", SrsAmf0Any::str(RTMP_SIG_SRS_COPYRIGHT));
|
|
||||||
data->set("srs_primary", SrsAmf0Any::str(RTMP_SIG_SRS_PRIMARY));
|
|
||||||
data->set("srs_authors", SrsAmf0Any::str(RTMP_SIG_SRS_AUTHROS));
|
|
||||||
// for edge to directly get the id of client.
|
|
||||||
data->set("srs_pid", SrsAmf0Any::number(getpid()));
|
|
||||||
data->set("srs_id", SrsAmf0Any::number(_srs_context->get_id()));
|
|
||||||
|
|
||||||
// local ip of edge
|
|
||||||
std::vector<std::string> ips = srs_get_local_ipv4_ips();
|
|
||||||
assert(_srs_config->get_stats_network() < (int)ips.size());
|
|
||||||
std::string local_ip = ips[_srs_config->get_stats_network()];
|
|
||||||
data->set("srs_server_ip", SrsAmf0Any::str(local_ip.c_str()));
|
|
||||||
|
|
||||||
// support vhost tranform for edge,
|
|
||||||
// @see https://github.com/simple-rtmp-server/srs/issues/372
|
|
||||||
std::string vhost = _srs_config->get_vhost_edge_transform_vhost(req->vhost);
|
|
||||||
vhost = srs_string_replace(vhost, "[vhost]", req->vhost);
|
|
||||||
// generate the tcUrl
|
|
||||||
std::string param = "";
|
|
||||||
std::string tc_url = srs_generate_tc_url(ep_server, vhost, req->app, ep_port, param);
|
|
||||||
srs_trace("edge ingest from %s:%d at %s", ep_server.c_str(), ep_port, tc_url.c_str());
|
|
||||||
|
|
||||||
// replace the tcUrl in request,
|
|
||||||
// which will replace the tc_url in client.connect_app().
|
|
||||||
req->tcUrl = tc_url;
|
|
||||||
|
|
||||||
// upnode server identity will show in the connect_app of client.
|
|
||||||
// @see https://github.com/simple-rtmp-server/srs/issues/160
|
|
||||||
// the debug_srs_upnode is config in vhost and default to true.
|
|
||||||
bool debug_srs_upnode = _srs_config->get_debug_srs_upnode(req->vhost);
|
|
||||||
if ((ret = client->connect_app(req->app, tc_url, req, debug_srs_upnode)) != ERROR_SUCCESS) {
|
|
||||||
srs_error("connect with server failed, tcUrl=%s, dsu=%d. ret=%d",
|
|
||||||
tc_url.c_str(), debug_srs_upnode, ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -280,8 +217,6 @@ int SrsEdgeIngester::connect_app(string ep_server, int ep_port)
|
||||||
int SrsEdgeIngester::process_publish_message(SrsCommonMessage* msg)
|
int SrsEdgeIngester::process_publish_message(SrsCommonMessage* msg)
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
SrsSource* source = _source;
|
|
||||||
|
|
||||||
// process audio packet
|
// process audio packet
|
||||||
if (msg->header.is_audio()) {
|
if (msg->header.is_audio()) {
|
||||||
|
@ -311,7 +246,7 @@ int SrsEdgeIngester::process_publish_message(SrsCommonMessage* msg)
|
||||||
// process onMetaData
|
// process onMetaData
|
||||||
if (msg->header.is_amf0_data() || msg->header.is_amf3_data()) {
|
if (msg->header.is_amf0_data() || msg->header.is_amf3_data()) {
|
||||||
SrsPacket* pkt = NULL;
|
SrsPacket* pkt = NULL;
|
||||||
if ((ret = client->decode_message(msg, &pkt)) != ERROR_SUCCESS) {
|
if ((ret = sdk->decode_message(msg, &pkt)) != ERROR_SUCCESS) {
|
||||||
srs_error("decode onMetaData message failed. ret=%d", ret);
|
srs_error("decode onMetaData message failed. ret=%d", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -334,50 +269,6 @@ int SrsEdgeIngester::process_publish_message(SrsCommonMessage* msg)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SrsEdgeIngester::connect_server(string& ep_server, int& ep_port)
|
|
||||||
{
|
|
||||||
int ret = ERROR_SUCCESS;
|
|
||||||
|
|
||||||
// reopen
|
|
||||||
transport->close();
|
|
||||||
|
|
||||||
SrsConfDirective* conf = _srs_config->get_vhost_edge_origin(_req->vhost);
|
|
||||||
|
|
||||||
// @see https://github.com/simple-rtmp-server/srs/issues/79
|
|
||||||
// when origin is error, for instance, server is shutdown,
|
|
||||||
// then user remove the vhost then reload, the conf is empty.
|
|
||||||
if (!conf) {
|
|
||||||
ret = ERROR_EDGE_VHOST_REMOVED;
|
|
||||||
srs_warn("vhost %s removed. ret=%d", _req->vhost.c_str(), ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
// select the origin.
|
|
||||||
if (true) {
|
|
||||||
std::string server = lb->select(conf->args);
|
|
||||||
ep_port = SRS_CONSTS_RTMP_DEFAULT_PORT;
|
|
||||||
srs_parse_hostport(server, ep_server, ep_port);
|
|
||||||
}
|
|
||||||
|
|
||||||
// open socket.
|
|
||||||
int64_t timeout = SRS_EDGE_INGESTER_TIMEOUT_US;
|
|
||||||
if ((ret = transport->connect(ep_server, ep_port, timeout)) != ERROR_SUCCESS) {
|
|
||||||
srs_warn("edge pull failed, stream=%s, tcUrl=%s to server=%s, port=%d, timeout=%"PRId64", ret=%d",
|
|
||||||
_req->stream.c_str(), _req->tcUrl.c_str(), ep_server.c_str(), ep_port, timeout, ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
srs_freep(client);
|
|
||||||
client = new SrsRtmpClient(transport);
|
|
||||||
|
|
||||||
kbps->set_io(transport, transport);
|
|
||||||
|
|
||||||
srs_trace("edge pull connected, url=%s/%s, server=%s:%d",
|
|
||||||
_req->tcUrl.c_str(), _req->stream.c_str(), ep_server.c_str(), ep_port);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
SrsEdgeForwarder::SrsEdgeForwarder()
|
SrsEdgeForwarder::SrsEdgeForwarder()
|
||||||
{
|
{
|
||||||
transport = new SrsTcpClient();
|
transport = new SrsTcpClient();
|
||||||
|
|
|
@ -48,6 +48,7 @@ class ISrsProtocolReaderWriter;
|
||||||
class SrsKbps;
|
class SrsKbps;
|
||||||
class SrsLbRoundRobin;
|
class SrsLbRoundRobin;
|
||||||
class SrsTcpClient;
|
class SrsTcpClient;
|
||||||
|
class SrsSimpleRtmpClient;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the state of edge, auto machine
|
* the state of edge, auto machine
|
||||||
|
@ -80,21 +81,17 @@ enum SrsEdgeUserState
|
||||||
class SrsEdgeIngester : public ISrsReusableThread2Handler
|
class SrsEdgeIngester : public ISrsReusableThread2Handler
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int stream_id;
|
SrsSource* source;
|
||||||
private:
|
SrsPlayEdge* edge;
|
||||||
SrsSource* _source;
|
SrsRequest* req;
|
||||||
SrsPlayEdge* _edge;
|
|
||||||
SrsRequest* _req;
|
|
||||||
SrsReusableThread2* pthread;
|
SrsReusableThread2* pthread;
|
||||||
SrsTcpClient* transport;
|
SrsSimpleRtmpClient* sdk;
|
||||||
SrsKbps* kbps;
|
|
||||||
SrsRtmpClient* client;
|
|
||||||
SrsLbRoundRobin* lb;
|
SrsLbRoundRobin* lb;
|
||||||
public:
|
public:
|
||||||
SrsEdgeIngester();
|
SrsEdgeIngester();
|
||||||
virtual ~SrsEdgeIngester();
|
virtual ~SrsEdgeIngester();
|
||||||
public:
|
public:
|
||||||
virtual int initialize(SrsSource* source, SrsPlayEdge* edge, SrsRequest* req);
|
virtual int initialize(SrsSource* s, SrsPlayEdge* e, SrsRequest* r);
|
||||||
virtual int start();
|
virtual int start();
|
||||||
virtual void stop();
|
virtual void stop();
|
||||||
virtual std::string get_curr_origin();
|
virtual std::string get_curr_origin();
|
||||||
|
@ -103,8 +100,6 @@ public:
|
||||||
virtual int cycle();
|
virtual int cycle();
|
||||||
private:
|
private:
|
||||||
virtual int ingest();
|
virtual int ingest();
|
||||||
virtual int connect_server(std::string& ep_server, int& ep_port);
|
|
||||||
virtual int connect_app(std::string ep_server, int ep_port);
|
|
||||||
virtual int process_publish_message(SrsCommonMessage* msg);
|
virtual int process_publish_message(SrsCommonMessage* msg);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,7 @@ SrsSimpleRtmpClient::SrsSimpleRtmpClient()
|
||||||
{
|
{
|
||||||
req = NULL;
|
req = NULL;
|
||||||
client = NULL;
|
client = NULL;
|
||||||
|
kbps = new SrsKbps();
|
||||||
|
|
||||||
transport = new SrsTcpClient();
|
transport = new SrsTcpClient();
|
||||||
stream_id = 0;
|
stream_id = 0;
|
||||||
|
@ -89,7 +90,11 @@ SrsSimpleRtmpClient::~SrsSimpleRtmpClient()
|
||||||
{
|
{
|
||||||
close();
|
close();
|
||||||
|
|
||||||
|
srs_freep(kbps);
|
||||||
srs_freep(transport);
|
srs_freep(transport);
|
||||||
|
|
||||||
|
srs_freep(client);
|
||||||
|
kbps->set_io(NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
int SrsSimpleRtmpClient::connect(string url, int64_t timeout)
|
int SrsSimpleRtmpClient::connect(string url, int64_t timeout)
|
||||||
|
@ -122,6 +127,8 @@ int SrsSimpleRtmpClient::connect(string url, string vhost, int64_t timeout)
|
||||||
srs_freep(client);
|
srs_freep(client);
|
||||||
client = new SrsRtmpClient(transport);
|
client = new SrsRtmpClient(transport);
|
||||||
|
|
||||||
|
kbps->set_io(transport, transport);
|
||||||
|
|
||||||
client->set_recv_timeout(timeout);
|
client->set_recv_timeout(timeout);
|
||||||
client->set_send_timeout(timeout);
|
client->set_send_timeout(timeout);
|
||||||
|
|
||||||
|
@ -139,13 +146,6 @@ int SrsSimpleRtmpClient::connect(string url, string vhost, int64_t timeout)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// publish.
|
|
||||||
if ((ret = client->publish(req->stream, stream_id)) != ERROR_SUCCESS) {
|
|
||||||
srs_error("sdk: publish failed, stream=%s, stream_id=%d. ret=%d",
|
|
||||||
req->stream.c_str(), stream_id, ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -215,6 +215,47 @@ void SrsSimpleRtmpClient::close()
|
||||||
srs_freep(req);
|
srs_freep(req);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int SrsSimpleRtmpClient::publish()
|
||||||
|
{
|
||||||
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
|
// publish.
|
||||||
|
if ((ret = client->publish(req->stream, stream_id)) != ERROR_SUCCESS) {
|
||||||
|
srs_error("sdk: publish failed, stream=%s, stream_id=%d. ret=%d",
|
||||||
|
req->stream.c_str(), stream_id, ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int SrsSimpleRtmpClient::play()
|
||||||
|
{
|
||||||
|
int ret = ERROR_SUCCESS;
|
||||||
|
|
||||||
|
if ((ret = client->play(req->stream, stream_id)) != ERROR_SUCCESS) {
|
||||||
|
srs_error("connect with server failed, stream=%s, stream_id=%d. ret=%d",
|
||||||
|
req->stream.c_str(), stream_id, ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
void SrsSimpleRtmpClient::kbps_sample(const char* label, int64_t age)
|
||||||
|
{
|
||||||
|
kbps->sample();
|
||||||
|
|
||||||
|
int sr = kbps->get_send_kbps();
|
||||||
|
int sr30s = kbps->get_send_kbps_30s();
|
||||||
|
int sr5m = kbps->get_send_kbps_5m();
|
||||||
|
int rr = kbps->get_recv_kbps();
|
||||||
|
int rr30s = kbps->get_recv_kbps_30s();
|
||||||
|
int rr5m = kbps->get_recv_kbps_5m();
|
||||||
|
|
||||||
|
srs_trace("<- %s time=%"PRId64", okbps=%d,%d,%d, ikbps=%d,%d,%d", age, sr, sr30s, sr5m, rr, rr30s, rr5m);
|
||||||
|
}
|
||||||
|
|
||||||
int SrsSimpleRtmpClient::rtmp_write_packet(char type, u_int32_t timestamp, char* data, int size)
|
int SrsSimpleRtmpClient::rtmp_write_packet(char type, u_int32_t timestamp, char* data, int size)
|
||||||
{
|
{
|
||||||
int ret = ERROR_SUCCESS;
|
int ret = ERROR_SUCCESS;
|
||||||
|
@ -235,6 +276,21 @@ int SrsSimpleRtmpClient::rtmp_write_packet(char type, u_int32_t timestamp, char*
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int SrsSimpleRtmpClient::recv_message(SrsCommonMessage** pmsg)
|
||||||
|
{
|
||||||
|
return client->recv_message(pmsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
int SrsSimpleRtmpClient::decode_message(SrsCommonMessage* msg, SrsPacket** ppacket)
|
||||||
|
{
|
||||||
|
return client->decode_message(msg, ppacket);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SrsSimpleRtmpClient::set_recv_timeout(int64_t timeout)
|
||||||
|
{
|
||||||
|
transport->set_recv_timeout(timeout);
|
||||||
|
}
|
||||||
|
|
||||||
SrsRtmpConn::SrsRtmpConn(SrsServer* svr, st_netfd_t c)
|
SrsRtmpConn::SrsRtmpConn(SrsServer* svr, st_netfd_t c)
|
||||||
: SrsConnection(svr, c)
|
: SrsConnection(svr, c)
|
||||||
{
|
{
|
||||||
|
|
|
@ -56,6 +56,8 @@ class SrsQueueRecvThread;
|
||||||
class SrsPublishRecvThread;
|
class SrsPublishRecvThread;
|
||||||
class SrsSecurity;
|
class SrsSecurity;
|
||||||
class ISrsWakable;
|
class ISrsWakable;
|
||||||
|
class SrsCommonMessage;
|
||||||
|
class SrsPacket;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the simple rtmp client stub, use SrsRtmpClient and provides high level APIs.
|
* the simple rtmp client stub, use SrsRtmpClient and provides high level APIs.
|
||||||
|
@ -66,6 +68,7 @@ private:
|
||||||
SrsRequest* req;
|
SrsRequest* req;
|
||||||
SrsTcpClient* transport;
|
SrsTcpClient* transport;
|
||||||
SrsRtmpClient* client;
|
SrsRtmpClient* client;
|
||||||
|
SrsKbps* kbps;
|
||||||
int stream_id;
|
int stream_id;
|
||||||
public:
|
public:
|
||||||
SrsSimpleRtmpClient();
|
SrsSimpleRtmpClient();
|
||||||
|
@ -77,8 +80,16 @@ private:
|
||||||
virtual int connect_app(std::string vhost);
|
virtual int connect_app(std::string vhost);
|
||||||
public:
|
public:
|
||||||
virtual void close();
|
virtual void close();
|
||||||
|
public:
|
||||||
|
virtual int publish();
|
||||||
|
virtual int play();
|
||||||
|
virtual void kbps_sample(const char* label, int64_t age);
|
||||||
public:
|
public:
|
||||||
virtual int rtmp_write_packet(char type, u_int32_t timestamp, char* data, int size);
|
virtual int rtmp_write_packet(char type, u_int32_t timestamp, char* data, int size);
|
||||||
|
virtual int recv_message(SrsCommonMessage** pmsg);
|
||||||
|
virtual int decode_message(SrsCommonMessage* msg, SrsPacket** ppacket);
|
||||||
|
public:
|
||||||
|
virtual void set_recv_timeout(int64_t timeout);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -68,6 +68,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
// the following is the timeout for rtmp protocol,
|
// the following is the timeout for rtmp protocol,
|
||||||
// to avoid death connection.
|
// to avoid death connection.
|
||||||
|
|
||||||
|
// the common io timeout, for both recv and send.
|
||||||
|
#define SRS_CONSTS_RTMP_TIMEOUT_US (int64_t)(30*1000*1000LL)
|
||||||
|
|
||||||
// the timeout to send data to client,
|
// the timeout to send data to client,
|
||||||
// if timeout, close the connection.
|
// if timeout, close the connection.
|
||||||
#define SRS_CONSTS_RTMP_SEND_TIMEOUT_US (int64_t)(30*1000*1000LL)
|
#define SRS_CONSTS_RTMP_SEND_TIMEOUT_US (int64_t)(30*1000*1000LL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue