gecko/ipc/ipdl/test/cxx/TestLatency.h
Ehsan Akhgari 33bb32f549 Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj
This patch was automatically generated using the following script:

function convert() {
echo "Converting $1 to $2..."
find . \
       ! -wholename "*/.git*" \
       ! -wholename "obj-ff-dbg*" \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert MOZ_OVERRIDE override
convert MOZ_FINAL final
2015-03-21 12:28:04 -04:00

112 lines
2.9 KiB
C++

#ifndef mozilla__ipdltest_TestLatency_h
#define mozilla__ipdltest_TestLatency_h 1
#include "mozilla/_ipdltest/IPDLUnitTests.h"
#include "mozilla/_ipdltest/PTestLatencyParent.h"
#include "mozilla/_ipdltest/PTestLatencyChild.h"
#include "mozilla/TimeStamp.h"
#define NR_TRIALS 10000
#define NR_SPAMS 25000
namespace mozilla {
namespace _ipdltest {
class TestLatencyParent :
public PTestLatencyParent
{
private:
typedef mozilla::TimeStamp TimeStamp;
typedef mozilla::TimeDuration TimeDuration;
public:
TestLatencyParent();
virtual ~TestLatencyParent();
static bool RunTestInProcesses() { return true; }
static bool RunTestInThreads() { return true; }
void Main();
protected:
virtual bool RecvPong() override;
virtual bool RecvPong5() override;
virtual void ActorDestroy(ActorDestroyReason why) override
{
if (NormalShutdown != why)
fail("unexpected destruction!");
passed("\n"
" average #ping-pong/sec: %g\n"
" average #ping5-pong5/sec: %g\n"
" average #RPC call-answer/sec: %g\n"
" average #spams/sec: %g\n"
" pct. spams compressed away: %g\n",
double(NR_TRIALS) / mPPTimeTotal.ToSecondsSigDigits(),
double(NR_TRIALS) / mPP5TimeTotal.ToSecondsSigDigits(),
double(NR_TRIALS) / mRpcTimeTotal.ToSecondsSigDigits(),
double(NR_SPAMS) / mSpamTimeTotal.ToSecondsSigDigits(),
100.0 * (double(NR_SPAMS - mNumChildProcessedCompressedSpams) /
double(NR_SPAMS)));
QuitParent();
}
private:
void PingPongTrial();
void Ping5Pong5Trial();
void RpcTrials();
void SpamTrial();
void CompressedSpamTrial();
void Exit();
TimeStamp mStart;
TimeDuration mPPTimeTotal;
TimeDuration mPP5TimeTotal;
TimeDuration mRpcTimeTotal;
TimeDuration mSpamTimeTotal;
int mPPTrialsToGo;
int mPP5TrialsToGo;
uint32_t mNumChildProcessedCompressedSpams;
};
class TestLatencyChild :
public PTestLatencyChild
{
public:
TestLatencyChild();
virtual ~TestLatencyChild();
protected:
virtual bool RecvPing() override;
virtual bool RecvPing5() override;
virtual bool AnswerRpc() override;
virtual bool RecvSpam() override;
virtual bool AnswerSynchro() override;
virtual bool RecvCompressedSpam(const uint32_t& seqno) override;
virtual bool AnswerSynchro2(uint32_t* lastSeqno,
uint32_t* numMessagesDispatched) override;
virtual void ActorDestroy(ActorDestroyReason why) override
{
if (NormalShutdown != why)
fail("unexpected destruction!");
QuitChild();
}
uint32_t mLastSeqno;
uint32_t mNumProcessedCompressedSpams;
};
} // namespace _ipdltest
} // namespace mozilla
#endif // ifndef mozilla__ipdltest_TestLatency_h