2017-03-25 09:21:39 +00:00
|
|
|
/**
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2018-01-07 02:58:53 +00:00
|
|
|
* Copyright (c) 2013-2018 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-05-12 09:27:50 +00:00
|
|
|
|
2015-05-23 01:58:00 +00:00
|
|
|
#include <srs_protocol_kbps.hpp>
|
2014-05-12 09:27:50 +00:00
|
|
|
|
2014-05-12 10:06:13 +00:00
|
|
|
#include <srs_kernel_utility.hpp>
|
2014-07-13 02:33:18 +00:00
|
|
|
|
2014-05-14 05:56:12 +00:00
|
|
|
SrsKbpsSample::SrsKbpsSample()
|
|
|
|
{
|
|
|
|
bytes = time = 0;
|
|
|
|
kbps = 0;
|
|
|
|
}
|
|
|
|
|
2014-05-12 10:06:13 +00:00
|
|
|
SrsKbpsSlice::SrsKbpsSlice()
|
|
|
|
{
|
|
|
|
io.in = NULL;
|
|
|
|
io.out = NULL;
|
2014-06-19 07:28:05 +00:00
|
|
|
last_bytes = io_bytes_base = starttime = bytes = delta_bytes = 0;
|
2014-05-12 10:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SrsKbpsSlice::~SrsKbpsSlice()
|
|
|
|
{
|
|
|
|
}
|
2014-05-12 09:27:50 +00:00
|
|
|
|
2014-05-14 05:56:12 +00:00
|
|
|
int64_t SrsKbpsSlice::get_total_bytes()
|
|
|
|
{
|
|
|
|
return bytes + last_bytes - io_bytes_base;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SrsKbpsSlice::sample()
|
|
|
|
{
|
|
|
|
int64_t now = srs_get_system_time_ms();
|
|
|
|
int64_t total_bytes = get_total_bytes();
|
|
|
|
|
|
|
|
if (sample_30s.time <= 0) {
|
|
|
|
sample_30s.kbps = 0;
|
|
|
|
sample_30s.time = now;
|
|
|
|
sample_30s.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (sample_1m.time <= 0) {
|
|
|
|
sample_1m.kbps = 0;
|
|
|
|
sample_1m.time = now;
|
|
|
|
sample_1m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (sample_5m.time <= 0) {
|
|
|
|
sample_5m.kbps = 0;
|
|
|
|
sample_5m.time = now;
|
|
|
|
sample_5m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (sample_60m.time <= 0) {
|
|
|
|
sample_60m.kbps = 0;
|
|
|
|
sample_60m.time = now;
|
|
|
|
sample_60m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (now - sample_30s.time > 30 * 1000) {
|
2015-05-22 03:20:25 +00:00
|
|
|
sample_30s.kbps = (int)((total_bytes - sample_30s.bytes) * 8 / (now - sample_30s.time));
|
2014-05-14 05:56:12 +00:00
|
|
|
sample_30s.time = now;
|
|
|
|
sample_30s.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (now - sample_1m.time > 60 * 1000) {
|
2015-05-22 03:20:25 +00:00
|
|
|
sample_1m.kbps = (int)((total_bytes - sample_1m.bytes) * 8 / (now - sample_1m.time));
|
2014-05-14 05:56:12 +00:00
|
|
|
sample_1m.time = now;
|
|
|
|
sample_1m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (now - sample_5m.time > 300 * 1000) {
|
2015-05-22 03:20:25 +00:00
|
|
|
sample_5m.kbps = (int)((total_bytes - sample_5m.bytes) * 8 / (now - sample_5m.time));
|
2014-05-14 05:56:12 +00:00
|
|
|
sample_5m.time = now;
|
|
|
|
sample_5m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
if (now - sample_60m.time > 3600 * 1000) {
|
2015-05-22 03:20:25 +00:00
|
|
|
sample_60m.kbps = (int)((total_bytes - sample_60m.bytes) * 8 / (now - sample_60m.time));
|
2014-05-14 05:56:12 +00:00
|
|
|
sample_60m.time = now;
|
|
|
|
sample_60m.bytes = total_bytes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
IKbpsDelta::IKbpsDelta()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
IKbpsDelta::~IKbpsDelta()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-12 09:27:50 +00:00
|
|
|
SrsKbps::SrsKbps()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SrsKbps::~SrsKbps()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-06-19 03:22:24 +00:00
|
|
|
void SrsKbps::set_io(ISrsProtocolStatistic* in, ISrsProtocolStatistic* out)
|
2014-05-12 09:27:50 +00:00
|
|
|
{
|
2014-05-12 10:06:13 +00:00
|
|
|
// set input stream
|
|
|
|
// now, set start time.
|
|
|
|
if (is.starttime == 0) {
|
|
|
|
is.starttime = srs_get_system_time_ms();
|
|
|
|
}
|
|
|
|
// save the old in bytes.
|
|
|
|
if (is.io.in) {
|
2017-01-11 03:37:26 +00:00
|
|
|
is.bytes += is.io.in->get_recv_bytes() - is.io_bytes_base;
|
2014-05-12 10:06:13 +00:00
|
|
|
}
|
|
|
|
// use new io.
|
|
|
|
is.io.in = in;
|
|
|
|
is.last_bytes = is.io_bytes_base = 0;
|
|
|
|
if (in) {
|
|
|
|
is.last_bytes = is.io_bytes_base = in->get_recv_bytes();
|
|
|
|
}
|
2014-05-14 05:56:12 +00:00
|
|
|
// resample
|
|
|
|
is.sample();
|
2014-05-12 10:06:13 +00:00
|
|
|
|
|
|
|
// set output stream
|
|
|
|
// now, set start time.
|
|
|
|
if (os.starttime == 0) {
|
|
|
|
os.starttime = srs_get_system_time_ms();
|
|
|
|
}
|
|
|
|
// save the old in bytes.
|
|
|
|
if (os.io.out) {
|
2017-01-11 03:22:16 +00:00
|
|
|
os.bytes += os.io.out->get_send_bytes() - os.io_bytes_base;
|
2014-05-12 10:06:13 +00:00
|
|
|
}
|
|
|
|
// use new io.
|
|
|
|
os.io.out = out;
|
|
|
|
os.last_bytes = os.io_bytes_base = 0;
|
|
|
|
if (out) {
|
|
|
|
os.last_bytes = os.io_bytes_base = out->get_send_bytes();
|
|
|
|
}
|
2014-05-14 05:56:12 +00:00
|
|
|
// resample
|
|
|
|
os.sample();
|
2014-05-12 09:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SrsKbps::get_send_kbps()
|
|
|
|
{
|
2014-05-12 10:06:13 +00:00
|
|
|
int64_t duration = srs_get_system_time_ms() - is.starttime;
|
|
|
|
if (duration <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-14 05:56:12 +00:00
|
|
|
int64_t bytes = get_send_bytes();
|
2015-05-22 03:20:25 +00:00
|
|
|
return (int)(bytes * 8 / duration);
|
2014-05-12 09:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int SrsKbps::get_recv_kbps()
|
|
|
|
{
|
2014-05-12 10:06:13 +00:00
|
|
|
int64_t duration = srs_get_system_time_ms() - os.starttime;
|
|
|
|
if (duration <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-14 05:56:12 +00:00
|
|
|
int64_t bytes = get_recv_bytes();
|
2015-05-22 03:20:25 +00:00
|
|
|
return (int)(bytes * 8 / duration);
|
2014-05-12 10:06:13 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
int SrsKbps::get_send_kbps_30s()
|
2014-05-14 05:56:12 +00:00
|
|
|
{
|
|
|
|
return os.sample_30s.kbps;
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
int SrsKbps::get_recv_kbps_30s()
|
2014-05-14 05:56:12 +00:00
|
|
|
{
|
|
|
|
return is.sample_30s.kbps;
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
int SrsKbps::get_send_kbps_5m()
|
2014-05-14 05:56:12 +00:00
|
|
|
{
|
|
|
|
return os.sample_5m.kbps;
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
int SrsKbps::get_recv_kbps_5m()
|
2014-05-14 05:56:12 +00:00
|
|
|
{
|
|
|
|
return is.sample_5m.kbps;
|
|
|
|
}
|
|
|
|
|
2014-05-12 10:06:13 +00:00
|
|
|
int64_t SrsKbps::get_send_bytes()
|
|
|
|
{
|
2017-01-11 03:22:16 +00:00
|
|
|
// we must calc the send bytes dynamically,
|
|
|
|
// to not depends on the sample(which used to calc the kbps).
|
|
|
|
// @read https://github.com/ossrs/srs/issues/588
|
|
|
|
|
|
|
|
// session start bytes.
|
|
|
|
int64_t bytes = os.bytes;
|
|
|
|
|
2017-01-11 03:37:26 +00:00
|
|
|
// When exists active session, use it to get the last bytes.
|
2017-01-11 03:22:16 +00:00
|
|
|
if (os.io.out) {
|
|
|
|
bytes += os.io.out->get_send_bytes() - os.io_bytes_base;
|
2017-01-11 03:37:26 +00:00
|
|
|
return bytes;
|
2017-01-11 03:22:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:37:26 +00:00
|
|
|
// When no active session, the last_bytes record the last valid bytes.
|
|
|
|
// TODO: Maybe the bellow bytes is zero, because the ios.io.out is NULL.
|
|
|
|
bytes += os.last_bytes - os.io_bytes_base;
|
2017-03-25 09:21:39 +00:00
|
|
|
|
2017-01-11 03:22:16 +00:00
|
|
|
return bytes;
|
2014-05-12 10:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t SrsKbps::get_recv_bytes()
|
|
|
|
{
|
2017-01-11 03:22:16 +00:00
|
|
|
// we must calc the send bytes dynamically,
|
|
|
|
// to not depends on the sample(which used to calc the kbps).
|
|
|
|
// @read https://github.com/ossrs/srs/issues/588
|
|
|
|
|
|
|
|
// session start bytes.
|
|
|
|
int64_t bytes = is.bytes;
|
|
|
|
|
2017-01-11 03:37:26 +00:00
|
|
|
// When exists active session, use it to get the last bytes.
|
2017-01-11 03:22:16 +00:00
|
|
|
if (is.io.in) {
|
|
|
|
bytes += is.io.in->get_recv_bytes() - is.io_bytes_base;
|
2017-01-11 03:37:26 +00:00
|
|
|
return bytes;
|
2017-01-11 03:22:16 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:37:26 +00:00
|
|
|
// When no active session, the last_bytes record the last valid bytes.
|
|
|
|
// TODO: Maybe the bellow bytes is zero, because the ios.io.out is NULL.
|
|
|
|
bytes += is.last_bytes - is.io_bytes_base;
|
2017-03-25 09:21:39 +00:00
|
|
|
|
2017-01-11 03:22:16 +00:00
|
|
|
return bytes;
|
2014-05-14 05:56:12 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 11:59:10 +00:00
|
|
|
void SrsKbps::resample()
|
|
|
|
{
|
|
|
|
sample();
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
int64_t SrsKbps::get_send_bytes_delta()
|
|
|
|
{
|
|
|
|
int64_t delta = os.get_total_bytes() - os.delta_bytes;
|
|
|
|
return delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t SrsKbps::get_recv_bytes_delta()
|
|
|
|
{
|
|
|
|
int64_t delta = is.get_total_bytes() - is.delta_bytes;
|
|
|
|
return delta;
|
|
|
|
}
|
|
|
|
|
2015-03-08 11:59:10 +00:00
|
|
|
void SrsKbps::cleanup()
|
|
|
|
{
|
|
|
|
os.delta_bytes = os.get_total_bytes();
|
|
|
|
is.delta_bytes = is.get_total_bytes();
|
|
|
|
}
|
|
|
|
|
2014-06-19 07:28:05 +00:00
|
|
|
void SrsKbps::add_delta(IKbpsDelta* delta)
|
|
|
|
{
|
|
|
|
srs_assert(delta);
|
|
|
|
|
|
|
|
// update the total bytes
|
|
|
|
is.last_bytes += delta->get_recv_bytes_delta();
|
|
|
|
os.last_bytes += delta->get_send_bytes_delta();
|
|
|
|
|
|
|
|
// we donot sample, please use sample() to do resample.
|
|
|
|
}
|
|
|
|
|
2014-05-14 05:56:12 +00:00
|
|
|
void SrsKbps::sample()
|
|
|
|
{
|
2014-06-19 07:28:05 +00:00
|
|
|
// update the total bytes
|
2014-05-14 05:56:12 +00:00
|
|
|
if (os.io.out) {
|
|
|
|
os.last_bytes = os.io.out->get_send_bytes();
|
|
|
|
}
|
|
|
|
|
2014-05-12 10:06:13 +00:00
|
|
|
if (is.io.in) {
|
|
|
|
is.last_bytes = is.io.in->get_recv_bytes();
|
|
|
|
}
|
2014-05-14 05:56:12 +00:00
|
|
|
|
|
|
|
// resample
|
|
|
|
is.sample();
|
2014-06-19 07:28:05 +00:00
|
|
|
os.sample();
|
2014-05-12 09:27:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:37:26 +00:00
|
|
|
int SrsKbps::size_memory()
|
|
|
|
{
|
|
|
|
return sizeof(SrsKbps);
|
|
|
|
}
|
|
|
|
|