2001-12-16 06:13:17 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2001-12-16 06:13:17 +00:00
|
|
|
|
|
|
|
#ifndef nsTimerImpl_h___
|
|
|
|
#define nsTimerImpl_h___
|
|
|
|
|
|
|
|
//#define FORCE_PR_LOG /* Allow logging in the release build */
|
|
|
|
|
|
|
|
#include "nsITimer.h"
|
2008-07-24 17:20:33 +00:00
|
|
|
#include "nsIEventTarget.h"
|
2003-08-06 00:37:43 +00:00
|
|
|
#include "nsIObserver.h"
|
2001-12-16 06:13:17 +00:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
#include "prlog.h"
|
2010-07-15 13:59:24 +00:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2012-06-05 23:51:58 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2014-03-27 08:49:06 +00:00
|
|
|
#ifdef MOZ_TASK_TRACER
|
|
|
|
#include "TracedTaskCommon.h"
|
|
|
|
#endif
|
|
|
|
|
2001-12-16 06:13:17 +00:00
|
|
|
#if defined(PR_LOGGING)
|
2014-05-27 07:15:35 +00:00
|
|
|
extern PRLogModuleInfo* GetTimerLog();
|
2002-02-18 00:10:55 +00:00
|
|
|
#define DEBUG_TIMERS 1
|
2001-12-16 06:13:17 +00:00
|
|
|
#else
|
|
|
|
#undef DEBUG_TIMERS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define NS_TIMER_CID \
|
|
|
|
{ /* 5ff24248-1dd2-11b2-8427-fbab44f29bc8 */ \
|
|
|
|
0x5ff24248, \
|
|
|
|
0x1dd2, \
|
|
|
|
0x11b2, \
|
|
|
|
{0x84, 0x27, 0xfb, 0xab, 0x44, 0xf2, 0x9b, 0xc8} \
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-16 06:13:17 +00:00
|
|
|
CALLBACK_TYPE_UNKNOWN = 0,
|
|
|
|
CALLBACK_TYPE_INTERFACE = 1,
|
2002-02-20 04:01:34 +00:00
|
|
|
CALLBACK_TYPE_FUNC = 2,
|
|
|
|
CALLBACK_TYPE_OBSERVER = 3
|
2001-12-16 06:13:17 +00:00
|
|
|
};
|
|
|
|
|
2012-06-05 23:51:58 +00:00
|
|
|
class nsTimerImpl MOZ_FINAL : public nsITimer
|
2001-12-16 06:13:17 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-07-15 13:59:24 +00:00
|
|
|
typedef mozilla::TimeStamp TimeStamp;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
|
|
|
nsTimerImpl();
|
|
|
|
|
2004-05-11 09:38:50 +00:00
|
|
|
static NS_HIDDEN_(nsresult) Startup();
|
|
|
|
static NS_HIDDEN_(void) Shutdown();
|
2001-12-16 06:13:17 +00:00
|
|
|
|
|
|
|
friend class TimerThread;
|
2013-02-20 18:21:09 +00:00
|
|
|
friend struct TimerAdditionComparator;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
|
|
|
void Fire();
|
2008-03-10 21:05:46 +00:00
|
|
|
nsresult PostTimerEvent();
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetDelayInternal(uint32_t aDelay);
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2013-07-19 02:31:26 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2002-09-07 05:38:16 +00:00
|
|
|
NS_DECL_NSITIMER
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
int32_t GetGeneration()
|
|
|
|
{
|
|
|
|
return mGeneration;
|
|
|
|
}
|
2002-12-04 00:57:20 +00:00
|
|
|
|
2014-03-27 08:49:06 +00:00
|
|
|
#ifdef MOZ_TASK_TRACER
|
|
|
|
void DispatchTracedTask()
|
|
|
|
{
|
|
|
|
mTracedTask = mozilla::tasktracer::CreateFakeTracedTask(*(int**)(this));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-12-16 06:13:17 +00:00
|
|
|
private:
|
2004-01-15 06:14:18 +00:00
|
|
|
~nsTimerImpl();
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult InitCommon(uint32_t aType, uint32_t aDelay);
|
2002-12-04 00:57:20 +00:00
|
|
|
|
2003-08-06 00:37:43 +00:00
|
|
|
void ReleaseCallback()
|
|
|
|
{
|
2008-02-14 06:51:06 +00:00
|
|
|
// if we're the last owner of the callback object, make
|
|
|
|
// sure that we don't recurse into ReleaseCallback in case
|
|
|
|
// the callback's destructor calls Cancel() or similar.
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t cbType = mCallbackType;
|
2014-05-27 07:15:35 +00:00
|
|
|
mCallbackType = CALLBACK_TYPE_UNKNOWN;
|
2008-02-14 06:51:06 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
if (cbType == CALLBACK_TYPE_INTERFACE) {
|
2003-08-06 00:37:43 +00:00
|
|
|
NS_RELEASE(mCallback.i);
|
2014-05-27 07:15:35 +00:00
|
|
|
} else if (cbType == CALLBACK_TYPE_OBSERVER) {
|
2003-08-06 00:37:43 +00:00
|
|
|
NS_RELEASE(mCallback.o);
|
2014-05-27 07:15:35 +00:00
|
|
|
}
|
2003-08-06 00:37:43 +00:00
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
bool IsRepeating() const
|
|
|
|
{
|
2011-04-28 23:33:52 +00:00
|
|
|
PR_STATIC_ASSERT(TYPE_ONE_SHOT < TYPE_REPEATING_SLACK);
|
|
|
|
PR_STATIC_ASSERT(TYPE_REPEATING_SLACK < TYPE_REPEATING_PRECISE);
|
|
|
|
PR_STATIC_ASSERT(TYPE_REPEATING_PRECISE < TYPE_REPEATING_PRECISE_CAN_SKIP);
|
|
|
|
return mType >= TYPE_REPEATING_SLACK;
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
bool IsRepeatingPrecisely() const
|
|
|
|
{
|
2011-04-28 23:33:52 +00:00
|
|
|
return mType >= TYPE_REPEATING_PRECISE;
|
|
|
|
}
|
|
|
|
|
2008-07-24 17:20:33 +00:00
|
|
|
nsCOMPtr<nsIEventTarget> mEventTarget;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
void* mClosure;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2014-05-27 07:15:35 +00:00
|
|
|
union CallbackUnion
|
|
|
|
{
|
2001-12-16 06:13:17 +00:00
|
|
|
nsTimerCallbackFunc c;
|
2014-05-27 07:15:35 +00:00
|
|
|
nsITimerCallback* i;
|
|
|
|
nsIObserver* o;
|
2001-12-16 06:13:17 +00:00
|
|
|
} mCallback;
|
|
|
|
|
2007-10-30 15:56:59 +00:00
|
|
|
// Some callers expect to be able to access the callback while the
|
|
|
|
// timer is firing.
|
|
|
|
nsCOMPtr<nsITimerCallback> mTimerCallbackWhileFiring;
|
|
|
|
|
2002-03-08 20:11:49 +00:00
|
|
|
// These members are set by Init (called from NS_NewTimer) and never reset.
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mCallbackType;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2002-03-08 20:11:49 +00:00
|
|
|
// These members are set by the initiating thread, when the timer's type is
|
|
|
|
// changed and during the period where it fires on that thread.
|
2012-08-22 15:56:38 +00:00
|
|
|
uint8_t mType;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFiring;
|
2001-12-17 06:59:55 +00:00
|
|
|
|
2002-03-08 20:11:49 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
// Use a bool (int) here to isolate loads and stores of these two members
|
2002-03-08 20:11:49 +00:00
|
|
|
// done on various threads under the protection of TimerThread::mLock, from
|
|
|
|
// loads and stores done on the initiating/type-changing/timer-firing thread
|
2012-08-22 15:56:38 +00:00
|
|
|
// to the above uint8_t/bool members.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mArmed;
|
|
|
|
bool mCanceled;
|
2002-03-08 20:11:49 +00:00
|
|
|
|
2002-12-04 00:57:20 +00:00
|
|
|
// The generation number of this timer, re-generated each time the timer is
|
|
|
|
// initialized so one-shot timers can be canceled and re-initialized by the
|
|
|
|
// arming thread without any bad race conditions.
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mGeneration;
|
2002-12-04 00:57:20 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mDelay;
|
2010-07-15 13:59:24 +00:00
|
|
|
TimeStamp mTimeout;
|
2001-12-16 06:13:17 +00:00
|
|
|
|
2014-03-27 08:49:06 +00:00
|
|
|
#ifdef MOZ_TASK_TRACER
|
|
|
|
nsAutoPtr<mozilla::tasktracer::FakeTracedTask> mTracedTask;
|
|
|
|
#endif
|
|
|
|
|
2001-12-16 06:13:17 +00:00
|
|
|
#ifdef DEBUG_TIMERS
|
2010-07-15 13:59:24 +00:00
|
|
|
TimeStamp mStart, mStart2;
|
2002-03-08 20:11:49 +00:00
|
|
|
static double sDeltaSum;
|
|
|
|
static double sDeltaSumSquared;
|
|
|
|
static double sDeltaNum;
|
2001-12-16 06:13:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsTimerImpl_h___ */
|