mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	Refactor: Use compositor for ISrsKbpsDelta. v5.0.51
This commit is contained in:
		
							parent
							
								
									29ae29c693
								
							
						
					
					
						commit
						1630918b0f
					
				
					 24 changed files with 225 additions and 213 deletions
				
			
		| 
						 | 
				
			
			@ -68,9 +68,9 @@ srs_error_t SrsAppCasterFlv::on_tcp_client(srs_netfd_t stfd)
 | 
			
		|||
        srs_warn("empty ip for fd=%d", srs_netfd_fileno(stfd));
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    ISrsStartableConneciton* conn = new SrsDynamicHttpConn(this, stfd, http_mux, ip, port);
 | 
			
		||||
    SrsDynamicHttpConn* conn = new SrsDynamicHttpConn(this, stfd, http_mux, ip, port);
 | 
			
		||||
    conns.push_back(conn);
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
    if ((err = conn->start()) != srs_success) {
 | 
			
		||||
        return srs_error_wrap(err, "start tcp listener");
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			@ -80,14 +80,14 @@ srs_error_t SrsAppCasterFlv::on_tcp_client(srs_netfd_t stfd)
 | 
			
		|||
 | 
			
		||||
void SrsAppCasterFlv::remove(ISrsResource* c)
 | 
			
		||||
{
 | 
			
		||||
    ISrsStartableConneciton* conn = dynamic_cast<ISrsStartableConneciton*>(c);
 | 
			
		||||
    ISrsConnection* conn = dynamic_cast<ISrsConnection*>(c);
 | 
			
		||||
    
 | 
			
		||||
    std::vector<ISrsStartableConneciton*>::iterator it;
 | 
			
		||||
    std::vector<ISrsConnection*>::iterator it;
 | 
			
		||||
    if ((it = std::find(conns.begin(), conns.end(), conn)) != conns.end()) {
 | 
			
		||||
        conns.erase(it);
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    // fixbug: ISrsStartableConneciton for CasterFlv is not freed, which could cause memory leak
 | 
			
		||||
    // fixbug: ISrsConnection for CasterFlv is not freed, which could cause memory leak
 | 
			
		||||
    // so, free conn which is not managed by SrsServer->conns;
 | 
			
		||||
    // @see: https://github.com/ossrs/srs/issues/826
 | 
			
		||||
    manager->remove(c);
 | 
			
		||||
| 
						 | 
				
			
			@ -297,11 +297,6 @@ srs_error_t SrsDynamicHttpConn::start()
 | 
			
		|||
    return conn->start();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsDynamicHttpConn::remark(int64_t* in, int64_t* out)
 | 
			
		||||
{
 | 
			
		||||
    conn->remark(in, out);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
SrsHttpFileReader::SrsHttpFileReader(ISrsHttpResponseReader* h)
 | 
			
		||||
{
 | 
			
		||||
    http = h;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -35,7 +35,7 @@ class SrsAppCasterFlv : public ISrsTcpHandler, public ISrsResourceManager, publi
 | 
			
		|||
private:
 | 
			
		||||
    std::string output;
 | 
			
		||||
    SrsHttpServeMux* http_mux;
 | 
			
		||||
    std::vector<ISrsStartableConneciton*> conns;
 | 
			
		||||
    std::vector<ISrsConnection*> conns;
 | 
			
		||||
    SrsResourceManager* manager;
 | 
			
		||||
public:
 | 
			
		||||
    SrsAppCasterFlv(SrsConfDirective* c);
 | 
			
		||||
| 
						 | 
				
			
			@ -54,7 +54,8 @@ public:
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
// The dynamic http connection, never drop the body.
 | 
			
		||||
class SrsDynamicHttpConn : public ISrsStartableConneciton, public ISrsHttpConnOwner, public ISrsReloadHandler
 | 
			
		||||
class SrsDynamicHttpConn : public ISrsConnection, public ISrsStartable, public ISrsHttpConnOwner
 | 
			
		||||
    , public ISrsReloadHandler
 | 
			
		||||
{
 | 
			
		||||
private:
 | 
			
		||||
    // The manager object to manage the connection.
 | 
			
		||||
| 
						 | 
				
			
			@ -92,9 +93,6 @@ public:
 | 
			
		|||
// Interface ISrsStartable
 | 
			
		||||
public:
 | 
			
		||||
    virtual srs_error_t start();
 | 
			
		||||
// Interface ISrsKbpsDelta
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// The http wrapper for file reader, to read http post stream like a file.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -414,14 +414,6 @@ ISrsExpire::~ISrsExpire()
 | 
			
		|||
{
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ISrsStartableConneciton::ISrsStartableConneciton()
 | 
			
		||||
{
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ISrsStartableConneciton::~ISrsStartableConneciton()
 | 
			
		||||
{
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
SrsTcpConnection::SrsTcpConnection(srs_netfd_t c)
 | 
			
		||||
{
 | 
			
		||||
    stfd = c;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -135,14 +135,6 @@ public:
 | 
			
		|||
    virtual void expire() = 0;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// Interface for connection that is startable.
 | 
			
		||||
class ISrsStartableConneciton : public ISrsConnection, public ISrsStartable, public ISrsKbpsDelta
 | 
			
		||||
{
 | 
			
		||||
public:
 | 
			
		||||
    ISrsStartableConneciton();
 | 
			
		||||
    virtual ~ISrsStartableConneciton();
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// The basic connection of SRS, for TCP based protocols,
 | 
			
		||||
// all connections accept from listener must extends from this base class,
 | 
			
		||||
// server will add the connection to manager, and delete it when remove.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -62,9 +62,8 @@ SrsHttpConn::SrsHttpConn(ISrsHttpConnOwner* handler, ISrsProtocolReadWriter* fd,
 | 
			
		|||
    ip = cip;
 | 
			
		||||
    port = cport;
 | 
			
		||||
    create_time = srsu2ms(srs_get_system_time());
 | 
			
		||||
    clk = new SrsWallClock();
 | 
			
		||||
    kbps = new SrsKbps(clk);
 | 
			
		||||
    kbps->set_io(skt, skt);
 | 
			
		||||
    delta_ = new SrsNetworkDelta();
 | 
			
		||||
    delta_->set_io(skt, skt);
 | 
			
		||||
    trd = new SrsSTCoroutine("http", this, _srs_context->get_id());
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -76,8 +75,7 @@ SrsHttpConn::~SrsHttpConn()
 | 
			
		|||
    srs_freep(parser);
 | 
			
		||||
    srs_freep(cors);
 | 
			
		||||
 | 
			
		||||
    srs_freep(kbps);
 | 
			
		||||
    srs_freep(clk);
 | 
			
		||||
    srs_freep(delta_);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
std::string SrsHttpConn::desc()
 | 
			
		||||
| 
						 | 
				
			
			@ -85,9 +83,9 @@ std::string SrsHttpConn::desc()
 | 
			
		|||
    return "HttpConn";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsHttpConn::remark(int64_t* in, int64_t* out)
 | 
			
		||||
ISrsKbpsDelta* SrsHttpConn::delta()
 | 
			
		||||
{
 | 
			
		||||
    kbps->remark(in, out);
 | 
			
		||||
    return delta_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
srs_error_t SrsHttpConn::start()
 | 
			
		||||
| 
						 | 
				
			
			@ -404,7 +402,7 @@ srs_error_t SrsHttpxConn::on_conn_done(srs_error_t r0)
 | 
			
		|||
    bool exists = false;
 | 
			
		||||
    SrsStatistic::instance()->on_disconnect(get_id().c_str(), &exists);
 | 
			
		||||
    if (exists) {
 | 
			
		||||
        SrsStatistic::instance()->kbps_add_delta(get_id().c_str(), this);
 | 
			
		||||
        SrsStatistic::instance()->kbps_add_delta(get_id().c_str(), conn->delta());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Because we use manager to manage this object,
 | 
			
		||||
| 
						 | 
				
			
			@ -465,9 +463,9 @@ srs_error_t SrsHttpxConn::start()
 | 
			
		|||
    return conn->start();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsHttpxConn::remark(int64_t* in, int64_t* out)
 | 
			
		||||
ISrsKbpsDelta* SrsHttpxConn::delta()
 | 
			
		||||
{
 | 
			
		||||
    conn->remark(in, out);
 | 
			
		||||
    return conn->delta();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
SrsHttpServer::SrsHttpServer(SrsServer* svr)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -36,6 +36,7 @@ class SrsHttpUri;
 | 
			
		|||
class SrsHttpMessage;
 | 
			
		||||
class SrsHttpStreamServer;
 | 
			
		||||
class SrsHttpStaticServer;
 | 
			
		||||
class SrsNetworkDelta;
 | 
			
		||||
 | 
			
		||||
// The owner of HTTP connection.
 | 
			
		||||
class ISrsHttpConnOwner
 | 
			
		||||
| 
						 | 
				
			
			@ -59,7 +60,7 @@ public:
 | 
			
		|||
 | 
			
		||||
// TODO: FIXME: Should rename to roundtrip or responder, not connection.
 | 
			
		||||
// The http connection which request the static or stream content.
 | 
			
		||||
class SrsHttpConn : public ISrsStartableConneciton, public ISrsCoroutineHandler
 | 
			
		||||
class SrsHttpConn : public ISrsConnection, public ISrsStartable, public ISrsCoroutineHandler
 | 
			
		||||
    , public ISrsExpire
 | 
			
		||||
{
 | 
			
		||||
protected:
 | 
			
		||||
| 
						 | 
				
			
			@ -76,12 +77,8 @@ protected:
 | 
			
		|||
    std::string ip;
 | 
			
		||||
    int port;
 | 
			
		||||
private:
 | 
			
		||||
    // The connection total kbps.
 | 
			
		||||
    // not only the rtmp or http connection, all type of connection are
 | 
			
		||||
    // need to statistic the kbps of io.
 | 
			
		||||
    // The SrsStatistic will use it indirectly to statistic the bytes delta of current connection.
 | 
			
		||||
    SrsKbps* kbps;
 | 
			
		||||
    SrsWallClock* clk;
 | 
			
		||||
    // The delta for statistic.
 | 
			
		||||
    SrsNetworkDelta* delta_;
 | 
			
		||||
    // The create time in milliseconds.
 | 
			
		||||
    // for current connection to log self create time and calculate the living time.
 | 
			
		||||
    int64_t create_time;
 | 
			
		||||
| 
						 | 
				
			
			@ -91,9 +88,8 @@ public:
 | 
			
		|||
// Interface ISrsResource.
 | 
			
		||||
public:
 | 
			
		||||
    virtual std::string desc();
 | 
			
		||||
// Interface ISrsKbpsDelta
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
    ISrsKbpsDelta* delta();
 | 
			
		||||
// Interface ISrsStartable
 | 
			
		||||
public:
 | 
			
		||||
    virtual srs_error_t start();
 | 
			
		||||
| 
						 | 
				
			
			@ -127,8 +123,7 @@ public:
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
// Drop body of request, only process the response.
 | 
			
		||||
class SrsHttpxConn : public ISrsStartableConneciton, public ISrsHttpConnOwner
 | 
			
		||||
    , public ISrsReloadHandler
 | 
			
		||||
class SrsHttpxConn : public ISrsConnection, public ISrsStartable, public ISrsHttpConnOwner, public ISrsReloadHandler
 | 
			
		||||
{
 | 
			
		||||
private:
 | 
			
		||||
    // The manager object to manage the connection.
 | 
			
		||||
| 
						 | 
				
			
			@ -168,9 +163,8 @@ public:
 | 
			
		|||
// Interface ISrsStartable
 | 
			
		||||
public:
 | 
			
		||||
    virtual srs_error_t start();
 | 
			
		||||
// Interface ISrsKbpsDelta
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
    ISrsKbpsDelta* delta();
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
// The http server, use http stream or static server to serve requests.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -70,8 +70,6 @@ SrsHlsStream::~SrsHlsStream()
 | 
			
		|||
 | 
			
		||||
srs_error_t SrsHlsStream::serve_m3u8_ctx(ISrsHttpResponseWriter* w, ISrsHttpMessage* r, ISrsFileReaderFactory* factory, string fullpath, SrsRequest* req)
 | 
			
		||||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
 | 
			
		||||
    string ctx = r->query_get(SRS_CONTEXT_IN_HLS);
 | 
			
		||||
 | 
			
		||||
    // Always make the ctx alive now.
 | 
			
		||||
| 
						 | 
				
			
			@ -99,13 +97,13 @@ void SrsHlsStream::on_serve_ts_ctx(ISrsHttpResponseWriter* w, ISrsHttpMessage* r
 | 
			
		|||
    SrsHttpConn* hc = dynamic_cast<SrsHttpConn*>(hr->connection());
 | 
			
		||||
    srs_assert(hc);
 | 
			
		||||
 | 
			
		||||
    ISrsKbpsDelta* conn = dynamic_cast<ISrsKbpsDelta*>(hc);
 | 
			
		||||
    srs_assert(conn);
 | 
			
		||||
    ISrsKbpsDelta* delta = hc->delta();
 | 
			
		||||
    srs_assert(delta);
 | 
			
		||||
 | 
			
		||||
    // Only update the delta, because SrsServer will sample it. Note that SrsServer also does the stat for all clients
 | 
			
		||||
    // including this one, but it should be ignored because the id is not matched, and instead we use the hls_ctx as
 | 
			
		||||
    // session id to match the client.
 | 
			
		||||
    SrsStatistic::instance()->kbps_add_delta(ctx, conn);
 | 
			
		||||
    SrsStatistic::instance()->kbps_add_delta(ctx, delta);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
srs_error_t SrsHlsStream::serve_new_session(ISrsHttpResponseWriter* w, ISrsHttpMessage* r, SrsRequest* req)
 | 
			
		||||
| 
						 | 
				
			
			@ -467,8 +465,6 @@ srs_error_t SrsVodStream::serve_mp4_stream(ISrsHttpResponseWriter* w, ISrsHttpMe
 | 
			
		|||
 | 
			
		||||
srs_error_t SrsVodStream::serve_m3u8_ctx(ISrsHttpResponseWriter * w, ISrsHttpMessage * r, std::string fullpath)
 | 
			
		||||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
 | 
			
		||||
    SrsHttpMessage* hr = dynamic_cast<SrsHttpMessage*>(r);
 | 
			
		||||
    srs_assert(hr);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1945,9 +1945,9 @@ vector<SrsUdpMuxSocket*> SrsRtcConnection::peer_addresses()
 | 
			
		|||
    return addresses;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsRtcConnection::remark(int64_t* in, int64_t* out)
 | 
			
		||||
ISrsKbpsDelta* SrsRtcConnection::delta()
 | 
			
		||||
{
 | 
			
		||||
    delta_->remark(in, out);
 | 
			
		||||
    return delta_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const SrsContextId& SrsRtcConnection::get_id()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -434,7 +434,7 @@ private:
 | 
			
		|||
//
 | 
			
		||||
// For performance, we use non-public from resource,
 | 
			
		||||
// see https://stackoverflow.com/questions/3747066/c-cannot-convert-from-base-a-to-derived-type-b-via-virtual-base-a
 | 
			
		||||
class SrsRtcConnection : public ISrsResource, public ISrsDisposingHandler, public ISrsExpire, public ISrsKbpsDelta
 | 
			
		||||
class SrsRtcConnection : public ISrsResource, public ISrsDisposingHandler, public ISrsExpire
 | 
			
		||||
{
 | 
			
		||||
    friend class SrsSecurityTransport;
 | 
			
		||||
    friend class SrsRtcPlayStream;
 | 
			
		||||
| 
						 | 
				
			
			@ -513,9 +513,8 @@ public:
 | 
			
		|||
    std::string username();
 | 
			
		||||
    // Get all addresses client used.
 | 
			
		||||
    std::vector<SrsUdpMuxSocket*> peer_addresses();
 | 
			
		||||
// Interface ISrsKbpsDelta.
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
    virtual ISrsKbpsDelta* delta();
 | 
			
		||||
// Interface ISrsResource.
 | 
			
		||||
public:
 | 
			
		||||
    virtual const SrsContextId& get_id();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -643,10 +643,7 @@ srs_error_t SrsRtcServer::on_timer(srs_utime_t interval)
 | 
			
		|||
        // Update stat if session is alive.
 | 
			
		||||
        if (session->is_alive()) {
 | 
			
		||||
            nn_rtc_conns++;
 | 
			
		||||
 | 
			
		||||
            ISrsKbpsDelta* conn = dynamic_cast<ISrsKbpsDelta*>(session);
 | 
			
		||||
            SrsStatistic::instance()->kbps_add_delta(session->get_id().c_str(), conn);
 | 
			
		||||
 | 
			
		||||
            SrsStatistic::instance()->kbps_add_delta(session->get_id().c_str(), session->delta());
 | 
			
		||||
            continue;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -101,9 +101,8 @@ SrsRtmpConn::SrsRtmpConn(SrsServer* svr, srs_netfd_t c, string cip, int cport)
 | 
			
		|||
    ip = cip;
 | 
			
		||||
    port = cport;
 | 
			
		||||
    create_time = srsu2ms(srs_get_system_time());
 | 
			
		||||
    clk = new SrsWallClock();
 | 
			
		||||
    kbps = new SrsKbps(clk);
 | 
			
		||||
    kbps->set_io(skt, skt);
 | 
			
		||||
    delta_ = new SrsNetworkDelta();
 | 
			
		||||
    delta_->set_io(skt, skt);
 | 
			
		||||
    trd = new SrsSTCoroutine("rtmp", this, _srs_context->get_id());
 | 
			
		||||
    
 | 
			
		||||
    rtmp = new SrsRtmpServer(skt);
 | 
			
		||||
| 
						 | 
				
			
			@ -137,8 +136,7 @@ SrsRtmpConn::~SrsRtmpConn()
 | 
			
		|||
    }
 | 
			
		||||
    srs_freep(trd);
 | 
			
		||||
 | 
			
		||||
    srs_freep(kbps);
 | 
			
		||||
    srs_freep(clk);
 | 
			
		||||
    srs_freep(delta_);
 | 
			
		||||
    srs_freep(skt);
 | 
			
		||||
    
 | 
			
		||||
    srs_freep(info);
 | 
			
		||||
| 
						 | 
				
			
			@ -342,9 +340,9 @@ srs_error_t SrsRtmpConn::on_reload_vhost_publish(string vhost)
 | 
			
		|||
    return err;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsRtmpConn::remark(int64_t* in, int64_t* out)
 | 
			
		||||
ISrsKbpsDelta* SrsRtmpConn::delta()
 | 
			
		||||
{
 | 
			
		||||
    kbps->remark(in, out);
 | 
			
		||||
    return delta_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
srs_error_t SrsRtmpConn::service_cycle()
 | 
			
		||||
| 
						 | 
				
			
			@ -765,10 +763,7 @@ srs_error_t SrsRtmpConn::do_playing(SrsLiveSource* source, SrsLiveConsumer* cons
 | 
			
		|||
 | 
			
		||||
        // reportable
 | 
			
		||||
        if (pprint->can_print()) {
 | 
			
		||||
            kbps->sample();
 | 
			
		||||
            srs_trace("-> " SRS_CONSTS_LOG_PLAY " time=%d, msgs=%d, okbps=%d,%d,%d, ikbps=%d,%d,%d, mw=%d/%d",
 | 
			
		||||
                (int)pprint->age(), count, 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(), srsu2msi(mw_sleep), mw_msgs);
 | 
			
		||||
            srs_trace("-> " SRS_CONSTS_LOG_PLAY " time=%d, msgs=%d, mw=%d/%d", (int)pprint->age(), count, srsu2msi(mw_sleep), mw_msgs);
 | 
			
		||||
        }
 | 
			
		||||
        
 | 
			
		||||
        if (count <= 0) {
 | 
			
		||||
| 
						 | 
				
			
			@ -891,8 +886,7 @@ srs_error_t SrsRtmpConn::do_publishing(SrsLiveSource* source, SrsPublishRecvThre
 | 
			
		|||
    if (true) {
 | 
			
		||||
        bool mr = _srs_config->get_mr_enabled(req->vhost);
 | 
			
		||||
        srs_utime_t mr_sleep = _srs_config->get_mr_sleep(req->vhost);
 | 
			
		||||
        srs_trace("start publish mr=%d/%d, p1stpt=%d, pnt=%d, tcp_nodelay=%d",
 | 
			
		||||
            mr, srsu2msi(mr_sleep), srsu2msi(publish_1stpkt_timeout), srsu2msi(publish_normal_timeout), tcp_nodelay);
 | 
			
		||||
        srs_trace("start publish mr=%d/%d, p1stpt=%d, pnt=%d, tcp_nodelay=%d", mr, srsu2msi(mr_sleep), srsu2msi(publish_1stpkt_timeout), srsu2msi(publish_normal_timeout), tcp_nodelay);
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    int64_t nb_msgs = 0;
 | 
			
		||||
| 
						 | 
				
			
			@ -935,13 +929,9 @@ srs_error_t SrsRtmpConn::do_publishing(SrsLiveSource* source, SrsPublishRecvThre
 | 
			
		|||
 | 
			
		||||
        // reportable
 | 
			
		||||
        if (pprint->can_print()) {
 | 
			
		||||
            kbps->sample();
 | 
			
		||||
            bool mr = _srs_config->get_mr_enabled(req->vhost);
 | 
			
		||||
            srs_utime_t mr_sleep = _srs_config->get_mr_sleep(req->vhost);
 | 
			
		||||
            srs_trace("<- " SRS_CONSTS_LOG_CLIENT_PUBLISH " time=%d, okbps=%d,%d,%d, ikbps=%d,%d,%d, mr=%d/%d, p1stpt=%d, pnt=%d",
 | 
			
		||||
                (int)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(), mr, srsu2msi(mr_sleep),
 | 
			
		||||
                srsu2msi(publish_1stpkt_timeout), srsu2msi(publish_normal_timeout));
 | 
			
		||||
            srs_trace("<- " SRS_CONSTS_LOG_CLIENT_PUBLISH " time=%d, mr=%d/%d, p1stpt=%d, pnt=%d", (int)pprint->age(), mr, srsu2msi(mr_sleep), srsu2msi(publish_1stpkt_timeout), srsu2msi(publish_normal_timeout));
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
| 
						 | 
				
			
			@ -1313,7 +1303,7 @@ void SrsRtmpConn::http_hooks_on_close()
 | 
			
		|||
    
 | 
			
		||||
    for (int i = 0; i < (int)hooks.size(); i++) {
 | 
			
		||||
        std::string url = hooks.at(i);
 | 
			
		||||
        SrsHttpHooks::on_close(url, req, kbps->get_send_bytes(), kbps->get_recv_bytes());
 | 
			
		||||
        SrsHttpHooks::on_close(url, req, skt->get_send_bytes(), skt->get_recv_bytes());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1468,7 +1458,7 @@ srs_error_t SrsRtmpConn::cycle()
 | 
			
		|||
 | 
			
		||||
    // Update statistic when done.
 | 
			
		||||
    SrsStatistic* stat = SrsStatistic::instance();
 | 
			
		||||
    stat->kbps_add_delta(get_id().c_str(), this);
 | 
			
		||||
    stat->kbps_add_delta(get_id().c_str(), delta_);
 | 
			
		||||
    stat->on_disconnect(get_id().c_str());
 | 
			
		||||
 | 
			
		||||
    // Notify manager to remove it.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -37,6 +37,7 @@ class SrsSecurity;
 | 
			
		|||
class ISrsWakable;
 | 
			
		||||
class SrsCommonMessage;
 | 
			
		||||
class SrsPacket;
 | 
			
		||||
class SrsNetworkDelta;
 | 
			
		||||
 | 
			
		||||
// The simple rtmp client for SRS.
 | 
			
		||||
class SrsSimpleRtmpClient : public SrsBasicRtmpClient
 | 
			
		||||
| 
						 | 
				
			
			@ -66,7 +67,7 @@ public:
 | 
			
		|||
};
 | 
			
		||||
 | 
			
		||||
// The client provides the main logic control for RTMP clients.
 | 
			
		||||
class SrsRtmpConn : public ISrsStartableConneciton, public ISrsReloadHandler
 | 
			
		||||
class SrsRtmpConn : public ISrsConnection, public ISrsStartable, public ISrsReloadHandler
 | 
			
		||||
    , public ISrsCoroutineHandler, public ISrsExpire
 | 
			
		||||
{
 | 
			
		||||
    // For the thread to directly access any field of connection.
 | 
			
		||||
| 
						 | 
				
			
			@ -110,12 +111,8 @@ private:
 | 
			
		|||
    // The ip and port of client.
 | 
			
		||||
    std::string ip;
 | 
			
		||||
    int port;
 | 
			
		||||
    // The connection total kbps.
 | 
			
		||||
    // not only the rtmp or http connection, all type of connection are
 | 
			
		||||
    // need to statistic the kbps of io.
 | 
			
		||||
    // The SrsStatistic will use it indirectly to statistic the bytes delta of current connection.
 | 
			
		||||
    SrsKbps* kbps;
 | 
			
		||||
    SrsWallClock* clk;
 | 
			
		||||
    // The delta for statistic.
 | 
			
		||||
    SrsNetworkDelta* delta_;
 | 
			
		||||
    // The create time in milliseconds.
 | 
			
		||||
    // for current connection to log self create time and calculate the living time.
 | 
			
		||||
    int64_t create_time;
 | 
			
		||||
| 
						 | 
				
			
			@ -134,9 +131,8 @@ public:
 | 
			
		|||
    virtual srs_error_t on_reload_vhost_tcp_nodelay(std::string vhost);
 | 
			
		||||
    virtual srs_error_t on_reload_vhost_realtime(std::string vhost);
 | 
			
		||||
    virtual srs_error_t on_reload_vhost_publish(std::string vhost);
 | 
			
		||||
// Interface ISrsKbpsDelta
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
    virtual ISrsKbpsDelta* delta();
 | 
			
		||||
private:
 | 
			
		||||
    // When valid and connected to vhost/app, service the client.
 | 
			
		||||
    virtual srs_error_t service_cycle();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1341,11 +1341,21 @@ void SrsServer::resample_kbps()
 | 
			
		|||
    // collect delta from all clients.
 | 
			
		||||
    for (int i = 0; i < (int)conn_manager->size(); i++) {
 | 
			
		||||
        ISrsResource* c = conn_manager->at(i);
 | 
			
		||||
        ISrsKbpsDelta* conn = dynamic_cast<ISrsKbpsDelta*>(c);
 | 
			
		||||
        
 | 
			
		||||
        // add delta of connection to server kbps.,
 | 
			
		||||
        // for next sample() of server kbps can get the stat.
 | 
			
		||||
        stat->kbps_add_delta(c->get_id().c_str(), conn);
 | 
			
		||||
 | 
			
		||||
        SrsRtmpConn* rtmp = dynamic_cast<SrsRtmpConn*>(c);
 | 
			
		||||
        if (rtmp) {
 | 
			
		||||
            stat->kbps_add_delta(c->get_id().c_str(), rtmp->delta());
 | 
			
		||||
            continue;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        SrsHttpxConn* httpx = dynamic_cast<SrsHttpxConn*>(c);
 | 
			
		||||
        if (httpx) {
 | 
			
		||||
            stat->kbps_add_delta(c->get_id().c_str(), httpx->delta());
 | 
			
		||||
            continue;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // Impossible path, because we only create these connections above.
 | 
			
		||||
        srs_assert(false);
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    // Update the global server level statistics.
 | 
			
		||||
| 
						 | 
				
			
			@ -1356,9 +1366,9 @@ srs_error_t SrsServer::accept_client(SrsListenerType type, srs_netfd_t stfd)
 | 
			
		|||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
    
 | 
			
		||||
    ISrsStartableConneciton* conn = NULL;
 | 
			
		||||
    ISrsResource* resource = NULL;
 | 
			
		||||
    
 | 
			
		||||
    if ((err = fd_to_resource(type, stfd, &conn)) != srs_success) {
 | 
			
		||||
    if ((err = fd_to_resource(type, stfd, &resource)) != srs_success) {
 | 
			
		||||
        //close fd on conn error, otherwise will lead to fd leak -gs
 | 
			
		||||
        srs_close_stfd(stfd);
 | 
			
		||||
        if (srs_error_code(err) == ERROR_SOCKET_GET_PEER_IP && _srs_config->empty_ip_ok()) {
 | 
			
		||||
| 
						 | 
				
			
			@ -1367,11 +1377,12 @@ srs_error_t SrsServer::accept_client(SrsListenerType type, srs_netfd_t stfd)
 | 
			
		|||
        }
 | 
			
		||||
        return srs_error_wrap(err, "fd to resource");
 | 
			
		||||
    }
 | 
			
		||||
    srs_assert(conn);
 | 
			
		||||
    srs_assert(resource);
 | 
			
		||||
    
 | 
			
		||||
    // directly enqueue, the cycle thread will remove the client.
 | 
			
		||||
    conn_manager->add(conn);
 | 
			
		||||
    conn_manager->add(resource);
 | 
			
		||||
 | 
			
		||||
    ISrsStartable* conn = dynamic_cast<ISrsStartable*>(resource);
 | 
			
		||||
    if ((err = conn->start()) != srs_success) {
 | 
			
		||||
        return srs_error_wrap(err, "start conn coroutine");
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			@ -1384,7 +1395,7 @@ ISrsHttpServeMux* SrsServer::api_server()
 | 
			
		|||
    return http_api_mux;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
srs_error_t SrsServer::fd_to_resource(SrsListenerType type, srs_netfd_t stfd, ISrsStartableConneciton** pr)
 | 
			
		||||
srs_error_t SrsServer::fd_to_resource(SrsListenerType type, srs_netfd_t stfd, ISrsResource** pr)
 | 
			
		||||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
    
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -311,7 +311,7 @@ public:
 | 
			
		|||
    // TODO: FIXME: Fetch from hybrid server manager.
 | 
			
		||||
    virtual ISrsHttpServeMux* api_server();
 | 
			
		||||
private:
 | 
			
		||||
    virtual srs_error_t fd_to_resource(SrsListenerType type, srs_netfd_t stfd, ISrsStartableConneciton** pr);
 | 
			
		||||
    virtual srs_error_t fd_to_resource(SrsListenerType type, srs_netfd_t stfd, ISrsResource** pr);
 | 
			
		||||
// Interface ISrsResourceManager
 | 
			
		||||
public:
 | 
			
		||||
    // A callback for connection to remove itself.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -160,9 +160,8 @@ SrsMpegtsSrtConn::SrsMpegtsSrtConn(SrsSrtServer* srt_server, srs_srt_t srt_fd, s
 | 
			
		|||
 | 
			
		||||
    srt_fd_ = srt_fd;
 | 
			
		||||
    srt_conn_ = new SrsSrtConnection(srt_fd_);
 | 
			
		||||
    clock_ = new SrsWallClock();
 | 
			
		||||
    kbps_ = new SrsKbps(clock_);
 | 
			
		||||
    kbps_->set_io(srt_conn_, srt_conn_);
 | 
			
		||||
    delta_ = new SrsNetworkDelta();
 | 
			
		||||
    delta_->set_io(srt_conn_, srt_conn_);
 | 
			
		||||
    ip_ = ip;
 | 
			
		||||
    port_ = port;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -177,11 +176,8 @@ SrsMpegtsSrtConn::~SrsMpegtsSrtConn()
 | 
			
		|||
{
 | 
			
		||||
    srs_freep(trd_);
 | 
			
		||||
 | 
			
		||||
    srs_freep(kbps_);
 | 
			
		||||
    srs_freep(clock_);
 | 
			
		||||
 | 
			
		||||
    srs_freep(delta_);
 | 
			
		||||
    srs_freep(srt_conn_);
 | 
			
		||||
 | 
			
		||||
    srs_freep(req_);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -190,9 +186,9 @@ std::string SrsMpegtsSrtConn::desc()
 | 
			
		|||
    return "srt-ts-conn";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsMpegtsSrtConn::remark(int64_t* in, int64_t* out)
 | 
			
		||||
ISrsKbpsDelta* SrsMpegtsSrtConn::delta()
 | 
			
		||||
{
 | 
			
		||||
    kbps_->remark(in, out);
 | 
			
		||||
    return delta_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void SrsMpegtsSrtConn::expire()
 | 
			
		||||
| 
						 | 
				
			
			@ -227,7 +223,7 @@ srs_error_t SrsMpegtsSrtConn::cycle()
 | 
			
		|||
 | 
			
		||||
    // Update statistic when done.
 | 
			
		||||
    SrsStatistic* stat = SrsStatistic::instance();
 | 
			
		||||
    stat->kbps_add_delta(get_id().c_str(), this);
 | 
			
		||||
    stat->kbps_add_delta(get_id().c_str(), delta_);
 | 
			
		||||
    stat->on_disconnect(get_id().c_str());
 | 
			
		||||
 | 
			
		||||
    // Notify manager to remove it.
 | 
			
		||||
| 
						 | 
				
			
			@ -412,11 +408,7 @@ srs_error_t SrsMpegtsSrtConn::do_publishing()
 | 
			
		|||
                    s.pktRecv(), s.pktRcvLoss(), s.pktRcvRetrans(), s.pktRcvDrop());
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            kbps_->sample();
 | 
			
		||||
 | 
			
		||||
            srs_trace("<- " SRS_CONSTS_LOG_SRT_PUBLISH " time=%d, packets=%d, okbps=%d,%d,%d, ikbps=%d,%d,%d",
 | 
			
		||||
                (int)pprint->age(), nb_packets, 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());
 | 
			
		||||
            srs_trace("<- " SRS_CONSTS_LOG_SRT_PUBLISH " time=%d, packets=%d", (int)pprint->age(), nb_packets);
 | 
			
		||||
            nb_packets = 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -493,11 +485,7 @@ srs_error_t SrsMpegtsSrtConn::do_playing()
 | 
			
		|||
                    s.pktSent(), s.pktSndLoss(), s.pktRetrans(), s.pktSndDrop());
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            kbps_->sample();
 | 
			
		||||
 | 
			
		||||
            srs_trace("-> " SRS_CONSTS_LOG_SRT_PLAY " time=%d, packets=%d, okbps=%d,%d,%d, ikbps=%d,%d,%d",
 | 
			
		||||
                (int)pprint->age(), nb_packets, 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());
 | 
			
		||||
            srs_trace("-> " SRS_CONSTS_LOG_SRT_PLAY " time=%d, packets=%d", (int)pprint->age(), nb_packets);
 | 
			
		||||
            nb_packets = 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -600,7 +588,7 @@ void SrsMpegtsSrtConn::http_hooks_on_close()
 | 
			
		|||
    
 | 
			
		||||
    for (int i = 0; i < (int)hooks.size(); i++) {
 | 
			
		||||
        std::string url = hooks.at(i);
 | 
			
		||||
        SrsHttpHooks::on_close(url, req_, kbps_->get_send_bytes(), kbps_->get_recv_bytes());
 | 
			
		||||
        SrsHttpHooks::on_close(url, req_, srt_conn_->get_send_bytes(), srt_conn_->get_recv_bytes());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -21,6 +21,7 @@ class SrsBuffer;
 | 
			
		|||
class SrsLiveSource;
 | 
			
		||||
class SrsSrtSource;
 | 
			
		||||
class SrsSrtServer;
 | 
			
		||||
class SrsNetworkDelta;
 | 
			
		||||
 | 
			
		||||
// The basic connection of SRS, for SRT based protocols,
 | 
			
		||||
// all srt connections accept from srt listener must extends from this base class,
 | 
			
		||||
| 
						 | 
				
			
			@ -70,7 +71,7 @@ private:
 | 
			
		|||
    srs_error_t recv_err_;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
class SrsMpegtsSrtConn : public ISrsStartableConneciton, public ISrsCoroutineHandler, public ISrsExpire
 | 
			
		||||
class SrsMpegtsSrtConn : public ISrsConnection, public ISrsStartable, public ISrsCoroutineHandler, public ISrsExpire
 | 
			
		||||
{
 | 
			
		||||
public:
 | 
			
		||||
    SrsMpegtsSrtConn(SrsSrtServer* srt_server, srs_srt_t srt_fd, std::string ip, int port);
 | 
			
		||||
| 
						 | 
				
			
			@ -78,9 +79,8 @@ public:
 | 
			
		|||
// Interface ISrsResource.
 | 
			
		||||
public:
 | 
			
		||||
    virtual std::string desc();
 | 
			
		||||
// Interface ISrsKbpsDelta
 | 
			
		||||
public:
 | 
			
		||||
    virtual void remark(int64_t* in, int64_t* out);
 | 
			
		||||
    ISrsKbpsDelta* delta();
 | 
			
		||||
// Interface ISrsExpire
 | 
			
		||||
public:
 | 
			
		||||
    virtual void expire();
 | 
			
		||||
| 
						 | 
				
			
			@ -115,8 +115,7 @@ private:
 | 
			
		|||
    SrsSrtServer* srt_server_;
 | 
			
		||||
    srs_srt_t srt_fd_;
 | 
			
		||||
    SrsSrtConnection* srt_conn_;
 | 
			
		||||
    SrsWallClock* clock_;
 | 
			
		||||
    SrsKbps* kbps_;
 | 
			
		||||
    SrsNetworkDelta* delta_;
 | 
			
		||||
    std::string ip_;
 | 
			
		||||
    int port_;
 | 
			
		||||
    SrsCoroutine* trd_;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -212,18 +212,19 @@ srs_error_t SrsSrtServer::accept_srt_client(srs_srt_t srt_fd)
 | 
			
		|||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
 | 
			
		||||
    ISrsStartableConneciton* conn = NULL;
 | 
			
		||||
    if ((err = fd_to_resource(srt_fd, &conn)) != srs_success) {
 | 
			
		||||
    ISrsResource* resource = NULL;
 | 
			
		||||
    if ((err = fd_to_resource(srt_fd, &resource)) != srs_success) {
 | 
			
		||||
        //close fd on conn error, otherwise will lead to fd leak -gs
 | 
			
		||||
        // TODO: FIXME: Handle error.
 | 
			
		||||
        srs_srt_close(srt_fd);
 | 
			
		||||
        return srs_error_wrap(err, "srt fd to resource");
 | 
			
		||||
    }
 | 
			
		||||
    srs_assert(conn);
 | 
			
		||||
    srs_assert(resource);
 | 
			
		||||
    
 | 
			
		||||
    // directly enqueue, the cycle thread will remove the client.
 | 
			
		||||
    conn_manager_->add(conn);
 | 
			
		||||
    conn_manager_->add(resource);
 | 
			
		||||
 | 
			
		||||
    ISrsStartable* conn = dynamic_cast<ISrsStartable*>(resource);
 | 
			
		||||
    if ((err = conn->start()) != srs_success) {
 | 
			
		||||
        return srs_error_wrap(err, "start srt conn coroutine");
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			@ -231,7 +232,7 @@ srs_error_t SrsSrtServer::accept_srt_client(srs_srt_t srt_fd)
 | 
			
		|||
    return err;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
srs_error_t SrsSrtServer::fd_to_resource(srs_srt_t srt_fd, ISrsStartableConneciton** pr)
 | 
			
		||||
srs_error_t SrsSrtServer::fd_to_resource(srs_srt_t srt_fd, ISrsResource** pr)
 | 
			
		||||
{
 | 
			
		||||
    srs_error_t err = srs_success;
 | 
			
		||||
    
 | 
			
		||||
| 
						 | 
				
			
			@ -294,11 +295,13 @@ void SrsSrtServer::resample_kbps()
 | 
			
		|||
    // collect delta from all clients.
 | 
			
		||||
    for (int i = 0; i < (int)conn_manager_->size(); i++) {
 | 
			
		||||
        ISrsResource* c = conn_manager_->at(i);
 | 
			
		||||
        ISrsKbpsDelta* conn = dynamic_cast<ISrsKbpsDelta*>(c);
 | 
			
		||||
 | 
			
		||||
        SrsMpegtsSrtConn* conn = dynamic_cast<SrsMpegtsSrtConn*>(c);
 | 
			
		||||
        srs_assert(conn);
 | 
			
		||||
 | 
			
		||||
        // add delta of connection to server kbps.,
 | 
			
		||||
        // for next sample() of server kbps can get the stat.
 | 
			
		||||
        SrsStatistic::instance()->kbps_add_delta(c->get_id().c_str(), conn);
 | 
			
		||||
        SrsStatistic::instance()->kbps_add_delta(c->get_id().c_str(), conn->delta());
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -62,7 +62,7 @@ public:
 | 
			
		|||
    // @param srt_fd, the client fd in srt boxed, the underlayer fd.
 | 
			
		||||
    virtual srs_error_t accept_srt_client(srs_srt_t srt_fd);
 | 
			
		||||
private:
 | 
			
		||||
    virtual srs_error_t fd_to_resource(srs_srt_t srt_fd, ISrsStartableConneciton** pr);
 | 
			
		||||
    virtual srs_error_t fd_to_resource(srs_srt_t srt_fd, ISrsResource** pr);
 | 
			
		||||
// Interface ISrsResourceManager
 | 
			
		||||
public:
 | 
			
		||||
    // A callback for connection to remove itself.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -478,11 +478,12 @@ void SrsStatistic::cleanup_stream(SrsStatisticStream* stream)
 | 
			
		|||
 | 
			
		||||
void SrsStatistic::kbps_add_delta(std::string id, ISrsKbpsDelta* delta)
 | 
			
		||||
{
 | 
			
		||||
    if (clients.find(id) == clients.end()) {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    SrsStatisticClient* client = clients[id];
 | 
			
		||||
    if (!delta) return;
 | 
			
		||||
 | 
			
		||||
    map<string, SrsStatisticClient*>::iterator it = clients.find(id);
 | 
			
		||||
    if (it == clients.end()) return;
 | 
			
		||||
 | 
			
		||||
    SrsStatisticClient* client = it->second;
 | 
			
		||||
    
 | 
			
		||||
    // resample the kbps to collect the delta.
 | 
			
		||||
    int64_t in, out;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue