2015-01-04 14:47:12 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2013-2015 winlin
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <srs_app_statistic.hpp>
|
|
|
|
|
|
|
|
#include <srs_protocol_rtmp.hpp>
|
|
|
|
|
2015-01-05 04:40:38 +00:00
|
|
|
SrsStatistic* SrsStatistic::_instance = new SrsStatistic();
|
2015-01-04 14:47:12 +00:00
|
|
|
|
|
|
|
SrsStatistic::SrsStatistic()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SrsStatistic::~SrsStatistic()
|
|
|
|
{
|
2015-01-05 04:40:38 +00:00
|
|
|
if (true) {
|
|
|
|
std::map<std::string, SrsStatisticVhost*>::iterator it;
|
|
|
|
for (it = vhosts.begin(); it != vhosts.end(); it++) {
|
|
|
|
SrsStatisticVhost* vhost = it->second;
|
|
|
|
srs_freep(vhost);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (true) {
|
|
|
|
std::map<std::string, SrsStatisticStream*>::iterator it;
|
|
|
|
for (it = streams.begin(); it != streams.end(); it++) {
|
|
|
|
SrsStatisticStream* stream = it->second;
|
|
|
|
srs_freep(stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (true) {
|
|
|
|
std::map<int, SrsStatisticClient*>::iterator it;
|
|
|
|
for (it = clients.begin(); it != clients.end(); it++) {
|
|
|
|
SrsStatisticClient* client = it->second;
|
|
|
|
srs_freep(client);
|
|
|
|
}
|
2015-01-05 04:20:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SrsStatistic* SrsStatistic::instance()
|
|
|
|
{
|
|
|
|
return _instance;
|
2015-01-04 14:47:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 04:40:38 +00:00
|
|
|
int SrsStatistic::on_client(int id, SrsRequest *req)
|
2015-01-04 14:47:12 +00:00
|
|
|
{
|
2015-01-05 04:40:38 +00:00
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
return ret;
|
2015-01-04 14:47:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 04:40:38 +00:00
|
|
|
int SrsStatistic::dumps_vhosts(std::stringstream& ss)
|
2015-01-04 14:47:12 +00:00
|
|
|
{
|
2015-01-05 04:40:38 +00:00
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
return ret;
|
2015-01-04 14:47:12 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 04:40:38 +00:00
|
|
|
int SrsStatistic::dumps_streams(std::stringstream& ss)
|
2015-01-04 14:47:12 +00:00
|
|
|
{
|
2015-01-05 04:40:38 +00:00
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
return ret;
|
|
|
|
}
|