Skip to content

Commit a830289

Browse files
committed
Squash: Merge SRS4.0
1 parent 8aee016 commit a830289

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

trunk/src/app/srs_app_http_api.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -755,8 +755,12 @@ srs_error_t SrsGoApiStreams::serve_http(ISrsHttpResponseWriter* w, ISrsHttpMessa
755755
if (!stream) {
756756
SrsJsonArray* data = SrsJsonAny::array();
757757
obj->set("streams", data);
758-
759-
if ((err = stat->dumps_streams(data)) != srs_success) {
758+
759+
std::string rstart = r->query_get("start");
760+
std::string rcount = r->query_get("count");
761+
int start = srs_max(0, atoi(rstart.c_str()));
762+
int count = srs_max(10, atoi(rcount.c_str()));
763+
if ((err = stat->dumps_streams(data, start, count)) != srs_success) {
760764
int code = srs_error_code(err);
761765
srs_error_reset(err);
762766
return srs_api_response_code(w, r, code);

trunk/src/app/srs_app_statistic.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,16 @@ srs_error_t SrsStatistic::dumps_vhosts(SrsJsonArray* arr)
495495
return err;
496496
}
497497

498-
srs_error_t SrsStatistic::dumps_streams(SrsJsonArray* arr)
498+
srs_error_t SrsStatistic::dumps_streams(SrsJsonArray* arr, int start, int count)
499499
{
500500
srs_error_t err = srs_success;
501-
502-
std::map<std::string, SrsStatisticStream*>::iterator it;
503-
for (it = streams.begin(); it != streams.end(); it++) {
501+
502+
std::map<std::string, SrsStatisticStream*>::iterator it = streams.begin();
503+
for (int i = 0; i < start + count && it != streams.end(); it++, i++) {
504+
if (i < start) {
505+
continue;
506+
}
507+
504508
SrsStatisticStream* stream = it->second;
505509

506510
SrsJsonObject* obj = SrsJsonAny::object();

trunk/src/app/srs_app_statistic.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ class SrsStatistic
182182
// Dumps the vhosts to amf0 array.
183183
virtual srs_error_t dumps_vhosts(SrsJsonArray* arr);
184184
// Dumps the streams to amf0 array.
185-
virtual srs_error_t dumps_streams(SrsJsonArray* arr);
185+
// @param start the start index, from 0.
186+
// @param count the max count of streams to dump.
187+
virtual srs_error_t dumps_streams(SrsJsonArray* arr, int start, int count);
186188
// Dumps the clients to amf0 array
187189
// @param start the start index, from 0.
188190
// @param count the max count of clients to dump.

0 commit comments

Comments
 (0)