2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-03-01 18:34:25 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef WEBRTC_VOICE_ENGINE_MONITOR_MODULE_H
|
|
|
|
|
#define WEBRTC_VOICE_ENGINE_MONITOR_MODULE_H
|
|
|
|
|
|
2013-05-21 13:52:32 +00:00
|
|
|
#include "webrtc/modules/interface/module.h"
|
|
|
|
|
#include "webrtc/typedefs.h"
|
|
|
|
|
#include "webrtc/voice_engine/voice_engine_defines.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
class MonitorObserver
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
virtual void OnPeriodicProcess() = 0;
|
|
|
|
|
protected:
|
|
|
|
|
virtual ~MonitorObserver() {}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
class CriticalSectionWrapper;
|
|
|
|
|
|
|
|
|
|
namespace voe {
|
|
|
|
|
|
|
|
|
|
class MonitorModule : public Module
|
|
|
|
|
{
|
|
|
|
|
public:
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t RegisterObserver(MonitorObserver& observer);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t DeRegisterObserver();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
MonitorModule();
|
|
|
|
|
|
|
|
|
|
virtual ~MonitorModule();
|
|
|
|
|
public: // module
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t Version(char* version,
|
|
|
|
|
uint32_t& remainingBufferInBytes,
|
|
|
|
|
uint32_t& position) const;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-05-14 08:31:39 +00:00
|
|
|
int32_t ChangeUniqueId(int32_t id);
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t TimeUntilNextProcess();
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t Process();
|
2011-07-07 08:21:25 +00:00
|
|
|
private:
|
|
|
|
|
enum { kAverageProcessUpdateTimeMs = 1000 };
|
|
|
|
|
MonitorObserver* _observerPtr;
|
|
|
|
|
CriticalSectionWrapper& _callbackCritSect;
|
2013-04-09 10:09:10 +00:00
|
|
|
int32_t _lastProcessTime;
|
2011-07-07 08:21:25 +00:00
|
|
|
};
|
|
|
|
|
|
2013-07-03 15:12:26 +00:00
|
|
|
} // namespace voe
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2013-07-03 15:12:26 +00:00
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
|
|
|
|
#endif // VOICE_ENGINE_MONITOR_MODULE
|