添加对象统计接口

This commit is contained in:
xiongziliang
2021-01-23 09:44:37 +08:00
parent 291caf537a
commit aa45590c13
9 changed files with 76 additions and 1 deletions

View File

@@ -14,6 +14,11 @@
#include "Network/sockutil.h"
#include "Network/TcpSession.h"
using namespace toolkit;
namespace toolkit {
StatisticImp(mediakit::MediaSource);
}
namespace mediakit {
recursive_mutex s_media_source_mtx;

View File

@@ -296,6 +296,8 @@ private:
string _app;
string _stream_id;
std::weak_ptr<MediaSourceEvent> _listener;
//对象个数统计
ObjectStatistic<MediaSource> _statistic;
};
///缓存刷新策略类

View File

@@ -11,6 +11,11 @@
#include <math.h>
#include "Common/config.h"
#include "MultiMediaSourceMuxer.h"
namespace toolkit {
StatisticImp(mediakit::MultiMediaSourceMuxer);
}
namespace mediakit {
///////////////////////////////MultiMuxerPrivate//////////////////////////////////

View File

@@ -192,6 +192,8 @@ private:
mutex _rtp_sender_mtx;
unordered_map<string, RtpSender::Ptr> _rtp_sender;
#endif //ENABLE_RTPPROXY
//对象个数统计
ObjectStatistic<MultiMediaSourceMuxer> _statistic;
};
}//namespace mediakit

View File

@@ -13,6 +13,11 @@
using namespace std;
using namespace toolkit;
namespace toolkit {
StatisticImp(mediakit::Frame);
StatisticImp(mediakit::FrameImp);
}
namespace mediakit{
/**

View File

@@ -122,6 +122,10 @@ public:
* 返回可缓存的frame
*/
static Ptr getCacheAbleFrame(const Ptr &frame);
private:
//对象个数统计
ObjectStatistic<Frame> _statistic;
};
class FrameImp : public Frame {
@@ -166,6 +170,8 @@ public:
uint32_t _pts = 0;
size_t _prefix_size = 0;
BufferLikeString _buffer;
//对象个数统计
ObjectStatistic<FrameImp> _statistic;
};
/**