1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Refine kbps more testable

This commit is contained in:
winlin 2018-12-23 20:30:12 +08:00
parent 16fa4c588a
commit 4c40370986
9 changed files with 144 additions and 14 deletions

View file

@ -49,7 +49,7 @@ int64_t SrsKbpsSlice::get_total_bytes()
void SrsKbpsSlice::sample()
{
int64_t now = srs_get_system_time_ms();
int64_t now = clock->time_ms();
int64_t total_bytes = get_total_bytes();
if (sample_30s.time <= 0) {
@ -103,12 +103,27 @@ IKbpsDelta::~IKbpsDelta()
{
}
SrsKbps::SrsKbps()
SrsWallClock::SrsWallClock()
{
}
SrsWallClock::~SrsWallClock()
{
}
int64_t SrsWallClock::time_ms()
{
return srs_get_system_time_ms();
}
SrsKbps::SrsKbps(SrsWallClock* c)
{
clock = c;
}
SrsKbps::~SrsKbps()
{
srs_freep(clock);
}
void SrsKbps::set_io(ISrsProtocolStatistic* in, ISrsProtocolStatistic* out)
@ -116,7 +131,7 @@ void SrsKbps::set_io(ISrsProtocolStatistic* in, ISrsProtocolStatistic* out)
// set input stream
// now, set start time.
if (is.starttime == 0) {
is.starttime = srs_get_system_time_ms();
is.starttime = clock->time_ms();
}
// save the old in bytes.
if (is.io.in) {
@ -134,7 +149,7 @@ void SrsKbps::set_io(ISrsProtocolStatistic* in, ISrsProtocolStatistic* out)
// set output stream
// now, set start time.
if (os.starttime == 0) {
os.starttime = srs_get_system_time_ms();
os.starttime = clock->time_ms();
}
// save the old in bytes.
if (os.io.out) {
@ -152,7 +167,7 @@ void SrsKbps::set_io(ISrsProtocolStatistic* in, ISrsProtocolStatistic* out)
int SrsKbps::get_send_kbps()
{
int64_t duration = srs_get_system_time_ms() - is.starttime;
int64_t duration = clock->time_ms() - is.starttime;
if (duration <= 0) {
return 0;
}
@ -162,7 +177,7 @@ int SrsKbps::get_send_kbps()
int SrsKbps::get_recv_kbps()
{
int64_t duration = srs_get_system_time_ms() - os.starttime;
int64_t duration = clock->time_ms() - os.starttime;
if (duration <= 0) {
return 0;
}

View file

@ -126,6 +126,21 @@ public:
virtual void cleanup() = 0;
};
/**
* A time source to provide wall clock.
*/
class SrsWallClock
{
public:
SrsWallClock();
virtual ~SrsWallClock();
public:
/**
* Current time in ms.
*/
virtual int64_t time_ms();
};
/**
* to statistic the kbps of io.
* itself can be a statistic source, for example, used for SRS bytes stat.
@ -167,8 +182,10 @@ class SrsKbps : virtual public ISrsProtocolStatistic, virtual public IKbpsDelta
private:
SrsKbpsSlice is;
SrsKbpsSlice os;
SrsWallClock* clock;
public:
SrsKbps();
// We will free the clock c.
SrsKbps(SrsWallClock* c);
virtual ~SrsKbps();
public:
/**