2014-08-05 11:56:05 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef GMPTimerParent_h_
|
|
|
|
#define GMPTimerParent_h_
|
|
|
|
|
|
|
|
#include "mozilla/gmp/PGMPTimerParent.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsClassHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "mozilla/Monitor.h"
|
|
|
|
#include "nsIThread.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
|
|
|
class GMPTimerParent : public PGMPTimerParent {
|
|
|
|
public:
|
|
|
|
NS_INLINE_DECL_REFCOUNTING(GMPTimerParent)
|
2014-09-01 07:50:23 +04:00
|
|
|
explicit GMPTimerParent(nsIThread* aGMPThread);
|
2014-08-05 11:56:05 +04:00
|
|
|
|
2014-08-18 01:41:53 +04:00
|
|
|
void Shutdown();
|
|
|
|
|
2014-08-05 11:56:05 +04:00
|
|
|
protected:
|
|
|
|
virtual bool RecvSetTimer(const uint32_t& aTimerId,
|
2015-03-21 19:28:04 +03:00
|
|
|
const uint32_t& aTimeoutMs) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
2014-08-05 11:56:05 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
~GMPTimerParent() {}
|
|
|
|
|
|
|
|
static void GMPTimerExpired(nsITimer *aTimer, void *aClosure);
|
|
|
|
|
|
|
|
struct Context {
|
|
|
|
Context() {
|
|
|
|
MOZ_COUNT_CTOR(Context);
|
|
|
|
}
|
|
|
|
~Context() {
|
|
|
|
MOZ_COUNT_DTOR(Context);
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<GMPTimerParent> mParent; // Note: live timers keep the GMPTimerParent alive.
|
2014-08-05 11:56:05 +04:00
|
|
|
uint32_t mId;
|
|
|
|
};
|
|
|
|
|
|
|
|
void TimerExpired(Context* aContext);
|
|
|
|
|
|
|
|
nsTHashtable<nsPtrHashKey<Context>> mTimers;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIThread> mGMPThread;
|
2014-08-18 01:41:53 +04:00
|
|
|
|
|
|
|
bool mIsOpen;
|
2014-08-05 11:56:05 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // GMPTimerParent_h_
|