gecko/ipc/ipdl/test/cxx/TestLatency.h

93 lines
1.9 KiB
C
Raw Normal View History

2009-10-13 15:36:28 -07:00
#ifndef mozilla__ipdltest_TestLatency_h
#define mozilla__ipdltest_TestLatency_h 1
#include "mozilla/_ipdltest/IPDLUnitTests.h"
2009-10-13 15:36:28 -07:00
#include "mozilla/_ipdltest/PTestLatencyParent.h"
#include "mozilla/_ipdltest/PTestLatencyChild.h"
#include "mozilla/TimeStamp.h"
#define NR_TRIALS 10000
2009-10-13 15:36:28 -07:00
namespace mozilla {
namespace _ipdltest {
class TestLatencyParent :
public PTestLatencyParent
{
private:
typedef mozilla::TimeStamp TimeStamp;
typedef mozilla::TimeDuration TimeDuration;
public:
TestLatencyParent();
virtual ~TestLatencyParent();
void Main();
protected:
NS_OVERRIDE
2009-10-13 15:36:28 -07:00
virtual bool RecvPong();
NS_OVERRIDE
2009-10-13 15:36:28 -07:00
virtual bool RecvPong5();
NS_OVERRIDE
virtual void ActorDestroy(ActorDestroyReason why)
{
if (NormalShutdown != why)
fail("unexpected destruction!");
passed("average ping/pong latency: %g sec, average ping5/pong5 latency: %g sec",
mPPTimeTotal.ToSeconds() / (double) NR_TRIALS,
mPP5TimeTotal.ToSeconds() / (double) NR_TRIALS);
QuitParent();
}
2009-10-13 15:36:28 -07:00
private:
void PingPongTrial();
void Ping5Pong5Trial();
void Exit();
TimeStamp mStart;
TimeDuration mPPTimeTotal;
TimeDuration mPP5TimeTotal;
int mPPTrialsToGo;
int mPP5TrialsToGo;
// FIXME/cjones: HACK ALERT: don't need this once IPDL exposes actor state
int mPongsToGo;
};
class TestLatencyChild :
public PTestLatencyChild
{
public:
TestLatencyChild();
virtual ~TestLatencyChild();
protected:
NS_OVERRIDE
2009-10-13 15:36:28 -07:00
virtual bool RecvPing();
NS_OVERRIDE
2009-10-13 15:36:28 -07:00
virtual bool RecvPing5();
NS_OVERRIDE
virtual void ActorDestroy(ActorDestroyReason why)
{
if (NormalShutdown != why)
fail("unexpected destruction!");
QuitChild();
}
2009-10-13 15:36:28 -07:00
};
} // namespace _ipdltest
} // namespace mozilla
#endif // ifndef mozilla__ipdltest_TestLatency_h