d32c44738a
Only changed: - Name of some of the critsects. - All critsects (but one) are now scoped_ptr. - Use of ptr constructor of CriticalSectionScoped instead of reference version. BUG=184 TEST=vie_auto_test Review URL: http://webrtc-codereview.appspot.com/330015 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1291 4adac7df-926f-26a2-2b94-8c16560cd09d
57 lines
1.6 KiB
C++
57 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
// ViEPerformanceMonitor is used to check the current CPU usage and triggers a
|
|
// callback when getting over a specified threshold.
|
|
|
|
#ifndef WEBRTC_VIDEO_ENGINE_VIE_PERFORMANCE_MONITOR_H_
|
|
#define WEBRTC_VIDEO_ENGINE_VIE_PERFORMANCE_MONITOR_H_
|
|
|
|
#include "system_wrappers/interface/scoped_ptr.h"
|
|
#include "typedefs.h"
|
|
#include "vie_defines.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class CriticalSectionWrapper;
|
|
class CpuWrapper;
|
|
class EventWrapper;
|
|
class ThreadWrapper;
|
|
class ViEBaseObserver;
|
|
|
|
class ViEPerformanceMonitor {
|
|
public:
|
|
explicit ViEPerformanceMonitor(int engine_id);
|
|
~ViEPerformanceMonitor();
|
|
|
|
int Init(ViEBaseObserver* vie_base_observer);
|
|
void Terminate();
|
|
bool ViEBaseObserverRegistered();
|
|
|
|
protected:
|
|
static bool ViEMonitorThreadFunction(void* obj);
|
|
bool ViEMonitorProcess();
|
|
|
|
private:
|
|
const int engine_id_;
|
|
// TODO(mfldoman) Make this one scoped_ptr.
|
|
CriticalSectionWrapper* pointer_cs_;
|
|
ThreadWrapper* monitor_thread_;
|
|
EventWrapper& monitor_event_;
|
|
int average_application_cpu_;
|
|
int average_system_cpu_;
|
|
CpuWrapper* cpu_;
|
|
ViEBaseObserver* vie_base_observer_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_VIDEO_ENGINE_VIE_PERFORMANCE_MONITOR_H_
|