2001-12-16 09:13:17 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2012-05-21 15:12:37 +04: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 09:13:17 +03:00
|
|
|
|
|
|
|
#ifndef TimerThread_h___
|
|
|
|
#define TimerThread_h___
|
|
|
|
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIRunnable.h"
|
|
|
|
#include "nsIThread.h"
|
|
|
|
|
|
|
|
#include "nsTimerImpl.h"
|
|
|
|
|
2009-04-03 20:43:08 +04:00
|
|
|
#include "nsTArray.h"
|
2001-12-16 09:13:17 +03:00
|
|
|
|
2011-04-29 23:21:57 +04:00
|
|
|
#include "mozilla/Monitor.h"
|
2010-07-15 17:59:24 +04:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2001-12-16 09:13:17 +03:00
|
|
|
|
2005-03-14 09:37:01 +03:00
|
|
|
class TimerThread : public nsIRunnable,
|
2003-10-31 05:31:13 +03:00
|
|
|
public nsIObserver
|
2001-12-16 09:13:17 +03:00
|
|
|
{
|
|
|
|
public:
|
2011-04-29 23:21:57 +04:00
|
|
|
typedef mozilla::Monitor Monitor;
|
2010-07-15 17:59:24 +04:00
|
|
|
typedef mozilla::TimeStamp TimeStamp;
|
|
|
|
typedef mozilla::TimeDuration TimeDuration;
|
|
|
|
|
2001-12-16 09:13:17 +03:00
|
|
|
TimerThread();
|
2004-05-11 13:38:50 +04:00
|
|
|
NS_HIDDEN_(nsresult) InitLocks();
|
2001-12-16 09:13:17 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIRUNNABLE
|
2003-10-31 05:31:13 +03:00
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2004-05-11 13:38:50 +04:00
|
|
|
NS_HIDDEN_(nsresult) Init();
|
|
|
|
NS_HIDDEN_(nsresult) Shutdown();
|
2001-12-16 09:13:17 +03:00
|
|
|
|
|
|
|
nsresult AddTimer(nsTimerImpl *aTimer);
|
|
|
|
nsresult TimerDelayChanged(nsTimerImpl *aTimer);
|
|
|
|
nsresult RemoveTimer(nsTimerImpl *aTimer);
|
|
|
|
|
2002-02-18 03:10:55 +03:00
|
|
|
#define FILTER_DURATION 1e3 /* one second */
|
|
|
|
#define FILTER_FEEDBACK_MAX 100 /* 1/10th of a second */
|
|
|
|
|
2010-07-15 17:59:24 +04:00
|
|
|
void UpdateFilter(PRUint32 aDelay, TimeStamp aTimeout,
|
|
|
|
TimeStamp aNow);
|
2002-02-18 03:10:55 +03:00
|
|
|
|
2003-10-31 05:31:13 +03:00
|
|
|
void DoBeforeSleep();
|
|
|
|
void DoAfterSleep();
|
|
|
|
|
2001-12-16 09:13:17 +03:00
|
|
|
private:
|
2004-01-15 09:14:18 +03:00
|
|
|
~TimerThread();
|
|
|
|
|
2004-05-11 13:38:50 +04:00
|
|
|
PRInt32 mInitInProgress;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInitialized;
|
2004-05-11 13:38:50 +04:00
|
|
|
|
2002-04-26 01:07:54 +04:00
|
|
|
// These two internal helper methods must be called while mLock is held.
|
|
|
|
// AddTimerInternal returns the position where the timer was added in the
|
|
|
|
// list, or -1 if it failed.
|
2002-03-08 23:11:49 +03:00
|
|
|
PRInt32 AddTimerInternal(nsTimerImpl *aTimer);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool RemoveTimerInternal(nsTimerImpl *aTimer);
|
2008-03-14 19:25:14 +03:00
|
|
|
void ReleaseTimerInternal(nsTimerImpl *aTimer);
|
2001-12-16 09:13:17 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsIThread> mThread;
|
2011-04-29 23:21:57 +04:00
|
|
|
Monitor mMonitor;
|
2001-12-16 09:13:17 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mShutdown;
|
|
|
|
bool mWaiting;
|
|
|
|
bool mSleeping;
|
2003-10-31 05:31:13 +03:00
|
|
|
|
2009-04-03 20:43:08 +04:00
|
|
|
nsTArray<nsTimerImpl*> mTimers;
|
2002-02-18 03:10:55 +03:00
|
|
|
|
|
|
|
#define DELAY_LINE_LENGTH_LOG2 5
|
|
|
|
#define DELAY_LINE_LENGTH_MASK PR_BITMASK(DELAY_LINE_LENGTH_LOG2)
|
|
|
|
#define DELAY_LINE_LENGTH PR_BIT(DELAY_LINE_LENGTH_LOG2)
|
|
|
|
|
2010-07-15 17:59:24 +04:00
|
|
|
PRInt32 mDelayLine[DELAY_LINE_LENGTH]; // milliseconds
|
2002-02-18 03:10:55 +03:00
|
|
|
PRUint32 mDelayLineCounter;
|
|
|
|
PRUint32 mMinTimerPeriod; // milliseconds
|
2010-07-15 17:59:24 +04:00
|
|
|
TimeDuration mTimeoutAdjustment;
|
2001-12-16 09:13:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* TimerThread_h___ */
|